blob: 878a10db5985e8c135bff08dd55bbe8f440a0d1f [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>
Willy Tarreaud0a895d2012-09-18 17:40:35 +020016#include <pwd.h>
17#include <grp.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020018#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21#include <syslog.h>
22#include <time.h>
23
Willy Tarreau92fb9832007-10-16 17:34:28 +020024#include <sys/socket.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <sys/un.h>
28
29#include <common/compat.h>
30#include <common/config.h>
31#include <common/debug.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010032#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010033#include <common/initcall.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020034#include <common/mini-clist.h>
35#include <common/standard.h>
36#include <common/time.h>
37#include <common/version.h>
38
Willy Tarreau92fb9832007-10-16 17:34:28 +020039#include <types/global.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020040
Willy Tarreau47f48c42014-05-09 22:57:47 +020041#include <proto/connection.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020042#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020043#include <proto/listener.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020044#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020045#include <proto/protocol.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020046#include <proto/task.h>
47
Emeric Bruncf20bf12010-10-22 16:06:11 +020048static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen);
49static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010050static int uxst_unbind_listeners(struct protocol *proto);
Willy Tarreau47f48c42014-05-09 22:57:47 +020051static int uxst_connect_server(struct connection *conn, int data, int delack);
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020052static void uxst_add_listener(struct listener *listener, int port);
Willy Tarreau31794892017-09-15 07:59:31 +020053static int uxst_pause_listener(struct listener *l);
54static int uxst_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir);
55static int uxst_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010056
57/* Note: must not be declared <const> as its list will be overwritten */
58static struct protocol proto_unix = {
59 .name = "unix_stream",
60 .sock_domain = PF_UNIX,
61 .sock_type = SOCK_STREAM,
62 .sock_prot = 0,
63 .sock_family = AF_UNIX,
64 .sock_addrlen = sizeof(struct sockaddr_un),
65 .l3_addrlen = sizeof(((struct sockaddr_un*)0)->sun_path),/* path len */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020066 .accept = &listener_accept,
Willy Tarreau47f48c42014-05-09 22:57:47 +020067 .connect = &uxst_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020068 .bind = uxst_bind_listener,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010069 .bind_all = uxst_bind_listeners,
70 .unbind_all = uxst_unbind_listeners,
71 .enable_all = enable_all_listeners,
72 .disable_all = disable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020073 .get_src = uxst_get_src,
74 .get_dst = uxst_get_dst,
Willy Tarreaufd0e0082014-07-07 21:07:51 +020075 .pause = uxst_pause_listener,
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020076 .add = uxst_add_listener,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010077 .listeners = LIST_HEAD_INIT(proto_unix.listeners),
78 .nb_listeners = 0,
79};
80
Willy Tarreau0108d902018-11-25 19:14:37 +010081INITCALL1(STG_REGISTER, protocol_register, &proto_unix);
82
Willy Tarreaudabf2e22007-10-28 21:59:24 +010083/********************************
84 * 1) low-level socket functions
85 ********************************/
86
Willy Tarreau59b94792012-05-11 16:16:40 +020087/*
88 * Retrieves the source address for the socket <fd>, with <dir> indicating
89 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
90 * success, -1 in case of error. The socket's source address is stored in
91 * <sa> for <salen> bytes.
92 */
Willy Tarreau31794892017-09-15 07:59:31 +020093static int uxst_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
Willy Tarreau59b94792012-05-11 16:16:40 +020094{
95 if (dir)
96 return getsockname(fd, sa, &salen);
97 else
98 return getpeername(fd, sa, &salen);
99}
100
101
102/*
103 * Retrieves the original destination address for the socket <fd>, with <dir>
104 * indicating if we're a listener (=0) or an initiator (!=0). It returns 0 in
105 * case of success, -1 in case of error. The socket's source address is stored
106 * in <sa> for <salen> bytes.
107 */
Willy Tarreau31794892017-09-15 07:59:31 +0200108static int uxst_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
Willy Tarreau59b94792012-05-11 16:16:40 +0200109{
110 if (dir)
111 return getpeername(fd, sa, &salen);
112 else
113 return getsockname(fd, sa, &salen);
114}
115
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100116
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100117/********************************
118 * 2) listener-oriented functions
119 ********************************/
120
121
Olivier Houchardf886e342017-04-05 22:24:59 +0200122static int uxst_find_compatible_fd(struct listener *l)
123{
124 struct xfer_sock_list *xfer_sock = xfer_sock_list;
125 int ret = -1;
126
127 while (xfer_sock) {
128 struct sockaddr_un *un1 = (void *)&l->addr;
129 struct sockaddr_un *un2 = (void *)&xfer_sock->addr;
130
131 /*
132 * The bound socket's path as returned by getsockaddr
133 * will be the temporary name <sockname>.XXXXX.tmp,
134 * so we can't just compare the two names
135 */
136 if (xfer_sock->addr.ss_family == AF_UNIX &&
137 strncmp(un1->sun_path, un2->sun_path,
138 strlen(un1->sun_path)) == 0) {
139 char *after_sockname = un2->sun_path +
140 strlen(un1->sun_path);
141 /* Make a reasonnable effort to check that
142 * it is indeed a haproxy-generated temporary
143 * name, it's not perfect, but probably good enough.
144 */
145 if (after_sockname[0] == '.') {
146 after_sockname++;
147 while (after_sockname[0] >= '0' &&
148 after_sockname[0] <= '9')
149 after_sockname++;
150 if (!strcmp(after_sockname, ".tmp"))
151 break;
Olivier Houchardb4dd15b2018-06-06 18:34:34 +0200152 /* abns sockets sun_path starts with a \0 */
153 } else if (un1->sun_path[0] == 0
154 && un2->sun_path[0] == 0
155 && !memcmp(&un1->sun_path[1], &un2->sun_path[1],
156 sizeof(un1->sun_path) - 1))
157 break;
Olivier Houchardf886e342017-04-05 22:24:59 +0200158 }
159 xfer_sock = xfer_sock->next;
160 }
161 if (xfer_sock != NULL) {
162 ret = xfer_sock->fd;
163 if (xfer_sock == xfer_sock_list)
164 xfer_sock_list = xfer_sock->next;
165 if (xfer_sock->prev)
166 xfer_sock->prev->next = xfer_sock->next;
167 if (xfer_sock->next)
Olivier Houchardec9516a2018-03-08 18:25:49 +0100168 xfer_sock->next->prev = xfer_sock->prev;
Olivier Houchardf886e342017-04-05 22:24:59 +0200169 free(xfer_sock);
170 }
171 return ret;
172
173}
174
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100175/* This function creates a UNIX socket associated to the listener. It changes
176 * the state from ASSIGNED to LISTEN. The socket is NOT enabled for polling.
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100177 * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. It
178 * may return a warning or an error message in <errmsg> if the message is at
179 * most <errlen> bytes long (including '\0'). Note that <errmsg> may be NULL if
180 * <errlen> is also zero.
Willy Tarreau92fb9832007-10-16 17:34:28 +0200181 */
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100182static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen)
Willy Tarreau92fb9832007-10-16 17:34:28 +0200183{
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100184 int fd;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200185 char tempname[MAXPATHLEN];
186 char backname[MAXPATHLEN];
187 struct sockaddr_un addr;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100188 const char *msg = NULL;
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100189 const char *path;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100190 int ext, ready;
191 socklen_t ready_len;
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200192 int err;
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100193 int ret;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200194
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200195 err = ERR_NONE;
196
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100197 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100198 if (errlen)
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100199 *errmsg = 0;
200
201 if (listener->state != LI_ASSIGNED)
202 return ERR_NONE; /* already bound */
203
Olivier Houchardf886e342017-04-05 22:24:59 +0200204 if (listener->fd == -1)
205 listener->fd = uxst_find_compatible_fd(listener);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100206 path = ((struct sockaddr_un *)&listener->addr)->sun_path;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200207
Willy Tarreau40aa0702013-03-10 23:51:38 +0100208 /* if the listener already has an fd assigned, then we were offered the
209 * fd by an external process (most likely the parent), and we don't want
210 * to create a new socket. However we still want to set a few flags on
211 * the socket.
212 */
213 fd = listener->fd;
214 ext = (fd >= 0);
215 if (ext)
216 goto fd_ready;
217
Willy Tarreauccfccef2014-05-10 01:49:15 +0200218 if (path[0]) {
219 ret = snprintf(tempname, MAXPATHLEN, "%s.%d.tmp", path, pid);
220 if (ret < 0 || ret >= MAXPATHLEN) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200221 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200222 msg = "name too long for UNIX socket";
223 goto err_return;
224 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200225
Willy Tarreauccfccef2014-05-10 01:49:15 +0200226 ret = snprintf(backname, MAXPATHLEN, "%s.%d.bak", path, pid);
227 if (ret < 0 || ret >= MAXPATHLEN) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200228 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200229 msg = "name too long for UNIX socket";
230 goto err_return;
231 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200232
Willy Tarreauccfccef2014-05-10 01:49:15 +0200233 /* 2. clean existing orphaned entries */
234 if (unlink(tempname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200235 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200236 msg = "error when trying to unlink previous UNIX socket";
237 goto err_return;
238 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200239
Willy Tarreauccfccef2014-05-10 01:49:15 +0200240 if (unlink(backname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200241 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200242 msg = "error when trying to unlink previous UNIX socket";
243 goto err_return;
244 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200245
Willy Tarreauccfccef2014-05-10 01:49:15 +0200246 /* 3. backup existing socket */
247 if (link(path, backname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200248 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200249 msg = "error when trying to preserve previous UNIX socket";
250 goto err_return;
251 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200252
Willy Tarreauccfccef2014-05-10 01:49:15 +0200253 strncpy(addr.sun_path, tempname, sizeof(addr.sun_path));
254 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200255 }
Willy Tarreauccfccef2014-05-10 01:49:15 +0200256 else {
257 /* first char is zero, it's an abstract socket whose address
258 * is defined by all the bytes past this zero.
259 */
260 memcpy(addr.sun_path, path, sizeof(addr.sun_path));
261 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200262 addr.sun_family = AF_UNIX;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200263
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100264 fd = socket(PF_UNIX, SOCK_STREAM, 0);
265 if (fd < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200266 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100267 msg = "cannot create UNIX socket";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200268 goto err_unlink_back;
269 }
270
Willy Tarreau40aa0702013-03-10 23:51:38 +0100271 fd_ready:
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100272 if (fd >= global.maxsock) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200273 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100274 msg = "socket(): not enough free sockets, raise -n argument";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200275 goto err_unlink_temp;
276 }
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100277
278 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200279 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100280 msg = "cannot make UNIX socket non-blocking";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200281 goto err_unlink_temp;
282 }
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100283
Willy Tarreau40aa0702013-03-10 23:51:38 +0100284 if (!ext && bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
Willy Tarreau92fb9832007-10-16 17:34:28 +0200285 /* note that bind() creates the socket <tempname> on the file system */
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200286 if (errno == EADDRINUSE) {
287 /* the old process might still own it, let's retry */
288 err |= ERR_RETRYABLE | ERR_ALERT;
289 msg = "cannot listen to socket";
290 }
291 else {
292 err |= ERR_FATAL | ERR_ALERT;
293 msg = "cannot bind UNIX socket";
294 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200295 goto err_unlink_temp;
296 }
297
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100298 /* <uid> and <gid> different of -1 will be used to change the socket owner.
299 * If <mode> is not 0, it will be used to restrict access to the socket.
300 * While it is known not to be portable on every OS, it's still useful
Willy Tarreauccfccef2014-05-10 01:49:15 +0200301 * where it works. We also don't change permissions on abstract sockets.
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100302 */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200303 if (!ext && path[0] &&
Willy Tarreau40aa0702013-03-10 23:51:38 +0100304 (((listener->bind_conf->ux.uid != -1 || listener->bind_conf->ux.gid != -1) &&
305 (chown(tempname, listener->bind_conf->ux.uid, listener->bind_conf->ux.gid) == -1)) ||
306 (listener->bind_conf->ux.mode != 0 && chmod(tempname, listener->bind_conf->ux.mode) == -1))) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200307 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100308 msg = "cannot change UNIX socket ownership";
Willy Tarreaue6ad2b12007-10-18 12:45:54 +0200309 goto err_unlink_temp;
310 }
311
Willy Tarreau40aa0702013-03-10 23:51:38 +0100312 ready = 0;
313 ready_len = sizeof(ready);
314 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
315 ready = 0;
316
317 if (!(ext && ready) && /* only listen if not already done by external process */
318 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200319 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100320 msg = "cannot listen to UNIX socket";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200321 goto err_unlink_temp;
322 }
323
Willy Tarreauccfccef2014-05-10 01:49:15 +0200324 /* Point of no return: we are ready, we'll switch the sockets. We don't
Willy Tarreau92fb9832007-10-16 17:34:28 +0200325 * fear loosing the socket <path> because we have a copy of it in
Willy Tarreauccfccef2014-05-10 01:49:15 +0200326 * backname. Abstract sockets are not renamed.
Willy Tarreau92fb9832007-10-16 17:34:28 +0200327 */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200328 if (!ext && path[0] && rename(tempname, path) < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200329 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100330 msg = "cannot switch final and temporary UNIX sockets";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200331 goto err_rename;
332 }
333
Willy Tarreau68986ab2017-06-16 10:34:20 +0200334 /* Cleanup: only unlink if we didn't inherit the fd from the parent */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200335 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100336 unlink(backname);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200337
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100338 /* the socket is now listening */
339 listener->fd = fd;
340 listener->state = LI_LISTEN;
341
Willy Tarreaua9786b62018-01-25 07:22:13 +0100342 fd_insert(fd, listener, listener->proto->accept,
343 listener->bind_conf->bind_thread[relative_pid-1] ?
344 listener->bind_conf->bind_thread[relative_pid-1] : MAX_THREADS_MASK);
345
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200346 return err;
347
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100348 err_rename:
349 ret = rename(backname, path);
350 if (ret < 0 && errno == ENOENT)
351 unlink(path);
352 err_unlink_temp:
Jan Seda7319b642014-06-26 20:44:05 +0200353 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100354 unlink(tempname);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100355 close(fd);
356 err_unlink_back:
Jan Seda7319b642014-06-26 20:44:05 +0200357 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100358 unlink(backname);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100359 err_return:
Willy Tarreau40aa0702013-03-10 23:51:38 +0100360 if (msg && errlen) {
361 if (!ext)
362 snprintf(errmsg, errlen, "%s [%s]", msg, path);
363 else
364 snprintf(errmsg, errlen, "%s [fd %d]", msg, fd);
365 }
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200366 return err;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100367}
368
369/* This function closes the UNIX sockets for the specified listener.
370 * The listener enters the LI_ASSIGNED state. It always returns ERR_NONE.
371 */
372static int uxst_unbind_listener(struct listener *listener)
373{
Willy Tarreaube58c382011-07-24 18:28:10 +0200374 if (listener->state > LI_ASSIGNED) {
375 unbind_listener(listener);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100376 }
377 return ERR_NONE;
378}
379
Willy Tarreau32282382017-09-15 07:44:44 +0200380/* Add <listener> to the list of unix stream listeners (port is ignored). The
381 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
382 * The number of listeners for the protocol is updated.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100383 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +0200384static void uxst_add_listener(struct listener *listener, int port)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100385{
386 if (listener->state != LI_INIT)
387 return;
388 listener->state = LI_ASSIGNED;
389 listener->proto = &proto_unix;
390 LIST_ADDQ(&proto_unix.listeners, &listener->proto_list);
391 proto_unix.nb_listeners++;
392}
393
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200394/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
395 * was totally stopped, or > 0 if correctly paused. Nothing is done for
396 * plain unix sockets since currently it's the new process which handles
397 * the renaming. Abstract sockets are completely unbound.
398 */
Willy Tarreau31794892017-09-15 07:59:31 +0200399static int uxst_pause_listener(struct listener *l)
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200400{
401 if (((struct sockaddr_un *)&l->addr)->sun_path[0])
402 return 1;
403
Christopher Faulet510c0d62018-03-16 10:04:47 +0100404 /* Listener's lock already held. Call lockless version of
405 * unbind_listener. */
406 do_unbind_listener(l, 1);
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200407 return 0;
408}
409
Willy Tarreau47f48c42014-05-09 22:57:47 +0200410
411/*
412 * This function initiates a UNIX connection establishment to the target assigned
413 * to connection <conn> using (si->{target,addr.to}). The source address is ignored
414 * and will be selected by the system. conn->target may point either to a valid
415 * server or to a backend, depending on conn->target. Only OBJ_TYPE_PROXY and
416 * OBJ_TYPE_SERVER are supported. The <data> parameter is a boolean indicating
417 * whether there are data waiting for being sent or not, in order to adjust data
418 * write polling and on some platforms. The <delack> argument is ignored.
419 *
420 * Note that a pending send_proxy message accounts for data.
421 *
422 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200423 * - SF_ERR_NONE if everything's OK
424 * - SF_ERR_SRVTO if there are no more servers
425 * - SF_ERR_SRVCL if the connection was refused by the server
426 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
427 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
428 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +0100429 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau47f48c42014-05-09 22:57:47 +0200430 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200431 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau47f48c42014-05-09 22:57:47 +0200432 * it's invalid and the caller has nothing to do.
433 */
Willy Tarreau31794892017-09-15 07:59:31 +0200434static int uxst_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau47f48c42014-05-09 22:57:47 +0200435{
436 int fd;
437 struct server *srv;
438 struct proxy *be;
439
Willy Tarreau47f48c42014-05-09 22:57:47 +0200440 switch (obj_type(conn->target)) {
441 case OBJ_TYPE_PROXY:
442 be = objt_proxy(conn->target);
443 srv = NULL;
444 break;
445 case OBJ_TYPE_SERVER:
446 srv = objt_server(conn->target);
447 be = srv->proxy;
448 break;
449 default:
450 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200451 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200452 }
453
Willy Tarreau585744b2017-08-24 14:31:19 +0200454 if ((fd = conn->handle.fd = socket(PF_UNIX, SOCK_STREAM, 0)) == -1) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200455 qfprintf(stderr, "Cannot get a server socket.\n");
456
457 if (errno == ENFILE) {
458 conn->err_code = CO_ER_SYS_FDLIM;
459 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100460 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
461 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200462 }
463 else if (errno == EMFILE) {
464 conn->err_code = CO_ER_PROC_FDLIM;
465 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100466 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
467 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200468 }
469 else if (errno == ENOBUFS || errno == ENOMEM) {
470 conn->err_code = CO_ER_SYS_MEMLIM;
471 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100472 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
473 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200474 }
475 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
476 conn->err_code = CO_ER_NOPROTO;
477 }
478 else
479 conn->err_code = CO_ER_SOCK_ERR;
480
481 /* this is a resource error */
482 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200483 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200484 }
485
486 if (fd >= global.maxsock) {
487 /* do not log anything there, it's a normal condition when this option
488 * is used to serialize connections to a server !
489 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100490 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau47f48c42014-05-09 22:57:47 +0200491 close(fd);
492 conn->err_code = CO_ER_CONF_FDLIM;
493 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200494 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200495 }
496
497 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
498 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
499 close(fd);
500 conn->err_code = CO_ER_SOCK_ERR;
501 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200502 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200503 }
504
505 /* if a send_proxy is there, there are data */
506 data |= conn->send_proxy_ofs;
507
508 if (global.tune.server_sndbuf)
509 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
510
511 if (global.tune.server_rcvbuf)
512 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
513
Willy Tarreau7bb21532014-05-10 09:48:28 +0200514 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) {
Willy Tarreau94841792017-01-25 14:27:38 +0100515 if (errno == EINPROGRESS || errno == EALREADY) {
Willy Tarreau7bb21532014-05-10 09:48:28 +0200516 conn->flags |= CO_FL_WAIT_L4_CONN;
517 }
Willy Tarreau94841792017-01-25 14:27:38 +0100518 else if (errno == EISCONN) {
519 conn->flags &= ~CO_FL_WAIT_L4_CONN;
520 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200521 else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200522 char *msg;
523 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Lukas Tribus9f256d42016-01-26 20:33:14 +0100524 msg = "can't connect to destination unix socket, check backlog size on the server";
Willy Tarreau47f48c42014-05-09 22:57:47 +0200525 conn->err_code = CO_ER_FREE_PORTS;
526 }
527 else {
528 msg = "local address already in use";
529 conn->err_code = CO_ER_ADDR_INUSE;
530 }
531
532 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
533 close(fd);
534 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
535 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200536 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200537 }
538 else if (errno == ETIMEDOUT) {
539 close(fd);
540 conn->err_code = CO_ER_SOCK_ERR;
541 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200542 return SF_ERR_SRVTO;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200543 }
544 else { // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
545 close(fd);
546 conn->err_code = CO_ER_SOCK_ERR;
547 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200548 return SF_ERR_SRVCL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200549 }
550 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200551 else {
552 /* connect() already succeeded, which is quite usual for unix
Willy Tarreau94841792017-01-25 14:27:38 +0100553 * sockets. Let's avoid a second connect() probe to complete it.
Willy Tarreau7bb21532014-05-10 09:48:28 +0200554 */
555 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau7bb21532014-05-10 09:48:28 +0200556 }
Willy Tarreau47f48c42014-05-09 22:57:47 +0200557
558 conn->flags |= CO_FL_ADDR_TO_SET;
559
560 /* Prepare to send a few handshakes related to the on-wire protocol. */
561 if (conn->send_proxy_ofs)
562 conn->flags |= CO_FL_SEND_PROXY;
563
564 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreau7bb21532014-05-10 09:48:28 +0200565 fdtab[fd].linger_risk = 0; /* no need to disable lingering */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200566
567 if (conn_xprt_init(conn) < 0) {
Willy Tarreau8c829012017-10-05 18:02:11 +0200568 conn_full_close(conn);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200569 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200570 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200571 }
572
Willy Tarreau94841792017-01-25 14:27:38 +0100573 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN)) {
574 conn_sock_want_send(conn); /* for connect status, proxy protocol or SSL */
575 }
576 else {
577 /* If there's no more handshake, we need to notify the data
578 * layer when the connection is already OK otherwise we'll have
579 * no other opportunity to do it later (eg: health checks).
580 */
581 data = 1;
582 }
583
Willy Tarreau47f48c42014-05-09 22:57:47 +0200584 if (data)
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200585 conn_xprt_want_send(conn); /* prepare to send data if any */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200586
Willy Tarreaue7dff022015-04-03 01:14:29 +0200587 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200588}
589
590
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100591/********************************
592 * 3) protocol-oriented functions
593 ********************************/
594
595
Willy Tarreau92fb9832007-10-16 17:34:28 +0200596/* This function creates all UNIX sockets bound to the protocol entry <proto>.
597 * It is intended to be used as the protocol's bind_all() function.
598 * The sockets will be registered but not added to any fd_set, in order not to
599 * loose them across the fork(). A call to uxst_enable_listeners() is needed
600 * to complete initialization.
601 *
602 * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
603 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200604static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreau92fb9832007-10-16 17:34:28 +0200605{
606 struct listener *listener;
607 int err = ERR_NONE;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200608
609 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200610 err |= uxst_bind_listener(listener, errmsg, errlen);
611 if (err & ERR_ABORT)
612 break;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200613 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200614 return err;
615}
616
Willy Tarreau92fb9832007-10-16 17:34:28 +0200617
618/* This function stops all listening UNIX sockets bound to the protocol
619 * <proto>. It does not detaches them from the protocol.
620 * It always returns ERR_NONE.
621 */
622static int uxst_unbind_listeners(struct protocol *proto)
623{
624 struct listener *listener;
625
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100626 list_for_each_entry(listener, &proto->listeners, proto_list)
627 uxst_unbind_listener(listener);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200628 return ERR_NONE;
629}
630
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200631/* parse the "mode" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200632static int bind_parse_mode(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200633{
Willy Tarreaua1a247b2017-10-04 14:43:44 +0200634 char *endptr;
635
636 conf->ux.mode = strtol(args[cur_arg + 1], &endptr, 8);
637
638 if (!*args[cur_arg + 1] || *endptr) {
639 memprintf(err, "'%s' : missing or invalid mode '%s' (octal integer expected)", args[cur_arg], args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200640 return ERR_ALERT | ERR_FATAL;
641 }
642
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200643 return 0;
644}
645
646/* parse the "gid" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200647static int bind_parse_gid(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200648{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200649 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200650 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200651 return ERR_ALERT | ERR_FATAL;
652 }
653
Willy Tarreau290e63a2012-09-20 18:07:14 +0200654 conf->ux.gid = atol(args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200655 return 0;
656}
657
658/* parse the "group" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200659static int bind_parse_group(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200660{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200661 struct group *group;
662
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200663 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200664 memprintf(err, "'%s' : missing group name", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200665 return ERR_ALERT | ERR_FATAL;
666 }
667
668 group = getgrnam(args[cur_arg + 1]);
669 if (!group) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200670 memprintf(err, "'%s' : unknown group name '%s'", args[cur_arg], args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200671 return ERR_ALERT | ERR_FATAL;
672 }
673
Willy Tarreau290e63a2012-09-20 18:07:14 +0200674 conf->ux.gid = group->gr_gid;
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200675 return 0;
676}
677
678/* parse the "uid" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200679static int bind_parse_uid(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200680{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200681 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200682 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200683 return ERR_ALERT | ERR_FATAL;
684 }
685
Willy Tarreau290e63a2012-09-20 18:07:14 +0200686 conf->ux.uid = atol(args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200687 return 0;
688}
689
690/* parse the "user" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200691static int bind_parse_user(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200692{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200693 struct passwd *user;
694
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200695 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200696 memprintf(err, "'%s' : missing user name", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200697 return ERR_ALERT | ERR_FATAL;
698 }
699
700 user = getpwnam(args[cur_arg + 1]);
701 if (!user) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200702 memprintf(err, "'%s' : unknown user name '%s'", args[cur_arg], args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200703 return ERR_ALERT | ERR_FATAL;
704 }
705
Willy Tarreau290e63a2012-09-20 18:07:14 +0200706 conf->ux.uid = user->pw_uid;
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200707 return 0;
708}
709
710/* Note: must not be declared <const> as its list will be overwritten.
711 * Please take care of keeping this list alphabetically sorted, doing so helps
712 * all code contributors.
713 * Optional keywords are also declared with a NULL ->parse() function so that
714 * the config parser can report an appropriate error when a known keyword was
715 * not enabled.
716 */
Willy Tarreau51fb7652012-09-18 18:24:39 +0200717static struct bind_kw_list bind_kws = { "UNIX", { }, {
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200718 { "gid", bind_parse_gid, 1 }, /* set the socket's gid */
719 { "group", bind_parse_group, 1 }, /* set the socket's gid from the group name */
720 { "mode", bind_parse_mode, 1 }, /* set the socket's mode (eg: 0644)*/
721 { "uid", bind_parse_uid, 1 }, /* set the socket's uid */
722 { "user", bind_parse_user, 1 }, /* set the socket's uid from the user name */
723 { NULL, NULL, 0 },
724}};
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100725
Willy Tarreau0108d902018-11-25 19:14:37 +0100726INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200727
728/*
729 * Local variables:
730 * c-indent-level: 8
731 * c-basic-offset: 8
732 * End:
733 */