blob: a621ecbea2df6b84322f490c84f02d61e20b96ea [file] [log] [blame]
William Lallemand2fe7dd02018-09-11 16:51:29 +02001/*
2 * Socket Pair protocol layer (sockpair)
3 *
4 * Copyright HAProxy Technologies - William Lallemand <wlallemand@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <errno.h>
William Lallemand2fe7dd02018-09-11 16:51:29 +020015#include <pwd.h>
16#include <grp.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <syslog.h>
21#include <time.h>
22
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/un.h>
27
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020028#include <haproxy/api.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020029#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/fd.h>
32#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020033#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020034#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020035#include <haproxy/listener.h>
Willy Tarreau344b8fc2020-10-15 09:43:31 +020036#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/protocol.h>
Willy Tarreau62292b22020-09-02 17:52:23 +020038#include <haproxy/proto_sockpair.h>
Willy Tarreau686fa3d2020-09-25 19:09:53 +020039#include <haproxy/sock.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020041#include <haproxy/version.h>
William Lallemand2fe7dd02018-09-11 16:51:29 +020042
William Lallemand2fe7dd02018-09-11 16:51:29 +020043
William Lallemand2fe7dd02018-09-11 16:51:29 +020044static int sockpair_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020045static void sockpair_enable_listener(struct listener *listener);
46static void sockpair_disable_listener(struct listener *listener);
Olivier Houchardfdcb0072019-05-06 18:32:29 +020047static int sockpair_connect_server(struct connection *conn, int flags);
Willy Tarreau7d053e42020-10-15 09:19:43 +020048static int sockpair_accepting_conn(const struct receiver *rx);
Willy Tarreau344b8fc2020-10-15 09:43:31 +020049struct connection *sockpair_accept_conn(struct listener *l, int *status);
William Lallemand2fe7dd02018-09-11 16:51:29 +020050
Willy Tarreaub0254cb2020-09-04 08:07:11 +020051struct proto_fam proto_fam_sockpair = {
52 .name = "sockpair",
53 .sock_domain = AF_CUST_SOCKPAIR,
54 .sock_family = AF_UNIX,
55 .sock_addrlen = sizeof(struct sockaddr_un),
56 .l3_addrlen = sizeof(((struct sockaddr_un*)0)->sun_path),
57 .addrcmp = NULL,
58 .bind = sockpair_bind_receiver,
59 .get_src = NULL,
60 .get_dst = NULL,
61};
62
William Lallemand2fe7dd02018-09-11 16:51:29 +020063/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaub9b2fd72020-12-08 14:13:11 +010064struct protocol proto_sockpair = {
Willy Tarreaub366c9a2020-12-08 14:54:20 +010065 .name = "sockpair",
66
67 /* connection layer */
68 .ctrl_type = SOCK_STREAM,
69 .listen = sockpair_bind_listener,
70 .enable = sockpair_enable_listener,
71 .disable = sockpair_disable_listener,
72 .add = default_add_listener,
73 .unbind = default_unbind_listener,
74 .accept_conn = sockpair_accept_conn,
Willy Tarreaude471c42020-12-08 15:50:56 +010075 .ctrl_init = sock_conn_ctrl_init,
76 .ctrl_close = sock_conn_ctrl_close,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010077 .connect = sockpair_connect_server,
Willy Tarreau427c8462020-12-11 16:19:12 +010078 .drain = sock_drain,
Willy Tarreau472125b2020-12-11 17:02:50 +010079 .check_events = sock_check_events,
80 .ignore_events = sock_ignore_events,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010081
82 /* binding layer */
83 /* Note: suspend/resume not supported */
84
85 /* address family */
86 .fam = &proto_fam_sockpair,
87
88 /* socket layer */
Willy Tarreau337edfd2021-10-27 17:05:36 +020089 .proto_type = PROTO_TYPE_STREAM,
Willy Tarreaub366c9a2020-12-08 14:54:20 +010090 .sock_type = SOCK_STREAM,
91 .sock_prot = 0,
92 .rx_enable = sock_enable,
93 .rx_disable = sock_disable,
94 .rx_unbind = sock_unbind,
95 .rx_listening = sockpair_accepting_conn,
96 .default_iocb = sock_accept_iocb,
97 .receivers = LIST_HEAD_INIT(proto_sockpair.receivers),
98 .nb_receivers = 0,
William Lallemand2fe7dd02018-09-11 16:51:29 +020099};
100
Willy Tarreau0108d902018-11-25 19:14:37 +0100101INITCALL1(STG_REGISTER, protocol_register, &proto_sockpair);
102
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200103/* Enable receipt of incoming connections for listener <l>. The receiver must
Willy Tarreaua4380b22020-11-04 13:59:04 +0100104 * still be valid.
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200105 */
106static void sockpair_enable_listener(struct listener *l)
107{
Willy Tarreaua4380b22020-11-04 13:59:04 +0100108 fd_want_recv_safe(l->rx.fd);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200109}
110
111/* Disable receipt of incoming connections for listener <l>. The receiver must
Willy Tarreaua4380b22020-11-04 13:59:04 +0100112 * still be valid.
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200113 */
114static void sockpair_disable_listener(struct listener *l)
115{
Willy Tarreaua4380b22020-11-04 13:59:04 +0100116 fd_stop_recv(l->rx.fd);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200117}
118
Willy Tarreau233ad282020-10-15 21:45:15 +0200119/* Binds receiver <rx>, and assigns rx->iocb and rx->owner as the callback
120 * and context, respectively, with ->bind_thread as the thread mask. Returns an
121 * error code made of ERR_* bits on failure or ERR_NONE on success. On failure,
122 * an error message may be passed into <errmsg>. Note that the binding address
123 * is only an FD to receive the incoming FDs on. Thus by definition there is no
124 * real "bind" operation, this only completes the receiver. Such FDs are not
Willy Tarreau62292b22020-09-02 17:52:23 +0200125 * inherited upon reload.
126 */
Willy Tarreau233ad282020-10-15 21:45:15 +0200127int sockpair_bind_receiver(struct receiver *rx, char **errmsg)
Willy Tarreau62292b22020-09-02 17:52:23 +0200128{
129 int err;
130
131 /* ensure we never return garbage */
132 if (errmsg)
133 *errmsg = 0;
134
135 err = ERR_NONE;
136
137 if (rx->flags & RX_F_BOUND)
138 return ERR_NONE;
139
140 if (rx->fd == -1) {
141 err |= ERR_FATAL | ERR_ALERT;
142 memprintf(errmsg, "sockpair may be only used with inherited FDs");
143 goto bind_return;
144 }
145
146 if (rx->fd >= global.maxsock) {
147 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
148 memprintf(errmsg, "not enough free sockets (raise '-n' parameter)");
149 goto bind_close_return;
150 }
151
Willy Tarreau38247432022-04-26 10:24:14 +0200152 if (fd_set_nonblock(rx->fd) == -1) {
Willy Tarreau62292b22020-09-02 17:52:23 +0200153 err |= ERR_FATAL | ERR_ALERT;
154 memprintf(errmsg, "cannot make socket non-blocking");
155 goto bind_close_return;
156 }
157
158 rx->flags |= RX_F_BOUND;
159
Willy Tarreau01cac3f2021-10-12 08:47:54 +0200160 fd_insert(rx->fd, rx->owner, rx->iocb, thread_mask(rx->bind_thread) & all_threads_mask);
Willy Tarreau62292b22020-09-02 17:52:23 +0200161 return err;
162
163 bind_return:
164 if (errmsg && *errmsg)
Willy Tarreau6823a3a2021-10-14 11:59:15 +0200165 memprintf(errmsg, "%s for [fd %d]", *errmsg, rx->fd);
Willy Tarreau62292b22020-09-02 17:52:23 +0200166
167 return err;
168
169 bind_close_return:
170 close(rx->fd);
171 goto bind_return;
172}
173
William Lallemand2fe7dd02018-09-11 16:51:29 +0200174/* This function changes the state from ASSIGNED to LISTEN. The socket is NOT
175 * enabled for polling. The return value is composed from ERR_NONE,
176 * ERR_RETRYABLE and ERR_FATAL. It may return a warning or an error message in
177 * <errmsg> if the message is at most <errlen> bytes long (including '\0').
178 * Note that <errmsg> may be NULL if <errlen> is also zero.
179 */
180static int sockpair_bind_listener(struct listener *listener, char *errmsg, int errlen)
181{
William Lallemand2fe7dd02018-09-11 16:51:29 +0200182 int err;
Willy Tarreau9eda7a62020-09-02 18:02:00 +0200183 char *msg = NULL;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200184
185 err = ERR_NONE;
186
187 /* ensure we never return garbage */
188 if (errlen)
189 *errmsg = 0;
190
191 if (listener->state != LI_ASSIGNED)
192 return ERR_NONE; /* already bound */
193
Willy Tarreauad33acf2020-09-02 18:40:02 +0200194 if (!(listener->rx.flags & RX_F_BOUND)) {
195 msg = "receiving socket not bound";
196 goto err_return;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200197 }
Willy Tarreauad33acf2020-09-02 18:40:02 +0200198
Willy Tarreaua37b2442020-09-24 07:23:45 +0200199 listener_set_state(listener, LI_LISTEN);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200200 return err;
201
202 err_return:
203 if (msg && errlen)
Willy Tarreau9eda7a62020-09-02 18:02:00 +0200204 snprintf(errmsg, errlen, "%s [fd %d]", msg, listener->rx.fd);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200205 return err;
206}
207
208/*
209 * Send FD over a unix socket
210 *
211 * <send_fd> is the FD to send
212 * <fd> is the fd of the unix socket to use for the transfer
213 *
214 * The iobuf variable could be use in the future to enhance the protocol.
215 */
216int send_fd_uxst(int fd, int send_fd)
217{
218 char iobuf[2];
219 struct iovec iov;
220 struct msghdr msghdr;
221
222 char cmsgbuf[CMSG_SPACE(sizeof(int))];
223 char buf[CMSG_SPACE(sizeof(int))];
224 struct cmsghdr *cmsg = (void *)buf;
225
226 int *fdptr;
227
228 iov.iov_base = iobuf;
229 iov.iov_len = sizeof(iobuf);
230
231 memset(&msghdr, 0, sizeof(msghdr));
232 msghdr.msg_iov = &iov;
233 msghdr.msg_iovlen = 1;
234
235 /* Now send the fds */
236 msghdr.msg_control = cmsgbuf;
237 msghdr.msg_controllen = CMSG_SPACE(sizeof(int));
238
239 cmsg = CMSG_FIRSTHDR(&msghdr);
240 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
241 cmsg->cmsg_level = SOL_SOCKET;
242 cmsg->cmsg_type = SCM_RIGHTS;
243
244 fdptr = (int *)CMSG_DATA(cmsg);
245 memcpy(fdptr, &send_fd, sizeof(send_fd));
246
247 if (sendmsg(fd, &msghdr, 0) != sizeof(iobuf)) {
248 ha_warning("Failed to transfer socket\n");
249 return 1;
250 }
251
252 return 0;
253}
254
255/*
256 *
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800257 * This function works like uxst_connect_server but instead of creating a
William Lallemand2fe7dd02018-09-11 16:51:29 +0200258 * socket and establishing a connection, it creates a pair of connected
259 * sockets, and send one of them through the destination FD. The destination FD
Willy Tarreau3f4fa092019-07-17 16:42:04 +0200260 * is stored in conn->dst->sin_addr.s_addr during configuration parsing.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200261 *
262 * conn->target may point either to a valid server or to a backend, depending
263 * on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are supported. The
264 * <data> parameter is a boolean indicating whether there are data waiting for
265 * being sent or not, in order to adjust data write polling and on some
266 * platforms. The <delack> argument is ignored.
267 *
268 * Note that a pending send_proxy message accounts for data.
269 *
270 * It can return one of :
271 * - SF_ERR_NONE if everything's OK
272 * - SF_ERR_SRVTO if there are no more servers
273 * - SF_ERR_SRVCL if the connection was refused by the server
274 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
275 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
276 * - SF_ERR_INTERNAL for any other purely internal errors
277 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
278 *
279 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
280 * it's invalid and the caller has nothing to do.
281 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200282static int sockpair_connect_server(struct connection *conn, int flags)
William Lallemand2fe7dd02018-09-11 16:51:29 +0200283{
284 int sv[2], fd, dst_fd = -1;
285
286 /* the FD is stored in the sockaddr struct */
Willy Tarreau3f4fa092019-07-17 16:42:04 +0200287 dst_fd = ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200288
William Lallemand2fe7dd02018-09-11 16:51:29 +0200289 if (obj_type(conn->target) != OBJ_TYPE_PROXY &&
290 obj_type(conn->target) != OBJ_TYPE_SERVER) {
291 conn->flags |= CO_FL_ERROR;
292 return SF_ERR_INTERNAL;
293 }
294
295 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) == -1) {
296 ha_alert("socketpair(): Cannot create socketpair. Giving up.\n");
297 conn->flags |= CO_FL_ERROR;
298 return SF_ERR_RESOURCE;
299 }
300
301 fd = conn->handle.fd = sv[1];
302
303 if (fd >= global.maxsock) {
304 /* do not log anything there, it's a normal condition when this option
305 * is used to serialize connections to a server !
306 */
307 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
308 close(sv[0]);
309 close(sv[1]);
310 conn->err_code = CO_ER_CONF_FDLIM;
311 conn->flags |= CO_FL_ERROR;
312 return SF_ERR_PRXCOND; /* it is a configuration limit */
313 }
314
Willy Tarreau38247432022-04-26 10:24:14 +0200315 if (fd_set_nonblock(fd) == -1) {
William Lallemand2fe7dd02018-09-11 16:51:29 +0200316 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
317 close(sv[0]);
318 close(sv[1]);
319 conn->err_code = CO_ER_SOCK_ERR;
320 conn->flags |= CO_FL_ERROR;
321 return SF_ERR_INTERNAL;
322 }
323
Willy Tarreau38247432022-04-26 10:24:14 +0200324 if (master == 1 && fd_set_cloexec(fd) == -1) {
William Lallemandc03eb012018-11-27 12:02:37 +0100325 ha_alert("Cannot set CLOEXEC on client socket.\n");
326 close(sv[0]);
327 close(sv[1]);
328 conn->err_code = CO_ER_SOCK_ERR;
329 conn->flags |= CO_FL_ERROR;
330 return SF_ERR_INTERNAL;
331 }
332
William Lallemand2fe7dd02018-09-11 16:51:29 +0200333 if (global.tune.server_sndbuf)
334 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
335
336 if (global.tune.server_rcvbuf)
337 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
338
339 /* The new socket is sent on the other side, it should be retrieved and
340 * considered as an 'accept' socket on the server side */
341 if (send_fd_uxst(dst_fd, sv[0]) == -1) {
342 close(sv[0]);
343 close(sv[1]);
344 conn->err_code = CO_ER_SOCK_ERR;
345 conn->flags |= CO_FL_ERROR;
346 return SF_ERR_INTERNAL;
347 }
348
349 close(sv[0]); /* we don't need this side anymore */
350
351 conn->flags &= ~CO_FL_WAIT_L4_CONN;
352
353 conn->flags |= CO_FL_ADDR_TO_SET;
354
355 /* Prepare to send a few handshakes related to the on-wire protocol. */
356 if (conn->send_proxy_ofs)
357 conn->flags |= CO_FL_SEND_PROXY;
358
359 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreaub41a6e92021-04-06 17:49:19 +0200360 HA_ATOMIC_AND(&fdtab[fd].state, ~FD_LINGER_RISK); /* no need to disable lingering */
William Lallemand2fe7dd02018-09-11 16:51:29 +0200361
William Lallemand2fe7dd02018-09-11 16:51:29 +0200362 return SF_ERR_NONE; /* connection is OK */
363}
364
365
366/*
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800367 * Receives a file descriptor transferred from a unix socket.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200368 *
369 * Return -1 or a socket fd;
370 *
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800371 * The iobuf variable could be used in the future to enhance the protocol.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200372 */
373int recv_fd_uxst(int sock)
374{
375 struct msghdr msghdr;
376 struct iovec iov;
377 char iobuf[2];
378
379 char cmsgbuf[CMSG_SPACE(sizeof(int))];
380 char buf[CMSG_SPACE(sizeof(int))];
381 struct cmsghdr *cmsg = (void *)buf;
382
383
384 int recv_fd = -1;
385 int ret = -1;
386
387 memset(&msghdr, 0, sizeof(msghdr));
388
389 iov.iov_base = iobuf;
390 iov.iov_len = sizeof(iobuf);
391
392 msghdr.msg_iov = &iov;
393 msghdr.msg_iovlen = 1;
394
395 msghdr.msg_control = cmsgbuf;
396 msghdr.msg_controllen = CMSG_SPACE(sizeof(int));
397
398 iov.iov_len = sizeof(iobuf);
399 iov.iov_base = iobuf;
400
401 while (1) {
402 ret = recvmsg(sock, &msghdr, 0);
403 if (ret == -1 && errno == EINTR)
404 continue;
405 else
406 break;
407 }
408
409 if (ret == -1)
410 return ret;
411
412 cmsg = CMSG_FIRSTHDR(&msghdr);
Willy Tarreau7d7ab432018-09-20 11:39:39 +0200413 if (cmsg && cmsg->cmsg_level == SOL_SOCKET &&
William Lallemand2fe7dd02018-09-11 16:51:29 +0200414 cmsg->cmsg_type == SCM_RIGHTS) {
415 size_t totlen = cmsg->cmsg_len -
416 CMSG_LEN(0);
417 memcpy(&recv_fd, CMSG_DATA(cmsg), totlen);
418 }
419 return recv_fd;
420}
421
Willy Tarreaucc8b6532020-10-13 17:27:34 +0200422/* Tests if the receiver supports accepting connections. Returns positive on
423 * success, 0 if not possible, negative if the socket is non-recoverable. In
424 * practice zero is never returned since we don't support suspending sockets.
425 * The real test consists in verifying we have a connected SOCK_STREAM of
426 * family AF_UNIX.
427 */
Willy Tarreau7d053e42020-10-15 09:19:43 +0200428static int sockpair_accepting_conn(const struct receiver *rx)
Willy Tarreaucc8b6532020-10-13 17:27:34 +0200429{
430 struct sockaddr sa;
431 socklen_t len;
432 int val;
433
434 len = sizeof(val);
435 if (getsockopt(rx->fd, SOL_SOCKET, SO_TYPE, &val, &len) == -1)
436 return -1;
437
438 if (val != SOCK_STREAM)
439 return -1;
440
441 len = sizeof(sa);
442 if (getsockname(rx->fd, &sa, &len) != 0)
443 return -1;
444
445 if (sa.sa_family != AF_UNIX)
446 return -1;
447
448 len = sizeof(val);
449 if (getsockopt(rx->fd, SOL_SOCKET, SO_ACCEPTCONN, &val, &len) == -1)
450 return -1;
451
452 /* Note: cannot be a listening socket, must be established */
453 if (val)
454 return -1;
455
456 return 1;
457}
458
Willy Tarreau344b8fc2020-10-15 09:43:31 +0200459/* Accept an incoming connection from listener <l>, and return it, as well as
460 * a CO_AC_* status code into <status> if not null. Null is returned on error.
461 * <l> must be a valid listener with a valid frontend.
462 */
463struct connection *sockpair_accept_conn(struct listener *l, int *status)
464{
465 struct proxy *p = l->bind_conf->frontend;
466 struct connection *conn = NULL;
467 int ret;
468 int cfd;
469
470 if ((cfd = recv_fd_uxst(l->rx.fd)) != -1)
Willy Tarreau38247432022-04-26 10:24:14 +0200471 fd_set_nonblock(cfd);
Willy Tarreau344b8fc2020-10-15 09:43:31 +0200472
473 if (likely(cfd != -1)) {
474 /* Perfect, the connection was accepted */
475 conn = conn_new(&l->obj_type);
476 if (!conn)
477 goto fail_conn;
478
479 if (!sockaddr_alloc(&conn->src, NULL, 0))
480 goto fail_addr;
481
482 /* just like with UNIX sockets, only the family is filled */
483 conn->src->ss_family = AF_UNIX;
484 conn->handle.fd = cfd;
485 conn->flags |= CO_FL_ADDR_FROM_SET;
486 ret = CO_AC_DONE;
487 goto done;
488 }
489
490 switch (errno) {
Willy Tarreauacef5e22022-04-25 20:32:15 +0200491#if defined(EWOULDBLOCK) && defined(EAGAIN) && EWOULDBLOCK != EAGAIN
492 case EWOULDBLOCK:
493#endif
Willy Tarreau344b8fc2020-10-15 09:43:31 +0200494 case EAGAIN:
495 ret = CO_AC_DONE; /* nothing more to accept */
Willy Tarreauf5090652021-04-06 17:23:40 +0200496 if (fdtab[l->rx.fd].state & (FD_POLL_HUP|FD_POLL_ERR)) {
Willy Tarreau344b8fc2020-10-15 09:43:31 +0200497 /* the listening socket might have been disabled in a shared
498 * process and we're a collateral victim. We'll just pause for
499 * a while in case it comes back. In the mean time, we need to
500 * clear this sticky flag.
501 */
Willy Tarreauf5090652021-04-06 17:23:40 +0200502 _HA_ATOMIC_AND(&fdtab[l->rx.fd].state, ~(FD_POLL_HUP|FD_POLL_ERR));
Willy Tarreau344b8fc2020-10-15 09:43:31 +0200503 ret = CO_AC_PAUSE;
504 }
505 fd_cant_recv(l->rx.fd);
506 break;
507
508 case EINVAL:
509 /* might be trying to accept on a shut fd (eg: soft stop) */
510 ret = CO_AC_PAUSE;
511 break;
512
513 case EINTR:
514 case ECONNABORTED:
515 ret = CO_AC_RETRY;
516 break;
517
518 case ENFILE:
519 if (p)
520 send_log(p, LOG_EMERG,
521 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
522 p->id, global.maxsock);
523 ret = CO_AC_PAUSE;
524 break;
525
526 case EMFILE:
527 if (p)
528 send_log(p, LOG_EMERG,
529 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
530 p->id, global.maxsock);
531 ret = CO_AC_PAUSE;
532 break;
533
534 case ENOBUFS:
535 case ENOMEM:
536 if (p)
537 send_log(p, LOG_EMERG,
538 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
539 p->id, global.maxsock);
540 ret = CO_AC_PAUSE;
541 break;
542
543 default:
544 /* unexpected result, let's give up and let other tasks run */
545 ret = CO_AC_YIELD;
546 }
547 done:
548 if (status)
549 *status = ret;
550 return conn;
551
552 fail_addr:
553 conn_free(conn);
554 conn = NULL;
555 fail_conn:
556 ret = CO_AC_PAUSE;
557 goto done;
558}
559
William Lallemand2fe7dd02018-09-11 16:51:29 +0200560/*
561 * Local variables:
562 * c-indent-level: 8
563 * c-basic-offset: 8
564 * End:
565 */