blob: d33f8c3a7af23722c41658f462c8bb09a80fa604 [file] [log] [blame]
Willy Tarreau92fb9832007-10-16 17:34:28 +02001/*
2 * UNIX SOCK_STREAM protocol layer (uxst)
3 *
Willy Tarreaueb472682010-05-28 18:46:57 +02004 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreau92fb9832007-10-16 17:34:28 +02005 *
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>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
20#include <time.h>
21
Willy Tarreau92fb9832007-10-16 17:34:28 +020022#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <sys/un.h>
26
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020027#include <haproxy/api.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/fd.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020032#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020033#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020034#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/protocol.h>
Willy Tarreau18b7df72020-08-28 12:07:22 +020036#include <haproxy/sock.h>
Willy Tarreauf1725582020-08-28 15:30:11 +020037#include <haproxy/sock_unix.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020038#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020040#include <haproxy/version.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020041
Willy Tarreau92fb9832007-10-16 17:34:28 +020042
Emeric Bruncf20bf12010-10-22 16:06:11 +020043static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen);
Olivier Houchardfdcb0072019-05-06 18:32:29 +020044static int uxst_connect_server(struct connection *conn, int flags);
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020045static void uxst_add_listener(struct listener *listener, int port);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020046static void uxst_enable_listener(struct listener *listener);
47static void uxst_disable_listener(struct listener *listener);
Willy Tarreaucb66ea62020-09-25 17:12:32 +020048static int uxst_suspend_receiver(struct receiver *rx);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010049
50/* Note: must not be declared <const> as its list will be overwritten */
51static struct protocol proto_unix = {
52 .name = "unix_stream",
Willy Tarreaub0254cb2020-09-04 08:07:11 +020053 .fam = &proto_fam_unix,
Willy Tarreaua54553f2020-09-16 17:50:45 +020054 .ctrl_type = SOCK_STREAM,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010055 .sock_domain = PF_UNIX,
56 .sock_type = SOCK_STREAM,
57 .sock_prot = 0,
Willy Tarreaucb66ea62020-09-25 17:12:32 +020058 .add = uxst_add_listener,
59 .listen = uxst_bind_listener,
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020060 .enable = uxst_enable_listener,
61 .disable = uxst_disable_listener,
Willy Tarreau7b2febd2020-10-09 17:18:29 +020062 .unbind = default_unbind_listener,
Willy Tarreaue03204c2020-10-09 17:02:21 +020063 .suspend = default_suspend_listener,
Willy Tarreauf1dc9f22020-10-15 09:21:31 +020064 .accept_conn = sock_accept_conn,
Willy Tarreau686fa3d2020-09-25 19:09:53 +020065 .rx_enable = sock_enable,
66 .rx_disable = sock_disable,
Willy Tarreauf58b8db2020-10-09 16:32:08 +020067 .rx_unbind = sock_unbind,
Willy Tarreaucb66ea62020-09-25 17:12:32 +020068 .rx_suspend = uxst_suspend_receiver,
Willy Tarreau7d053e42020-10-15 09:19:43 +020069 .rx_listening = sock_accepting_conn,
Willy Tarreaua74cb382020-10-15 21:29:49 +020070 .default_iocb = &sock_accept_iocb,
Willy Tarreau47f48c42014-05-09 22:57:47 +020071 .connect = &uxst_connect_server,
Willy Tarreaud7f331c2020-09-25 17:01:43 +020072 .receivers = LIST_HEAD_INIT(proto_unix.receivers),
73 .nb_receivers = 0,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010074};
75
Willy Tarreau0108d902018-11-25 19:14:37 +010076INITCALL1(STG_REGISTER, protocol_register, &proto_unix);
77
Willy Tarreaudabf2e22007-10-28 21:59:24 +010078/********************************
79 * 1) low-level socket functions
80 ********************************/
81
82
Cyril Bonté1f5848a2010-11-14 17:03:19 +010083/********************************
84 * 2) listener-oriented functions
85 ********************************/
86
Cyril Bonté1f5848a2010-11-14 17:03:19 +010087/* This function creates a UNIX socket associated to the listener. It changes
88 * the state from ASSIGNED to LISTEN. The socket is NOT enabled for polling.
Willy Tarreau8ab505b2013-01-24 01:41:38 +010089 * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. It
90 * may return a warning or an error message in <errmsg> if the message is at
91 * most <errlen> bytes long (including '\0'). Note that <errmsg> may be NULL if
92 * <errlen> is also zero.
Willy Tarreau92fb9832007-10-16 17:34:28 +020093 */
Cyril Bonté1f5848a2010-11-14 17:03:19 +010094static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen)
Willy Tarreau92fb9832007-10-16 17:34:28 +020095{
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +020096 int fd, err;
97 int ready;
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +020098 char *msg = NULL;
Willy Tarreau92fb9832007-10-16 17:34:28 +020099
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200100 err = ERR_NONE;
101
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100102 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100103 if (errlen)
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100104 *errmsg = 0;
105
106 if (listener->state != LI_ASSIGNED)
107 return ERR_NONE; /* already bound */
Willy Tarreau0b915012020-09-01 10:47:07 +0200108
Willy Tarreauad33acf2020-09-02 18:40:02 +0200109 if (!(listener->rx.flags & RX_F_BOUND)) {
110 msg = "receiving socket not bound";
111 goto uxst_return;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200112 }
113
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +0200114 fd = listener->rx.fd;
Willy Tarreau7d053e42020-10-15 09:19:43 +0200115 ready = sock_accepting_conn(&listener->rx) > 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100116
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +0200117 if (!ready && /* only listen if not already done by external process */
Willy Tarreaue2711c72019-02-27 15:39:41 +0100118 listen(fd, listener_backlog(listener)) < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200119 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100120 msg = "cannot listen to UNIX socket";
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +0200121 goto uxst_close_return;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200122 }
123
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100124 /* the socket is now listening */
Willy Tarreaua37b2442020-09-24 07:23:45 +0200125 listener_set_state(listener, LI_LISTEN);
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200126 return err;
127
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +0200128 uxst_close_return:
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100129 close(fd);
Willy Tarreauad33acf2020-09-02 18:40:02 +0200130 uxst_return:
Willy Tarreau40aa0702013-03-10 23:51:38 +0100131 if (msg && errlen) {
Willy Tarreaucd5e5ea2020-09-02 17:21:02 +0200132 const char *path = ((struct sockaddr_un *)&listener->rx.addr)->sun_path;
133 snprintf(errmsg, errlen, "%s [%s]", msg, path);
Willy Tarreau40aa0702013-03-10 23:51:38 +0100134 }
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200135 return err;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100136}
137
Willy Tarreau32282382017-09-15 07:44:44 +0200138/* Add <listener> to the list of unix stream listeners (port is ignored). The
139 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
140 * The number of listeners for the protocol is updated.
Willy Tarreaudaacf362019-07-24 16:45:02 +0200141 *
142 * Must be called with proto_lock held.
143 *
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100144 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +0200145static void uxst_add_listener(struct listener *listener, int port)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100146{
147 if (listener->state != LI_INIT)
148 return;
Willy Tarreaua37b2442020-09-24 07:23:45 +0200149 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaub7436612020-08-28 19:51:44 +0200150 listener->rx.proto = &proto_unix;
Willy Tarreaud7f331c2020-09-25 17:01:43 +0200151 LIST_ADDQ(&proto_unix.receivers, &listener->rx.proto_list);
152 proto_unix.nb_receivers++;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100153}
154
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200155/* Enable receipt of incoming connections for listener <l>. The receiver must
156 * still be valid. Does nothing in early boot (needs fd_updt).
157 */
158static void uxst_enable_listener(struct listener *l)
159{
160 if (fd_updt)
161 fd_want_recv(l->rx.fd);
162}
163
164/* Disable receipt of incoming connections for listener <l>. The receiver must
165 * still be valid. Does nothing in early boot (needs fd_updt).
166 */
167static void uxst_disable_listener(struct listener *l)
168{
169 if (fd_updt)
170 fd_stop_recv(l->rx.fd);
171}
172
Willy Tarreaucb66ea62020-09-25 17:12:32 +0200173/* Suspend a receiver. Returns < 0 in case of failure, 0 if the receiver
174 * was totally stopped, or > 0 if correctly suspended. Nothing is done for
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200175 * plain unix sockets since currently it's the new process which handles
Willy Tarreaue53608b2020-09-24 18:20:37 +0200176 * the renaming. Abstract sockets are completely unbound and closed so
177 * there's no need to stop the poller.
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200178 */
Willy Tarreaucb66ea62020-09-25 17:12:32 +0200179static int uxst_suspend_receiver(struct receiver *rx)
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200180{
Willy Tarreaucb66ea62020-09-25 17:12:32 +0200181 struct listener *l = LIST_ELEM(rx, struct listener *, rx);
182
183 if (((struct sockaddr_un *)&rx->addr)->sun_path[0])
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200184 return 1;
185
Christopher Faulet510c0d62018-03-16 10:04:47 +0100186 /* Listener's lock already held. Call lockless version of
187 * unbind_listener. */
Willy Tarreau75c98d12020-10-09 15:55:23 +0200188 do_unbind_listener(l);
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200189 return 0;
190}
191
Willy Tarreau47f48c42014-05-09 22:57:47 +0200192
193/*
194 * This function initiates a UNIX connection establishment to the target assigned
Willy Tarreauca9f5a92019-07-17 16:40:37 +0200195 * to connection <conn> using (si->{target,dst}). The source address is ignored
Willy Tarreau47f48c42014-05-09 22:57:47 +0200196 * and will be selected by the system. conn->target may point either to a valid
197 * server or to a backend, depending on conn->target. Only OBJ_TYPE_PROXY and
198 * OBJ_TYPE_SERVER are supported. The <data> parameter is a boolean indicating
199 * whether there are data waiting for being sent or not, in order to adjust data
200 * write polling and on some platforms. The <delack> argument is ignored.
201 *
202 * Note that a pending send_proxy message accounts for data.
203 *
204 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200205 * - SF_ERR_NONE if everything's OK
206 * - SF_ERR_SRVTO if there are no more servers
207 * - SF_ERR_SRVCL if the connection was refused by the server
208 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
209 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
210 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +0100211 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau47f48c42014-05-09 22:57:47 +0200212 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200213 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau47f48c42014-05-09 22:57:47 +0200214 * it's invalid and the caller has nothing to do.
215 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200216static int uxst_connect_server(struct connection *conn, int flags)
Willy Tarreau47f48c42014-05-09 22:57:47 +0200217{
218 int fd;
219 struct server *srv;
220 struct proxy *be;
221
Willy Tarreau47f48c42014-05-09 22:57:47 +0200222 switch (obj_type(conn->target)) {
223 case OBJ_TYPE_PROXY:
224 be = objt_proxy(conn->target);
225 srv = NULL;
226 break;
227 case OBJ_TYPE_SERVER:
228 srv = objt_server(conn->target);
229 be = srv->proxy;
230 break;
231 default:
232 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200233 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200234 }
235
Willy Tarreau585744b2017-08-24 14:31:19 +0200236 if ((fd = conn->handle.fd = socket(PF_UNIX, SOCK_STREAM, 0)) == -1) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200237 qfprintf(stderr, "Cannot get a server socket.\n");
238
239 if (errno == ENFILE) {
240 conn->err_code = CO_ER_SYS_FDLIM;
241 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100242 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
243 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200244 }
245 else if (errno == EMFILE) {
246 conn->err_code = CO_ER_PROC_FDLIM;
247 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100248 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
249 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200250 }
251 else if (errno == ENOBUFS || errno == ENOMEM) {
252 conn->err_code = CO_ER_SYS_MEMLIM;
253 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100254 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
255 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200256 }
257 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
258 conn->err_code = CO_ER_NOPROTO;
259 }
260 else
261 conn->err_code = CO_ER_SOCK_ERR;
262
263 /* this is a resource error */
264 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200265 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200266 }
267
268 if (fd >= global.maxsock) {
269 /* do not log anything there, it's a normal condition when this option
270 * is used to serialize connections to a server !
271 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100272 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau47f48c42014-05-09 22:57:47 +0200273 close(fd);
274 conn->err_code = CO_ER_CONF_FDLIM;
275 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200276 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200277 }
278
279 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
280 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
281 close(fd);
282 conn->err_code = CO_ER_SOCK_ERR;
283 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200284 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200285 }
286
William Lallemandc03eb012018-11-27 12:02:37 +0100287 if (master == 1 && (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)) {
288 ha_alert("Cannot set CLOEXEC on client socket.\n");
289 close(fd);
290 conn->err_code = CO_ER_SOCK_ERR;
291 conn->flags |= CO_FL_ERROR;
292 return SF_ERR_INTERNAL;
293 }
294
Willy Tarreau47f48c42014-05-09 22:57:47 +0200295 /* if a send_proxy is there, there are data */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200296 if (conn->send_proxy_ofs)
297 flags |= CONNECT_HAS_DATA;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200298
299 if (global.tune.server_sndbuf)
300 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
301
302 if (global.tune.server_rcvbuf)
303 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
304
Willy Tarreauca9f5a92019-07-17 16:40:37 +0200305 if (connect(fd, (struct sockaddr *)conn->dst, get_addr_len(conn->dst)) == -1) {
Willy Tarreau94841792017-01-25 14:27:38 +0100306 if (errno == EINPROGRESS || errno == EALREADY) {
Willy Tarreau7bb21532014-05-10 09:48:28 +0200307 conn->flags |= CO_FL_WAIT_L4_CONN;
308 }
Willy Tarreau94841792017-01-25 14:27:38 +0100309 else if (errno == EISCONN) {
310 conn->flags &= ~CO_FL_WAIT_L4_CONN;
311 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200312 else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200313 char *msg;
314 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Lukas Tribus9f256d42016-01-26 20:33:14 +0100315 msg = "can't connect to destination unix socket, check backlog size on the server";
Willy Tarreau47f48c42014-05-09 22:57:47 +0200316 conn->err_code = CO_ER_FREE_PORTS;
317 }
318 else {
319 msg = "local address already in use";
320 conn->err_code = CO_ER_ADDR_INUSE;
321 }
322
323 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
324 close(fd);
325 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
326 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200327 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200328 }
329 else if (errno == ETIMEDOUT) {
330 close(fd);
331 conn->err_code = CO_ER_SOCK_ERR;
332 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200333 return SF_ERR_SRVTO;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200334 }
335 else { // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
336 close(fd);
337 conn->err_code = CO_ER_SOCK_ERR;
338 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200339 return SF_ERR_SRVCL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200340 }
341 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200342 else {
343 /* connect() already succeeded, which is quite usual for unix
Willy Tarreau94841792017-01-25 14:27:38 +0100344 * sockets. Let's avoid a second connect() probe to complete it.
Willy Tarreau7bb21532014-05-10 09:48:28 +0200345 */
346 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau7bb21532014-05-10 09:48:28 +0200347 }
Willy Tarreau47f48c42014-05-09 22:57:47 +0200348
349 conn->flags |= CO_FL_ADDR_TO_SET;
350
351 /* Prepare to send a few handshakes related to the on-wire protocol. */
352 if (conn->send_proxy_ofs)
353 conn->flags |= CO_FL_SEND_PROXY;
354
355 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreau7bb21532014-05-10 09:48:28 +0200356 fdtab[fd].linger_risk = 0; /* no need to disable lingering */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200357
Willy Tarreau4c69cff2020-03-04 16:38:00 +0100358 if (conn->flags & CO_FL_WAIT_L4_CONN) {
359 fd_want_send(fd);
360 fd_cant_send(fd);
Willy Tarreau8dbd1a22020-07-31 08:59:09 +0200361 fd_cant_recv(fd);
Willy Tarreau4c69cff2020-03-04 16:38:00 +0100362 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200363
Willy Tarreau47f48c42014-05-09 22:57:47 +0200364 if (conn_xprt_init(conn) < 0) {
Willy Tarreau8c829012017-10-05 18:02:11 +0200365 conn_full_close(conn);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200366 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200367 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200368 }
369
Willy Tarreaue7dff022015-04-03 01:14:29 +0200370 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200371}
372
Willy Tarreau92fb9832007-10-16 17:34:28 +0200373/*
374 * Local variables:
375 * c-indent-level: 8
376 * c-basic-offset: 8
377 * End:
378 */