blob: f43aa8229e6f26bbf5893d11fc633fd159e77def [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>
15#include <fcntl.h>
16#include <pwd.h>
17#include <grp.h>
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21#include <syslog.h>
22#include <time.h>
23
24#include <sys/socket.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <sys/un.h>
28
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020029#include <haproxy/api.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020030#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#include <haproxy/fd.h>
33#include <haproxy/freq_ctr.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020034#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020035#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020036#include <haproxy/listener.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 Tarreau92b4f132020-06-01 11:05:15 +020040#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020042#include <haproxy/version.h>
William Lallemand2fe7dd02018-09-11 16:51:29 +020043
William Lallemand2fe7dd02018-09-11 16:51:29 +020044
45static void sockpair_add_listener(struct listener *listener, int port);
46static int sockpair_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020047static void sockpair_enable_listener(struct listener *listener);
48static void sockpair_disable_listener(struct listener *listener);
Olivier Houchardfdcb0072019-05-06 18:32:29 +020049static int sockpair_connect_server(struct connection *conn, int flags);
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 */
64static struct protocol proto_sockpair = {
65 .name = "sockpair",
Willy Tarreaub0254cb2020-09-04 08:07:11 +020066 .fam = &proto_fam_sockpair,
Willy Tarreaua54553f2020-09-16 17:50:45 +020067 .ctrl_type = SOCK_STREAM,
William Lallemand2fe7dd02018-09-11 16:51:29 +020068 .sock_domain = AF_CUST_SOCKPAIR,
69 .sock_type = SOCK_STREAM,
70 .sock_prot = 0,
Willy Tarreaucb66ea62020-09-25 17:12:32 +020071 .add = sockpair_add_listener,
72 .listen = sockpair_bind_listener,
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +020073 .enable = sockpair_enable_listener,
74 .disable = sockpair_disable_listener,
Willy Tarreau686fa3d2020-09-25 19:09:53 +020075 .rx_enable = sock_enable,
76 .rx_disable = sock_disable,
William Lallemand2fe7dd02018-09-11 16:51:29 +020077 .accept = &listener_accept,
78 .connect = &sockpair_connect_server,
Willy Tarreaud7f331c2020-09-25 17:01:43 +020079 .receivers = LIST_HEAD_INIT(proto_sockpair.receivers),
80 .nb_receivers = 0,
William Lallemand2fe7dd02018-09-11 16:51:29 +020081};
82
Willy Tarreau0108d902018-11-25 19:14:37 +010083INITCALL1(STG_REGISTER, protocol_register, &proto_sockpair);
84
William Lallemand2fe7dd02018-09-11 16:51:29 +020085/* Add <listener> to the list of sockpair listeners (port is ignored). The
86 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
87 * The number of listeners for the protocol is updated.
Willy Tarreaudaacf362019-07-24 16:45:02 +020088 *
89 * Must be called with proto_lock held.
90 *
William Lallemand2fe7dd02018-09-11 16:51:29 +020091 */
92static void sockpair_add_listener(struct listener *listener, int port)
93{
94 if (listener->state != LI_INIT)
95 return;
Willy Tarreaua37b2442020-09-24 07:23:45 +020096 listener_set_state(listener, LI_ASSIGNED);
Willy Tarreaub7436612020-08-28 19:51:44 +020097 listener->rx.proto = &proto_sockpair;
Willy Tarreaud7f331c2020-09-25 17:01:43 +020098 LIST_ADDQ(&proto_sockpair.receivers, &listener->rx.proto_list);
99 proto_sockpair.nb_receivers++;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200100}
101
Willy Tarreau5ddf1ce2020-09-25 19:27:39 +0200102/* Enable receipt of incoming connections for listener <l>. The receiver must
103 * still be valid. Does nothing in early boot (needs fd_updt).
104 */
105static void sockpair_enable_listener(struct listener *l)
106{
107 if (fd_updt)
108 fd_want_recv(l->rx.fd);
109}
110
111/* Disable receipt of incoming connections for listener <l>. The receiver must
112 * still be valid. Does nothing in early boot (needs fd_updt).
113 */
114static void sockpair_disable_listener(struct listener *l)
115{
116 if (fd_updt)
117 fd_stop_recv(l->rx.fd);
118}
119
Willy Tarreau62292b22020-09-02 17:52:23 +0200120/* Binds receiver <rx>, and assigns <handler> and rx->owner as the callback and
121 * context, respectively, with <tm> as the thread mask. Returns and error code
122 * made of ERR_* bits on failure or ERR_NONE on success. On failure, an error
123 * message may be passed into <errmsg>. Note that the binding address is only
124 * an FD to receive the incoming FDs on. Thus by definition there is no real
125 * "bind" operation, this only completes the receiver. Such FDs are not
126 * inherited upon reload.
127 */
128int sockpair_bind_receiver(struct receiver *rx, void (*handler)(int fd), char **errmsg)
129{
130 int err;
131
132 /* ensure we never return garbage */
133 if (errmsg)
134 *errmsg = 0;
135
136 err = ERR_NONE;
137
138 if (rx->flags & RX_F_BOUND)
139 return ERR_NONE;
140
141 if (rx->fd == -1) {
142 err |= ERR_FATAL | ERR_ALERT;
143 memprintf(errmsg, "sockpair may be only used with inherited FDs");
144 goto bind_return;
145 }
146
147 if (rx->fd >= global.maxsock) {
148 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
149 memprintf(errmsg, "not enough free sockets (raise '-n' parameter)");
150 goto bind_close_return;
151 }
152
153 if (fcntl(rx->fd, F_SETFL, O_NONBLOCK) == -1) {
154 err |= ERR_FATAL | ERR_ALERT;
155 memprintf(errmsg, "cannot make socket non-blocking");
156 goto bind_close_return;
157 }
158
159 rx->flags |= RX_F_BOUND;
160
161 fd_insert(rx->fd, rx->owner, handler, thread_mask(rx->settings->bind_thread) & all_threads_mask);
162 return err;
163
164 bind_return:
165 if (errmsg && *errmsg)
166 memprintf(errmsg, "%s [fd %d]", *errmsg, rx->fd);
167
168 return err;
169
170 bind_close_return:
171 close(rx->fd);
172 goto bind_return;
173}
174
William Lallemand2fe7dd02018-09-11 16:51:29 +0200175/* This function changes the state from ASSIGNED to LISTEN. The socket is NOT
176 * enabled for polling. The return value is composed from ERR_NONE,
177 * ERR_RETRYABLE and ERR_FATAL. It may return a warning or an error message in
178 * <errmsg> if the message is at most <errlen> bytes long (including '\0').
179 * Note that <errmsg> may be NULL if <errlen> is also zero.
180 */
181static int sockpair_bind_listener(struct listener *listener, char *errmsg, int errlen)
182{
William Lallemand2fe7dd02018-09-11 16:51:29 +0200183 int err;
Willy Tarreau9eda7a62020-09-02 18:02:00 +0200184 char *msg = NULL;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200185
186 err = ERR_NONE;
187
188 /* ensure we never return garbage */
189 if (errlen)
190 *errmsg = 0;
191
192 if (listener->state != LI_ASSIGNED)
193 return ERR_NONE; /* already bound */
194
Willy Tarreauad33acf2020-09-02 18:40:02 +0200195 if (!(listener->rx.flags & RX_F_BOUND)) {
196 msg = "receiving socket not bound";
197 goto err_return;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200198 }
Willy Tarreauad33acf2020-09-02 18:40:02 +0200199
Willy Tarreaua37b2442020-09-24 07:23:45 +0200200 listener_set_state(listener, LI_LISTEN);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200201 return err;
202
203 err_return:
204 if (msg && errlen)
Willy Tarreau9eda7a62020-09-02 18:02:00 +0200205 snprintf(errmsg, errlen, "%s [fd %d]", msg, listener->rx.fd);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200206 return err;
207}
208
209/*
210 * Send FD over a unix socket
211 *
212 * <send_fd> is the FD to send
213 * <fd> is the fd of the unix socket to use for the transfer
214 *
215 * The iobuf variable could be use in the future to enhance the protocol.
216 */
217int send_fd_uxst(int fd, int send_fd)
218{
219 char iobuf[2];
220 struct iovec iov;
221 struct msghdr msghdr;
222
223 char cmsgbuf[CMSG_SPACE(sizeof(int))];
224 char buf[CMSG_SPACE(sizeof(int))];
225 struct cmsghdr *cmsg = (void *)buf;
226
227 int *fdptr;
228
229 iov.iov_base = iobuf;
230 iov.iov_len = sizeof(iobuf);
231
232 memset(&msghdr, 0, sizeof(msghdr));
233 msghdr.msg_iov = &iov;
234 msghdr.msg_iovlen = 1;
235
236 /* Now send the fds */
237 msghdr.msg_control = cmsgbuf;
238 msghdr.msg_controllen = CMSG_SPACE(sizeof(int));
239
240 cmsg = CMSG_FIRSTHDR(&msghdr);
241 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
242 cmsg->cmsg_level = SOL_SOCKET;
243 cmsg->cmsg_type = SCM_RIGHTS;
244
245 fdptr = (int *)CMSG_DATA(cmsg);
246 memcpy(fdptr, &send_fd, sizeof(send_fd));
247
248 if (sendmsg(fd, &msghdr, 0) != sizeof(iobuf)) {
249 ha_warning("Failed to transfer socket\n");
250 return 1;
251 }
252
253 return 0;
254}
255
256/*
257 *
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800258 * This function works like uxst_connect_server but instead of creating a
William Lallemand2fe7dd02018-09-11 16:51:29 +0200259 * socket and establishing a connection, it creates a pair of connected
260 * sockets, and send one of them through the destination FD. The destination FD
Willy Tarreau3f4fa092019-07-17 16:42:04 +0200261 * is stored in conn->dst->sin_addr.s_addr during configuration parsing.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200262 *
263 * conn->target may point either to a valid server or to a backend, depending
264 * on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are supported. The
265 * <data> parameter is a boolean indicating whether there are data waiting for
266 * being sent or not, in order to adjust data write polling and on some
267 * platforms. The <delack> argument is ignored.
268 *
269 * Note that a pending send_proxy message accounts for data.
270 *
271 * It can return one of :
272 * - SF_ERR_NONE if everything's OK
273 * - SF_ERR_SRVTO if there are no more servers
274 * - SF_ERR_SRVCL if the connection was refused by the server
275 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
276 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
277 * - SF_ERR_INTERNAL for any other purely internal errors
278 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
279 *
280 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
281 * it's invalid and the caller has nothing to do.
282 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200283static int sockpair_connect_server(struct connection *conn, int flags)
William Lallemand2fe7dd02018-09-11 16:51:29 +0200284{
285 int sv[2], fd, dst_fd = -1;
286
287 /* the FD is stored in the sockaddr struct */
Willy Tarreau3f4fa092019-07-17 16:42:04 +0200288 dst_fd = ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200289
William Lallemand2fe7dd02018-09-11 16:51:29 +0200290 if (obj_type(conn->target) != OBJ_TYPE_PROXY &&
291 obj_type(conn->target) != OBJ_TYPE_SERVER) {
292 conn->flags |= CO_FL_ERROR;
293 return SF_ERR_INTERNAL;
294 }
295
296 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) == -1) {
297 ha_alert("socketpair(): Cannot create socketpair. Giving up.\n");
298 conn->flags |= CO_FL_ERROR;
299 return SF_ERR_RESOURCE;
300 }
301
302 fd = conn->handle.fd = sv[1];
303
304 if (fd >= global.maxsock) {
305 /* do not log anything there, it's a normal condition when this option
306 * is used to serialize connections to a server !
307 */
308 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
309 close(sv[0]);
310 close(sv[1]);
311 conn->err_code = CO_ER_CONF_FDLIM;
312 conn->flags |= CO_FL_ERROR;
313 return SF_ERR_PRXCOND; /* it is a configuration limit */
314 }
315
316 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
317 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
318 close(sv[0]);
319 close(sv[1]);
320 conn->err_code = CO_ER_SOCK_ERR;
321 conn->flags |= CO_FL_ERROR;
322 return SF_ERR_INTERNAL;
323 }
324
William Lallemandc03eb012018-11-27 12:02:37 +0100325 if (master == 1 && (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)) {
326 ha_alert("Cannot set CLOEXEC on client socket.\n");
327 close(sv[0]);
328 close(sv[1]);
329 conn->err_code = CO_ER_SOCK_ERR;
330 conn->flags |= CO_FL_ERROR;
331 return SF_ERR_INTERNAL;
332 }
333
William Lallemand2fe7dd02018-09-11 16:51:29 +0200334 /* if a send_proxy is there, there are data */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200335 if (conn->send_proxy_ofs)
336 flags |= CONNECT_HAS_DATA;
William Lallemand2fe7dd02018-09-11 16:51:29 +0200337
338 if (global.tune.server_sndbuf)
339 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
340
341 if (global.tune.server_rcvbuf)
342 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
343
344 /* The new socket is sent on the other side, it should be retrieved and
345 * considered as an 'accept' socket on the server side */
346 if (send_fd_uxst(dst_fd, sv[0]) == -1) {
347 close(sv[0]);
348 close(sv[1]);
349 conn->err_code = CO_ER_SOCK_ERR;
350 conn->flags |= CO_FL_ERROR;
351 return SF_ERR_INTERNAL;
352 }
353
354 close(sv[0]); /* we don't need this side anymore */
355
356 conn->flags &= ~CO_FL_WAIT_L4_CONN;
357
358 conn->flags |= CO_FL_ADDR_TO_SET;
359
360 /* Prepare to send a few handshakes related to the on-wire protocol. */
361 if (conn->send_proxy_ofs)
362 conn->flags |= CO_FL_SEND_PROXY;
363
364 conn_ctrl_init(conn); /* registers the FD */
365 fdtab[fd].linger_risk = 0; /* no need to disable lingering */
366
367 if (conn_xprt_init(conn) < 0) {
368 conn_full_close(conn);
369 conn->flags |= CO_FL_ERROR;
370 return SF_ERR_RESOURCE;
371 }
372
William Lallemand2fe7dd02018-09-11 16:51:29 +0200373 return SF_ERR_NONE; /* connection is OK */
374}
375
376
377/*
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800378 * Receives a file descriptor transferred from a unix socket.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200379 *
380 * Return -1 or a socket fd;
381 *
Joseph Herlant8bb32ae2018-11-25 11:43:27 -0800382 * The iobuf variable could be used in the future to enhance the protocol.
William Lallemand2fe7dd02018-09-11 16:51:29 +0200383 */
384int recv_fd_uxst(int sock)
385{
386 struct msghdr msghdr;
387 struct iovec iov;
388 char iobuf[2];
389
390 char cmsgbuf[CMSG_SPACE(sizeof(int))];
391 char buf[CMSG_SPACE(sizeof(int))];
392 struct cmsghdr *cmsg = (void *)buf;
393
394
395 int recv_fd = -1;
396 int ret = -1;
397
398 memset(&msghdr, 0, sizeof(msghdr));
399
400 iov.iov_base = iobuf;
401 iov.iov_len = sizeof(iobuf);
402
403 msghdr.msg_iov = &iov;
404 msghdr.msg_iovlen = 1;
405
406 msghdr.msg_control = cmsgbuf;
407 msghdr.msg_controllen = CMSG_SPACE(sizeof(int));
408
409 iov.iov_len = sizeof(iobuf);
410 iov.iov_base = iobuf;
411
412 while (1) {
413 ret = recvmsg(sock, &msghdr, 0);
414 if (ret == -1 && errno == EINTR)
415 continue;
416 else
417 break;
418 }
419
420 if (ret == -1)
421 return ret;
422
423 cmsg = CMSG_FIRSTHDR(&msghdr);
Willy Tarreau7d7ab432018-09-20 11:39:39 +0200424 if (cmsg && cmsg->cmsg_level == SOL_SOCKET &&
William Lallemand2fe7dd02018-09-11 16:51:29 +0200425 cmsg->cmsg_type == SCM_RIGHTS) {
426 size_t totlen = cmsg->cmsg_len -
427 CMSG_LEN(0);
428 memcpy(&recv_fd, CMSG_DATA(cmsg), totlen);
429 }
430 return recv_fd;
431}
432
William Lallemand2fe7dd02018-09-11 16:51:29 +0200433/*
434 * Local variables:
435 * c-indent-level: 8
436 * c-basic-offset: 8
437 * End:
438 */