Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 2 | * Listener management functions. |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +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 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 4448925 | 2014-01-14 17:52:01 +0100 | [diff] [blame] | 13 | #define _GNU_SOURCE |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 14 | #include <ctype.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 15 | #include <errno.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 16 | #include <stdio.h> |
| 17 | #include <string.h> |
Willy Tarreau | 95ccdde | 2014-02-01 09:28:36 +0100 | [diff] [blame] | 18 | #include <unistd.h> |
| 19 | #include <fcntl.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 20 | |
Willy Tarreau | 1bc4aab | 2012-10-08 20:11:03 +0200 | [diff] [blame] | 21 | #include <common/accept4.h> |
Christopher Faulet | f1f0c5f | 2017-11-22 12:06:43 +0100 | [diff] [blame] | 22 | #include <common/cfgparse.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 24 | #include <common/errors.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 25 | #include <common/initcall.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 26 | #include <common/mini-clist.h> |
| 27 | #include <common/standard.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 28 | #include <common/time.h> |
| 29 | |
| 30 | #include <types/global.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 31 | #include <types/protocol.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 32 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 33 | #include <proto/acl.h> |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 34 | #include <proto/connection.h> |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 35 | #include <proto/fd.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 36 | #include <proto/freq_ctr.h> |
| 37 | #include <proto/log.h> |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 38 | #include <proto/listener.h> |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 39 | #include <proto/protocol.h> |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 40 | #include <proto/proto_sockpair.h> |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 41 | #include <proto/sample.h> |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 42 | #include <proto/stream.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 43 | #include <proto/task.h> |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 44 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 45 | /* listner_queue lock (same for global and per proxy queues) */ |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 46 | __decl_spinlock(lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 47 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 48 | /* List head of all known bind keywords */ |
| 49 | static struct bind_kw_list bind_keywords = { |
| 50 | .list = LIST_HEAD_INIT(bind_keywords.list) |
| 51 | }; |
| 52 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 53 | struct xfer_sock_list *xfer_sock_list = NULL; |
| 54 | |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 55 | #if defined(USE_THREAD) |
| 56 | |
| 57 | struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { }; |
| 58 | |
| 59 | /* dequeue and process a pending connection from the local accept queue (single |
| 60 | * consumer). Returns the accepted fd or -1 if none was found. The listener is |
| 61 | * placed into *li. The address is copied into *addr for no more than *addr_len |
| 62 | * bytes, and the address length is returned into *addr_len. |
| 63 | */ |
| 64 | int accept_queue_pop_sc(struct accept_queue_ring *ring, struct listener **li, void *addr, int *addr_len) |
| 65 | { |
| 66 | struct accept_queue_entry *e; |
| 67 | unsigned int pos, next; |
| 68 | struct listener *ptr; |
| 69 | int len; |
| 70 | int fd; |
| 71 | |
| 72 | pos = ring->head; |
| 73 | |
| 74 | if (pos == ring->tail) |
| 75 | return -1; |
| 76 | |
| 77 | next = pos + 1; |
| 78 | if (next >= ACCEPT_QUEUE_SIZE) |
| 79 | next = 0; |
| 80 | |
| 81 | e = &ring->entry[pos]; |
| 82 | |
| 83 | /* wait for the producer to update the listener's pointer */ |
| 84 | while (1) { |
| 85 | ptr = e->listener; |
| 86 | __ha_barrier_load(); |
| 87 | if (ptr) |
| 88 | break; |
| 89 | pl_cpu_relax(); |
| 90 | } |
| 91 | |
| 92 | fd = e->fd; |
| 93 | len = e->addr_len; |
| 94 | if (len > *addr_len) |
| 95 | len = *addr_len; |
| 96 | |
| 97 | if (likely(len > 0)) |
| 98 | memcpy(addr, &e->addr, len); |
| 99 | |
| 100 | /* release the entry */ |
| 101 | e->listener = NULL; |
| 102 | |
| 103 | __ha_barrier_store(); |
| 104 | ring->head = next; |
| 105 | |
| 106 | *addr_len = len; |
| 107 | *li = ptr; |
| 108 | |
| 109 | return fd; |
| 110 | } |
| 111 | |
| 112 | |
| 113 | /* tries to push a new accepted connection <fd> into ring <ring> for listener |
| 114 | * <li>, from address <addr> whose length is <addr_len>. Returns non-zero if it |
| 115 | * succeeds, or zero if the ring is full. Supports multiple producers. |
| 116 | */ |
| 117 | int accept_queue_push_mp(struct accept_queue_ring *ring, int fd, |
| 118 | struct listener *li, const void *addr, int addr_len) |
| 119 | { |
| 120 | struct accept_queue_entry *e; |
| 121 | unsigned int pos, next; |
| 122 | |
| 123 | pos = ring->tail; |
| 124 | do { |
| 125 | next = pos + 1; |
| 126 | if (next >= ACCEPT_QUEUE_SIZE) |
| 127 | next = 0; |
| 128 | if (next == ring->head) |
| 129 | return 0; // ring full |
| 130 | } while (unlikely(!HA_ATOMIC_CAS(&ring->tail, &pos, next))); |
| 131 | |
| 132 | |
| 133 | e = &ring->entry[pos]; |
| 134 | |
| 135 | if (addr_len > sizeof(e->addr)) |
| 136 | addr_len = sizeof(e->addr); |
| 137 | |
| 138 | if (addr_len) |
| 139 | memcpy(&e->addr, addr, addr_len); |
| 140 | |
| 141 | e->addr_len = addr_len; |
| 142 | e->fd = fd; |
| 143 | |
| 144 | __ha_barrier_store(); |
| 145 | /* now commit the change */ |
| 146 | |
| 147 | e->listener = li; |
| 148 | return 1; |
| 149 | } |
| 150 | |
| 151 | /* proceed with accepting new connections */ |
| 152 | static struct task *accept_queue_process(struct task *t, void *context, unsigned short state) |
| 153 | { |
| 154 | struct accept_queue_ring *ring = context; |
| 155 | struct listener *li; |
| 156 | struct sockaddr_storage addr; |
| 157 | int max_accept = global.tune.maxaccept ? global.tune.maxaccept : 64; |
| 158 | int addr_len; |
| 159 | int ret; |
| 160 | int fd; |
| 161 | |
| 162 | while (max_accept--) { |
| 163 | addr_len = sizeof(addr); |
| 164 | fd = accept_queue_pop_sc(ring, &li, &addr, &addr_len); |
| 165 | if (fd < 0) |
| 166 | break; |
| 167 | |
| 168 | HA_ATOMIC_ADD(&li->thr_conn[tid], 1); |
| 169 | ret = li->accept(li, fd, &addr); |
| 170 | if (ret <= 0) { |
| 171 | /* connection was terminated by the application */ |
| 172 | continue; |
| 173 | } |
| 174 | |
| 175 | /* increase the per-process number of cumulated sessions, this |
| 176 | * may only be done once l->accept() has accepted the connection. |
| 177 | */ |
| 178 | if (!(li->options & LI_O_UNLIMITED)) { |
| 179 | HA_ATOMIC_UPDATE_MAX(&global.sps_max, |
| 180 | update_freq_ctr(&global.sess_per_sec, 1)); |
| 181 | if (li->bind_conf && li->bind_conf->is_ssl) { |
| 182 | HA_ATOMIC_UPDATE_MAX(&global.ssl_max, |
| 183 | update_freq_ctr(&global.ssl_per_sec, 1)); |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | /* ran out of budget ? Let's come here ASAP */ |
| 189 | if (max_accept < 0) |
| 190 | task_wakeup(t, TASK_WOKEN_IO); |
| 191 | |
| 192 | return t; |
| 193 | } |
| 194 | |
| 195 | /* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */ |
| 196 | static int accept_queue_init() |
| 197 | { |
| 198 | struct task *t; |
| 199 | int i; |
| 200 | |
| 201 | for (i = 0; i < global.nbthread; i++) { |
| 202 | t = task_new(1UL << i); |
| 203 | if (!t) { |
| 204 | ha_alert("Out of memory while initializing accept queue for thread %d\n", i); |
| 205 | return ERR_FATAL|ERR_ABORT; |
| 206 | } |
| 207 | t->process = accept_queue_process; |
| 208 | t->context = &accept_queue_rings[i]; |
| 209 | accept_queue_rings[i].task = t; |
| 210 | } |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init); |
| 215 | |
| 216 | #endif // USE_THREAD |
| 217 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 218 | /* This function adds the specified listener's file descriptor to the polling |
| 219 | * lists if it is in the LI_LISTEN state. The listener enters LI_READY or |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 220 | * LI_FULL state depending on its number of connections. In deamon mode, we |
| 221 | * also support binding only the relevant processes to their respective |
| 222 | * listeners. We don't do that in debug mode however. |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 223 | */ |
Christopher Faulet | f5b8adc | 2017-06-02 10:00:35 +0200 | [diff] [blame] | 224 | static void enable_listener(struct listener *listener) |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 225 | { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 226 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 227 | if (listener->state == LI_LISTEN) { |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 228 | if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) && |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 229 | !(proc_mask(listener->bind_conf->bind_proc) & pid_bit)) { |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 230 | /* we don't want to enable this listener and don't |
| 231 | * want any fd event to reach it. |
| 232 | */ |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 233 | if (!(global.tune.options & GTUNE_SOCKET_TRANSFER)) |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 234 | do_unbind_listener(listener, 1); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 235 | else { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 236 | do_unbind_listener(listener, 0); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 237 | listener->state = LI_LISTEN; |
| 238 | } |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 239 | } |
| 240 | else if (listener->nbconn < listener->maxconn) { |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 241 | fd_want_recv(listener->fd); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 242 | listener->state = LI_READY; |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 243 | } |
| 244 | else { |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 245 | listener->state = LI_FULL; |
| 246 | } |
| 247 | } |
William Lallemand | e22f11f | 2018-09-11 10:06:27 +0200 | [diff] [blame] | 248 | /* if this listener is supposed to be only in the master, close it in the workers */ |
| 249 | if ((global.mode & MODE_MWORKER) && |
| 250 | (listener->options & LI_O_MWORKER) && |
| 251 | master == 0) { |
| 252 | do_unbind_listener(listener, 1); |
| 253 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 254 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | /* This function removes the specified listener's file descriptor from the |
| 258 | * polling lists if it is in the LI_READY or in the LI_FULL state. The listener |
| 259 | * enters LI_LISTEN. |
| 260 | */ |
Christopher Faulet | f5b8adc | 2017-06-02 10:00:35 +0200 | [diff] [blame] | 261 | static void disable_listener(struct listener *listener) |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 262 | { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 263 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 264 | if (listener->state < LI_READY) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 265 | goto end; |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 266 | if (listener->state == LI_READY) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 267 | fd_stop_recv(listener->fd); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 268 | if (listener->state == LI_LIMITED) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 269 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 270 | LIST_DEL(&listener->wait_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 271 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 272 | } |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 273 | listener->state = LI_LISTEN; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 274 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 275 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 278 | /* This function tries to temporarily disable a listener, depending on the OS |
| 279 | * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores |
| 280 | * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but |
| 281 | * closes upon SHUT_WR and refuses to rebind. So a common validation path |
| 282 | * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling |
| 283 | * is disabled. It normally returns non-zero, unless an error is reported. |
| 284 | */ |
| 285 | int pause_listener(struct listener *l) |
| 286 | { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 287 | int ret = 1; |
| 288 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 289 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 290 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 291 | if (l->state <= LI_ZOMBIE) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 292 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 293 | |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 294 | if (l->proto->pause) { |
| 295 | /* Returns < 0 in case of failure, 0 if the listener |
| 296 | * was totally stopped, or > 0 if correctly paused. |
| 297 | */ |
| 298 | int ret = l->proto->pause(l); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 299 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 300 | if (ret < 0) { |
| 301 | ret = 0; |
| 302 | goto end; |
| 303 | } |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 304 | else if (ret == 0) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 305 | goto end; |
Willy Tarreau | b3fb60b | 2012-10-04 08:56:31 +0200 | [diff] [blame] | 306 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 307 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 308 | if (l->state == LI_LIMITED) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 309 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 310 | LIST_DEL(&l->wait_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 311 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 312 | } |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 313 | |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 314 | fd_stop_recv(l->fd); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 315 | l->state = LI_PAUSED; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 316 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 317 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 318 | return ret; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 319 | } |
| 320 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 321 | /* This function tries to resume a temporarily disabled listener. Paused, full, |
| 322 | * limited and disabled listeners are handled, which means that this function |
| 323 | * may replace enable_listener(). The resulting state will either be LI_READY |
| 324 | * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket). |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 325 | * Listeners bound to a different process are not woken up unless we're in |
Willy Tarreau | af2fd58 | 2015-04-14 12:07:16 +0200 | [diff] [blame] | 326 | * foreground mode, and are ignored. If the listener was only in the assigned |
| 327 | * state, it's totally rebound. This can happen if a pause() has completely |
| 328 | * stopped it. If the resume fails, 0 is returned and an error might be |
| 329 | * displayed. |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 330 | */ |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 331 | static int __resume_listener(struct listener *l) |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 332 | { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 333 | int ret = 1; |
| 334 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 335 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 336 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 337 | if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) && |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 338 | !(proc_mask(l->bind_conf->bind_proc) & pid_bit)) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 339 | goto end; |
Willy Tarreau | 3569df3 | 2017-03-15 12:47:46 +0100 | [diff] [blame] | 340 | |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 341 | if (l->state == LI_ASSIGNED) { |
| 342 | char msg[100]; |
| 343 | int err; |
| 344 | |
| 345 | err = l->proto->bind(l, msg, sizeof(msg)); |
| 346 | if (err & ERR_ALERT) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 347 | ha_alert("Resuming listener: %s\n", msg); |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 348 | else if (err & ERR_WARN) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 349 | ha_warning("Resuming listener: %s\n", msg); |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 350 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 351 | if (err & (ERR_FATAL | ERR_ABORT)) { |
| 352 | ret = 0; |
| 353 | goto end; |
| 354 | } |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 355 | } |
| 356 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 357 | if (l->state < LI_PAUSED || l->state == LI_ZOMBIE) { |
| 358 | ret = 0; |
| 359 | goto end; |
| 360 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 361 | |
Willy Tarreau | b3fb60b | 2012-10-04 08:56:31 +0200 | [diff] [blame] | 362 | if (l->proto->sock_prot == IPPROTO_TCP && |
| 363 | l->state == LI_PAUSED && |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 364 | listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0) { |
| 365 | ret = 0; |
| 366 | goto end; |
| 367 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 368 | |
| 369 | if (l->state == LI_READY) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 370 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 371 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 372 | if (l->state == LI_LIMITED) |
| 373 | LIST_DEL(&l->wait_queue); |
| 374 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 375 | if (l->nbconn >= l->maxconn) { |
| 376 | l->state = LI_FULL; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 377 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 378 | } |
| 379 | |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 380 | fd_want_recv(l->fd); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 381 | l->state = LI_READY; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 382 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 383 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 384 | return ret; |
| 385 | } |
| 386 | |
| 387 | int resume_listener(struct listener *l) |
| 388 | { |
| 389 | int ret; |
| 390 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 391 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 392 | ret = __resume_listener(l); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 393 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 394 | return ret; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 395 | } |
| 396 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 397 | /* Marks a ready listener as full so that the stream code tries to re-enable |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 398 | * it upon next close() using resume_listener(). |
| 399 | */ |
Christopher Faulet | 5580ba2 | 2017-08-28 15:29:20 +0200 | [diff] [blame] | 400 | static void listener_full(struct listener *l) |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 401 | { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 402 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 403 | if (l->state >= LI_READY) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 404 | if (l->state == LI_LIMITED) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 405 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 406 | LIST_DEL(&l->wait_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 407 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 408 | } |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 409 | if (l->state != LI_FULL) { |
| 410 | fd_stop_recv(l->fd); |
| 411 | l->state = LI_FULL; |
| 412 | } |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 413 | } |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 414 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 415 | } |
| 416 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 417 | /* Marks a ready listener as limited so that we only try to re-enable it when |
| 418 | * resources are free again. It will be queued into the specified queue. |
| 419 | */ |
Christopher Faulet | 5580ba2 | 2017-08-28 15:29:20 +0200 | [diff] [blame] | 420 | static void limit_listener(struct listener *l, struct list *list) |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 421 | { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 422 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 423 | if (l->state == LI_READY) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 424 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 425 | LIST_ADDQ(list, &l->wait_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 426 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 427 | fd_stop_recv(l->fd); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 428 | l->state = LI_LIMITED; |
| 429 | } |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 430 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 431 | } |
| 432 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 433 | /* This function adds all of the protocol's listener's file descriptors to the |
| 434 | * polling lists when they are in the LI_LISTEN state. It is intended to be |
| 435 | * used as a protocol's generic enable_all() primitive, for use after the |
| 436 | * fork(). It puts the listeners into LI_READY or LI_FULL states depending on |
| 437 | * their number of connections. It always returns ERR_NONE. |
| 438 | */ |
| 439 | int enable_all_listeners(struct protocol *proto) |
| 440 | { |
| 441 | struct listener *listener; |
| 442 | |
| 443 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 444 | enable_listener(listener); |
| 445 | return ERR_NONE; |
| 446 | } |
| 447 | |
| 448 | /* This function removes all of the protocol's listener's file descriptors from |
| 449 | * the polling lists when they are in the LI_READY or LI_FULL states. It is |
| 450 | * intended to be used as a protocol's generic disable_all() primitive. It puts |
| 451 | * the listeners into LI_LISTEN, and always returns ERR_NONE. |
| 452 | */ |
| 453 | int disable_all_listeners(struct protocol *proto) |
| 454 | { |
| 455 | struct listener *listener; |
| 456 | |
| 457 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 458 | disable_listener(listener); |
| 459 | return ERR_NONE; |
| 460 | } |
| 461 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 462 | /* Dequeues all of the listeners waiting for a resource in wait queue <queue>. */ |
| 463 | void dequeue_all_listeners(struct list *list) |
| 464 | { |
| 465 | struct listener *listener, *l_back; |
| 466 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 467 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 468 | list_for_each_entry_safe(listener, l_back, list, wait_queue) { |
| 469 | /* This cannot fail because the listeners are by definition in |
| 470 | * the LI_LIMITED state. The function also removes the entry |
| 471 | * from the queue. |
| 472 | */ |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 473 | __resume_listener(listener); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 474 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 475 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 476 | } |
| 477 | |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 478 | /* Must be called with the lock held. Depending on <do_close> value, it does |
| 479 | * what unbind_listener or unbind_listener_no_close should do. |
| 480 | */ |
| 481 | void do_unbind_listener(struct listener *listener, int do_close) |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 482 | { |
| 483 | if (listener->state == LI_READY) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 484 | fd_stop_recv(listener->fd); |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 485 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 486 | if (listener->state == LI_LIMITED) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 487 | HA_SPIN_LOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 488 | LIST_DEL(&listener->wait_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 489 | HA_SPIN_UNLOCK(LISTENER_QUEUE_LOCK, &lq_lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 490 | } |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 491 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 492 | if (listener->state >= LI_PAUSED) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 493 | if (do_close) { |
| 494 | fd_delete(listener->fd); |
| 495 | listener->fd = -1; |
| 496 | } |
| 497 | else |
| 498 | fd_remove(listener->fd); |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 499 | listener->state = LI_ASSIGNED; |
| 500 | } |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 501 | } |
| 502 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 503 | /* This function closes the listening socket for the specified listener, |
| 504 | * provided that it's already in a listening state. The listener enters the |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 505 | * LI_ASSIGNED state. This function is intended to be used as a generic |
| 506 | * function for standard protocols. |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 507 | */ |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 508 | void unbind_listener(struct listener *listener) |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 509 | { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 510 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 511 | do_unbind_listener(listener, 1); |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 512 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | /* This function pretends the listener is dead, but keeps the FD opened, so |
| 516 | * that we can provide it, for conf reloading. |
| 517 | */ |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 518 | void unbind_listener_no_close(struct listener *listener) |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 519 | { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 520 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 521 | do_unbind_listener(listener, 0); |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 522 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 523 | } |
| 524 | |
Willy Tarreau | 3acf8c3 | 2007-10-28 22:35:41 +0100 | [diff] [blame] | 525 | /* This function closes all listening sockets bound to the protocol <proto>, |
| 526 | * and the listeners end in LI_ASSIGNED state if they were higher. It does not |
| 527 | * detach them from the protocol. It always returns ERR_NONE. |
| 528 | */ |
| 529 | int unbind_all_listeners(struct protocol *proto) |
| 530 | { |
| 531 | struct listener *listener; |
| 532 | |
| 533 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 534 | unbind_listener(listener); |
| 535 | return ERR_NONE; |
| 536 | } |
| 537 | |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 538 | /* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port |
| 539 | * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto |
| 540 | * allocation). The address family is taken from ss->ss_family. The number of |
| 541 | * jobs and listeners is automatically increased by the number of listeners |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 542 | * created. If the <inherited> argument is set to 1, it specifies that the FD |
| 543 | * was obtained from a parent process. |
| 544 | * It returns non-zero on success, zero on error with the error message |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 545 | * set in <err>. |
| 546 | */ |
| 547 | int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss, |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 548 | int portl, int porth, int fd, int inherited, char **err) |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 549 | { |
| 550 | struct protocol *proto = protocol_by_family(ss->ss_family); |
| 551 | struct listener *l; |
| 552 | int port; |
| 553 | |
| 554 | if (!proto) { |
| 555 | memprintf(err, "unsupported protocol family %d", ss->ss_family); |
| 556 | return 0; |
| 557 | } |
| 558 | |
| 559 | for (port = portl; port <= porth; port++) { |
| 560 | l = calloc(1, sizeof(*l)); |
| 561 | if (!l) { |
| 562 | memprintf(err, "out of memory"); |
| 563 | return 0; |
| 564 | } |
| 565 | l->obj_type = OBJ_TYPE_LISTENER; |
| 566 | LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe); |
| 567 | LIST_ADDQ(&bc->listeners, &l->by_bind); |
| 568 | l->bind_conf = bc; |
| 569 | |
| 570 | l->fd = fd; |
| 571 | memcpy(&l->addr, ss, sizeof(*ss)); |
| 572 | l->state = LI_INIT; |
| 573 | |
| 574 | proto->add(l, port); |
| 575 | |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 576 | if (inherited) |
| 577 | l->options |= LI_O_INHERITED; |
| 578 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 579 | HA_SPIN_INIT(&l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 580 | HA_ATOMIC_ADD(&jobs, 1); |
| 581 | HA_ATOMIC_ADD(&listeners, 1); |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 582 | } |
| 583 | return 1; |
| 584 | } |
| 585 | |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 586 | /* Delete a listener from its protocol's list of listeners. The listener's |
| 587 | * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's |
Willy Tarreau | 2cc5bae | 2017-09-15 08:18:11 +0200 | [diff] [blame] | 588 | * number of listeners is updated, as well as the global number of listeners |
| 589 | * and jobs. Note that the listener must have previously been unbound. This |
| 590 | * is the generic function to use to remove a listener. |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 591 | */ |
| 592 | void delete_listener(struct listener *listener) |
| 593 | { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 594 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 595 | if (listener->state == LI_ASSIGNED) { |
| 596 | listener->state = LI_INIT; |
| 597 | LIST_DEL(&listener->proto_list); |
| 598 | listener->proto->nb_listeners--; |
| 599 | HA_ATOMIC_SUB(&jobs, 1); |
| 600 | HA_ATOMIC_SUB(&listeners, 1); |
| 601 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 602 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 603 | } |
| 604 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 605 | /* This function is called on a read event from a listening socket, corresponding |
| 606 | * to an accept. It tries to accept as many connections as possible, and for each |
| 607 | * calls the listener's accept handler (generally the frontend's accept handler). |
| 608 | */ |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 609 | void listener_accept(int fd) |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 610 | { |
| 611 | struct listener *l = fdtab[fd].owner; |
Olivier Houchard | d16a9df | 2019-02-25 16:18:16 +0100 | [diff] [blame] | 612 | struct proxy *p; |
| 613 | int max_accept; |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 614 | int next_conn = 0; |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 615 | int expire; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 616 | int cfd; |
| 617 | int ret; |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 618 | #ifdef USE_ACCEPT4 |
| 619 | static int accept4_broken; |
| 620 | #endif |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 621 | |
Olivier Houchard | d16a9df | 2019-02-25 16:18:16 +0100 | [diff] [blame] | 622 | if (!l) |
| 623 | return; |
| 624 | p = l->bind_conf->frontend; |
| 625 | max_accept = l->maxaccept ? l->maxaccept : 1; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 626 | |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 627 | if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) { |
| 628 | int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0); |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 629 | |
| 630 | if (unlikely(!max)) { |
| 631 | /* frontend accept rate limit was reached */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 632 | expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 633 | goto wait_expire; |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | if (max_accept > max) |
| 637 | max_accept = max; |
| 638 | } |
| 639 | |
| 640 | if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) { |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 641 | int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0); |
| 642 | |
| 643 | if (unlikely(!max)) { |
| 644 | /* frontend accept rate limit was reached */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 645 | expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 646 | goto wait_expire; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | if (max_accept > max) |
| 650 | max_accept = max; |
| 651 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 652 | #ifdef USE_OPENSSL |
| 653 | if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) { |
| 654 | int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 655 | |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 656 | if (unlikely(!max)) { |
| 657 | /* frontend accept rate limit was reached */ |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 658 | expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 659 | goto wait_expire; |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | if (max_accept > max) |
| 663 | max_accept = max; |
| 664 | } |
| 665 | #endif |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 666 | if (p && p->fe_sps_lim) { |
| 667 | int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0); |
| 668 | |
| 669 | if (unlikely(!max)) { |
| 670 | /* frontend accept rate limit was reached */ |
| 671 | limit_listener(l, &p->listener_queue); |
| 672 | task_schedule(p->task, tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 673 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | if (max_accept > max) |
| 677 | max_accept = max; |
| 678 | } |
| 679 | |
| 680 | /* Note: if we fail to allocate a connection because of configured |
| 681 | * limits, we'll schedule a new attempt worst 1 second later in the |
| 682 | * worst case. If we fail due to system limits or temporary resource |
| 683 | * shortage, we try again 100ms later in the worst case. |
| 684 | */ |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 685 | for (; max_accept-- > 0; next_conn = 0) { |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 686 | struct sockaddr_storage addr; |
| 687 | socklen_t laddr = sizeof(addr); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 688 | unsigned int count; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 689 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 690 | /* pre-increase the number of connections without going too far */ |
| 691 | do { |
| 692 | count = l->nbconn; |
| 693 | if (count >= l->maxconn) { |
| 694 | /* the listener was marked full or another |
| 695 | * thread is going to do it. |
| 696 | */ |
| 697 | next_conn = 0; |
| 698 | goto end; |
| 699 | } |
| 700 | next_conn = count + 1; |
| 701 | } while (!HA_ATOMIC_CAS(&l->nbconn, &count, next_conn)); |
| 702 | |
| 703 | if (next_conn == l->maxconn) { |
| 704 | /* we filled it, mark it full */ |
| 705 | listener_full(l); |
| 706 | } |
| 707 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 708 | if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) { |
| 709 | limit_listener(l, &global_listener_queue); |
| 710 | task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */ |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 711 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | if (unlikely(p && p->feconn >= p->maxconn)) { |
| 715 | limit_listener(l, &p->listener_queue); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 716 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 717 | } |
| 718 | |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 719 | /* with sockpair@ we don't want to do an accept */ |
| 720 | if (unlikely(l->addr.ss_family == AF_CUST_SOCKPAIR)) { |
| 721 | if ((cfd = recv_fd_uxst(fd)) != -1) |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 722 | fcntl(cfd, F_SETFL, O_NONBLOCK); |
Willy Tarreau | 888d567 | 2019-01-27 18:34:12 +0100 | [diff] [blame] | 723 | /* just like with UNIX sockets, only the family is filled */ |
| 724 | addr.ss_family = AF_UNIX; |
| 725 | laddr = sizeof(addr.ss_family); |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 726 | } else |
| 727 | |
Willy Tarreau | 1bc4aab | 2012-10-08 20:11:03 +0200 | [diff] [blame] | 728 | #ifdef USE_ACCEPT4 |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 729 | /* only call accept4() if it's known to be safe, otherwise |
| 730 | * fallback to the legacy accept() + fcntl(). |
| 731 | */ |
| 732 | if (unlikely(accept4_broken || |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 733 | ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 && |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 734 | (errno == ENOSYS || errno == EINVAL || errno == EBADF) && |
| 735 | (accept4_broken = 1)))) |
| 736 | #endif |
Willy Tarreau | 6b3b0d4 | 2012-10-22 19:32:55 +0200 | [diff] [blame] | 737 | if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1) |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 738 | fcntl(cfd, F_SETFL, O_NONBLOCK); |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 739 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 740 | if (unlikely(cfd == -1)) { |
| 741 | switch (errno) { |
| 742 | case EAGAIN: |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 743 | if (fdtab[fd].ev & FD_POLL_HUP) { |
| 744 | /* the listening socket might have been disabled in a shared |
| 745 | * process and we're a collateral victim. We'll just pause for |
| 746 | * a while in case it comes back. In the mean time, we need to |
| 747 | * clear this sticky flag. |
| 748 | */ |
| 749 | fdtab[fd].ev &= ~FD_POLL_HUP; |
| 750 | goto transient_error; |
| 751 | } |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 752 | fd_cant_recv(fd); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 753 | goto end; /* nothing more to accept */ |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 754 | case EINVAL: |
| 755 | /* might be trying to accept on a shut fd (eg: soft stop) */ |
| 756 | goto transient_error; |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 757 | case EINTR: |
| 758 | case ECONNABORTED: |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 759 | HA_ATOMIC_SUB(&l->nbconn, 1); |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 760 | continue; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 761 | case ENFILE: |
| 762 | if (p) |
| 763 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 764 | "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n", |
| 765 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 766 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 767 | case EMFILE: |
| 768 | if (p) |
| 769 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 770 | "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n", |
| 771 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 772 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 773 | case ENOBUFS: |
| 774 | case ENOMEM: |
| 775 | if (p) |
| 776 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 777 | "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n", |
| 778 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 779 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 780 | default: |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 781 | /* unexpected result, let's give up and let other tasks run */ |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 782 | goto stop; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 783 | } |
| 784 | } |
| 785 | |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 786 | /* we don't want to leak the FD upon reload if it's in the master */ |
| 787 | if (unlikely(master == 1)) |
| 788 | fcntl(cfd, F_SETFD, FD_CLOEXEC); |
| 789 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 790 | /* The connection was accepted, it must be counted as such */ |
| 791 | if (l->counters) |
| 792 | HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn); |
| 793 | |
| 794 | if (!(l->options & LI_O_UNLIMITED)) { |
| 795 | count = update_freq_ctr(&global.conn_per_sec, 1); |
| 796 | HA_ATOMIC_UPDATE_MAX(&global.cps_max, count); |
| 797 | HA_ATOMIC_ADD(&actconn, 1); |
| 798 | } |
| 799 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 800 | if (unlikely(cfd >= global.maxsock)) { |
| 801 | send_log(p, LOG_EMERG, |
| 802 | "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n", |
| 803 | p->id); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 804 | if (!(l->options & LI_O_UNLIMITED)) |
| 805 | HA_ATOMIC_SUB(&actconn, 1); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 806 | close(cfd); |
| 807 | limit_listener(l, &global_listener_queue); |
| 808 | task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */ |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 809 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 810 | } |
| 811 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 812 | /* past this point, l->accept() will automatically decrement |
| 813 | * l->nbconn and actconn once done. Setting next_conn=0 allows |
| 814 | * the error path not to rollback on nbconn. It's more convenient |
| 815 | * than duplicating all exit labels. |
| 816 | */ |
| 817 | next_conn = 0; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 818 | |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 819 | #if defined(USE_THREAD) |
| 820 | count = l->bind_conf->thr_count; |
| 821 | if (count > 1) { |
| 822 | struct accept_queue_ring *ring; |
| 823 | int r, t1, t2, q1, q2; |
| 824 | |
| 825 | /* pick two small distinct random values and drop lower bits */ |
| 826 | r = (random() >> 8) % ((count - 1) * count); |
| 827 | t2 = r / count; // 0..thr_count-2 |
| 828 | t1 = r % count; // 0..thr_count-1 |
| 829 | t2 += t1 + 1; // necessarily different from t1 |
| 830 | |
| 831 | if (t2 >= count) |
| 832 | t2 -= count; |
| 833 | |
| 834 | t1 = bind_map_thread_id(l->bind_conf, t1); |
| 835 | t2 = bind_map_thread_id(l->bind_conf, t2); |
| 836 | |
| 837 | q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE; |
| 838 | if (q1 >= ACCEPT_QUEUE_SIZE) |
| 839 | q1 -= ACCEPT_QUEUE_SIZE; |
| 840 | |
| 841 | q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE; |
| 842 | if (q2 >= ACCEPT_QUEUE_SIZE) |
| 843 | q2 -= ACCEPT_QUEUE_SIZE; |
| 844 | |
| 845 | /* make t1 the lowest loaded thread */ |
| 846 | if (q1 >= ACCEPT_QUEUE_SIZE || l->thr_conn[t1] + q1 > l->thr_conn[t2] + q2) |
| 847 | t1 = t2; |
| 848 | |
| 849 | /* We use deferred accepts even if it's the local thread because |
| 850 | * tests show that it's the best performing model, likely due to |
| 851 | * better cache locality when processing this loop. |
| 852 | */ |
| 853 | ring = &accept_queue_rings[t1]; |
| 854 | if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) { |
Willy Tarreau | 8a03408 | 2019-02-27 10:45:55 +0100 | [diff] [blame^] | 855 | HA_ATOMIC_ADD(&activity[t1].accq_pushed, 1); |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 856 | task_wakeup(ring->task, TASK_WOKEN_IO); |
| 857 | continue; |
| 858 | } |
| 859 | /* If the ring is full we do a synchronous accept on |
| 860 | * the local thread here. |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 861 | */ |
Willy Tarreau | 8a03408 | 2019-02-27 10:45:55 +0100 | [diff] [blame^] | 862 | HA_ATOMIC_ADD(&activity[t1].accq_full, 1); |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 863 | } |
| 864 | #endif // USE_THREAD |
| 865 | |
Willy Tarreau | 9e85318 | 2019-02-03 10:36:29 +0100 | [diff] [blame] | 866 | HA_ATOMIC_ADD(&l->thr_conn[tid], 1); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 867 | ret = l->accept(l, cfd, &addr); |
| 868 | if (unlikely(ret <= 0)) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 869 | /* The connection was closed by stream_accept(). Either |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 870 | * we just have to ignore it (ret == 0) or it's a critical |
| 871 | * error due to a resource shortage, and we must stop the |
| 872 | * listener (ret < 0). |
| 873 | */ |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 874 | if (ret == 0) /* successful termination */ |
| 875 | continue; |
| 876 | |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 877 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 878 | } |
| 879 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 880 | /* increase the per-process number of cumulated sessions, this |
| 881 | * may only be done once l->accept() has accepted the connection. |
| 882 | */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 883 | if (!(l->options & LI_O_UNLIMITED)) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 884 | count = update_freq_ctr(&global.sess_per_sec, 1); |
| 885 | HA_ATOMIC_UPDATE_MAX(&global.sps_max, count); |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 886 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 887 | #ifdef USE_OPENSSL |
| 888 | if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 889 | count = update_freq_ctr(&global.ssl_per_sec, 1); |
| 890 | HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count); |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 891 | } |
| 892 | #endif |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 893 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 894 | } /* end of for (max_accept--) */ |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 895 | |
Willy Tarreau | aece46a | 2012-07-06 12:25:58 +0200 | [diff] [blame] | 896 | /* we've exhausted max_accept, so there is no need to poll again */ |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 897 | stop: |
| 898 | fd_done_recv(fd); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 899 | goto end; |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 900 | |
| 901 | transient_error: |
| 902 | /* pause the listener and try again in 100 ms */ |
| 903 | expire = tick_add(now_ms, 100); |
| 904 | |
| 905 | wait_expire: |
| 906 | limit_listener(l, &global_listener_queue); |
| 907 | task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire)); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 908 | end: |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 909 | if (next_conn) |
| 910 | HA_ATOMIC_SUB(&l->nbconn, 1); |
Willy Tarreau | 741b4d6 | 2019-02-25 15:02:04 +0100 | [diff] [blame] | 911 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 912 | if (l->nbconn < l->maxconn && l->state == LI_FULL) { |
| 913 | /* at least one thread has to this when quitting */ |
| 914 | resume_listener(l); |
| 915 | |
| 916 | /* Dequeues all of the listeners waiting for a resource */ |
| 917 | if (!LIST_ISEMPTY(&global_listener_queue)) |
| 918 | dequeue_all_listeners(&global_listener_queue); |
| 919 | |
| 920 | if (!LIST_ISEMPTY(&p->listener_queue) && |
| 921 | (!p->fe_sps_lim || freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0) > 0)) |
| 922 | dequeue_all_listeners(&p->listener_queue); |
| 923 | } |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 924 | } |
| 925 | |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 926 | /* Notify the listener that a connection initiated from it was released. This |
| 927 | * is used to keep the connection count consistent and to possibly re-open |
| 928 | * listening when it was limited. |
| 929 | */ |
| 930 | void listener_release(struct listener *l) |
| 931 | { |
| 932 | struct proxy *fe = l->bind_conf->frontend; |
| 933 | |
| 934 | if (!(l->options & LI_O_UNLIMITED)) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 935 | HA_ATOMIC_SUB(&actconn, 1); |
| 936 | HA_ATOMIC_SUB(&l->nbconn, 1); |
Willy Tarreau | 9e85318 | 2019-02-03 10:36:29 +0100 | [diff] [blame] | 937 | HA_ATOMIC_SUB(&l->thr_conn[tid], 1); |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 938 | if (l->state == LI_FULL) |
| 939 | resume_listener(l); |
| 940 | |
| 941 | /* Dequeues all of the listeners waiting for a resource */ |
| 942 | if (!LIST_ISEMPTY(&global_listener_queue)) |
| 943 | dequeue_all_listeners(&global_listener_queue); |
| 944 | |
| 945 | if (!LIST_ISEMPTY(&fe->listener_queue) && |
| 946 | (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0)) |
| 947 | dequeue_all_listeners(&fe->listener_queue); |
| 948 | } |
| 949 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 950 | /* |
| 951 | * Registers the bind keyword list <kwl> as a list of valid keywords for next |
| 952 | * parsing sessions. |
| 953 | */ |
| 954 | void bind_register_keywords(struct bind_kw_list *kwl) |
| 955 | { |
| 956 | LIST_ADDQ(&bind_keywords.list, &kwl->list); |
| 957 | } |
| 958 | |
| 959 | /* Return a pointer to the bind keyword <kw>, or NULL if not found. If the |
| 960 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 961 | * find one with a valid ->parse() function. This way it is possible to declare |
| 962 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 963 | * if some options are met. Note that if the requested keyword contains an |
| 964 | * opening parenthesis, everything from this point is ignored. |
| 965 | */ |
| 966 | struct bind_kw *bind_find_kw(const char *kw) |
| 967 | { |
| 968 | int index; |
| 969 | const char *kwend; |
| 970 | struct bind_kw_list *kwl; |
| 971 | struct bind_kw *ret = NULL; |
| 972 | |
| 973 | kwend = strchr(kw, '('); |
| 974 | if (!kwend) |
| 975 | kwend = kw + strlen(kw); |
| 976 | |
| 977 | list_for_each_entry(kwl, &bind_keywords.list, list) { |
| 978 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 979 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 980 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 981 | if (kwl->kw[index].parse) |
| 982 | return &kwl->kw[index]; /* found it !*/ |
| 983 | else |
| 984 | ret = &kwl->kw[index]; /* may be OK */ |
| 985 | } |
| 986 | } |
| 987 | } |
| 988 | return ret; |
| 989 | } |
| 990 | |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 991 | /* Dumps all registered "bind" keywords to the <out> string pointer. The |
| 992 | * unsupported keywords are only dumped if their supported form was not |
| 993 | * found. |
| 994 | */ |
| 995 | void bind_dump_kws(char **out) |
| 996 | { |
| 997 | struct bind_kw_list *kwl; |
| 998 | int index; |
| 999 | |
| 1000 | *out = NULL; |
| 1001 | list_for_each_entry(kwl, &bind_keywords.list, list) { |
| 1002 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1003 | if (kwl->kw[index].parse || |
| 1004 | bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) { |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1005 | memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "", |
| 1006 | kwl->scope, |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 1007 | kwl->kw[index].kw, |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1008 | kwl->kw[index].skip ? " <arg>" : "", |
| 1009 | kwl->kw[index].parse ? "" : " (not supported)"); |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | } |
| 1013 | } |
| 1014 | |
Willy Tarreau | b2b50a7 | 2019-02-03 11:14:25 +0100 | [diff] [blame] | 1015 | /* recompute the bit counts per parity for the bind_thread value. This will be |
| 1016 | * used to quickly map a thread number from 1 to #thread to a thread ID among |
| 1017 | * the ones bound. This is the preparation phase of the bit rank counting algo |
| 1018 | * described here: https://graphics.stanford.edu/~seander/bithacks.html |
| 1019 | */ |
| 1020 | void bind_recount_thread_bits(struct bind_conf *conf) |
| 1021 | { |
| 1022 | unsigned long m; |
| 1023 | |
| 1024 | m = thread_mask(conf->bind_thread); |
| 1025 | conf->thr_count = my_popcountl(m); |
| 1026 | mask_prep_rank_map(m, &conf->thr_2, &conf->thr_4, &conf->thr_8, &conf->thr_16); |
| 1027 | } |
| 1028 | |
| 1029 | /* Report the ID of thread <r> in bind_conf <conf> according to its thread_mask. |
| 1030 | * <r> must be between 0 and LONGBITS-1. This makes use of the pre-computed |
| 1031 | * bits resulting from bind_recount_thread_bits. See this function for more |
| 1032 | * info. |
| 1033 | */ |
| 1034 | unsigned int bind_map_thread_id(const struct bind_conf *conf, unsigned int r) |
| 1035 | { |
| 1036 | unsigned long m; |
| 1037 | |
| 1038 | m = thread_mask(conf->bind_thread); |
| 1039 | return mask_find_rank_bit_fast(r, m, conf->thr_2, conf->thr_4, conf->thr_8, conf->thr_16); |
| 1040 | } |
| 1041 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1042 | /************************************************************************/ |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1043 | /* All supported sample and ACL keywords must be declared here. */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1044 | /************************************************************************/ |
| 1045 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1046 | /* set temp integer to the number of connexions to the same listening socket */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1047 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1048 | smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1049 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1050 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1051 | smp->data.u.sint = smp->sess->listener->nbconn; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1052 | return 1; |
| 1053 | } |
| 1054 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1055 | /* set temp integer to the id of the socket (listener) */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1056 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1057 | smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1058 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1059 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1060 | smp->data.u.sint = smp->sess->listener->luid; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1061 | return 1; |
| 1062 | } |
| 1063 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1064 | /* parse the "accept-proxy" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1065 | static int bind_parse_accept_proxy(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1066 | { |
| 1067 | struct listener *l; |
| 1068 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1069 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1070 | l->options |= LI_O_ACC_PROXY; |
| 1071 | |
| 1072 | return 0; |
| 1073 | } |
| 1074 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1075 | /* parse the "accept-netscaler-cip" bind keyword */ |
| 1076 | static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1077 | { |
| 1078 | struct listener *l; |
| 1079 | uint32_t val; |
| 1080 | |
| 1081 | if (!*args[cur_arg + 1]) { |
| 1082 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
| 1083 | return ERR_ALERT | ERR_FATAL; |
| 1084 | } |
| 1085 | |
| 1086 | val = atol(args[cur_arg + 1]); |
| 1087 | if (val <= 0) { |
| 1088 | memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val); |
| 1089 | return ERR_ALERT | ERR_FATAL; |
| 1090 | } |
| 1091 | |
| 1092 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1093 | l->options |= LI_O_ACC_CIP; |
| 1094 | conf->ns_cip_magic = val; |
| 1095 | } |
| 1096 | |
| 1097 | return 0; |
| 1098 | } |
| 1099 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1100 | /* parse the "backlog" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1101 | static int bind_parse_backlog(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1102 | { |
| 1103 | struct listener *l; |
| 1104 | int val; |
| 1105 | |
| 1106 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1107 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1108 | return ERR_ALERT | ERR_FATAL; |
| 1109 | } |
| 1110 | |
| 1111 | val = atol(args[cur_arg + 1]); |
| 1112 | if (val <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1113 | memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1114 | return ERR_ALERT | ERR_FATAL; |
| 1115 | } |
| 1116 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1117 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1118 | l->backlog = val; |
| 1119 | |
| 1120 | return 0; |
| 1121 | } |
| 1122 | |
| 1123 | /* parse the "id" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1124 | static int bind_parse_id(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1125 | { |
| 1126 | struct eb32_node *node; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1127 | struct listener *l, *new; |
Thierry Fournier | e7fe8eb | 2016-02-26 08:45:58 +0100 | [diff] [blame] | 1128 | char *error; |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1129 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1130 | if (conf->listeners.n != conf->listeners.p) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1131 | memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1132 | return ERR_ALERT | ERR_FATAL; |
| 1133 | } |
| 1134 | |
| 1135 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1136 | memprintf(err, "'%s' : expects an integer argument", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1137 | return ERR_ALERT | ERR_FATAL; |
| 1138 | } |
| 1139 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1140 | new = LIST_NEXT(&conf->listeners, struct listener *, by_bind); |
Thierry Fournier | e7fe8eb | 2016-02-26 08:45:58 +0100 | [diff] [blame] | 1141 | new->luid = strtol(args[cur_arg + 1], &error, 10); |
| 1142 | if (*error != '\0') { |
| 1143 | memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]); |
| 1144 | return ERR_ALERT | ERR_FATAL; |
| 1145 | } |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1146 | new->conf.id.key = new->luid; |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1147 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1148 | if (new->luid <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1149 | memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1150 | return ERR_ALERT | ERR_FATAL; |
| 1151 | } |
| 1152 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1153 | node = eb32_lookup(&px->conf.used_listener_id, new->luid); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1154 | if (node) { |
| 1155 | l = container_of(node, struct listener, conf.id); |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1156 | memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')", |
| 1157 | args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line, |
| 1158 | l->bind_conf->arg); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1159 | return ERR_ALERT | ERR_FATAL; |
| 1160 | } |
| 1161 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1162 | eb32_insert(&px->conf.used_listener_id, &new->conf.id); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1163 | return 0; |
| 1164 | } |
| 1165 | |
| 1166 | /* parse the "maxconn" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1167 | static int bind_parse_maxconn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1168 | { |
| 1169 | struct listener *l; |
| 1170 | int val; |
| 1171 | |
| 1172 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1173 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1174 | return ERR_ALERT | ERR_FATAL; |
| 1175 | } |
| 1176 | |
| 1177 | val = atol(args[cur_arg + 1]); |
| 1178 | if (val <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1179 | memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1180 | return ERR_ALERT | ERR_FATAL; |
| 1181 | } |
| 1182 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1183 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1184 | l->maxconn = val; |
| 1185 | |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | /* parse the "name" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1190 | static int bind_parse_name(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1191 | { |
| 1192 | struct listener *l; |
| 1193 | |
| 1194 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1195 | memprintf(err, "'%s' : missing name", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1196 | return ERR_ALERT | ERR_FATAL; |
| 1197 | } |
| 1198 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1199 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1200 | l->name = strdup(args[cur_arg + 1]); |
| 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
| 1205 | /* parse the "nice" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1206 | static int bind_parse_nice(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1207 | { |
| 1208 | struct listener *l; |
| 1209 | int val; |
| 1210 | |
| 1211 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1212 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1213 | return ERR_ALERT | ERR_FATAL; |
| 1214 | } |
| 1215 | |
| 1216 | val = atol(args[cur_arg + 1]); |
| 1217 | if (val < -1024 || val > 1024) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1218 | memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1219 | return ERR_ALERT | ERR_FATAL; |
| 1220 | } |
| 1221 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1222 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1223 | l->nice = val; |
| 1224 | |
| 1225 | return 0; |
| 1226 | } |
| 1227 | |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1228 | /* parse the "process" bind keyword */ |
| 1229 | static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1230 | { |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1231 | char *slash; |
| 1232 | unsigned long proc = 0, thread = 0; |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1233 | |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1234 | if ((slash = strchr(args[cur_arg + 1], '/')) != NULL) |
| 1235 | *slash = 0; |
| 1236 | |
Willy Tarreau | ff9c914 | 2019-02-07 10:39:36 +0100 | [diff] [blame] | 1237 | if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) { |
Christopher Faulet | f1f0c5f | 2017-11-22 12:06:43 +0100 | [diff] [blame] | 1238 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1239 | return ERR_ALERT | ERR_FATAL; |
| 1240 | } |
| 1241 | |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1242 | if (slash) { |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 1243 | if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) { |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1244 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
| 1245 | return ERR_ALERT | ERR_FATAL; |
| 1246 | } |
| 1247 | *slash = '/'; |
| 1248 | } |
| 1249 | |
| 1250 | conf->bind_proc |= proc; |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 1251 | conf->bind_thread |= thread; |
Willy Tarreau | b2b50a7 | 2019-02-03 11:14:25 +0100 | [diff] [blame] | 1252 | bind_recount_thread_bits(conf); |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1253 | return 0; |
| 1254 | } |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1255 | |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1256 | /* parse the "proto" bind keyword */ |
| 1257 | static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1258 | { |
| 1259 | struct ist proto; |
| 1260 | |
| 1261 | if (!*args[cur_arg + 1]) { |
| 1262 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
| 1263 | return ERR_ALERT | ERR_FATAL; |
| 1264 | } |
| 1265 | |
| 1266 | proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1])); |
| 1267 | conf->mux_proto = get_mux_proto(proto); |
| 1268 | if (!conf->mux_proto) { |
| 1269 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]); |
| 1270 | return ERR_ALERT | ERR_FATAL; |
| 1271 | } |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1272 | return 0; |
| 1273 | } |
| 1274 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1275 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1276 | * Please take care of keeping this list alphabetically sorted. |
| 1277 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1278 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1279 | { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
| 1280 | { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1281 | { /* END */ }, |
| 1282 | }}; |
| 1283 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1284 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 1285 | |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1286 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1287 | * Please take care of keeping this list alphabetically sorted. |
| 1288 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1289 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1290 | { /* END */ }, |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1291 | }}; |
| 1292 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1293 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
| 1294 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1295 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1296 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1297 | * all code contributors. |
| 1298 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1299 | * the config parser can report an appropriate error when a known keyword was |
| 1300 | * not enabled. |
| 1301 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1302 | static struct bind_kw_list bind_kws = { "ALL", { }, { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1303 | { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */ |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1304 | { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */ |
| 1305 | { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */ |
| 1306 | { "id", bind_parse_id, 1 }, /* set id of listening socket */ |
| 1307 | { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */ |
| 1308 | { "name", bind_parse_name, 1 }, /* set name of listening socket */ |
| 1309 | { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */ |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1310 | { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */ |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1311 | { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */ |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1312 | { /* END */ }, |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1313 | }}; |
| 1314 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1315 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
| 1316 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1317 | /* |
| 1318 | * Local variables: |
| 1319 | * c-indent-level: 8 |
| 1320 | * c-basic-offset: 8 |
| 1321 | * End: |
| 1322 | */ |