Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * FD polling functions for generic select() |
| 3 | * |
| 4 | * Copyright 2000-2007 Willy Tarreau <w@1wt.eu> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <unistd.h> |
| 14 | #include <sys/time.h> |
| 15 | #include <sys/types.h> |
| 16 | |
| 17 | #include <common/compat.h> |
| 18 | #include <common/config.h> |
| 19 | #include <common/time.h> |
| 20 | |
| 21 | #include <types/fd.h> |
| 22 | #include <types/global.h> |
| 23 | |
| 24 | #include <proto/fd.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 25 | #include <proto/task.h> |
| 26 | |
| 27 | |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 28 | static fd_set *fd_evts[2]; |
| 29 | static fd_set *tmp_evts[2]; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 30 | |
| 31 | |
| 32 | /* |
| 33 | * Benchmarks performed on a Pentium-M notebook show that using functions |
| 34 | * instead of the usual macros improve the FD_* performance by about 80%, |
| 35 | * and that marking them regparm(2) adds another 20%. |
| 36 | */ |
Willy Tarreau | 63455a9 | 2007-04-09 15:34:49 +0200 | [diff] [blame] | 37 | REGPRM2 static int __fd_is_set(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 38 | { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 39 | return FD_ISSET(fd, fd_evts[dir]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 40 | } |
| 41 | |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 42 | REGPRM2 static int __fd_set(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 43 | { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 44 | FD_SET(fd, fd_evts[dir]); |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 45 | return 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 46 | } |
| 47 | |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 48 | REGPRM2 static int __fd_clr(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 49 | { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 50 | FD_CLR(fd, fd_evts[dir]); |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 51 | return 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 52 | } |
| 53 | |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 54 | REGPRM2 static int __fd_cond_s(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 55 | { |
| 56 | int ret; |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 57 | ret = !FD_ISSET(fd, fd_evts[dir]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 58 | if (ret) |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 59 | FD_SET(fd, fd_evts[dir]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 60 | return ret; |
| 61 | } |
| 62 | |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 63 | REGPRM2 static int __fd_cond_c(const int fd, int dir) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 64 | { |
| 65 | int ret; |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 66 | ret = FD_ISSET(fd, fd_evts[dir]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 67 | if (ret) |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 68 | FD_CLR(fd, fd_evts[dir]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 69 | return ret; |
| 70 | } |
| 71 | |
Willy Tarreau | 97129b5 | 2007-04-09 00:54:46 +0200 | [diff] [blame] | 72 | REGPRM1 static void __fd_rem(int fd) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 73 | { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 74 | FD_CLR(fd, fd_evts[DIR_RD]); |
| 75 | FD_CLR(fd, fd_evts[DIR_WR]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 76 | } |
| 77 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 78 | /* |
| 79 | * Select() poller |
| 80 | */ |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 81 | REGPRM2 static void _do_poll(struct poller *p, struct timeval *exp) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 82 | { |
| 83 | int status; |
| 84 | int fd, i; |
| 85 | struct timeval delta; |
| 86 | int readnotnull, writenotnull; |
| 87 | int fds; |
| 88 | char count; |
| 89 | |
| 90 | /* allow select to return immediately when needed */ |
| 91 | delta.tv_sec = delta.tv_usec = 0; |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 92 | if (tv_isset(exp)) { |
Willy Tarreau | d9b7441 | 2007-05-14 03:16:06 +0200 | [diff] [blame] | 93 | if (tv_islt(&now, exp)) { |
| 94 | tv_remain(&now, exp, &delta); |
| 95 | /* To avoid eventual select loops due to timer precision */ |
| 96 | delta.tv_usec += SCHEDULER_RESOLUTION * 1000; |
| 97 | if (delta.tv_usec >= 1000000) { |
| 98 | delta.tv_usec -= 1000000; |
| 99 | delta.tv_sec ++; |
| 100 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 101 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* let's restore fdset state */ |
| 105 | |
| 106 | readnotnull = 0; writenotnull = 0; |
| 107 | for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 108 | readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0; |
| 109 | writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | // /* just a verification code, needs to be removed for performance */ |
| 113 | // for (i=0; i<maxfd; i++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 114 | // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD])) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 115 | // abort(); |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 116 | // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR])) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 117 | // abort(); |
| 118 | // |
| 119 | // } |
| 120 | |
| 121 | status = select(maxfd, |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 122 | readnotnull ? tmp_evts[DIR_RD] : NULL, |
| 123 | writenotnull ? tmp_evts[DIR_WR] : NULL, |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 124 | NULL, |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 125 | tv_isset(exp) ? &delta : NULL); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 126 | |
| 127 | tv_now(&now); |
| 128 | |
| 129 | if (status <= 0) |
| 130 | return; |
| 131 | |
| 132 | for (fds = 0; (fds << INTBITS) < maxfd; fds++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 133 | if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 134 | continue; |
| 135 | |
| 136 | for (count = 1<<INTBITS, fd = fds << INTBITS; count && fd < maxfd; count--, fd++) { |
| 137 | /* if we specify read first, the accepts and zero reads will be |
| 138 | * seen first. Moreover, system buffers will be flushed faster. |
| 139 | */ |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 140 | if (FD_ISSET(fd, tmp_evts[DIR_RD])) { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 141 | if (fdtab[fd].state == FD_STCLOSE) |
| 142 | continue; |
| 143 | fdtab[fd].cb[DIR_RD].f(fd); |
| 144 | } |
| 145 | |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 146 | if (FD_ISSET(fd, tmp_evts[DIR_WR])) { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 147 | if (fdtab[fd].state == FD_STCLOSE) |
| 148 | continue; |
| 149 | fdtab[fd].cb[DIR_WR].f(fd); |
| 150 | } |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | /* |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 156 | * Initialization of the select() poller. |
| 157 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 158 | * disables the poller by setting its pref to 0. |
| 159 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 160 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 161 | { |
| 162 | __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt; |
| 163 | int fd_set_bytes; |
| 164 | |
| 165 | p->private = NULL; |
| 166 | fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE; |
| 167 | |
| 168 | if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 169 | goto fail_revt; |
| 170 | |
| 171 | if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 172 | goto fail_wevt; |
| 173 | |
| 174 | if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 175 | goto fail_srevt; |
| 176 | |
| 177 | if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 178 | goto fail_swevt; |
| 179 | |
| 180 | return 1; |
| 181 | |
| 182 | fail_swevt: |
| 183 | free(fd_evts[DIR_RD]); |
| 184 | fail_srevt: |
| 185 | free(tmp_evts[DIR_WR]); |
| 186 | fail_wevt: |
| 187 | free(tmp_evts[DIR_RD]); |
| 188 | fail_revt: |
| 189 | p->pref = 0; |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | /* |
| 194 | * Termination of the select() poller. |
| 195 | * Memory is released and the poller is marked as unselectable. |
| 196 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 197 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 198 | { |
| 199 | if (fd_evts[DIR_WR]) |
| 200 | free(fd_evts[DIR_WR]); |
| 201 | if (fd_evts[DIR_RD]) |
| 202 | free(fd_evts[DIR_RD]); |
| 203 | if (tmp_evts[DIR_WR]) |
| 204 | free(tmp_evts[DIR_WR]); |
| 205 | if (tmp_evts[DIR_RD]) |
| 206 | free(tmp_evts[DIR_RD]); |
| 207 | p->private = NULL; |
| 208 | p->pref = 0; |
| 209 | } |
| 210 | |
| 211 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 212 | * Check that the poller works. |
| 213 | * Returns 1 if OK, otherwise 0. |
| 214 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 215 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 216 | { |
| 217 | return 1; |
| 218 | } |
| 219 | |
| 220 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 221 | * It is a constructor, which means that it will automatically be called before |
| 222 | * main(). This is GCC-specific but it works at least since 2.95. |
| 223 | * Special care must be taken so that it does not need any uninitialized data. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 224 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 225 | __attribute__((constructor)) |
| 226 | static void _do_register(void) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 227 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 228 | struct poller *p; |
| 229 | |
| 230 | if (nbpollers >= MAX_POLLERS) |
| 231 | return; |
| 232 | p = &pollers[nbpollers++]; |
| 233 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 234 | p->name = "select"; |
| 235 | p->pref = 150; |
| 236 | p->private = NULL; |
| 237 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 238 | p->test = _do_test; |
| 239 | p->init = _do_init; |
| 240 | p->term = _do_term; |
| 241 | p->poll = _do_poll; |
Willy Tarreau | 63455a9 | 2007-04-09 15:34:49 +0200 | [diff] [blame] | 242 | p->is_set = __fd_is_set; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 243 | p->set = __fd_set; |
| 244 | p->clr = __fd_clr; |
| 245 | p->clo = p->rem = __fd_rem; |
| 246 | p->cond_s = __fd_cond_s; |
| 247 | p->cond_c = __fd_cond_c; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | |
| 251 | /* |
| 252 | * Local variables: |
| 253 | * c-indent-level: 8 |
| 254 | * c-basic-offset: 8 |
| 255 | * End: |
| 256 | */ |