2007-04-08 14:39:58 +00:00
|
|
|
/*
|
|
|
|
* FD polling functions for generic poll()
|
|
|
|
*
|
2008-06-22 15:18:02 +00:00
|
|
|
* Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
|
2007-04-08 14:39:58 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2007-04-09 13:28:51 +00:00
|
|
|
#include <sys/poll.h>
|
2007-04-08 14:39:58 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <common/compat.h>
|
|
|
|
#include <common/config.h>
|
2008-07-06 22:09:58 +00:00
|
|
|
#include <common/ticks.h>
|
2007-04-08 14:39:58 +00:00
|
|
|
#include <common/time.h>
|
|
|
|
|
|
|
|
#include <types/global.h>
|
|
|
|
|
|
|
|
#include <proto/fd.h>
|
2009-05-10 07:57:21 +00:00
|
|
|
#include <proto/signal.h>
|
2007-04-08 14:39:58 +00:00
|
|
|
#include <proto/task.h>
|
|
|
|
|
|
|
|
|
2007-04-08 15:42:27 +00:00
|
|
|
static fd_set *fd_evts[2];
|
2007-04-08 14:39:58 +00:00
|
|
|
|
|
|
|
/* private data */
|
|
|
|
static struct pollfd *poll_events = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Benchmarks performed on a Pentium-M notebook show that using functions
|
|
|
|
* instead of the usual macros improve the FD_* performance by about 80%,
|
|
|
|
* and that marking them regparm(2) adds another 20%.
|
|
|
|
*/
|
2007-04-09 13:34:49 +00:00
|
|
|
REGPRM2 static int __fd_is_set(const int fd, int dir)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
2007-04-08 15:42:27 +00:00
|
|
|
return FD_ISSET(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
2012-07-30 12:29:35 +00:00
|
|
|
REGPRM2 static void __fd_set(const int fd, int dir)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
2007-04-08 15:42:27 +00:00
|
|
|
FD_SET(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
2012-07-30 12:29:35 +00:00
|
|
|
REGPRM2 static void __fd_clr(const int fd, int dir)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
2007-04-08 15:42:27 +00:00
|
|
|
FD_CLR(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
REGPRM1 static void __fd_rem(const int fd)
|
|
|
|
{
|
2007-04-08 15:42:27 +00:00
|
|
|
FD_CLR(fd, fd_evts[DIR_RD]);
|
|
|
|
FD_CLR(fd, fd_evts[DIR_WR]);
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Poll() poller
|
|
|
|
*/
|
2008-07-06 22:09:58 +00:00
|
|
|
REGPRM2 static void _do_poll(struct poller *p, int exp)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
int fd, nbfd;
|
2007-05-12 20:35:00 +00:00
|
|
|
int wait_time;
|
2007-04-08 14:39:58 +00:00
|
|
|
|
|
|
|
int fds, count;
|
|
|
|
int sr, sw;
|
|
|
|
unsigned rn, wn; /* read new, write new */
|
|
|
|
|
|
|
|
nbfd = 0;
|
2008-07-14 22:36:31 +00:00
|
|
|
for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) {
|
2007-04-08 14:39:58 +00:00
|
|
|
|
2007-04-08 15:42:27 +00:00
|
|
|
rn = ((int*)fd_evts[DIR_RD])[fds];
|
|
|
|
wn = ((int*)fd_evts[DIR_WR])[fds];
|
2007-04-08 14:39:58 +00:00
|
|
|
|
|
|
|
if ((rn|wn)) {
|
2008-07-14 22:36:31 +00:00
|
|
|
for (count = 0, fd = fds * BITS_PER_INT; count < BITS_PER_INT && fd < maxfd; count++, fd++) {
|
2007-04-08 14:39:58 +00:00
|
|
|
#define FDSETS_ARE_INT_ALIGNED
|
|
|
|
#ifdef FDSETS_ARE_INT_ALIGNED
|
|
|
|
|
2008-04-14 18:47:37 +00:00
|
|
|
#define WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
|
|
|
|
#ifdef WE_REALLY_KNOW_THAT_FDSETS_ARE_INTS
|
2007-04-08 14:39:58 +00:00
|
|
|
sr = (rn >> count) & 1;
|
|
|
|
sw = (wn >> count) & 1;
|
|
|
|
#else
|
2008-07-14 22:36:31 +00:00
|
|
|
sr = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&rn);
|
|
|
|
sw = FD_ISSET(fd&(BITS_PER_INT-1), (typeof(fd_set*))&wn);
|
2007-04-08 14:39:58 +00:00
|
|
|
#endif
|
|
|
|
#else
|
2007-04-08 15:42:27 +00:00
|
|
|
sr = FD_ISSET(fd, fd_evts[DIR_RD]);
|
|
|
|
sw = FD_ISSET(fd, fd_evts[DIR_WR]);
|
2007-04-08 14:39:58 +00:00
|
|
|
#endif
|
|
|
|
if ((sr|sw)) {
|
|
|
|
poll_events[nbfd].fd = fd;
|
|
|
|
poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
|
|
|
|
nbfd++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now let's wait for events */
|
2009-05-10 07:57:21 +00:00
|
|
|
if (run_queue || signal_queue_len)
|
2008-06-13 19:06:56 +00:00
|
|
|
wait_time = 0;
|
2008-07-06 22:09:58 +00:00
|
|
|
else if (!exp)
|
2008-06-23 12:00:57 +00:00
|
|
|
wait_time = MAX_DELAY_MS;
|
2008-07-06 22:09:58 +00:00
|
|
|
else if (tick_is_expired(exp, now_ms))
|
2007-05-14 00:02:04 +00:00
|
|
|
wait_time = 0;
|
2008-06-23 12:00:57 +00:00
|
|
|
else {
|
2008-07-06 22:09:58 +00:00
|
|
|
wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
|
2008-06-23 12:00:57 +00:00
|
|
|
if (wait_time > MAX_DELAY_MS)
|
|
|
|
wait_time = MAX_DELAY_MS;
|
|
|
|
}
|
2007-05-12 20:35:00 +00:00
|
|
|
|
2011-09-10 14:56:42 +00:00
|
|
|
gettimeofday(&before_poll, NULL);
|
2007-04-08 14:39:58 +00:00
|
|
|
status = poll(poll_events, nbfd, wait_time);
|
2008-06-23 12:00:57 +00:00
|
|
|
tv_update_date(wait_time, status);
|
2011-09-10 14:56:42 +00:00
|
|
|
measure_idle();
|
2007-04-08 14:39:58 +00:00
|
|
|
|
|
|
|
for (count = 0; status > 0 && count < nbfd; count++) {
|
2012-07-06 09:16:01 +00:00
|
|
|
int e = poll_events[count].revents;
|
2007-04-08 14:39:58 +00:00
|
|
|
fd = poll_events[count].fd;
|
|
|
|
|
2012-07-06 09:16:01 +00:00
|
|
|
if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
|
2007-04-08 14:39:58 +00:00
|
|
|
continue;
|
|
|
|
|
2012-07-06 14:02:29 +00:00
|
|
|
/* ok, we found one active fd */
|
|
|
|
status--;
|
|
|
|
|
|
|
|
if (!fdtab[fd].owner)
|
|
|
|
continue;
|
|
|
|
|
2012-07-06 09:16:01 +00:00
|
|
|
fdtab[fd].ev &= FD_POLL_STICKY;
|
|
|
|
fdtab[fd].ev |=
|
|
|
|
((e & POLLIN ) ? FD_POLL_IN : 0) |
|
|
|
|
((e & POLLOUT) ? FD_POLL_OUT : 0) |
|
|
|
|
((e & POLLERR) ? FD_POLL_ERR : 0) |
|
|
|
|
((e & POLLHUP) ? FD_POLL_HUP : 0);
|
|
|
|
|
2012-07-06 09:44:28 +00:00
|
|
|
if (fdtab[fd].iocb && fdtab[fd].owner && fdtab[fd].ev)
|
|
|
|
fdtab[fd].iocb(fd);
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-04-09 07:23:31 +00:00
|
|
|
/*
|
|
|
|
* Initialization of the poll() poller.
|
|
|
|
* Returns 0 in case of failure, non-zero in case of success. If it fails, it
|
|
|
|
* disables the poller by setting its pref to 0.
|
|
|
|
*/
|
2007-04-15 22:25:25 +00:00
|
|
|
REGPRM1 static int _do_init(struct poller *p)
|
2007-04-09 07:23:31 +00:00
|
|
|
{
|
|
|
|
__label__ fail_swevt, fail_srevt, fail_pe;
|
|
|
|
int fd_set_bytes;
|
|
|
|
|
|
|
|
p->private = NULL;
|
|
|
|
fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
|
|
|
|
|
|
|
|
poll_events = (struct pollfd*)
|
|
|
|
calloc(1, sizeof(struct pollfd) * global.maxsock);
|
|
|
|
|
|
|
|
if (poll_events == NULL)
|
|
|
|
goto fail_pe;
|
|
|
|
|
|
|
|
if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
|
|
|
|
goto fail_srevt;
|
|
|
|
|
|
|
|
if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
|
|
|
|
goto fail_swevt;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
fail_swevt:
|
|
|
|
free(fd_evts[DIR_RD]);
|
|
|
|
fail_srevt:
|
|
|
|
free(poll_events);
|
|
|
|
fail_pe:
|
|
|
|
p->pref = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Termination of the poll() poller.
|
|
|
|
* Memory is released and the poller is marked as unselectable.
|
|
|
|
*/
|
2007-04-15 22:25:25 +00:00
|
|
|
REGPRM1 static void _do_term(struct poller *p)
|
2007-04-09 07:23:31 +00:00
|
|
|
{
|
2008-08-03 10:19:50 +00:00
|
|
|
free(fd_evts[DIR_WR]);
|
|
|
|
free(fd_evts[DIR_RD]);
|
|
|
|
free(poll_events);
|
2007-04-09 07:23:31 +00:00
|
|
|
p->private = NULL;
|
|
|
|
p->pref = 0;
|
|
|
|
}
|
|
|
|
|
2007-04-09 17:29:56 +00:00
|
|
|
/*
|
|
|
|
* Check that the poller works.
|
|
|
|
* Returns 1 if OK, otherwise 0.
|
|
|
|
*/
|
2007-04-15 22:25:25 +00:00
|
|
|
REGPRM1 static int _do_test(struct poller *p)
|
2007-04-09 17:29:56 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-04-08 14:39:58 +00:00
|
|
|
/*
|
2007-04-15 22:25:25 +00:00
|
|
|
* It is a constructor, which means that it will automatically be called before
|
|
|
|
* main(). This is GCC-specific but it works at least since 2.95.
|
|
|
|
* Special care must be taken so that it does not need any uninitialized data.
|
2007-04-08 14:39:58 +00:00
|
|
|
*/
|
2007-04-15 22:25:25 +00:00
|
|
|
__attribute__((constructor))
|
|
|
|
static void _do_register(void)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
2007-04-15 22:25:25 +00:00
|
|
|
struct poller *p;
|
|
|
|
|
|
|
|
if (nbpollers >= MAX_POLLERS)
|
|
|
|
return;
|
|
|
|
p = &pollers[nbpollers++];
|
|
|
|
|
2007-04-08 14:39:58 +00:00
|
|
|
p->name = "poll";
|
|
|
|
p->pref = 200;
|
|
|
|
p->private = NULL;
|
|
|
|
|
2007-04-15 22:25:25 +00:00
|
|
|
p->test = _do_test;
|
|
|
|
p->init = _do_init;
|
|
|
|
p->term = _do_term;
|
|
|
|
p->poll = _do_poll;
|
2007-04-09 13:34:49 +00:00
|
|
|
p->is_set = __fd_is_set;
|
2007-04-08 14:39:58 +00:00
|
|
|
p->set = __fd_set;
|
|
|
|
p->clr = __fd_clr;
|
|
|
|
p->clo = p->rem = __fd_rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|