Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * File descriptors management functions. |
| 3 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 4 | * Copyright 2000-2014 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 | * |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 11 | * There is no direct link between the FD and the updates list. There is only a |
| 12 | * bit in the fdtab[] to indicate than a file descriptor is already present in |
| 13 | * the updates list. Once an fd is present in the updates list, it will have to |
| 14 | * be considered even if its changes are reverted in the middle or if the fd is |
| 15 | * replaced. |
| 16 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 17 | * The event state for an FD, as found in fdtab[].state, is maintained for each |
| 18 | * direction. The state field is built this way, with R bits in the low nibble |
| 19 | * and W bits in the high nibble for ease of access and debugging : |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 20 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 21 | * 7 6 5 4 3 2 1 0 |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 22 | * [ 0 | 0 | RW | AW | 0 | 0 | RR | AR ] |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 23 | * |
| 24 | * A* = active *R = read |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 25 | * R* = ready *W = write |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 26 | * |
| 27 | * An FD is marked "active" when there is a desire to use it. |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 28 | * An FD is marked "ready" when it has not faced a new EAGAIN since last wake-up |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 29 | * (it is a cache of the last EAGAIN regardless of polling changes). Each poller |
| 30 | * has its own "polled" state for the same fd, as stored in the polled_mask. |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 31 | * |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 32 | * We have 4 possible states for each direction based on these 2 flags : |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 33 | * |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 34 | * +---+---+----------+---------------------------------------------+ |
| 35 | * | R | A | State | Description | |
| 36 | * +---+---+----------+---------------------------------------------+ |
| 37 | * | 0 | 0 | DISABLED | No activity desired, not ready. | |
| 38 | * | 0 | 1 | ACTIVE | Activity desired. | |
| 39 | * | 1 | 0 | STOPPED | End of activity. | |
| 40 | * | 1 | 1 | READY | Activity desired and reported. | |
| 41 | * +---+---+----------+---------------------------------------------+ |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 42 | * |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 43 | * The transitions are pretty simple : |
| 44 | * - fd_want_*() : set flag A |
| 45 | * - fd_stop_*() : clear flag A |
| 46 | * - fd_cant_*() : clear flag R (when facing EAGAIN) |
| 47 | * - fd_may_*() : set flag R (upon return from poll()) |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 48 | * |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 49 | * Each poller then computes its own polled state : |
| 50 | * if (A) { if (!R) P := 1 } else { P := 0 } |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 51 | * |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 52 | * The state transitions look like the diagram below. |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 53 | * |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 54 | * may +----------+ |
| 55 | * ,----| DISABLED | (READY=0, ACTIVE=0) |
| 56 | * | +----------+ |
| 57 | * | want | ^ |
| 58 | * | | | |
| 59 | * | v | stop |
| 60 | * | +----------+ |
| 61 | * | | ACTIVE | (READY=0, ACTIVE=1) |
| 62 | * | +----------+ |
| 63 | * | | ^ |
| 64 | * | may | | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 65 | * | v | EAGAIN (can't) |
Willy Tarreau | 5bee3e2 | 2019-09-04 09:52:57 +0200 | [diff] [blame] | 66 | * | +--------+ |
| 67 | * | | READY | (READY=1, ACTIVE=1) |
| 68 | * | +--------+ |
| 69 | * | stop | ^ |
| 70 | * | | | |
| 71 | * | v | want |
| 72 | * | +---------+ |
| 73 | * `--->| STOPPED | (READY=1, ACTIVE=0) |
| 74 | * +---------+ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 75 | */ |
| 76 | |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 77 | #include <stdio.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 78 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 79 | #include <unistd.h> |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 80 | #include <fcntl.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 81 | #include <sys/types.h> |
Willy Tarreau | 2d7f81b | 2019-02-21 22:19:17 +0100 | [diff] [blame] | 82 | #include <sys/resource.h> |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 83 | #include <sys/uio.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 84 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 85 | #if defined(USE_POLL) |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 86 | #include <poll.h> |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 87 | #endif |
Willy Tarreau | 25a7e16 | 2024-05-27 18:56:12 +0200 | [diff] [blame] | 88 | #include <errno.h> |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 89 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 90 | #include <haproxy/api.h> |
Willy Tarreau | 5d9ddc5 | 2021-10-06 19:54:09 +0200 | [diff] [blame] | 91 | #include <haproxy/activity.h> |
Willy Tarreau | bc52bec | 2020-06-18 08:58:47 +0200 | [diff] [blame] | 92 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 0f6ffd6 | 2020-06-03 19:33:00 +0200 | [diff] [blame] | 93 | #include <haproxy/fd.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 94 | #include <haproxy/global.h> |
Willy Tarreau | c28aab0 | 2021-05-08 20:35:03 +0200 | [diff] [blame] | 95 | #include <haproxy/log.h> |
Willy Tarreau | fc8f6a8 | 2020-06-03 19:20:59 +0200 | [diff] [blame] | 96 | #include <haproxy/port_range.h> |
Willy Tarreau | b63888c | 2021-10-06 19:55:29 +0200 | [diff] [blame] | 97 | #include <haproxy/ticks.h> |
Willy Tarreau | bc52bec | 2020-06-18 08:58:47 +0200 | [diff] [blame] | 98 | #include <haproxy/tools.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 99 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 100 | |
Willy Tarreau | a1090a5 | 2021-04-10 16:58:13 +0200 | [diff] [blame] | 101 | struct fdtab *fdtab __read_mostly = NULL; /* array of all the file descriptors */ |
| 102 | struct polled_mask *polled_mask __read_mostly = NULL; /* Array for the polled_mask of each fd */ |
| 103 | struct fdinfo *fdinfo __read_mostly = NULL; /* less-often used infos for file descriptors */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 104 | int totalconn; /* total # of terminated sessions */ |
| 105 | int actconn; /* # of active sessions */ |
| 106 | |
Willy Tarreau | a1090a5 | 2021-04-10 16:58:13 +0200 | [diff] [blame] | 107 | struct poller pollers[MAX_POLLERS] __read_mostly; |
| 108 | struct poller cur_poller __read_mostly; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 109 | int nbpollers = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 110 | |
Willy Tarreau | 35ee710 | 2022-07-08 11:33:43 +0200 | [diff] [blame] | 111 | volatile struct fdlist update_list[MAX_TGROUPS]; // Global update list |
Olivier Houchard | 4815c8c | 2018-01-24 18:17:56 +0100 | [diff] [blame] | 112 | |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 113 | THREAD_LOCAL int *fd_updt = NULL; // FD updates list |
| 114 | THREAD_LOCAL int fd_nbupdt = 0; // number of updates in the list |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 115 | THREAD_LOCAL int poller_rd_pipe = -1; // Pipe to wake the thread |
Willy Tarreau | a1090a5 | 2021-04-10 16:58:13 +0200 | [diff] [blame] | 116 | int poller_wr_pipe[MAX_THREADS] __read_mostly; // Pipe to wake the threads |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 117 | |
Olivier Houchard | 7c49d2e | 2019-04-16 18:37:05 +0200 | [diff] [blame] | 118 | volatile int ha_used_fds = 0; // Number of FD we're currently using |
Willy Tarreau | 97ea9c4 | 2022-01-27 16:10:48 +0100 | [diff] [blame] | 119 | static struct fdtab *fdtab_addr; /* address of the allocated area containing fdtab */ |
Olivier Houchard | 7c49d2e | 2019-04-16 18:37:05 +0200 | [diff] [blame] | 120 | |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 121 | /* adds fd <fd> to fd list <list> if it was not yet in it */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 122 | void fd_add_to_fd_list(volatile struct fdlist *list, int fd) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 123 | { |
| 124 | int next; |
| 125 | int new; |
| 126 | int old; |
| 127 | int last; |
| 128 | |
| 129 | redo_next: |
Aurelien DARRAGON | e51891a | 2023-02-27 14:48:46 +0100 | [diff] [blame] | 130 | next = HA_ATOMIC_LOAD(&fdtab[fd].update.next); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 131 | /* Check that we're not already in the cache, and if not, lock us. */ |
Olivier Houchard | fc51f0f5 | 2019-12-19 18:33:08 +0100 | [diff] [blame] | 132 | if (next > -2) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 133 | goto done; |
Olivier Houchard | fc51f0f5 | 2019-12-19 18:33:08 +0100 | [diff] [blame] | 134 | if (next == -2) |
| 135 | goto redo_next; |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 136 | if (!_HA_ATOMIC_CAS(&fdtab[fd].update.next, &next, -2)) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 137 | goto redo_next; |
Olivier Houchard | d2b5d16 | 2019-03-08 13:47:21 +0100 | [diff] [blame] | 138 | __ha_barrier_atomic_store(); |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 139 | |
| 140 | new = fd; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 141 | redo_last: |
| 142 | /* First, insert in the linked list */ |
| 143 | last = list->last; |
| 144 | old = -1; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 145 | |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 146 | fdtab[fd].update.prev = -2; |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 147 | /* Make sure the "prev" store is visible before we update the last entry */ |
| 148 | __ha_barrier_store(); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 149 | |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 150 | if (unlikely(last == -1)) { |
| 151 | /* list is empty, try to add ourselves alone so that list->last=fd */ |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 152 | if (unlikely(!_HA_ATOMIC_CAS(&list->last, &old, new))) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 153 | goto redo_last; |
| 154 | |
| 155 | /* list->first was necessary -1, we're guaranteed to be alone here */ |
| 156 | list->first = fd; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 157 | } else { |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 158 | /* adding ourselves past the last element |
| 159 | * The CAS will only succeed if its next is -1, |
| 160 | * which means it's in the cache, and the last element. |
| 161 | */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 162 | if (unlikely(!_HA_ATOMIC_CAS(&fdtab[last].update.next, &old, new))) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 163 | goto redo_last; |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 164 | |
| 165 | /* Then, update the last entry */ |
| 166 | list->last = fd; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 167 | } |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 168 | __ha_barrier_store(); |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 169 | /* since we're alone at the end of the list and still locked(-2), |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 170 | * we know no one tried to add past us. Mark the end of list. |
Willy Tarreau | 11559a7 | 2018-02-05 17:52:24 +0100 | [diff] [blame] | 171 | */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 172 | fdtab[fd].update.prev = last; |
| 173 | fdtab[fd].update.next = -1; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 174 | __ha_barrier_store(); |
| 175 | done: |
| 176 | return; |
| 177 | } |
| 178 | |
| 179 | /* removes fd <fd> from fd list <list> */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 180 | void fd_rm_from_fd_list(volatile struct fdlist *list, int fd) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 181 | { |
| 182 | #if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B) |
Willy Tarreau | 2b9f066 | 2020-02-25 09:25:53 +0100 | [diff] [blame] | 183 | volatile union { |
| 184 | struct fdlist_entry ent; |
| 185 | uint64_t u64; |
| 186 | uint32_t u32[2]; |
| 187 | } cur_list, next_list; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 188 | #endif |
| 189 | int old; |
| 190 | int new = -2; |
| 191 | int prev; |
| 192 | int next; |
| 193 | int last; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 194 | lock_self: |
| 195 | #if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW)) |
Willy Tarreau | 2b9f066 | 2020-02-25 09:25:53 +0100 | [diff] [blame] | 196 | next_list.ent.next = next_list.ent.prev = -2; |
Aurelien DARRAGON | e51891a | 2023-02-27 14:48:46 +0100 | [diff] [blame] | 197 | cur_list.ent = *(volatile typeof(fdtab->update)*)&fdtab[fd].update; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 198 | /* First, attempt to lock our own entries */ |
| 199 | do { |
| 200 | /* The FD is not in the FD cache, give up */ |
Willy Tarreau | 2b9f066 | 2020-02-25 09:25:53 +0100 | [diff] [blame] | 201 | if (unlikely(cur_list.ent.next <= -3)) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 202 | return; |
Willy Tarreau | 2b9f066 | 2020-02-25 09:25:53 +0100 | [diff] [blame] | 203 | if (unlikely(cur_list.ent.prev == -2 || cur_list.ent.next == -2)) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 204 | goto lock_self; |
| 205 | } while ( |
| 206 | #ifdef HA_CAS_IS_8B |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 207 | unlikely(!_HA_ATOMIC_CAS(((uint64_t *)&fdtab[fd].update), (uint64_t *)&cur_list.u64, next_list.u64)) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 208 | #else |
Willy Tarreau | 85af760 | 2022-09-17 11:15:29 +0200 | [diff] [blame] | 209 | unlikely(!_HA_ATOMIC_DWCAS(((long *)&fdtab[fd].update), (uint32_t *)&cur_list.u32, (const uint32_t *)&next_list.u32)) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 210 | #endif |
Willy Tarreau | 2b9f066 | 2020-02-25 09:25:53 +0100 | [diff] [blame] | 211 | ); |
| 212 | next = cur_list.ent.next; |
| 213 | prev = cur_list.ent.prev; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 214 | |
| 215 | #else |
| 216 | lock_self_next: |
Aurelien DARRAGON | e51891a | 2023-02-27 14:48:46 +0100 | [diff] [blame] | 217 | next = HA_ATOMIC_LOAD(&fdtab[fd].update.next); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 218 | if (next == -2) |
| 219 | goto lock_self_next; |
| 220 | if (next <= -3) |
| 221 | goto done; |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 222 | if (unlikely(!_HA_ATOMIC_CAS(&fdtab[fd].update.next, &next, -2))) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 223 | goto lock_self_next; |
| 224 | lock_self_prev: |
Aurelien DARRAGON | e51891a | 2023-02-27 14:48:46 +0100 | [diff] [blame] | 225 | prev = HA_ATOMIC_LOAD(&fdtab[fd].update.prev); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 226 | if (prev == -2) |
| 227 | goto lock_self_prev; |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 228 | if (unlikely(!_HA_ATOMIC_CAS(&fdtab[fd].update.prev, &prev, -2))) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 229 | goto lock_self_prev; |
| 230 | #endif |
Olivier Houchard | d2b5d16 | 2019-03-08 13:47:21 +0100 | [diff] [blame] | 231 | __ha_barrier_atomic_store(); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 232 | |
| 233 | /* Now, lock the entries of our neighbours */ |
| 234 | if (likely(prev != -1)) { |
| 235 | redo_prev: |
| 236 | old = fd; |
| 237 | |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 238 | if (unlikely(!_HA_ATOMIC_CAS(&fdtab[prev].update.next, &old, new))) { |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 239 | if (unlikely(old == -2)) { |
| 240 | /* Neighbour already locked, give up and |
| 241 | * retry again once he's done |
| 242 | */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 243 | fdtab[fd].update.prev = prev; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 244 | __ha_barrier_store(); |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 245 | fdtab[fd].update.next = next; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 246 | __ha_barrier_store(); |
| 247 | goto lock_self; |
| 248 | } |
| 249 | goto redo_prev; |
| 250 | } |
| 251 | } |
| 252 | if (likely(next != -1)) { |
| 253 | redo_next: |
| 254 | old = fd; |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 255 | if (unlikely(!_HA_ATOMIC_CAS(&fdtab[next].update.prev, &old, new))) { |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 256 | if (unlikely(old == -2)) { |
| 257 | /* Neighbour already locked, give up and |
| 258 | * retry again once he's done |
| 259 | */ |
| 260 | if (prev != -1) { |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 261 | fdtab[prev].update.next = fd; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 262 | __ha_barrier_store(); |
| 263 | } |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 264 | fdtab[fd].update.prev = prev; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 265 | __ha_barrier_store(); |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 266 | fdtab[fd].update.next = next; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 267 | __ha_barrier_store(); |
| 268 | goto lock_self; |
| 269 | } |
| 270 | goto redo_next; |
| 271 | } |
| 272 | } |
| 273 | if (list->first == fd) |
| 274 | list->first = next; |
| 275 | __ha_barrier_store(); |
| 276 | last = list->last; |
Olivier Houchard | d360879 | 2019-03-08 18:47:42 +0100 | [diff] [blame] | 277 | while (unlikely(last == fd && (!_HA_ATOMIC_CAS(&list->last, &last, prev)))) |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 278 | __ha_compiler_barrier(); |
| 279 | /* Make sure we let other threads know we're no longer in cache, |
| 280 | * before releasing our neighbours. |
| 281 | */ |
| 282 | __ha_barrier_store(); |
| 283 | if (likely(prev != -1)) |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 284 | fdtab[prev].update.next = next; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 285 | __ha_barrier_store(); |
| 286 | if (likely(next != -1)) |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 287 | fdtab[next].update.prev = prev; |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 288 | __ha_barrier_store(); |
| 289 | /* Ok, now we're out of the fd cache */ |
Willy Tarreau | 4d9888c | 2022-07-06 14:43:51 +0200 | [diff] [blame] | 290 | fdtab[fd].update.next = -(next + 4); |
Willy Tarreau | 4cc67a2 | 2018-02-05 17:14:55 +0100 | [diff] [blame] | 291 | __ha_barrier_store(); |
| 292 | done: |
| 293 | return; |
| 294 | } |
| 295 | |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 296 | /* deletes the FD once nobody uses it anymore, as detected by the caller by its |
| 297 | * thread_mask being zero and its running mask turning to zero. There is no |
| 298 | * protection against concurrent accesses, it's up to the caller to make sure |
Willy Tarreau | c0f6f57 | 2023-02-27 18:35:39 +0100 | [diff] [blame] | 299 | * only the last thread will call it. If called under isolation, it is safe to |
| 300 | * call this from another group than the FD's. This is only for internal use, |
| 301 | * please use fd_delete() instead. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 302 | */ |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 303 | void _fd_delete_orphan(int fd) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 304 | { |
Willy Tarreau | c0f6f57 | 2023-02-27 18:35:39 +0100 | [diff] [blame] | 305 | int tgrp = fd_tgid(fd); |
Emeric Brun | f41a3f6 | 2022-07-01 17:31:25 +0200 | [diff] [blame] | 306 | uint fd_disown; |
| 307 | |
| 308 | fd_disown = fdtab[fd].state & FD_DISOWN; |
Willy Tarreau | b41a6e9 | 2021-04-06 17:49:19 +0200 | [diff] [blame] | 309 | if (fdtab[fd].state & FD_LINGER_RISK) { |
Willy Tarreau | ad38ace | 2013-12-15 14:19:38 +0100 | [diff] [blame] | 310 | /* this is generally set when connecting to servers */ |
Ilya Shipitsin | b7e43f0 | 2020-04-02 15:02:08 +0500 | [diff] [blame] | 311 | DISGUISE(setsockopt(fd, SOL_SOCKET, SO_LINGER, |
| 312 | (struct linger *) &nolinger, sizeof(struct linger))); |
Willy Tarreau | ad38ace | 2013-12-15 14:19:38 +0100 | [diff] [blame] | 313 | } |
Willy Tarreau | 2f36d90 | 2022-07-06 16:23:41 +0200 | [diff] [blame] | 314 | |
| 315 | /* It's expected that a close() will result in the FD disappearing from |
| 316 | * pollers, but some pollers may have some internal bookkeeping to be |
| 317 | * done prior to the call (e.g. remove references from internal tables). |
| 318 | */ |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 319 | if (cur_poller.clo) |
| 320 | cur_poller.clo(fd); |
Willy Tarreau | 2d42329 | 2021-03-24 15:34:25 +0100 | [diff] [blame] | 321 | |
Willy Tarreau | 237e6a0 | 2023-03-04 15:33:24 +0100 | [diff] [blame] | 322 | /* now we're about to reset some of this FD's fields. We don't want |
| 323 | * anyone to grab it anymore and we need to make sure those which could |
| 324 | * possibly have stumbled upon it right now are leaving before we |
| 325 | * proceed. This is done in two steps. First we reset the tgid so that |
| 326 | * fd_take_tgid() and fd_grab_tgid() fail, then we wait for existing |
| 327 | * ref counts to drop. Past this point we're alone dealing with the |
| 328 | * FD's thead/running/update/polled masks. |
| 329 | */ |
| 330 | fd_reset_tgid(fd); |
| 331 | |
| 332 | while (_HA_ATOMIC_LOAD(&fdtab[fd].refc_tgid) != 0) // refc==0 ? |
| 333 | __ha_cpu_relax(); |
| 334 | |
Willy Tarreau | 2f36d90 | 2022-07-06 16:23:41 +0200 | [diff] [blame] | 335 | /* we don't want this FD anymore in the global list */ |
Willy Tarreau | c0f6f57 | 2023-02-27 18:35:39 +0100 | [diff] [blame] | 336 | fd_rm_from_fd_list(&update_list[tgrp - 1], fd); |
Willy Tarreau | 2f36d90 | 2022-07-06 16:23:41 +0200 | [diff] [blame] | 337 | |
| 338 | /* no more updates on this FD are relevant anymore */ |
| 339 | HA_ATOMIC_STORE(&fdtab[fd].update_mask, 0); |
Willy Tarreau | 8e2c0fa | 2022-07-06 16:20:11 +0200 | [diff] [blame] | 340 | if (fd_nbupdt > 0 && fd_updt[fd_nbupdt - 1] == fd) |
| 341 | fd_nbupdt--; |
Willy Tarreau | 2f36d90 | 2022-07-06 16:23:41 +0200 | [diff] [blame] | 342 | |
Willy Tarreau | 2d42329 | 2021-03-24 15:34:25 +0100 | [diff] [blame] | 343 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
Olivier Houchard | c22580c | 2019-08-05 18:51:52 +0200 | [diff] [blame] | 344 | polled_mask[fd].poll_recv = polled_mask[fd].poll_send = 0; |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 345 | |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 346 | fdtab[fd].state = 0; |
Willy Tarreau | 6ea20b1 | 2012-11-11 16:05:19 +0100 | [diff] [blame] | 347 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 348 | #ifdef DEBUG_FD |
| 349 | fdtab[fd].event_count = 0; |
| 350 | #endif |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 351 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | db3b326 | 2012-07-05 23:19:22 +0200 | [diff] [blame] | 352 | fdtab[fd].owner = NULL; |
Willy Tarreau | 2f36d90 | 2022-07-06 16:23:41 +0200 | [diff] [blame] | 353 | |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 354 | /* perform the close() call last as it's what unlocks the instant reuse |
| 355 | * of this FD by any other thread. |
| 356 | */ |
Emeric Brun | f41a3f6 | 2022-07-01 17:31:25 +0200 | [diff] [blame] | 357 | if (!fd_disown) |
| 358 | close(fd); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 359 | _HA_ATOMIC_DEC(&ha_used_fds); |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | /* Deletes an FD from the fdsets. The file descriptor is also closed, possibly |
Willy Tarreau | 061754b | 2023-02-27 18:43:38 +0100 | [diff] [blame] | 363 | * asynchronously. It is safe to call it from another thread from the same |
| 364 | * group as the FD's or from a thread from a different group. However if called |
| 365 | * from a thread from another group, there is an extra cost involved because |
| 366 | * the operation is performed under thread isolation, so doing so must be |
| 367 | * reserved for ultra-rare cases (e.g. stopping a listener). |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 368 | */ |
| 369 | void fd_delete(int fd) |
| 370 | { |
Willy Tarreau | 9aa324d | 2022-01-31 20:05:02 +0100 | [diff] [blame] | 371 | /* This must never happen and would definitely indicate a bug, in |
| 372 | * addition to overwriting some unexpected memory areas. |
| 373 | */ |
| 374 | BUG_ON(fd < 0 || fd >= global.maxsock); |
| 375 | |
Willy Tarreau | 9baff4f | 2022-07-15 18:56:48 +0200 | [diff] [blame] | 376 | /* NOTE: The master when going into reexec mode re-closes all FDs after |
| 377 | * they were already dispatched. But we know we didn't start the polling |
| 378 | * threads so we can still close them. The masks will probably not match |
| 379 | * however so we force the value and erase the refcount if any. |
| 380 | */ |
| 381 | if (unlikely(global.mode & MODE_STARTING)) |
| 382 | fdtab[fd].refc_tgid = ti->tgid; |
| 383 | |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 384 | /* the tgid cannot change before a complete close so we should never |
| 385 | * face the situation where we try to close an fd that was reassigned. |
Willy Tarreau | 061754b | 2023-02-27 18:43:38 +0100 | [diff] [blame] | 386 | * However there is one corner case where this happens, it's when an |
| 387 | * attempt to pause a listener fails (e.g. abns), leaving the listener |
| 388 | * in fault state and it is forcefully stopped. This needs to be done |
| 389 | * under isolation, and it's quite rare (i.e. once per such FD per |
| 390 | * process). Since we'll be isolated we can clear the thread mask and |
| 391 | * close the FD ourselves. |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 392 | */ |
Willy Tarreau | 061754b | 2023-02-27 18:43:38 +0100 | [diff] [blame] | 393 | if (unlikely(fd_tgid(fd) != ti->tgid)) { |
| 394 | int must_isolate = !thread_isolated() && !(global.mode & MODE_STOPPING); |
| 395 | |
| 396 | if (must_isolate) |
| 397 | thread_isolate(); |
| 398 | |
| 399 | HA_ATOMIC_STORE(&fdtab[fd].thread_mask, 0); |
| 400 | HA_ATOMIC_STORE(&fdtab[fd].running_mask, 0); |
| 401 | _fd_delete_orphan(fd); |
| 402 | |
| 403 | if (must_isolate) |
| 404 | thread_release(); |
| 405 | return; |
| 406 | } |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 407 | |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 408 | /* we must postpone removal of an FD that may currently be in use |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 409 | * by another thread. This can happen in the following two situations: |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 410 | * - after a takeover, the owning thread closes the connection but |
| 411 | * the previous one just woke up from the poller and entered |
| 412 | * the FD handler iocb. That thread holds an entry in running_mask |
| 413 | * and requires removal protection. |
| 414 | * - multiple threads are accepting connections on a listener, and |
| 415 | * one of them (or even an separate one) decides to unbind the |
| 416 | * listener under the listener's lock while other ones still hold |
| 417 | * the running bit. |
| 418 | * In both situations the FD is marked as unused (thread_mask = 0) and |
| 419 | * will not take new bits in its running_mask so we have the guarantee |
| 420 | * that the last thread eliminating running_mask is the one allowed to |
| 421 | * safely delete the FD. Most of the time it will be the current thread. |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 422 | * We still need to set and check the one-shot flag FD_MUST_CLOSE |
| 423 | * to take care of the rare cases where a thread wakes up on late I/O |
| 424 | * before the thread_mask is zero, and sets its bit in the running_mask |
| 425 | * just after the current thread finishes clearing its own bit, hence |
| 426 | * the two threads see themselves as last ones (which they really are). |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 427 | */ |
| 428 | |
Willy Tarreau | a707d02 | 2022-07-07 08:16:08 +0200 | [diff] [blame] | 429 | HA_ATOMIC_OR(&fdtab[fd].running_mask, ti->ltid_bit); |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 430 | HA_ATOMIC_OR(&fdtab[fd].state, FD_MUST_CLOSE); |
Willy Tarreau | 2c3f981 | 2021-03-24 10:51:32 +0100 | [diff] [blame] | 431 | HA_ATOMIC_STORE(&fdtab[fd].thread_mask, 0); |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 432 | if (fd_clr_running(fd) == ti->ltid_bit) { |
| 433 | if (HA_ATOMIC_BTR(&fdtab[fd].state, FD_MUST_CLOSE_BIT)) { |
| 434 | _fd_delete_orphan(fd); |
| 435 | } |
| 436 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 437 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 438 | |
Willy Tarreau | 9743589 | 2022-04-27 10:50:00 +0200 | [diff] [blame] | 439 | /* makes the new fd non-blocking and clears all other O_* flags; this is meant |
| 440 | * to be used on new FDs. Returns -1 on failure. The result is disguised at the |
| 441 | * end because some callers need to be able to ignore it regardless of the libc |
| 442 | * attributes. |
Willy Tarreau | a80e4a3 | 2022-04-26 10:18:07 +0200 | [diff] [blame] | 443 | */ |
| 444 | int fd_set_nonblock(int fd) |
| 445 | { |
| 446 | int ret = fcntl(fd, F_SETFL, O_NONBLOCK); |
| 447 | |
Willy Tarreau | 9743589 | 2022-04-27 10:50:00 +0200 | [diff] [blame] | 448 | return DISGUISE(ret); |
Willy Tarreau | a80e4a3 | 2022-04-26 10:18:07 +0200 | [diff] [blame] | 449 | } |
| 450 | |
Willy Tarreau | 9743589 | 2022-04-27 10:50:00 +0200 | [diff] [blame] | 451 | /* sets the close-on-exec flag on fd; returns -1 on failure. The result is |
| 452 | * disguised at the end because some callers need to be able to ignore it |
| 453 | * regardless of the libc attributes. |
| 454 | */ |
Willy Tarreau | a80e4a3 | 2022-04-26 10:18:07 +0200 | [diff] [blame] | 455 | int fd_set_cloexec(int fd) |
| 456 | { |
| 457 | int flags, ret; |
| 458 | |
| 459 | flags = fcntl(fd, F_GETFD); |
| 460 | flags |= FD_CLOEXEC; |
| 461 | ret = fcntl(fd, F_SETFD, flags); |
Willy Tarreau | 9743589 | 2022-04-27 10:50:00 +0200 | [diff] [blame] | 462 | return DISGUISE(ret); |
Willy Tarreau | a80e4a3 | 2022-04-26 10:18:07 +0200 | [diff] [blame] | 463 | } |
| 464 | |
Amaury Denoyelle | 53fc98c | 2023-04-03 15:27:13 +0200 | [diff] [blame] | 465 | /* Migrate a FD to a new thread <new_tid>. It is explicitly permitted to |
| 466 | * migrate to another thread group, the function takes the necessary locking |
| 467 | * for this. It is even permitted to migrate from a foreign group to another, |
| 468 | * but the calling thread must be certain that the FD is not about to close |
| 469 | * when doing so, reason why it is highly recommended that only one of the |
| 470 | * FD's owners performs this operation. The polling is completely disabled. |
| 471 | * The operation never fails. |
| 472 | */ |
| 473 | void fd_migrate_on(int fd, uint new_tid) |
| 474 | { |
| 475 | struct thread_info *new_ti = &ha_thread_info[new_tid]; |
| 476 | |
| 477 | /* we must be alone to work on this idle FD. If not, it means that its |
| 478 | * poller is currently waking up and is about to use it, likely to |
| 479 | * close it on shut/error, but maybe also to process any unexpectedly |
| 480 | * pending data. It's also possible that the FD was closed and |
| 481 | * reassigned to another thread group, so let's be careful. |
| 482 | */ |
| 483 | fd_lock_tgid(fd, new_ti->tgid); |
| 484 | |
| 485 | /* now we have exclusive access to it. From now FD belongs to tid_bit |
| 486 | * for this tgid. |
| 487 | */ |
| 488 | HA_ATOMIC_STORE(&fdtab[fd].thread_mask, new_ti->ltid_bit); |
| 489 | |
| 490 | /* Make sure the FD doesn't have the active bit. It is possible that |
| 491 | * the fd is polled by the thread that used to own it, the new thread |
| 492 | * is supposed to call subscribe() later, to activate polling. |
| 493 | */ |
| 494 | fd_stop_both(fd); |
| 495 | |
| 496 | /* we're done with it. As soon as we unlock it, other threads from the |
| 497 | * target group can manipulate it. However it may only disappear once |
| 498 | * we drop the reference. |
| 499 | */ |
| 500 | fd_unlock_tgid(fd); |
| 501 | fd_drop_tgid(fd); |
| 502 | } |
| 503 | |
Olivier Houchard | 8851664 | 2020-03-05 18:10:51 +0100 | [diff] [blame] | 504 | /* |
| 505 | * Take over a FD belonging to another thread. |
| 506 | * unexpected_conn is the expected owner of the fd. |
| 507 | * Returns 0 on success, and -1 on failure. |
| 508 | */ |
| 509 | int fd_takeover(int fd, void *expected_owner) |
| 510 | { |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 511 | unsigned long old; |
Willy Tarreau | 4297363 | 2020-06-18 08:05:15 +0200 | [diff] [blame] | 512 | |
Olivier Houchard | 8851664 | 2020-03-05 18:10:51 +0100 | [diff] [blame] | 513 | /* protect ourself against a delete then an insert for the same fd, |
| 514 | * if it happens, then the owner will no longer be the expected |
| 515 | * connection. |
| 516 | */ |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 517 | if (fdtab[fd].owner != expected_owner) |
| 518 | return -1; |
Willy Tarreau | f1cad38 | 2020-06-18 08:14:59 +0200 | [diff] [blame] | 519 | |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 520 | /* we must be alone to work on this idle FD. If not, it means that its |
| 521 | * poller is currently waking up and is about to use it, likely to |
| 522 | * close it on shut/error, but maybe also to process any unexpectedly |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 523 | * pending data. It's also possible that the FD was closed and |
| 524 | * reassigned to another thread group, so let's be careful. |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 525 | */ |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 526 | if (unlikely(!fd_grab_tgid(fd, ti->tgid))) |
| 527 | return -1; |
| 528 | |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 529 | old = 0; |
Willy Tarreau | a707d02 | 2022-07-07 08:16:08 +0200 | [diff] [blame] | 530 | if (!HA_ATOMIC_CAS(&fdtab[fd].running_mask, &old, ti->ltid_bit)) { |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 531 | fd_drop_tgid(fd); |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 532 | return -1; |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 533 | } |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 534 | |
| 535 | /* success, from now on it's ours */ |
Willy Tarreau | 3638d17 | 2022-07-07 08:23:03 +0200 | [diff] [blame] | 536 | HA_ATOMIC_STORE(&fdtab[fd].thread_mask, ti->ltid_bit); |
Willy Tarreau | f1cad38 | 2020-06-18 08:14:59 +0200 | [diff] [blame] | 537 | |
Olivier Houchard | ddc874c | 2020-06-17 20:34:05 +0200 | [diff] [blame] | 538 | /* Make sure the FD doesn't have the active bit. It is possible that |
| 539 | * the fd is polled by the thread that used to own it, the new thread |
| 540 | * is supposed to call subscribe() later, to activate polling. |
| 541 | */ |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 542 | fd_stop_recv(fd); |
| 543 | |
| 544 | /* we're done with it */ |
Willy Tarreau | a707d02 | 2022-07-07 08:16:08 +0200 | [diff] [blame] | 545 | HA_ATOMIC_AND(&fdtab[fd].running_mask, ~ti->ltid_bit); |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 546 | |
| 547 | /* no more changes planned */ |
| 548 | fd_drop_tgid(fd); |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 549 | return 0; |
Olivier Houchard | 8851664 | 2020-03-05 18:10:51 +0100 | [diff] [blame] | 550 | } |
| 551 | |
Willy Tarreau | dbe3060 | 2019-09-04 13:25:41 +0200 | [diff] [blame] | 552 | void updt_fd_polling(const int fd) |
| 553 | { |
Willy Tarreau | cfdd20a | 2022-07-15 20:12:31 +0200 | [diff] [blame] | 554 | uint tgrp = fd_take_tgid(fd); |
| 555 | |
| 556 | /* closed ? may happen */ |
| 557 | if (!tgrp) |
| 558 | return; |
| 559 | |
| 560 | if (unlikely(tgrp != tgid && tgrp <= MAX_TGROUPS)) { |
| 561 | /* Hmmm delivered an update for another group... That may |
| 562 | * happen on suspend/resume of a listener for example when |
| 563 | * the FD was not even marked for running. Let's broadcast |
| 564 | * the update. |
| 565 | */ |
| 566 | unsigned long update_mask = fdtab[fd].update_mask; |
| 567 | int thr; |
| 568 | |
Willy Tarreau | b2f38c1 | 2023-01-19 19:14:18 +0100 | [diff] [blame] | 569 | while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask, |
| 570 | _HA_ATOMIC_LOAD(&ha_tgroup_info[tgrp - 1].threads_enabled))) |
Willy Tarreau | cfdd20a | 2022-07-15 20:12:31 +0200 | [diff] [blame] | 571 | __ha_cpu_relax(); |
| 572 | |
| 573 | fd_add_to_fd_list(&update_list[tgrp - 1], fd); |
| 574 | |
Willy Tarreau | ad90110 | 2023-01-19 17:10:10 +0100 | [diff] [blame] | 575 | thr = one_among_mask(fdtab[fd].thread_mask & ha_tgroup_info[tgrp - 1].threads_enabled, |
| 576 | statistical_prng_range(ha_tgroup_info[tgrp - 1].count)); |
Willy Tarreau | cfdd20a | 2022-07-15 20:12:31 +0200 | [diff] [blame] | 577 | thr += ha_tgroup_info[tgrp - 1].base; |
| 578 | wake_thread(thr); |
| 579 | |
| 580 | fd_drop_tgid(fd); |
| 581 | return; |
| 582 | } |
| 583 | |
| 584 | fd_drop_tgid(fd); |
| 585 | |
Willy Tarreau | 3638d17 | 2022-07-07 08:23:03 +0200 | [diff] [blame] | 586 | if (tg->threads_enabled == 1UL || (fdtab[fd].thread_mask & tg->threads_enabled) == ti->ltid_bit) { |
Willy Tarreau | 6d3c501 | 2022-07-05 19:21:06 +0200 | [diff] [blame] | 587 | if (HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid)) |
Willy Tarreau | dbe3060 | 2019-09-04 13:25:41 +0200 | [diff] [blame] | 588 | return; |
| 589 | |
| 590 | fd_updt[fd_nbupdt++] = fd; |
| 591 | } else { |
| 592 | unsigned long update_mask = fdtab[fd].update_mask; |
| 593 | do { |
Willy Tarreau | 6d3c501 | 2022-07-05 19:21:06 +0200 | [diff] [blame] | 594 | if (update_mask == fdtab[fd].thread_mask) // FIXME: this works only on thread-groups 1 |
Willy Tarreau | dbe3060 | 2019-09-04 13:25:41 +0200 | [diff] [blame] | 595 | return; |
Willy Tarreau | f015887 | 2020-09-25 12:18:53 +0200 | [diff] [blame] | 596 | } while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask, fdtab[fd].thread_mask)); |
| 597 | |
Willy Tarreau | 35ee710 | 2022-07-08 11:33:43 +0200 | [diff] [blame] | 598 | fd_add_to_fd_list(&update_list[tgid - 1], fd); |
Willy Tarreau | f015887 | 2020-09-25 12:18:53 +0200 | [diff] [blame] | 599 | |
Willy Tarreau | 3638d17 | 2022-07-07 08:23:03 +0200 | [diff] [blame] | 600 | if (fd_active(fd) && !(fdtab[fd].thread_mask & ti->ltid_bit)) { |
Willy Tarreau | 555c192 | 2022-06-23 18:31:08 +0200 | [diff] [blame] | 601 | /* we need to wake up another thread to handle it immediately, any will fit, |
| 602 | * so let's pick a random one so that it doesn't always end up on the same. |
| 603 | */ |
Willy Tarreau | 3638d17 | 2022-07-07 08:23:03 +0200 | [diff] [blame] | 604 | int thr = one_among_mask(fdtab[fd].thread_mask & tg->threads_enabled, |
Willy Tarreau | ad90110 | 2023-01-19 17:10:10 +0100 | [diff] [blame] | 605 | statistical_prng_range(tg->count)); |
| 606 | thr += tg->base; |
Willy Tarreau | f015887 | 2020-09-25 12:18:53 +0200 | [diff] [blame] | 607 | wake_thread(thr); |
| 608 | } |
Willy Tarreau | dbe3060 | 2019-09-04 13:25:41 +0200 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 612 | /* Update events seen for FD <fd> and its state if needed. This should be |
| 613 | * called by the poller, passing FD_EV_*_{R,W,RW} in <evts>. FD_EV_ERR_* |
| 614 | * doesn't need to also pass FD_EV_SHUT_*, it's implied. ERR and SHUT are |
Willy Tarreau | 200bd50 | 2021-07-29 16:57:19 +0200 | [diff] [blame] | 615 | * allowed to be reported regardless of R/W readiness. Returns one of |
| 616 | * FD_UPDT_*. |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 617 | */ |
Willy Tarreau | 200bd50 | 2021-07-29 16:57:19 +0200 | [diff] [blame] | 618 | int fd_update_events(int fd, uint evts) |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 619 | { |
| 620 | unsigned long locked; |
| 621 | uint old, new; |
| 622 | uint new_flags, must_stop; |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 623 | ulong rmask, tmask; |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 624 | |
Willy Tarreau | bdcd325 | 2022-06-22 09:19:46 +0200 | [diff] [blame] | 625 | _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 626 | |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 627 | if (unlikely(!fd_grab_tgid(fd, ti->tgid))) { |
| 628 | /* the FD changed to another tgid, we can't safely |
| 629 | * check it anymore. The bits in the masks are not |
| 630 | * ours anymore and we're not allowed to touch them. |
| 631 | * Ours have already been cleared and the FD was |
| 632 | * closed in between so we can safely leave now. |
| 633 | */ |
| 634 | activity[tid].poll_drop_fd++; |
| 635 | return FD_UPDT_CLOSED; |
| 636 | } |
| 637 | |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 638 | /* Do not take running_mask if not strictly needed (will trigger a |
| 639 | * cosmetic BUG_ON() in fd_insert() anyway if done). |
| 640 | */ |
| 641 | tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask); |
| 642 | if (!(tmask & ti->ltid_bit)) |
| 643 | goto do_update; |
| 644 | |
| 645 | HA_ATOMIC_OR(&fdtab[fd].running_mask, ti->ltid_bit); |
| 646 | |
| 647 | /* From this point, our bit may possibly be in thread_mask, but it may |
| 648 | * still vanish, either because a takeover completed just before taking |
| 649 | * the bit above with the new owner deleting the FD, or because a |
| 650 | * takeover started just before taking the bit. In order to make sure a |
| 651 | * started takeover is complete, we need to verify that all bits of |
| 652 | * running_mask are present in thread_mask, since takeover first takes |
| 653 | * running then atomically replaces thread_mask. Once it's stable, if |
| 654 | * our bit remains there, no further takeover may happen because we |
| 655 | * hold running, but if our bit is not there it means we've lost the |
| 656 | * takeover race and have to decline touching the FD. Regarding the |
| 657 | * risk of deletion, our bit in running_mask prevents fd_delete() from |
| 658 | * finalizing the close, and the caller will leave the FD with a zero |
| 659 | * thread_mask and the FD_MUST_CLOSE flag set. It will then be our |
| 660 | * responsibility to close it. |
| 661 | */ |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 662 | do { |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 663 | rmask = _HA_ATOMIC_LOAD(&fdtab[fd].running_mask); |
| 664 | tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask); |
| 665 | rmask &= ~ti->ltid_bit; |
Olivier Houchard | f98a8c3 | 2023-04-13 16:12:38 +0200 | [diff] [blame] | 666 | } while ((rmask & ~tmask) && (tmask & ti->ltid_bit)); |
Willy Tarreau | f69fea6 | 2021-08-03 09:04:32 +0200 | [diff] [blame] | 667 | |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 668 | /* Now tmask is stable. Do nothing if the FD was taken over under us */ |
Willy Tarreau | b1093c6 | 2022-07-09 18:55:37 +0200 | [diff] [blame] | 669 | |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 670 | if (!(tmask & ti->ltid_bit)) { |
| 671 | /* a takeover has started */ |
| 672 | activity[tid].poll_skip_fd++; |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 673 | |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 674 | if (fd_clr_running(fd) == ti->ltid_bit) |
| 675 | goto closed_or_migrated; |
| 676 | |
| 677 | goto do_update; |
| 678 | } |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 679 | |
Willy Tarreau | 0dc1cc9 | 2022-07-06 18:47:38 +0200 | [diff] [blame] | 680 | /* with running we're safe now, we can drop the reference */ |
| 681 | fd_drop_tgid(fd); |
| 682 | |
Willy Tarreau | 3638d17 | 2022-07-07 08:23:03 +0200 | [diff] [blame] | 683 | locked = (tmask != ti->ltid_bit); |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 684 | |
| 685 | /* OK now we are guaranteed that our thread_mask was present and |
| 686 | * that we're allowed to update the FD. |
| 687 | */ |
| 688 | |
| 689 | new_flags = |
| 690 | ((evts & FD_EV_READY_R) ? FD_POLL_IN : 0) | |
| 691 | ((evts & FD_EV_READY_W) ? FD_POLL_OUT : 0) | |
| 692 | ((evts & FD_EV_SHUT_R) ? FD_POLL_HUP : 0) | |
| 693 | ((evts & FD_EV_ERR_RW) ? FD_POLL_ERR : 0); |
| 694 | |
| 695 | /* SHUTW reported while FD was active for writes is an error */ |
| 696 | if ((fdtab[fd].state & FD_EV_ACTIVE_W) && (evts & FD_EV_SHUT_W)) |
| 697 | new_flags |= FD_POLL_ERR; |
| 698 | |
| 699 | /* compute the inactive events reported late that must be stopped */ |
| 700 | must_stop = 0; |
| 701 | if (unlikely(!fd_active(fd))) { |
| 702 | /* both sides stopped */ |
| 703 | must_stop = FD_POLL_IN | FD_POLL_OUT; |
| 704 | } |
| 705 | else if (unlikely(!fd_recv_active(fd) && (evts & (FD_EV_READY_R | FD_EV_SHUT_R | FD_EV_ERR_RW)))) { |
| 706 | /* only send remains */ |
| 707 | must_stop = FD_POLL_IN; |
| 708 | } |
| 709 | else if (unlikely(!fd_send_active(fd) && (evts & (FD_EV_READY_W | FD_EV_SHUT_W | FD_EV_ERR_RW)))) { |
| 710 | /* only recv remains */ |
| 711 | must_stop = FD_POLL_OUT; |
| 712 | } |
| 713 | |
| 714 | if (new_flags & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR)) |
| 715 | new_flags |= FD_EV_READY_R; |
| 716 | |
| 717 | if (new_flags & (FD_POLL_OUT | FD_POLL_ERR)) |
| 718 | new_flags |= FD_EV_READY_W; |
| 719 | |
| 720 | old = fdtab[fd].state; |
| 721 | new = (old & ~FD_POLL_UPDT_MASK) | new_flags; |
| 722 | |
| 723 | if (unlikely(locked)) { |
| 724 | /* Locked FDs (those with more than 2 threads) are atomically updated */ |
| 725 | while (unlikely(new != old && !_HA_ATOMIC_CAS(&fdtab[fd].state, &old, new))) |
| 726 | new = (old & ~FD_POLL_UPDT_MASK) | new_flags; |
| 727 | } else { |
| 728 | if (new != old) |
| 729 | fdtab[fd].state = new; |
| 730 | } |
| 731 | |
| 732 | if (fdtab[fd].iocb && fd_active(fd)) { |
| 733 | fdtab[fd].iocb(fd); |
| 734 | } |
| 735 | |
Willy Tarreau | 0b51eab | 2022-07-08 15:36:14 +0200 | [diff] [blame] | 736 | /* |
| 737 | * We entered iocb with running set and with the valid tgid. |
| 738 | * Since then, this is what could have happened: |
| 739 | * - another thread tried to close the FD (e.g. timeout task from |
| 740 | * another one that owns it). We still have running set, but not |
| 741 | * tmask. We must call fd_clr_running() then _fd_delete_orphan() |
| 742 | * if we were the last one. |
| 743 | * |
| 744 | * - the iocb tried to close the FD => bit no more present in running, |
| 745 | * nothing to do. If it managed to close it, the poller's ->clo() |
| 746 | * has already been called. |
| 747 | * |
| 748 | * - after we closed, the FD was reassigned to another thread in |
| 749 | * another group => running not present, tgid differs, nothing to |
| 750 | * do because if it got reassigned it indicates it was already |
| 751 | * closed. |
| 752 | * |
| 753 | * There's no risk of takeover of the valid FD here during this period. |
| 754 | * Also if we still have running, immediately after we release it, the |
| 755 | * events above might instantly happen due to another thread taking |
| 756 | * over. |
| 757 | * |
| 758 | * As such, the only cases where the FD is still relevant are: |
| 759 | * - tgid still set and running still set (most common) |
| 760 | * - tgid still valid but running cleared due to fd_delete(): we may |
| 761 | * still need to stop polling otherwise we may keep it enabled |
| 762 | * while waiting for other threads to close it. |
| 763 | * And given that we may need to program a tentative update in case we |
| 764 | * don't immediately close, it's easier to grab the tgid during the |
| 765 | * whole check. |
| 766 | */ |
| 767 | |
| 768 | if (!fd_grab_tgid(fd, tgid)) |
| 769 | return FD_UPDT_CLOSED; |
| 770 | |
| 771 | tmask = _HA_ATOMIC_LOAD(&fdtab[fd].thread_mask); |
| 772 | |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 773 | /* another thread might have attempted to close this FD in the mean |
| 774 | * time (e.g. timeout task) striking on a previous thread and closing. |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 775 | * This is detected by us being the last owners of a running_mask bit, |
| 776 | * and the thread_mask being zero. At the moment we release the running |
| 777 | * bit, a takeover may also happen, so in practice we check for our loss |
| 778 | * of the thread_mask bitboth thread_mask and running_mask being 0 after |
Willy Tarreau | 0b51eab | 2022-07-08 15:36:14 +0200 | [diff] [blame] | 779 | * we remove ourselves last. There is no risk the FD gets reassigned |
| 780 | * to a different group since it's not released until the real close() |
| 781 | * in _fd_delete_orphan(). |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 782 | */ |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 783 | if (fd_clr_running(fd) == ti->ltid_bit && !(tmask & ti->ltid_bit)) |
| 784 | goto closed_or_migrated; |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 785 | |
| 786 | /* we had to stop this FD and it still must be stopped after the I/O |
| 787 | * cb's changes, so let's program an update for this. |
| 788 | */ |
Willy Tarreau | 6d3c501 | 2022-07-05 19:21:06 +0200 | [diff] [blame] | 789 | if (must_stop && !(fdtab[fd].update_mask & ti->ltid_bit)) { |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 790 | if (((must_stop & FD_POLL_IN) && !fd_recv_active(fd)) || |
| 791 | ((must_stop & FD_POLL_OUT) && !fd_send_active(fd))) |
Willy Tarreau | 6d3c501 | 2022-07-05 19:21:06 +0200 | [diff] [blame] | 792 | if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid)) |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 793 | fd_updt[fd_nbupdt++] = fd; |
| 794 | } |
Willy Tarreau | 200bd50 | 2021-07-29 16:57:19 +0200 | [diff] [blame] | 795 | |
Willy Tarreau | 0b51eab | 2022-07-08 15:36:14 +0200 | [diff] [blame] | 796 | fd_drop_tgid(fd); |
Willy Tarreau | 200bd50 | 2021-07-29 16:57:19 +0200 | [diff] [blame] | 797 | return FD_UPDT_DONE; |
Willy Tarreau | cd8914b | 2023-03-07 10:11:02 -0800 | [diff] [blame] | 798 | |
| 799 | closed_or_migrated: |
| 800 | /* We only come here once we've last dropped running and the FD is |
| 801 | * not for us as per !(tmask & tid_bit). It may imply we're |
| 802 | * responsible for closing it. Otherwise it's just a migration. |
| 803 | */ |
| 804 | if (HA_ATOMIC_BTR(&fdtab[fd].state, FD_MUST_CLOSE_BIT)) { |
| 805 | fd_drop_tgid(fd); |
| 806 | _fd_delete_orphan(fd); |
| 807 | return FD_UPDT_CLOSED; |
| 808 | } |
| 809 | |
| 810 | /* So we were alone, no close bit, at best the FD was migrated, at |
| 811 | * worst it's in the process of being closed by another thread. We must |
| 812 | * be ultra-careful as it can be re-inserted by yet another thread as |
| 813 | * the result of socket() or accept(). Let's just tell the poller the |
| 814 | * FD was lost. If it was closed it was already removed and this will |
| 815 | * only cost an update for nothing. |
| 816 | */ |
| 817 | |
| 818 | do_update: |
| 819 | /* The FD is not closed but we don't want the poller to wake up for |
| 820 | * it anymore. |
| 821 | */ |
| 822 | if (!HA_ATOMIC_BTS(&fdtab[fd].update_mask, ti->ltid)) |
| 823 | fd_updt[fd_nbupdt++] = fd; |
| 824 | |
| 825 | fd_drop_tgid(fd); |
| 826 | return FD_UPDT_MIGRATED; |
Willy Tarreau | 84c7922 | 2021-07-29 16:53:46 +0200 | [diff] [blame] | 827 | } |
| 828 | |
Willy Tarreau | 88c4c14 | 2022-07-09 23:19:19 +0200 | [diff] [blame] | 829 | /* This is used by pollers at boot time to re-register desired events for |
| 830 | * all FDs after new pollers have been created. It doesn't do much, it checks |
| 831 | * that their thread group matches the one in argument, and that the thread |
| 832 | * mask matches at least one of the bits in the mask, and if so, marks the FD |
| 833 | * as updated. |
| 834 | */ |
| 835 | void fd_reregister_all(int tgrp, ulong mask) |
| 836 | { |
| 837 | int fd; |
| 838 | |
| 839 | for (fd = 0; fd < global.maxsock; fd++) { |
| 840 | if (!fdtab[fd].owner) |
| 841 | continue; |
| 842 | |
| 843 | /* make sure we don't register other tgroups' FDs. We just |
| 844 | * avoid needlessly taking the lock if not needed. |
| 845 | */ |
| 846 | if (!(_HA_ATOMIC_LOAD(&fdtab[fd].thread_mask) & mask) || |
| 847 | !fd_grab_tgid(fd, tgrp)) |
| 848 | continue; // was not for us anyway |
| 849 | |
| 850 | if (_HA_ATOMIC_LOAD(&fdtab[fd].thread_mask) & mask) |
| 851 | updt_fd_polling(fd); |
| 852 | fd_drop_tgid(fd); |
| 853 | } |
| 854 | } |
| 855 | |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 856 | /* Tries to send <npfx> parts from <prefix> followed by <nmsg> parts from <msg> |
| 857 | * optionally followed by a newline if <nl> is non-null, to file descriptor |
| 858 | * <fd>. The message is sent atomically using writev(). It may be truncated to |
| 859 | * <maxlen> bytes if <maxlen> is non-null. There is no distinction between the |
| 860 | * two lists, it's just a convenience to help the caller prepend some prefixes |
| 861 | * when necessary. It takes the fd's lock to make sure no other thread will |
| 862 | * write to the same fd in parallel. Returns the number of bytes sent, or <=0 |
| 863 | * on failure. A limit to 31 total non-empty segments is enforced. The caller |
| 864 | * is responsible for taking care of making the fd non-blocking. |
| 865 | */ |
| 866 | 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) |
| 867 | { |
| 868 | struct iovec iovec[32]; |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 869 | size_t sent = 0; |
| 870 | int vec = 0; |
Willy Tarreau | df18787 | 2020-06-11 14:25:47 +0200 | [diff] [blame] | 871 | int attempts = 0; |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 872 | |
| 873 | if (!maxlen) |
| 874 | maxlen = ~0; |
| 875 | |
| 876 | /* keep one char for a possible trailing '\n' in any case */ |
| 877 | maxlen--; |
| 878 | |
| 879 | /* make an iovec from the concatenation of all parts of the original |
| 880 | * message. Skip empty fields and truncate the whole message to maxlen, |
| 881 | * leaving one spare iovec for the '\n'. |
| 882 | */ |
| 883 | while (vec < (sizeof(iovec) / sizeof(iovec[0]) - 1)) { |
| 884 | if (!npfx) { |
| 885 | pfx = msg; |
| 886 | npfx = nmsg; |
| 887 | nmsg = 0; |
| 888 | if (!npfx) |
| 889 | break; |
| 890 | } |
| 891 | |
| 892 | iovec[vec].iov_base = pfx->ptr; |
| 893 | iovec[vec].iov_len = MIN(maxlen, pfx->len); |
| 894 | maxlen -= iovec[vec].iov_len; |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 895 | if (iovec[vec].iov_len) |
| 896 | vec++; |
| 897 | pfx++; npfx--; |
| 898 | }; |
| 899 | |
| 900 | if (nl) { |
| 901 | iovec[vec].iov_base = "\n"; |
| 902 | iovec[vec].iov_len = 1; |
| 903 | vec++; |
| 904 | } |
| 905 | |
Willy Tarreau | df18787 | 2020-06-11 14:25:47 +0200 | [diff] [blame] | 906 | /* make sure we never interleave writes and we never block. This means |
| 907 | * we prefer to fail on collision than to block. But we don't want to |
| 908 | * lose too many logs so we just perform a few lock attempts then give |
| 909 | * up. |
| 910 | */ |
| 911 | |
Willy Tarreau | 1673c4a | 2021-04-07 17:36:57 +0200 | [diff] [blame] | 912 | while (HA_ATOMIC_BTS(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT)) { |
Willy Tarreau | df18787 | 2020-06-11 14:25:47 +0200 | [diff] [blame] | 913 | if (++attempts >= 200) { |
| 914 | /* so that the caller knows the message couldn't be delivered */ |
| 915 | sent = -1; |
| 916 | errno = EAGAIN; |
| 917 | goto leave; |
| 918 | } |
| 919 | ha_thread_relax(); |
| 920 | } |
| 921 | |
Willy Tarreau | 0cc6128 | 2021-04-06 17:57:12 +0200 | [diff] [blame] | 922 | if (unlikely(!(fdtab[fd].state & FD_INITIALIZED))) { |
| 923 | HA_ATOMIC_OR(&fdtab[fd].state, FD_INITIALIZED); |
Willy Tarreau | 7e9776a | 2019-08-30 14:41:47 +0200 | [diff] [blame] | 924 | if (!isatty(fd)) |
Willy Tarreau | 3824743 | 2022-04-26 10:24:14 +0200 | [diff] [blame] | 925 | fd_set_nonblock(fd); |
Willy Tarreau | 7e9776a | 2019-08-30 14:41:47 +0200 | [diff] [blame] | 926 | } |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 927 | sent = writev(fd, iovec, vec); |
Willy Tarreau | 1673c4a | 2021-04-07 17:36:57 +0200 | [diff] [blame] | 928 | HA_ATOMIC_BTR(&fdtab[fd].state, FD_EXCL_SYSCALL_BIT); |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 929 | |
Willy Tarreau | df18787 | 2020-06-11 14:25:47 +0200 | [diff] [blame] | 930 | leave: |
Willy Tarreau | 931d8b7 | 2019-08-27 11:08:17 +0200 | [diff] [blame] | 931 | /* sent > 0 if the message was delivered */ |
| 932 | return sent; |
| 933 | } |
| 934 | |
Olivier Houchard | 2292edf | 2019-02-25 14:26:54 +0100 | [diff] [blame] | 935 | #if defined(USE_CLOSEFROM) |
| 936 | void my_closefrom(int start) |
| 937 | { |
| 938 | closefrom(start); |
| 939 | } |
| 940 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 941 | #elif defined(USE_POLL) |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 942 | /* This is a portable implementation of closefrom(). It closes all open file |
| 943 | * descriptors starting at <start> and above. It relies on the fact that poll() |
| 944 | * will return POLLNVAL for each invalid (hence close) file descriptor passed |
| 945 | * in argument in order to skip them. It acts with batches of FDs and will |
| 946 | * typically perform one poll() call per 1024 FDs so the overhead is low in |
| 947 | * case all FDs have to be closed. |
| 948 | */ |
| 949 | void my_closefrom(int start) |
| 950 | { |
| 951 | struct pollfd poll_events[1024]; |
| 952 | struct rlimit limit; |
| 953 | int nbfds, fd, ret, idx; |
| 954 | int step, next; |
| 955 | |
| 956 | if (getrlimit(RLIMIT_NOFILE, &limit) == 0) |
| 957 | step = nbfds = limit.rlim_cur; |
| 958 | else |
| 959 | step = nbfds = 0; |
| 960 | |
| 961 | if (nbfds <= 0) { |
| 962 | /* set safe limit */ |
| 963 | nbfds = 1024; |
| 964 | step = 256; |
| 965 | } |
| 966 | |
| 967 | if (step > sizeof(poll_events) / sizeof(poll_events[0])) |
| 968 | step = sizeof(poll_events) / sizeof(poll_events[0]); |
| 969 | |
| 970 | while (start < nbfds) { |
| 971 | next = (start / step + 1) * step; |
| 972 | |
| 973 | for (fd = start; fd < next && fd < nbfds; fd++) { |
| 974 | poll_events[fd - start].fd = fd; |
| 975 | poll_events[fd - start].events = 0; |
| 976 | } |
| 977 | |
| 978 | do { |
| 979 | ret = poll(poll_events, fd - start, 0); |
| 980 | if (ret >= 0) |
| 981 | break; |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 982 | } while (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR || errno == ENOMEM); |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 983 | |
Willy Tarreau | cfbda69 | 2024-04-19 16:52:32 +0200 | [diff] [blame] | 984 | /* always check the whole range */ |
| 985 | ret = fd - start; |
Willy Tarreau | b8e602c | 2019-02-22 09:07:42 +0100 | [diff] [blame] | 986 | |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 987 | for (idx = 0; idx < ret; idx++) { |
| 988 | if (poll_events[idx].revents & POLLNVAL) |
| 989 | continue; /* already closed */ |
| 990 | |
| 991 | fd = poll_events[idx].fd; |
| 992 | close(fd); |
| 993 | } |
| 994 | start = next; |
| 995 | } |
| 996 | } |
| 997 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 998 | #else // defined(USE_POLL) |
Willy Tarreau | 9188ac6 | 2019-02-21 22:12:47 +0100 | [diff] [blame] | 999 | |
Willy Tarreau | 2d7f81b | 2019-02-21 22:19:17 +0100 | [diff] [blame] | 1000 | /* This is a portable implementation of closefrom(). It closes all open file |
| 1001 | * descriptors starting at <start> and above. This is a naive version for use |
| 1002 | * when the operating system provides no alternative. |
| 1003 | */ |
| 1004 | void my_closefrom(int start) |
| 1005 | { |
| 1006 | struct rlimit limit; |
| 1007 | int nbfds; |
| 1008 | |
| 1009 | if (getrlimit(RLIMIT_NOFILE, &limit) == 0) |
| 1010 | nbfds = limit.rlim_cur; |
| 1011 | else |
| 1012 | nbfds = 0; |
| 1013 | |
| 1014 | if (nbfds <= 0) |
| 1015 | nbfds = 1024; /* safe limit */ |
| 1016 | |
| 1017 | while (start < nbfds) |
| 1018 | close(start++); |
| 1019 | } |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1020 | #endif // defined(USE_POLL) |
Willy Tarreau | 2d7f81b | 2019-02-21 22:19:17 +0100 | [diff] [blame] | 1021 | |
Willy Tarreau | 922a907 | 2022-09-22 16:08:47 +0200 | [diff] [blame] | 1022 | /* Sets the RLIMIT_NOFILE setting to <new_limit> and returns the previous one |
| 1023 | * in <old_limit> if the pointer is not NULL, even if set_rlimit() fails. The |
| 1024 | * two pointers may point to the same variable as the copy happens after |
| 1025 | * setting the new value. The value is only changed if at least one of the new |
| 1026 | * limits is strictly higher than the current one, otherwise returns 0 without |
| 1027 | * changing anything. The getrlimit() or setrlimit() syscall return value is |
| 1028 | * returned and errno is preserved. |
| 1029 | */ |
| 1030 | int raise_rlim_nofile(struct rlimit *old_limit, struct rlimit *new_limit) |
| 1031 | { |
| 1032 | struct rlimit limit = { }; |
| 1033 | int ret = 0; |
| 1034 | |
| 1035 | ret = getrlimit(RLIMIT_NOFILE, &limit); |
| 1036 | |
| 1037 | if (ret == 0 && |
| 1038 | (limit.rlim_max < new_limit->rlim_max || |
| 1039 | limit.rlim_cur < new_limit->rlim_cur)) { |
| 1040 | ret = setrlimit(RLIMIT_NOFILE, new_limit); |
| 1041 | } |
| 1042 | |
| 1043 | if (old_limit) |
| 1044 | *old_limit = limit; |
| 1045 | |
| 1046 | return ret; |
| 1047 | } |
| 1048 | |
Willy Tarreau | b63888c | 2021-10-06 19:55:29 +0200 | [diff] [blame] | 1049 | /* Computes the bounded poll() timeout based on the next expiration timer <next> |
| 1050 | * by bounding it to MAX_DELAY_MS. <next> may equal TICK_ETERNITY. The pollers |
| 1051 | * just needs to call this function right before polling to get their timeout |
| 1052 | * value. Timeouts that are already expired (possibly due to a pending event) |
| 1053 | * are accounted for in activity.poll_exp. |
| 1054 | */ |
| 1055 | int compute_poll_timeout(int next) |
| 1056 | { |
| 1057 | int wait_time; |
| 1058 | |
| 1059 | if (!tick_isset(next)) |
| 1060 | wait_time = MAX_DELAY_MS; |
| 1061 | else if (tick_is_expired(next, now_ms)) { |
| 1062 | activity[tid].poll_exp++; |
| 1063 | wait_time = 0; |
| 1064 | } |
| 1065 | else { |
| 1066 | wait_time = TICKS_TO_MS(tick_remain(now_ms, next)) + 1; |
| 1067 | if (wait_time > MAX_DELAY_MS) |
| 1068 | wait_time = MAX_DELAY_MS; |
| 1069 | } |
| 1070 | return wait_time; |
| 1071 | } |
| 1072 | |
Willy Tarreau | 058b2c1 | 2022-06-22 15:21:34 +0200 | [diff] [blame] | 1073 | /* Handle the return of the poller, which consists in calculating the idle |
| 1074 | * time, saving a few clocks, marking the thread harmful again etc. All that |
| 1075 | * is some boring stuff that all pollers have to do anyway. |
| 1076 | */ |
| 1077 | void fd_leaving_poll(int wait_time, int status) |
| 1078 | { |
| 1079 | clock_leaving_poll(wait_time, status); |
| 1080 | |
| 1081 | thread_harmless_end(); |
| 1082 | thread_idle_end(); |
| 1083 | |
Willy Tarreau | e7475c8 | 2022-06-20 09:23:24 +0200 | [diff] [blame] | 1084 | _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_SLEEPING); |
Willy Tarreau | 058b2c1 | 2022-06-22 15:21:34 +0200 | [diff] [blame] | 1085 | } |
| 1086 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1087 | /* disable the specified poller */ |
| 1088 | void disable_poller(const char *poller_name) |
| 1089 | { |
| 1090 | int p; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1091 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1092 | for (p = 0; p < nbpollers; p++) |
| 1093 | if (strcmp(pollers[p].name, poller_name) == 0) |
| 1094 | pollers[p].pref = 0; |
| 1095 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1096 | |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 1097 | void poller_pipe_io_handler(int fd) |
| 1098 | { |
| 1099 | char buf[1024]; |
| 1100 | /* Flush the pipe */ |
| 1101 | while (read(fd, buf, sizeof(buf)) > 0); |
| 1102 | fd_cant_recv(fd); |
| 1103 | } |
| 1104 | |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1105 | /* allocate the per-thread fd_updt thus needs to be called early after |
| 1106 | * thread creation. |
| 1107 | */ |
| 1108 | static int alloc_pollers_per_thread() |
| 1109 | { |
| 1110 | fd_updt = calloc(global.maxsock, sizeof(*fd_updt)); |
| 1111 | return fd_updt != NULL; |
| 1112 | } |
| 1113 | |
| 1114 | /* Initialize the pollers per thread.*/ |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 1115 | static int init_pollers_per_thread() |
| 1116 | { |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 1117 | int mypipe[2]; |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1118 | |
| 1119 | if (pipe(mypipe) < 0) |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 1120 | return 0; |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1121 | |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 1122 | poller_rd_pipe = mypipe[0]; |
| 1123 | poller_wr_pipe[tid] = mypipe[1]; |
Willy Tarreau | 3824743 | 2022-04-26 10:24:14 +0200 | [diff] [blame] | 1124 | fd_set_nonblock(poller_rd_pipe); |
Willy Tarreau | 27a3245 | 2022-07-07 08:29:00 +0200 | [diff] [blame] | 1125 | fd_insert(poller_rd_pipe, poller_pipe_io_handler, poller_pipe_io_handler, tgid, ti->ltid_bit); |
| 1126 | fd_insert(poller_wr_pipe[tid], poller_pipe_io_handler, poller_pipe_io_handler, tgid, ti->ltid_bit); |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 1127 | fd_want_recv(poller_rd_pipe); |
Willy Tarreau | 3a6af1e | 2022-01-24 20:33:09 +0100 | [diff] [blame] | 1128 | fd_stop_both(poller_wr_pipe[tid]); |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 1129 | return 1; |
| 1130 | } |
| 1131 | |
| 1132 | /* Deinitialize the pollers per thread */ |
| 1133 | static void deinit_pollers_per_thread() |
| 1134 | { |
William Lallemand | 808e1b7 | 2018-12-15 22:34:31 +0100 | [diff] [blame] | 1135 | /* rd and wr are init at the same place, but only rd is init to -1, so |
| 1136 | we rely to rd to close. */ |
| 1137 | if (poller_rd_pipe > -1) { |
Willy Tarreau | e6ca435 | 2022-08-10 17:08:17 +0200 | [diff] [blame] | 1138 | fd_delete(poller_rd_pipe); |
William Lallemand | 808e1b7 | 2018-12-15 22:34:31 +0100 | [diff] [blame] | 1139 | poller_rd_pipe = -1; |
Willy Tarreau | e6ca435 | 2022-08-10 17:08:17 +0200 | [diff] [blame] | 1140 | fd_delete(poller_wr_pipe[tid]); |
William Lallemand | 808e1b7 | 2018-12-15 22:34:31 +0100 | [diff] [blame] | 1141 | poller_wr_pipe[tid] = -1; |
| 1142 | } |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 1143 | } |
| 1144 | |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1145 | /* Release the pollers per thread, to be called late */ |
| 1146 | static void free_pollers_per_thread() |
| 1147 | { |
Willy Tarreau | b983145 | 2022-07-26 19:06:17 +0200 | [diff] [blame] | 1148 | fd_nbupdt = 0; |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 1149 | ha_free(&fd_updt); |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1150 | } |
| 1151 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1152 | /* |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1153 | * Initialize the pollers till the best one is found. |
| 1154 | * If none works, returns 0, otherwise 1. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1155 | */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1156 | int init_pollers() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1157 | { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1158 | int p; |
| 1159 | struct poller *bp; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1160 | |
Aurelien DARRAGON | 19fc8be | 2024-05-17 10:54:54 +0200 | [diff] [blame] | 1161 | if ((fdtab_addr = calloc(1, global.maxsock * sizeof(*fdtab) + 64)) == NULL) { |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1162 | ha_alert("Not enough memory to allocate %d entries for fdtab!\n", global.maxsock); |
Christopher Faulet | 63fe652 | 2017-08-31 17:52:09 +0200 | [diff] [blame] | 1163 | goto fail_tab; |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1164 | } |
Christopher Faulet | 63fe652 | 2017-08-31 17:52:09 +0200 | [diff] [blame] | 1165 | |
Willy Tarreau | 97ea9c4 | 2022-01-27 16:10:48 +0100 | [diff] [blame] | 1166 | /* always provide an aligned fdtab */ |
| 1167 | fdtab = (struct fdtab*)((((size_t)fdtab_addr) + 63) & -(size_t)64); |
| 1168 | |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1169 | if ((polled_mask = calloc(global.maxsock, sizeof(*polled_mask))) == NULL) { |
| 1170 | ha_alert("Not enough memory to allocate %d entries for polled_mask!\n", global.maxsock); |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 1171 | goto fail_polledmask; |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1172 | } |
Uman Shahzad | da7eeed | 2019-01-17 08:21:39 +0000 | [diff] [blame] | 1173 | |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1174 | if ((fdinfo = calloc(global.maxsock, sizeof(*fdinfo))) == NULL) { |
| 1175 | ha_alert("Not enough memory to allocate %d entries for fdinfo!\n", global.maxsock); |
Christopher Faulet | 63fe652 | 2017-08-31 17:52:09 +0200 | [diff] [blame] | 1176 | goto fail_info; |
Willy Tarreau | 7c9f756 | 2020-10-13 15:45:07 +0200 | [diff] [blame] | 1177 | } |
Christopher Faulet | 63fe652 | 2017-08-31 17:52:09 +0200 | [diff] [blame] | 1178 | |
Willy Tarreau | 35ee710 | 2022-07-08 11:33:43 +0200 | [diff] [blame] | 1179 | for (p = 0; p < MAX_TGROUPS; p++) |
| 1180 | update_list[p].first = update_list[p].last = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1181 | |
Olivier Houchard | 4815c8c | 2018-01-24 18:17:56 +0100 | [diff] [blame] | 1182 | for (p = 0; p < global.maxsock; p++) { |
Olivier Houchard | 4815c8c | 2018-01-24 18:17:56 +0100 | [diff] [blame] | 1183 | /* Mark the fd as out of the fd cache */ |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 1184 | fdtab[p].update.next = -3; |
Olivier Houchard | 4815c8c | 2018-01-24 18:17:56 +0100 | [diff] [blame] | 1185 | } |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 1186 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1187 | do { |
| 1188 | bp = NULL; |
| 1189 | for (p = 0; p < nbpollers; p++) |
| 1190 | if (!bp || (pollers[p].pref > bp->pref)) |
| 1191 | bp = &pollers[p]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1192 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1193 | if (!bp || bp->pref == 0) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1194 | break; |
| 1195 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1196 | if (bp->init(bp)) { |
| 1197 | memcpy(&cur_poller, bp, sizeof(*bp)); |
| 1198 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1199 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1200 | } while (!bp || bp->pref == 0); |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 1201 | |
Christopher Faulet | 63fe652 | 2017-08-31 17:52:09 +0200 | [diff] [blame] | 1202 | free(fdinfo); |
| 1203 | fail_info: |
Olivier Houchard | cb92f5c | 2018-04-26 14:23:07 +0200 | [diff] [blame] | 1204 | free(polled_mask); |
| 1205 | fail_polledmask: |
Willy Tarreau | 97ea9c4 | 2022-01-27 16:10:48 +0100 | [diff] [blame] | 1206 | free(fdtab_addr); |
Uman Shahzad | da7eeed | 2019-01-17 08:21:39 +0000 | [diff] [blame] | 1207 | fail_tab: |
Willy Tarreau | 7be79a4 | 2012-11-11 15:02:54 +0100 | [diff] [blame] | 1208 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1209 | } |
| 1210 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1211 | /* |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 1212 | * Deinitialize the pollers. |
| 1213 | */ |
| 1214 | void deinit_pollers() { |
| 1215 | |
| 1216 | struct poller *bp; |
| 1217 | int p; |
| 1218 | |
| 1219 | for (p = 0; p < nbpollers; p++) { |
| 1220 | bp = &pollers[p]; |
| 1221 | |
| 1222 | if (bp && bp->pref) |
| 1223 | bp->term(bp); |
| 1224 | } |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 1225 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 1226 | ha_free(&fdinfo); |
Willy Tarreau | 97ea9c4 | 2022-01-27 16:10:48 +0100 | [diff] [blame] | 1227 | ha_free(&fdtab_addr); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 1228 | ha_free(&polled_mask); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1232 | * Lists the known pollers on <out>. |
| 1233 | * Should be performed only before initialization. |
| 1234 | */ |
| 1235 | int list_pollers(FILE *out) |
| 1236 | { |
| 1237 | int p; |
| 1238 | int last, next; |
| 1239 | int usable; |
| 1240 | struct poller *bp; |
| 1241 | |
| 1242 | fprintf(out, "Available polling systems :\n"); |
| 1243 | |
| 1244 | usable = 0; |
| 1245 | bp = NULL; |
| 1246 | last = next = -1; |
| 1247 | while (1) { |
| 1248 | for (p = 0; p < nbpollers; p++) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1249 | if ((next < 0 || pollers[p].pref > next) |
Willy Tarreau | e79c3b2 | 2010-11-19 10:20:36 +0100 | [diff] [blame] | 1250 | && (last < 0 || pollers[p].pref < last)) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1251 | next = pollers[p].pref; |
Willy Tarreau | e79c3b2 | 2010-11-19 10:20:36 +0100 | [diff] [blame] | 1252 | if (!bp || (pollers[p].pref > bp->pref)) |
| 1253 | bp = &pollers[p]; |
| 1254 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1255 | } |
| 1256 | |
| 1257 | if (next == -1) |
| 1258 | break; |
| 1259 | |
| 1260 | for (p = 0; p < nbpollers; p++) { |
| 1261 | if (pollers[p].pref == next) { |
| 1262 | fprintf(out, " %10s : ", pollers[p].name); |
| 1263 | if (pollers[p].pref == 0) |
| 1264 | fprintf(out, "disabled, "); |
| 1265 | else |
| 1266 | fprintf(out, "pref=%3d, ", pollers[p].pref); |
| 1267 | if (pollers[p].test(&pollers[p])) { |
| 1268 | fprintf(out, " test result OK"); |
| 1269 | if (next > 0) |
| 1270 | usable++; |
Willy Tarreau | e79c3b2 | 2010-11-19 10:20:36 +0100 | [diff] [blame] | 1271 | } else { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1272 | fprintf(out, " test result FAILED"); |
Willy Tarreau | e79c3b2 | 2010-11-19 10:20:36 +0100 | [diff] [blame] | 1273 | if (bp == &pollers[p]) |
| 1274 | bp = NULL; |
| 1275 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1276 | fprintf(out, "\n"); |
| 1277 | } |
| 1278 | } |
| 1279 | last = next; |
| 1280 | next = -1; |
| 1281 | }; |
| 1282 | fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none"); |
| 1283 | return 0; |
| 1284 | } |
| 1285 | |
| 1286 | /* |
| 1287 | * Some pollers may lose their connection after a fork(). It may be necessary |
| 1288 | * to create initialize part of them again. Returns 0 in case of failure, |
| 1289 | * otherwise 1. The fork() function may be NULL if unused. In case of error, |
| 1290 | * the the current poller is destroyed and the caller is responsible for trying |
| 1291 | * another one by calling init_pollers() again. |
| 1292 | */ |
| 1293 | int fork_poller() |
| 1294 | { |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 1295 | int fd; |
Willy Tarreau | ce036bc | 2018-01-29 14:58:02 +0100 | [diff] [blame] | 1296 | for (fd = 0; fd < global.maxsock; fd++) { |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 1297 | if (fdtab[fd].owner) { |
Willy Tarreau | 030dae1 | 2021-04-06 17:53:33 +0200 | [diff] [blame] | 1298 | HA_ATOMIC_OR(&fdtab[fd].state, FD_CLONED); |
Conrad Hoffmann | 041751c | 2014-05-20 14:28:24 +0200 | [diff] [blame] | 1299 | } |
| 1300 | } |
| 1301 | |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1302 | if (cur_poller.fork) { |
| 1303 | if (cur_poller.fork(&cur_poller)) |
| 1304 | return 1; |
| 1305 | cur_poller.term(&cur_poller); |
| 1306 | return 0; |
| 1307 | } |
| 1308 | return 1; |
| 1309 | } |
| 1310 | |
Willy Tarreau | bc52bec | 2020-06-18 08:58:47 +0200 | [diff] [blame] | 1311 | /* config parser for global "tune.fd.edge-triggered", accepts "on" or "off" */ |
| 1312 | static int cfg_parse_tune_fd_edge_triggered(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 1313 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | bc52bec | 2020-06-18 08:58:47 +0200 | [diff] [blame] | 1314 | char **err) |
| 1315 | { |
| 1316 | if (too_many_args(1, args, err, NULL)) |
| 1317 | return -1; |
| 1318 | |
| 1319 | if (strcmp(args[1], "on") == 0) |
| 1320 | global.tune.options |= GTUNE_FD_ET; |
| 1321 | else if (strcmp(args[1], "off") == 0) |
| 1322 | global.tune.options &= ~GTUNE_FD_ET; |
| 1323 | else { |
| 1324 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 1325 | return -1; |
| 1326 | } |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
| 1330 | /* config keyword parsers */ |
| 1331 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 9eec7e2 | 2021-05-08 11:06:32 +0200 | [diff] [blame] | 1332 | { CFG_GLOBAL, "tune.fd.edge-triggered", cfg_parse_tune_fd_edge_triggered, KWF_EXPERIMENTAL }, |
Willy Tarreau | bc52bec | 2020-06-18 08:58:47 +0200 | [diff] [blame] | 1333 | { 0, NULL, NULL } |
| 1334 | }}; |
| 1335 | |
| 1336 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1337 | |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1338 | REGISTER_PER_THREAD_ALLOC(alloc_pollers_per_thread); |
Willy Tarreau | 172f5ce | 2018-11-26 11:21:50 +0100 | [diff] [blame] | 1339 | REGISTER_PER_THREAD_INIT(init_pollers_per_thread); |
| 1340 | REGISTER_PER_THREAD_DEINIT(deinit_pollers_per_thread); |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 1341 | REGISTER_PER_THREAD_FREE(free_pollers_per_thread); |
Willy Tarreau | 172f5ce | 2018-11-26 11:21:50 +0100 | [diff] [blame] | 1342 | |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1343 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1344 | * Local variables: |
| 1345 | * c-indent-level: 8 |
| 1346 | * c-basic-offset: 8 |
| 1347 | * End: |
| 1348 | */ |