2007-04-08 14:39:58 +00:00
|
|
|
/*
|
|
|
|
* FD polling functions for generic select()
|
|
|
|
*
|
|
|
|
* Copyright 2000-2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <common/compat.h>
|
|
|
|
#include <common/config.h>
|
|
|
|
#include <common/time.h>
|
|
|
|
|
|
|
|
#include <types/fd.h>
|
|
|
|
#include <types/global.h>
|
|
|
|
|
|
|
|
#include <proto/fd.h>
|
|
|
|
#include <proto/task.h>
|
|
|
|
|
|
|
|
|
2007-04-08 15:42:27 +00:00
|
|
|
static fd_set *fd_evts[2];
|
|
|
|
static fd_set *tmp_evts[2];
|
2007-04-08 14:39:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-08 22:54:46 +00:00
|
|
|
REGPRM2 static int __fd_isset(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
|
|
|
}
|
|
|
|
|
2007-04-08 22:54:46 +00:00
|
|
|
REGPRM2 static int __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 22:54:46 +00:00
|
|
|
return 0;
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
2007-04-08 22:54:46 +00:00
|
|
|
REGPRM2 static int __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 22:54:46 +00:00
|
|
|
return 0;
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
2007-04-08 22:54:46 +00:00
|
|
|
REGPRM2 static int __fd_cond_s(const int fd, int dir)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2007-04-08 15:42:27 +00:00
|
|
|
ret = !FD_ISSET(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
if (ret)
|
2007-04-08 15:42:27 +00:00
|
|
|
FD_SET(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-04-08 22:54:46 +00:00
|
|
|
REGPRM2 static int __fd_cond_c(const int fd, int dir)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2007-04-08 15:42:27 +00:00
|
|
|
ret = FD_ISSET(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
if (ret)
|
2007-04-08 15:42:27 +00:00
|
|
|
FD_CLR(fd, fd_evts[dir]);
|
2007-04-08 14:39:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-04-08 22:54:46 +00:00
|
|
|
REGPRM1 static void __fd_rem(int fd)
|
2007-04-08 14:39:58 +00:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Select() poller
|
|
|
|
*/
|
|
|
|
REGPRM2 static void select_poll(struct poller *p, int wait_time)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
int fd, i;
|
|
|
|
struct timeval delta;
|
|
|
|
int readnotnull, writenotnull;
|
|
|
|
int fds;
|
|
|
|
char count;
|
|
|
|
|
|
|
|
/* allow select to return immediately when needed */
|
|
|
|
delta.tv_sec = delta.tv_usec = 0;
|
|
|
|
if (wait_time > 0) { /* FIXME */
|
|
|
|
/* Convert to timeval */
|
|
|
|
/* to avoid eventual select loops due to timer precision */
|
|
|
|
wait_time += SCHEDULER_RESOLUTION;
|
|
|
|
delta.tv_sec = wait_time / 1000;
|
|
|
|
delta.tv_usec = (wait_time % 1000) * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* let's restore fdset state */
|
|
|
|
|
|
|
|
readnotnull = 0; writenotnull = 0;
|
|
|
|
for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) {
|
2007-04-08 15:42:27 +00:00
|
|
|
readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0;
|
|
|
|
writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0;
|
2007-04-08 14:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// /* just a verification code, needs to be removed for performance */
|
|
|
|
// for (i=0; i<maxfd; i++) {
|
2007-04-08 15:42:27 +00:00
|
|
|
// if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD]))
|
2007-04-08 14:39:58 +00:00
|
|
|
// abort();
|
2007-04-08 15:42:27 +00:00
|
|
|
// if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR]))
|
2007-04-08 14:39:58 +00:00
|
|
|
// abort();
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
|
|
|
|
status = select(maxfd,
|
2007-04-08 15:42:27 +00:00
|
|
|
readnotnull ? tmp_evts[DIR_RD] : NULL,
|
|
|
|
writenotnull ? tmp_evts[DIR_WR] : NULL,
|
2007-04-08 14:39:58 +00:00
|
|
|
NULL,
|
|
|
|
(wait_time >= 0) ? &delta : NULL);
|
|
|
|
|
|
|
|
tv_now(&now);
|
|
|
|
|
|
|
|
if (status <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (fds = 0; (fds << INTBITS) < maxfd; fds++) {
|
2007-04-08 15:42:27 +00:00
|
|
|
if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0)
|
2007-04-08 14:39:58 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (count = 1<<INTBITS, fd = fds << INTBITS; count && fd < maxfd; count--, fd++) {
|
|
|
|
/* if we specify read first, the accepts and zero reads will be
|
|
|
|
* seen first. Moreover, system buffers will be flushed faster.
|
|
|
|
*/
|
2007-04-08 15:42:27 +00:00
|
|
|
if (FD_ISSET(fd, tmp_evts[DIR_RD])) {
|
2007-04-08 14:39:58 +00:00
|
|
|
if (fdtab[fd].state == FD_STCLOSE)
|
|
|
|
continue;
|
|
|
|
fdtab[fd].cb[DIR_RD].f(fd);
|
|
|
|
}
|
|
|
|
|
2007-04-08 15:42:27 +00:00
|
|
|
if (FD_ISSET(fd, tmp_evts[DIR_WR])) {
|
2007-04-08 14:39:58 +00:00
|
|
|
if (fdtab[fd].state == FD_STCLOSE)
|
|
|
|
continue;
|
|
|
|
fdtab[fd].cb[DIR_WR].f(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-09 07:23:31 +00:00
|
|
|
/*
|
|
|
|
* Initialization of the select() 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.
|
|
|
|
*/
|
|
|
|
REGPRM1 static int select_init(struct poller *p)
|
|
|
|
{
|
|
|
|
__label__ fail_swevt, fail_srevt, fail_wevt, fail_revt;
|
|
|
|
int fd_set_bytes;
|
|
|
|
|
|
|
|
p->private = NULL;
|
|
|
|
fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE;
|
|
|
|
|
|
|
|
if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
|
|
|
|
goto fail_revt;
|
|
|
|
|
|
|
|
if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL)
|
|
|
|
goto fail_wevt;
|
|
|
|
|
|
|
|
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(tmp_evts[DIR_WR]);
|
|
|
|
fail_wevt:
|
|
|
|
free(tmp_evts[DIR_RD]);
|
|
|
|
fail_revt:
|
|
|
|
p->pref = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Termination of the select() poller.
|
|
|
|
* Memory is released and the poller is marked as unselectable.
|
|
|
|
*/
|
|
|
|
REGPRM1 static void select_term(struct poller *p)
|
|
|
|
{
|
|
|
|
if (fd_evts[DIR_WR])
|
|
|
|
free(fd_evts[DIR_WR]);
|
|
|
|
if (fd_evts[DIR_RD])
|
|
|
|
free(fd_evts[DIR_RD]);
|
|
|
|
if (tmp_evts[DIR_WR])
|
|
|
|
free(tmp_evts[DIR_WR]);
|
|
|
|
if (tmp_evts[DIR_RD])
|
|
|
|
free(tmp_evts[DIR_RD]);
|
|
|
|
p->private = NULL;
|
|
|
|
p->pref = 0;
|
|
|
|
}
|
|
|
|
|
2007-04-08 14:39:58 +00:00
|
|
|
/*
|
|
|
|
* The only exported function. Returns 1.
|
|
|
|
*/
|
|
|
|
int select_register(struct poller *p)
|
|
|
|
{
|
|
|
|
p->name = "select";
|
|
|
|
p->pref = 150;
|
|
|
|
p->private = NULL;
|
|
|
|
|
|
|
|
p->init = select_init;
|
|
|
|
p->term = select_term;
|
|
|
|
p->poll = select_poll;
|
|
|
|
p->isset = __fd_isset;
|
|
|
|
p->set = __fd_set;
|
|
|
|
p->clr = __fd_clr;
|
|
|
|
p->clo = p->rem = __fd_rem;
|
|
|
|
p->cond_s = __fd_cond_s;
|
|
|
|
p->cond_c = __fd_cond_c;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|