mirror of
https://github.com/osmarks/ngircd.git
synced 2025-06-16 05:14:08 +00:00
kqueue support was completely broken; seemed to work on FreeBSD just because of sheer luck.
This commit is contained in:
parent
4a2eea2939
commit
185004cb30
175
src/ngircd/io.c
175
src/ngircd/io.c
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: io.c,v 1.11 2005/09/04 13:38:59 fw Exp $";
|
static char UNUSED id[] = "$Id: io.c,v 1.12 2006/05/07 10:54:42 fw Exp $";
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -52,8 +52,7 @@ static bool library_initialized;
|
|||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
|
|
||||||
static int io_masterfd;
|
static int io_masterfd;
|
||||||
static bool io_event_new_epoll(int fd, short what);
|
static bool io_event_change_epoll(int fd, short what, const int action);
|
||||||
static bool io_event_change_epoll(int fd, short what);
|
|
||||||
static int io_dispatch_epoll(struct timeval *tv);
|
static int io_dispatch_epoll(struct timeval *tv);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -64,7 +63,7 @@ static array io_evcache;
|
|||||||
static int io_masterfd;
|
static int io_masterfd;
|
||||||
|
|
||||||
static int io_dispatch_kqueue(struct timeval *tv);
|
static int io_dispatch_kqueue(struct timeval *tv);
|
||||||
static bool io_event_add_kqueue(int, short);
|
static bool io_event_change_kqueue(int, short, const int action);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef IO_USE_SELECT
|
#ifdef IO_USE_SELECT
|
||||||
@ -104,7 +103,6 @@ io_library_init(unsigned int eventsize)
|
|||||||
if (ecreate_hint <= 0)
|
if (ecreate_hint <= 0)
|
||||||
ecreate_hint = 128;
|
ecreate_hint = 128;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (library_initialized)
|
if (library_initialized)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
@ -193,6 +191,7 @@ io_event_setcb(int fd, void (*cbfunc) (int, short))
|
|||||||
bool
|
bool
|
||||||
io_event_create(int fd, short what, void (*cbfunc) (int, short))
|
io_event_create(int fd, short what, void (*cbfunc) (int, short))
|
||||||
{
|
{
|
||||||
|
bool ret;
|
||||||
io_event *i;
|
io_event *i;
|
||||||
|
|
||||||
assert(fd >= 0);
|
assert(fd >= 0);
|
||||||
@ -218,24 +217,24 @@ io_event_create(int fd, short what, void (*cbfunc) (int, short))
|
|||||||
|
|
||||||
i->fd = fd;
|
i->fd = fd;
|
||||||
i->callback = cbfunc;
|
i->callback = cbfunc;
|
||||||
|
i->what = 0;
|
||||||
#ifdef IO_USE_EPOLL
|
#ifdef IO_USE_EPOLL
|
||||||
i->what = what;
|
ret = io_event_change_epoll(fd, what, EPOLL_CTL_ADD);
|
||||||
return io_event_new_epoll(fd, what);
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef IO_USE_KQUEUE
|
#ifdef IO_USE_KQUEUE
|
||||||
i->what = what;
|
ret = io_event_change_kqueue(fd, what, EV_ADD|EV_ENABLE);
|
||||||
return io_event_add_kqueue(fd, what);
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef IO_USE_SELECT
|
#ifdef IO_USE_SELECT
|
||||||
i->what = 0;
|
ret = io_event_add(fd, what);
|
||||||
return io_event_add(fd, what);
|
|
||||||
#endif
|
#endif
|
||||||
|
if (ret) i->what = what;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef IO_USE_EPOLL
|
#ifdef IO_USE_EPOLL
|
||||||
static bool
|
static bool
|
||||||
io_event_new_epoll(int fd, short what)
|
io_event_change_epoll(int fd, short what, const int action)
|
||||||
{
|
{
|
||||||
struct epoll_event ev = { 0, {0} };
|
struct epoll_event ev = { 0, {0} };
|
||||||
ev.data.fd = fd;
|
ev.data.fd = fd;
|
||||||
@ -245,22 +244,7 @@ io_event_new_epoll(int fd, short what)
|
|||||||
if (what & IO_WANTWRITE)
|
if (what & IO_WANTWRITE)
|
||||||
ev.events |= EPOLLOUT;
|
ev.events |= EPOLLOUT;
|
||||||
|
|
||||||
return epoll_ctl(io_masterfd, EPOLL_CTL_ADD, fd, &ev) == 0;
|
return epoll_ctl(io_masterfd, action, fd, &ev) == 0;
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static bool
|
|
||||||
io_event_change_epoll(int fd, short what)
|
|
||||||
{
|
|
||||||
struct epoll_event ev = { 0, {0} };
|
|
||||||
ev.data.fd = fd;
|
|
||||||
|
|
||||||
if (what & IO_WANTREAD)
|
|
||||||
ev.events = EPOLLIN | EPOLLPRI;
|
|
||||||
if (what & IO_WANTWRITE)
|
|
||||||
ev.events |= EPOLLOUT;
|
|
||||||
|
|
||||||
return epoll_ctl(io_masterfd, EPOLL_CTL_MOD, fd, &ev) == 0;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -294,24 +278,28 @@ io_event_kqueue_commit_cache(void)
|
|||||||
|
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
io_event_add_kqueue(int fd, short what)
|
io_event_change_kqueue(int fd, short what, const int action)
|
||||||
{
|
{
|
||||||
struct kevent kev;
|
struct kevent kev;
|
||||||
short filter = 0;
|
bool ret = true;
|
||||||
size_t len = array_length(&io_evcache, sizeof kev);
|
|
||||||
|
|
||||||
if (what & IO_WANTREAD)
|
if (what & IO_WANTREAD) {
|
||||||
filter = EVFILT_READ;
|
EV_SET(&kev, fd, EVFILT_READ, action, 0, 0, 0);
|
||||||
|
ret = array_catb(&io_evcache, (char*) &kev, sizeof (kev));
|
||||||
if (what & IO_WANTWRITE)
|
if (!ret)
|
||||||
filter |= EVFILT_WRITE;
|
ret = kevent(io_masterfd, &kev,1, NULL, 0, NULL) == 0;
|
||||||
|
|
||||||
if (len >= 100) {
|
|
||||||
(void)io_event_kqueue_commit_cache();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
EV_SET(&kev, fd, filter, EV_ADD | EV_ENABLE, 0, 0, NULL);
|
if (ret && (what & IO_WANTWRITE)) {
|
||||||
return array_catb(&io_evcache, (char*) &kev, sizeof (kev));
|
EV_SET(&kev, fd, EVFILT_WRITE, action, 0, 0, 0);
|
||||||
|
ret = array_catb(&io_evcache, (char*) &kev, sizeof (kev));
|
||||||
|
if (!ret)
|
||||||
|
ret = kevent(io_masterfd, &kev, 1, NULL, 0, NULL) == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (array_length(&io_evcache, sizeof kev) >= 100)
|
||||||
|
io_event_kqueue_commit_cache();
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -321,24 +309,20 @@ io_event_add(int fd, short what)
|
|||||||
{
|
{
|
||||||
io_event *i = io_event_get(fd);
|
io_event *i = io_event_get(fd);
|
||||||
|
|
||||||
assert(i);
|
assert(i != NULL);
|
||||||
|
|
||||||
if (!i)
|
if (!i) return false;
|
||||||
return false;
|
if (i->what == what) return true;
|
||||||
if (i->what == what)
|
|
||||||
return true;
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Log(LOG_DEBUG, "io_event_add(): fd %d (arg: %d), what %d.", i->fd, fd, what);
|
Log(LOG_DEBUG, "io_event_add(): fd %d (arg: %d), what %d.", i->fd, fd, what);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
i->what |= what;
|
i->what |= what;
|
||||||
|
|
||||||
#ifdef IO_USE_EPOLL
|
#ifdef IO_USE_EPOLL
|
||||||
return io_event_change_epoll(fd, i->what);
|
return io_event_change_epoll(fd, i->what, EPOLL_CTL_MOD);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef IO_USE_KQUEUE
|
#ifdef IO_USE_KQUEUE
|
||||||
return io_event_add_kqueue(fd, what);
|
return io_event_change_kqueue(fd, what, EV_ADD | EV_ENABLE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef IO_USE_SELECT
|
#ifdef IO_USE_SELECT
|
||||||
@ -374,61 +358,62 @@ io_setnonblock(int fd)
|
|||||||
bool
|
bool
|
||||||
io_close(int fd)
|
io_close(int fd)
|
||||||
{
|
{
|
||||||
io_event *i = io_event_get(fd);
|
io_event *i;
|
||||||
if (i) {
|
|
||||||
memset(i, 0, sizeof(io_event));
|
|
||||||
i->fd = -1;
|
|
||||||
}
|
|
||||||
#ifdef IO_USE_SELECT
|
#ifdef IO_USE_SELECT
|
||||||
FD_CLR(fd, &writers);
|
FD_CLR(fd, &writers);
|
||||||
FD_CLR(fd, &readers);
|
FD_CLR(fd, &readers);
|
||||||
|
|
||||||
if (fd == select_maxfd)
|
if (fd == select_maxfd) {
|
||||||
select_maxfd--;
|
while (select_maxfd>0) {
|
||||||
|
--select_maxfd; /* find largest fd */
|
||||||
|
i = io_event_get(select_maxfd);
|
||||||
|
if (i && (i->fd >= 0)) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
i = io_event_get(fd);
|
||||||
#ifdef IO_USE_KQUEUE
|
#ifdef IO_USE_KQUEUE
|
||||||
if (array_length(&io_evcache, sizeof (struct kevent))) /* pending data in cache? */
|
if (array_length(&io_evcache, sizeof (struct kevent))) /* pending data in cache? */
|
||||||
io_event_kqueue_commit_cache();
|
io_event_kqueue_commit_cache();
|
||||||
|
|
||||||
|
/* both kqueue and epoll remove fd from all sets automatically on the last close
|
||||||
|
* of the descriptor. since we don't know if this is the last close we'll have
|
||||||
|
* to remove the set explicitly. */
|
||||||
|
if (i) {
|
||||||
|
io_event_change_kqueue(fd, i->what, EV_DELETE);
|
||||||
|
io_event_kqueue_commit_cache();
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef IO_USE_EPOLL
|
#ifdef IO_USE_EPOLL
|
||||||
epoll_ctl(io_masterfd, EPOLL_CTL_DEL, fd, NULL);
|
io_event_change_epoll(fd, 0, EPOLL_CTL_DEL);
|
||||||
#endif
|
#endif
|
||||||
return close(fd) == 0; /* kqueue will remove fd from all sets automatically */
|
if (i) {
|
||||||
|
memset(i, 0, sizeof(io_event));
|
||||||
|
i->fd = -1;
|
||||||
|
}
|
||||||
|
return close(fd) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool
|
bool
|
||||||
io_event_del(int fd, short what)
|
io_event_del(int fd, short what)
|
||||||
{
|
{
|
||||||
#ifdef IO_USE_KQUEUE
|
|
||||||
struct kevent kev;
|
|
||||||
short filter = 0;
|
|
||||||
#endif
|
|
||||||
io_event *i = io_event_get(fd);
|
io_event *i = io_event_get(fd);
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Log(LOG_DEBUG, "io_event_del(): trying to delete eventtype %d on fd %d", what, fd);
|
Log(LOG_DEBUG, "io_event_del(): trying to delete eventtype %d on fd %d", what, fd);
|
||||||
#endif
|
#endif
|
||||||
assert(i);
|
assert(i != NULL);
|
||||||
if (!i)
|
if (!i) return false;
|
||||||
return false;
|
|
||||||
|
|
||||||
i->what &= ~what;
|
i->what &= ~what;
|
||||||
|
|
||||||
#ifdef IO_USE_EPOLL
|
#ifdef IO_USE_EPOLL
|
||||||
return io_event_change_epoll(fd, i->what);
|
return io_event_change_epoll(fd, i->what, EPOLL_CTL_MOD);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef IO_USE_KQUEUE
|
#ifdef IO_USE_KQUEUE
|
||||||
if (what & IO_WANTREAD)
|
return io_event_change_kqueue(fd, what, EV_DISABLE);
|
||||||
filter = EVFILT_READ;
|
|
||||||
|
|
||||||
if (what & IO_WANTWRITE)
|
|
||||||
filter |= EVFILT_WRITE;
|
|
||||||
|
|
||||||
EV_SET(&kev, fd, filter, EV_DELETE, 0, 0, NULL);
|
|
||||||
return kevent(io_masterfd, &kev, 1, NULL, 0, NULL) == 0;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef IO_USE_SELECT
|
#ifdef IO_USE_SELECT
|
||||||
if (what & IO_WANTWRITE)
|
if (what & IO_WANTWRITE)
|
||||||
FD_CLR(i->fd, &writers);
|
FD_CLR(i->fd, &writers);
|
||||||
@ -527,7 +512,6 @@ io_dispatch_kqueue(struct timeval *tv)
|
|||||||
struct kevent *newevents;
|
struct kevent *newevents;
|
||||||
struct timespec ts;
|
struct timespec ts;
|
||||||
int newevents_len;
|
int newevents_len;
|
||||||
short type;
|
|
||||||
ts.tv_sec = tv->tv_sec;
|
ts.tv_sec = tv->tv_sec;
|
||||||
ts.tv_nsec = tv->tv_usec * 1000;
|
ts.tv_nsec = tv->tv_usec * 1000;
|
||||||
|
|
||||||
@ -541,7 +525,6 @@ io_dispatch_kqueue(struct timeval *tv)
|
|||||||
if (newevents_len)
|
if (newevents_len)
|
||||||
assert(newevents);
|
assert(newevents);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ret = kevent(io_masterfd, newevents, newevents_len, kev,
|
ret = kevent(io_masterfd, newevents, newevents_len, kev,
|
||||||
100, &ts);
|
100, &ts);
|
||||||
if ((newevents_len>0) && ret != -1)
|
if ((newevents_len>0) && ret != -1)
|
||||||
@ -552,25 +535,35 @@ io_dispatch_kqueue(struct timeval *tv)
|
|||||||
return total;
|
return total;
|
||||||
|
|
||||||
for (i = 0; i < ret; i++) {
|
for (i = 0; i < ret; i++) {
|
||||||
type = 0;
|
switch (kev[i].filter) {
|
||||||
if (kev[i].flags & EV_EOF)
|
case EVFILT_READ:
|
||||||
type = IO_ERROR;
|
io_docallback(kev[i].ident, IO_WANTREAD);
|
||||||
|
break;
|
||||||
|
case EVFILT_WRITE:
|
||||||
|
io_docallback(kev[i].ident, IO_WANTWRITE);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
#ifdef DEBUG
|
||||||
|
LogDebug("Unknown kev.filter number %d for fd %d",
|
||||||
|
kev[i].filter, kev[i].ident); /* Fall through */
|
||||||
|
#endif
|
||||||
|
case EV_ERROR:
|
||||||
|
io_docallback(kev[i].ident, IO_ERROR);
|
||||||
|
break;
|
||||||
|
|
||||||
if (kev[i].filter & EV_ERROR)
|
}
|
||||||
type = IO_ERROR;
|
if (kev[i].flags & EV_EOF) {
|
||||||
|
#ifdef DEBUG
|
||||||
|
LogDebug("kev.flag has EV_EOF set, setting IO_ERROR",
|
||||||
|
kev[i].filter, kev[i].ident); /* Fall through */
|
||||||
|
|
||||||
if (kev[i].filter & EVFILT_READ)
|
#endif
|
||||||
type |= IO_WANTREAD;
|
io_docallback(kev[i].ident, IO_ERROR);
|
||||||
|
|
||||||
if (kev[i].filter & EVFILT_WRITE)
|
}
|
||||||
type |= IO_WANTWRITE;
|
|
||||||
|
|
||||||
io_docallback(kev[i].ident, type);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ts.tv_sec = 0;
|
ts.tv_sec = 0;
|
||||||
ts.tv_nsec = 0;
|
ts.tv_nsec = 0;
|
||||||
|
|
||||||
} while (ret == 100);
|
} while (ret == 100);
|
||||||
|
|
||||||
return total;
|
return total;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user