Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 2 | * include/proto/fd.h |
| 3 | * File descriptors states. |
| 4 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_FD_H |
| 23 | #define _PROTO_FD_H |
| 24 | |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | #include <sys/time.h> |
| 27 | #include <sys/types.h> |
| 28 | #include <unistd.h> |
| 29 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 30 | #include <common/config.h> |
Willy Tarreau | f37ba94 | 2018-10-17 11:25:54 +0200 | [diff] [blame] | 31 | #include <common/ticks.h> |
| 32 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <types/fd.h> |
Willy Tarreau | 609aad9 | 2018-11-22 08:31:09 +0100 | [diff] [blame] | 34 | #include <proto/activity.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 35 | |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 36 | /* public variables */ |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 37 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 38 | extern volatile struct fdlist update_list; |
| 39 | |
Olivier Houchard | 5305505 | 2019-07-25 14:00:18 +0000 | [diff] [blame] | 40 | |
| 41 | extern struct polled_mask { |
| 42 | unsigned long poll_recv; |
| 43 | unsigned long poll_send; |
| 44 | } *polled_mask; |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 45 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 46 | extern THREAD_LOCAL int *fd_updt; // FD updates list |
| 47 | extern THREAD_LOCAL int fd_nbupdt; // number of updates in the list |
| 48 | |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 49 | extern int poller_wr_pipe[MAX_THREADS]; |
| 50 | |
Olivier Houchard | 7c49d2e | 2019-04-16 18:37:05 +0200 | [diff] [blame] | 51 | extern volatile int ha_used_fds; // Number of FDs we're currently using |
| 52 | |
Willy Tarreau | 173d995 | 2018-01-26 21:48:23 +0100 | [diff] [blame] | 53 | /* Deletes an FD from the fdsets. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | * The file descriptor is also closed. |
| 55 | */ |
| 56 | void fd_delete(int fd); |
| 57 | |
Willy Tarreau | 173d995 | 2018-01-26 21:48:23 +0100 | [diff] [blame] | 58 | /* Deletes an FD from the fdsets. |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 59 | * The file descriptor is kept open. |
| 60 | */ |
| 61 | void fd_remove(int fd); |
| 62 | |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 63 | ssize_t fd_write_frag_line(int fd, size_t maxlen, const struct ist pfx[], size_t npfx, const struct ist msg[], size_t nmsg, int nl); |
| 64 | |
Willy Tarreau | 2d7f81b | 2019-02-21 22:19:17 +0100 | [diff] [blame] | 65 | /* close all FDs starting from <start> */ |
| 66 | void my_closefrom(int start); |
| 67 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 68 | /* disable the specified poller */ |
| 69 | void disable_poller(const char *poller_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 70 | |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 71 | void poller_pipe_io_handler(int fd); |
| 72 | |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 73 | /* |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 74 | * Initialize the pollers till the best one is found. |
| 75 | * If none works, returns 0, otherwise 1. |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 76 | * The pollers register themselves just before main() is called. |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 77 | */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 78 | int init_pollers(); |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 79 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 80 | /* |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 81 | * Deinitialize the pollers. |
| 82 | */ |
| 83 | void deinit_pollers(); |
| 84 | |
| 85 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 86 | * Some pollers may lose their connection after a fork(). It may be necessary |
| 87 | * to create initialize part of them again. Returns 0 in case of failure, |
| 88 | * otherwise 1. The fork() function may be NULL if unused. In case of error, |
| 89 | * the the current poller is destroyed and the caller is responsible for trying |
| 90 | * another one by calling init_pollers() again. |
| 91 | */ |
| 92 | int fork_poller(); |
| 93 | |
| 94 | /* |
| 95 | * Lists the known pollers on <out>. |
| 96 | * Should be performed only before initialization. |
| 97 | */ |
| 98 | int list_pollers(FILE *out); |
| 99 | |
| 100 | /* |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 101 | * Runs the polling loop |
| 102 | */ |
| 103 | void run_poller(); |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 104 | |
Olivier Houchard | 6a2cf87 | 2018-04-25 15:10:30 +0200 | [diff] [blame] | 105 | void fd_add_to_fd_list(volatile struct fdlist *list, int fd, int off); |
| 106 | void fd_rm_from_fd_list(volatile struct fdlist *list, int fd, int off); |
Willy Tarreau | dbe3060 | 2019-09-04 13:25:41 +0200 | [diff] [blame] | 107 | void updt_fd_polling(const int fd); |
Willy Tarreau | 4d84186 | 2018-01-17 22:57:54 +0100 | [diff] [blame] | 108 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 109 | /* Called from the poller to acknoledge we read an entry from the global |
| 110 | * update list, to remove our bit from the update_mask, and remove it from |
| 111 | * the list if we were the last one. |
| 112 | */ |
| 113 | static inline void done_update_polling(int fd) |
| 114 | { |
| 115 | unsigned long update_mask; |
| 116 | |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 117 | update_mask = _HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 118 | while ((update_mask & all_threads_mask)== 0) { |
| 119 | /* If we were the last one that had to update that entry, remove it from the list */ |
| 120 | fd_rm_from_fd_list(&update_list, fd, offsetof(struct fdtab, update)); |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 121 | update_mask = (volatile unsigned long)fdtab[fd].update_mask; |
| 122 | if ((update_mask & all_threads_mask) != 0) { |
| 123 | /* Maybe it's been re-updated in the meanwhile, and we |
| 124 | * wrongly removed it from the list, if so, re-add it |
| 125 | */ |
| 126 | fd_add_to_fd_list(&update_list, fd, offsetof(struct fdtab, update)); |
| 127 | update_mask = (volatile unsigned long)(fdtab[fd].update_mask); |
| 128 | /* And then check again, just in case after all it |
| 129 | * should be removed, even if it's very unlikely, given |
| 130 | * the current thread wouldn't have been able to take |
| 131 | * care of it yet */ |
| 132 | } else |
| 133 | break; |
Willy Tarreau | 4d84186 | 2018-01-17 22:57:54 +0100 | [diff] [blame] | 134 | |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 135 | } |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 136 | } |
| 137 | |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 138 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 139 | * returns the FD's recv state (FD_EV_*) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 140 | */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 141 | static inline int fd_recv_state(const int fd) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 142 | { |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 143 | return ((unsigned)fdtab[fd].state >> (4 * DIR_RD)) & FD_EV_STATUS; |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 144 | } |
| 145 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 146 | /* |
| 147 | * returns true if the FD is active for recv |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 148 | */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 149 | static inline int fd_recv_active(const int fd) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 150 | { |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 151 | return (unsigned)fdtab[fd].state & FD_EV_ACTIVE_R; |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 154 | /* |
| 155 | * returns true if the FD is ready for recv |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 156 | */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 157 | static inline int fd_recv_ready(const int fd) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 158 | { |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 159 | return (unsigned)fdtab[fd].state & FD_EV_READY_R; |
| 160 | } |
| 161 | |
| 162 | /* |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 163 | * returns the FD's send state (FD_EV_*) |
| 164 | */ |
| 165 | static inline int fd_send_state(const int fd) |
| 166 | { |
| 167 | return ((unsigned)fdtab[fd].state >> (4 * DIR_WR)) & FD_EV_STATUS; |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * returns true if the FD is active for send |
| 172 | */ |
| 173 | static inline int fd_send_active(const int fd) |
| 174 | { |
| 175 | return (unsigned)fdtab[fd].state & FD_EV_ACTIVE_W; |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 176 | } |
| 177 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 178 | /* |
| 179 | * returns true if the FD is ready for send |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 180 | */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 181 | static inline int fd_send_ready(const int fd) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 182 | { |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 183 | return (unsigned)fdtab[fd].state & FD_EV_READY_W; |
| 184 | } |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 185 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 186 | /* |
Christopher Faulet | 8db2fdf | 2017-08-30 09:59:38 +0200 | [diff] [blame] | 187 | * returns true if the FD is active for recv or send |
| 188 | */ |
| 189 | static inline int fd_active(const int fd) |
| 190 | { |
| 191 | return (unsigned)fdtab[fd].state & FD_EV_ACTIVE_RW; |
| 192 | } |
| 193 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 194 | /* Disable processing recv events on fd <fd> */ |
| 195 | static inline void fd_stop_recv(int fd) |
| 196 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 197 | if (!(fdtab[fd].state & FD_EV_ACTIVE_R) || |
| 198 | !HA_ATOMIC_BTR(&fdtab[fd].state, FD_EV_ACTIVE_R_BIT)) |
| 199 | return; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 200 | updt_fd_polling(fd); |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 201 | } |
| 202 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 203 | /* Disable processing send events on fd <fd> */ |
| 204 | static inline void fd_stop_send(int fd) |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 205 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 206 | if (!(fdtab[fd].state & FD_EV_ACTIVE_W) || |
| 207 | !HA_ATOMIC_BTR(&fdtab[fd].state, FD_EV_ACTIVE_W_BIT)) |
| 208 | return; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 209 | updt_fd_polling(fd); |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 212 | /* Disable processing of events on fd <fd> for both directions. */ |
| 213 | static inline void fd_stop_both(int fd) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 214 | { |
Willy Tarreau | 7ac0e35 | 2018-01-17 21:25:57 +0100 | [diff] [blame] | 215 | unsigned char old, new; |
| 216 | |
| 217 | old = fdtab[fd].state; |
| 218 | do { |
| 219 | if (!(old & FD_EV_ACTIVE_RW)) |
| 220 | return; |
| 221 | new = old & ~FD_EV_ACTIVE_RW; |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 222 | } while (unlikely(!_HA_ATOMIC_CAS(&fdtab[fd].state, &old, new))); |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 223 | updt_fd_polling(fd); |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 224 | } |
| 225 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 226 | /* Report that FD <fd> cannot receive anymore without polling (EAGAIN detected). */ |
| 227 | static inline void fd_cant_recv(const int fd) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 228 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 229 | /* marking ready never changes polled status */ |
| 230 | if (!(fdtab[fd].state & FD_EV_READY_R) || |
| 231 | !HA_ATOMIC_BTR(&fdtab[fd].state, FD_EV_READY_R_BIT)) |
| 232 | return; |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 233 | } |
| 234 | |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 235 | /* Report that FD <fd> may receive again without polling. */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 236 | static inline void fd_may_recv(const int fd) |
Willy Tarreau | babd05a | 2012-08-09 12:14:03 +0200 | [diff] [blame] | 237 | { |
Willy Tarreau | 7ac0e35 | 2018-01-17 21:25:57 +0100 | [diff] [blame] | 238 | /* marking ready never changes polled status */ |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 239 | if ((fdtab[fd].state & FD_EV_READY_R) || |
| 240 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_READY_R_BIT)) |
| 241 | return; |
Willy Tarreau | babd05a | 2012-08-09 12:14:03 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Willy Tarreau | 8f2825f | 2019-09-05 16:39:21 +0200 | [diff] [blame] | 244 | /* Report that FD <fd> may receive again without polling but only if its not |
| 245 | * active yet. This is in order to speculatively try to enable I/Os when it's |
| 246 | * highly likely that these will succeed, but without interfering with polling. |
| 247 | */ |
| 248 | static inline void fd_cond_recv(const int fd) |
| 249 | { |
| 250 | if ((fdtab[fd].state & (FD_EV_ACTIVE_R|FD_EV_READY_R)) == 0) |
| 251 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_READY_R_BIT); |
| 252 | } |
| 253 | |
| 254 | /* Report that FD <fd> may send again without polling but only if its not |
| 255 | * active yet. This is in order to speculatively try to enable I/Os when it's |
| 256 | * highly likely that these will succeed, but without interfering with polling. |
| 257 | */ |
| 258 | static inline void fd_cond_send(const int fd) |
| 259 | { |
| 260 | if ((fdtab[fd].state & (FD_EV_ACTIVE_W|FD_EV_READY_W)) == 0) |
| 261 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_READY_W_BIT); |
| 262 | } |
| 263 | |
Willy Tarreau | 4ac9d06 | 2019-09-05 16:30:39 +0200 | [diff] [blame] | 264 | /* Report that FD <fd> may receive and send without polling. Used at FD |
| 265 | * initialization. |
| 266 | */ |
| 267 | static inline void fd_may_both(const int fd) |
| 268 | { |
| 269 | HA_ATOMIC_OR(&fdtab[fd].state, FD_EV_READY_RW); |
| 270 | } |
| 271 | |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 272 | /* Disable readiness when active. This is useful to interrupt reading when it |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 273 | * is suspected that the end of data might have been reached (eg: short read). |
| 274 | * This can only be done using level-triggered pollers, so if any edge-triggered |
| 275 | * is ever implemented, a test will have to be added here. |
| 276 | */ |
| 277 | static inline void fd_done_recv(const int fd) |
| 278 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 279 | /* removing ready never changes polled status */ |
| 280 | if ((fdtab[fd].state & (FD_EV_ACTIVE_R|FD_EV_READY_R)) != (FD_EV_ACTIVE_R|FD_EV_READY_R) || |
| 281 | !HA_ATOMIC_BTR(&fdtab[fd].state, FD_EV_READY_R_BIT)) |
| 282 | return; |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 283 | } |
| 284 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 285 | /* Report that FD <fd> cannot send anymore without polling (EAGAIN detected). */ |
| 286 | static inline void fd_cant_send(const int fd) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 287 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 288 | /* removing ready never changes polled status */ |
| 289 | if (!(fdtab[fd].state & FD_EV_READY_W) || |
| 290 | !HA_ATOMIC_BTR(&fdtab[fd].state, FD_EV_READY_W_BIT)) |
| 291 | return; |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 292 | } |
| 293 | |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 294 | /* Report that FD <fd> may send again without polling (EAGAIN not detected). */ |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 295 | static inline void fd_may_send(const int fd) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 296 | { |
Willy Tarreau | 7ac0e35 | 2018-01-17 21:25:57 +0100 | [diff] [blame] | 297 | /* marking ready never changes polled status */ |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 298 | if ((fdtab[fd].state & FD_EV_READY_W) || |
| 299 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_READY_W_BIT)) |
| 300 | return; |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 301 | } |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 302 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 303 | /* Prepare FD <fd> to try to receive */ |
| 304 | static inline void fd_want_recv(int fd) |
Willy Tarreau | babd05a | 2012-08-09 12:14:03 +0200 | [diff] [blame] | 305 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 306 | if ((fdtab[fd].state & FD_EV_ACTIVE_R) || |
| 307 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_ACTIVE_R_BIT)) |
| 308 | return; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 309 | updt_fd_polling(fd); |
Willy Tarreau | babd05a | 2012-08-09 12:14:03 +0200 | [diff] [blame] | 310 | } |
| 311 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 312 | /* Prepare FD <fd> to try to send */ |
| 313 | static inline void fd_want_send(int fd) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 314 | { |
Willy Tarreau | f8ecc7f | 2019-09-04 13:22:50 +0200 | [diff] [blame] | 315 | if ((fdtab[fd].state & FD_EV_ACTIVE_W) || |
| 316 | HA_ATOMIC_BTS(&fdtab[fd].state, FD_EV_ACTIVE_W_BIT)) |
| 317 | return; |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 318 | updt_fd_polling(fd); |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 319 | } |
Willy Tarreau | 2a42950 | 2006-10-15 14:52:29 +0200 | [diff] [blame] | 320 | |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 321 | /* Update events seen for FD <fd> and its state if needed. This should be |
| 322 | * called by the poller, passing FD_EV_*_{R,W,RW} in <evts>. FD_EV_ERR_* |
| 323 | * doesn't need to also pass FD_EV_SHUT_*, it's implied. ERR and SHUT are |
| 324 | * allowed to be reported regardless of R/W readiness. |
| 325 | */ |
| 326 | static inline void fd_update_events(int fd, unsigned char evts) |
Christopher Faulet | 21e9267 | 2017-08-30 10:30:04 +0200 | [diff] [blame] | 327 | { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 328 | unsigned long locked = atleast2(fdtab[fd].thread_mask); |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 329 | unsigned char old, new; |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 330 | int new_flags; |
| 331 | |
| 332 | new_flags = |
| 333 | ((evts & FD_EV_READY_R) ? FD_POLL_IN : 0) | |
| 334 | ((evts & FD_EV_READY_W) ? FD_POLL_OUT : 0) | |
| 335 | ((evts & FD_EV_SHUT_R) ? FD_POLL_HUP : 0) | |
| 336 | ((evts & FD_EV_SHUT_W) ? FD_POLL_ERR : 0) | |
| 337 | ((evts & FD_EV_ERR_R) ? FD_POLL_ERR : 0) | |
| 338 | ((evts & FD_EV_ERR_W) ? FD_POLL_ERR : 0); |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 339 | |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 340 | old = fdtab[fd].ev; |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 341 | new = (old & FD_POLL_STICKY) | new_flags; |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 342 | |
| 343 | if (unlikely(locked)) { |
| 344 | /* Locked FDs (those with more than 2 threads) are atomically updated */ |
| 345 | while (unlikely(new != old && !_HA_ATOMIC_CAS(&fdtab[fd].ev, &old, new))) |
Willy Tarreau | 6b30898 | 2019-09-06 19:05:50 +0200 | [diff] [blame] | 346 | new = (old & FD_POLL_STICKY) | new_flags; |
Willy Tarreau | 1dad384 | 2019-07-08 23:09:03 +0200 | [diff] [blame] | 347 | } else { |
| 348 | if (new != old) |
| 349 | fdtab[fd].ev = new; |
| 350 | } |
Christopher Faulet | 21e9267 | 2017-08-30 10:30:04 +0200 | [diff] [blame] | 351 | |
| 352 | if (fdtab[fd].ev & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR)) |
| 353 | fd_may_recv(fd); |
| 354 | |
| 355 | if (fdtab[fd].ev & (FD_POLL_OUT | FD_POLL_ERR)) |
| 356 | fd_may_send(fd); |
Olivier Houchard | 305d5ab | 2019-07-24 18:07:06 +0200 | [diff] [blame] | 357 | |
| 358 | if (fdtab[fd].iocb) |
| 359 | fdtab[fd].iocb(fd); |
Willy Tarreau | f5cab82 | 2019-08-16 16:06:14 +0200 | [diff] [blame] | 360 | |
| 361 | ti->flags &= ~TI_FL_STUCK; // this thread is still running |
Christopher Faulet | 21e9267 | 2017-08-30 10:30:04 +0200 | [diff] [blame] | 362 | } |
| 363 | |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 364 | /* Prepares <fd> for being polled */ |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 365 | static inline void fd_insert(int fd, void *owner, void (*iocb)(int fd), unsigned long thread_mask) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 366 | { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 367 | unsigned long locked = atleast2(thread_mask); |
| 368 | |
| 369 | if (locked) |
Willy Tarreau | 87d54a9 | 2018-10-15 09:44:46 +0200 | [diff] [blame] | 370 | HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock); |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 371 | fdtab[fd].owner = owner; |
| 372 | fdtab[fd].iocb = iocb; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 373 | fdtab[fd].ev = 0; |
Willy Tarreau | ad38ace | 2013-12-15 14:19:38 +0100 | [diff] [blame] | 374 | fdtab[fd].linger_risk = 0; |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 375 | fdtab[fd].cloned = 0; |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 376 | fdtab[fd].thread_mask = thread_mask; |
Willy Tarreau | c9c8378 | 2018-01-17 18:44:46 +0100 | [diff] [blame] | 377 | /* note: do not reset polled_mask here as it indicates which poller |
| 378 | * still knows this FD from a possible previous round. |
| 379 | */ |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 380 | if (locked) |
Willy Tarreau | 87d54a9 | 2018-10-15 09:44:46 +0200 | [diff] [blame] | 381 | HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock); |
Willy Tarreau | 4ac9d06 | 2019-09-05 16:30:39 +0200 | [diff] [blame] | 382 | /* the two directions are ready until proven otherwise */ |
| 383 | fd_may_both(fd); |
Olivier Houchard | 7c49d2e | 2019-04-16 18:37:05 +0200 | [diff] [blame] | 384 | _HA_ATOMIC_ADD(&ha_used_fds, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 385 | } |
| 386 | |
Willy Tarreau | f37ba94 | 2018-10-17 11:25:54 +0200 | [diff] [blame] | 387 | /* Computes the bounded poll() timeout based on the next expiration timer <next> |
| 388 | * by bounding it to MAX_DELAY_MS. <next> may equal TICK_ETERNITY. The pollers |
| 389 | * just needs to call this function right before polling to get their timeout |
| 390 | * value. Timeouts that are already expired (possibly due to a pending event) |
| 391 | * are accounted for in activity.poll_exp. |
| 392 | */ |
| 393 | static inline int compute_poll_timeout(int next) |
| 394 | { |
| 395 | int wait_time; |
| 396 | |
| 397 | if (!tick_isset(next)) |
| 398 | wait_time = MAX_DELAY_MS; |
| 399 | else if (tick_is_expired(next, now_ms)) { |
| 400 | activity[tid].poll_exp++; |
| 401 | wait_time = 0; |
| 402 | } |
| 403 | else { |
| 404 | wait_time = TICKS_TO_MS(tick_remain(now_ms, next)) + 1; |
| 405 | if (wait_time > MAX_DELAY_MS) |
| 406 | wait_time = MAX_DELAY_MS; |
| 407 | } |
| 408 | return wait_time; |
| 409 | } |
| 410 | |
Willy Tarreau | 322e6c7 | 2018-01-25 16:37:04 +0100 | [diff] [blame] | 411 | /* These are replacements for FD_SET, FD_CLR, FD_ISSET, working on uints */ |
| 412 | static inline void hap_fd_set(int fd, unsigned int *evts) |
| 413 | { |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 414 | _HA_ATOMIC_OR(&evts[fd / (8*sizeof(*evts))], 1U << (fd & (8*sizeof(*evts) - 1))); |
Willy Tarreau | 322e6c7 | 2018-01-25 16:37:04 +0100 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | static inline void hap_fd_clr(int fd, unsigned int *evts) |
| 418 | { |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 419 | _HA_ATOMIC_AND(&evts[fd / (8*sizeof(*evts))], ~(1U << (fd & (8*sizeof(*evts) - 1)))); |
Willy Tarreau | 322e6c7 | 2018-01-25 16:37:04 +0100 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | static inline unsigned int hap_fd_isset(int fd, unsigned int *evts) |
| 423 | { |
| 424 | return evts[fd / (8*sizeof(*evts))] & (1U << (fd & (8*sizeof(*evts) - 1))); |
| 425 | } |
| 426 | |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 427 | static inline void wake_thread(int tid) |
| 428 | { |
| 429 | char c = 'c'; |
| 430 | |
| 431 | shut_your_big_mouth_gcc(write(poller_wr_pipe[tid], &c, 1)); |
| 432 | } |
| 433 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 434 | |
| 435 | #endif /* _PROTO_FD_H */ |
| 436 | |
| 437 | /* |
| 438 | * Local variables: |
| 439 | * c-indent-level: 8 |
| 440 | * c-basic-offset: 8 |
| 441 | * End: |
| 442 | */ |