blob: 9fc50dff46f62d0df8f4d32f4faf4f2bb68c457e [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 Tarreau92fb9832007-10-16 17:34:28 +020033#include <common/mini-clist.h>
34#include <common/standard.h>
35#include <common/time.h>
36#include <common/version.h>
37
Willy Tarreau92fb9832007-10-16 17:34:28 +020038#include <types/global.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020039
Willy Tarreau47f48c42014-05-09 22:57:47 +020040#include <proto/connection.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020041#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020042#include <proto/listener.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020043#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020044#include <proto/protocol.h>
Willy Tarreau92fb9832007-10-16 17:34:28 +020045#include <proto/task.h>
46
Emeric Bruncf20bf12010-10-22 16:06:11 +020047static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen);
48static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010049static int uxst_unbind_listeners(struct protocol *proto);
Willy Tarreau47f48c42014-05-09 22:57:47 +020050static int uxst_connect_server(struct connection *conn, int data, int delack);
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020051static void uxst_add_listener(struct listener *listener, int port);
Willy Tarreau31794892017-09-15 07:59:31 +020052static int uxst_pause_listener(struct listener *l);
53static int uxst_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir);
54static int uxst_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010055
56/* Note: must not be declared <const> as its list will be overwritten */
57static struct protocol proto_unix = {
58 .name = "unix_stream",
59 .sock_domain = PF_UNIX,
60 .sock_type = SOCK_STREAM,
61 .sock_prot = 0,
62 .sock_family = AF_UNIX,
63 .sock_addrlen = sizeof(struct sockaddr_un),
64 .l3_addrlen = sizeof(((struct sockaddr_un*)0)->sun_path),/* path len */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020065 .accept = &listener_accept,
Willy Tarreau47f48c42014-05-09 22:57:47 +020066 .connect = &uxst_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020067 .bind = uxst_bind_listener,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010068 .bind_all = uxst_bind_listeners,
69 .unbind_all = uxst_unbind_listeners,
70 .enable_all = enable_all_listeners,
71 .disable_all = disable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020072 .get_src = uxst_get_src,
73 .get_dst = uxst_get_dst,
Willy Tarreaufd0e0082014-07-07 21:07:51 +020074 .pause = uxst_pause_listener,
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020075 .add = uxst_add_listener,
Willy Tarreaudabf2e22007-10-28 21:59:24 +010076 .listeners = LIST_HEAD_INIT(proto_unix.listeners),
77 .nb_listeners = 0,
78};
79
Willy Tarreaudabf2e22007-10-28 21:59:24 +010080/********************************
81 * 1) low-level socket functions
82 ********************************/
83
Willy Tarreau59b94792012-05-11 16:16:40 +020084/*
85 * Retrieves the source address for the socket <fd>, with <dir> indicating
86 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
87 * success, -1 in case of error. The socket's source address is stored in
88 * <sa> for <salen> bytes.
89 */
Willy Tarreau31794892017-09-15 07:59:31 +020090static int uxst_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
Willy Tarreau59b94792012-05-11 16:16:40 +020091{
92 if (dir)
93 return getsockname(fd, sa, &salen);
94 else
95 return getpeername(fd, sa, &salen);
96}
97
98
99/*
100 * Retrieves the original destination address for the socket <fd>, with <dir>
101 * indicating if we're a listener (=0) or an initiator (!=0). It returns 0 in
102 * case of success, -1 in case of error. The socket's source address is stored
103 * in <sa> for <salen> bytes.
104 */
Willy Tarreau31794892017-09-15 07:59:31 +0200105static int uxst_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
Willy Tarreau59b94792012-05-11 16:16:40 +0200106{
107 if (dir)
108 return getpeername(fd, sa, &salen);
109 else
110 return getsockname(fd, sa, &salen);
111}
112
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100113
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100114/********************************
115 * 2) listener-oriented functions
116 ********************************/
117
118
Olivier Houchardf886e342017-04-05 22:24:59 +0200119static int uxst_find_compatible_fd(struct listener *l)
120{
121 struct xfer_sock_list *xfer_sock = xfer_sock_list;
122 int ret = -1;
123
124 while (xfer_sock) {
125 struct sockaddr_un *un1 = (void *)&l->addr;
126 struct sockaddr_un *un2 = (void *)&xfer_sock->addr;
127
128 /*
129 * The bound socket's path as returned by getsockaddr
130 * will be the temporary name <sockname>.XXXXX.tmp,
131 * so we can't just compare the two names
132 */
133 if (xfer_sock->addr.ss_family == AF_UNIX &&
134 strncmp(un1->sun_path, un2->sun_path,
135 strlen(un1->sun_path)) == 0) {
136 char *after_sockname = un2->sun_path +
137 strlen(un1->sun_path);
138 /* Make a reasonnable effort to check that
139 * it is indeed a haproxy-generated temporary
140 * name, it's not perfect, but probably good enough.
141 */
142 if (after_sockname[0] == '.') {
143 after_sockname++;
144 while (after_sockname[0] >= '0' &&
145 after_sockname[0] <= '9')
146 after_sockname++;
147 if (!strcmp(after_sockname, ".tmp"))
148 break;
149 }
150 }
151 xfer_sock = xfer_sock->next;
152 }
153 if (xfer_sock != NULL) {
154 ret = xfer_sock->fd;
155 if (xfer_sock == xfer_sock_list)
156 xfer_sock_list = xfer_sock->next;
157 if (xfer_sock->prev)
158 xfer_sock->prev->next = xfer_sock->next;
159 if (xfer_sock->next)
Olivier Houchardec9516a2018-03-08 18:25:49 +0100160 xfer_sock->next->prev = xfer_sock->prev;
Olivier Houchardf886e342017-04-05 22:24:59 +0200161 free(xfer_sock);
162 }
163 return ret;
164
165}
166
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100167/* This function creates a UNIX socket associated to the listener. It changes
168 * the state from ASSIGNED to LISTEN. The socket is NOT enabled for polling.
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100169 * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. It
170 * may return a warning or an error message in <errmsg> if the message is at
171 * most <errlen> bytes long (including '\0'). Note that <errmsg> may be NULL if
172 * <errlen> is also zero.
Willy Tarreau92fb9832007-10-16 17:34:28 +0200173 */
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100174static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen)
Willy Tarreau92fb9832007-10-16 17:34:28 +0200175{
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100176 int fd;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200177 char tempname[MAXPATHLEN];
178 char backname[MAXPATHLEN];
179 struct sockaddr_un addr;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100180 const char *msg = NULL;
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100181 const char *path;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100182 int ext, ready;
183 socklen_t ready_len;
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200184 int err;
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100185 int ret;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200186
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200187 err = ERR_NONE;
188
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100189 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100190 if (errlen)
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100191 *errmsg = 0;
192
193 if (listener->state != LI_ASSIGNED)
194 return ERR_NONE; /* already bound */
195
Olivier Houchardf886e342017-04-05 22:24:59 +0200196 if (listener->fd == -1)
197 listener->fd = uxst_find_compatible_fd(listener);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100198 path = ((struct sockaddr_un *)&listener->addr)->sun_path;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200199
Willy Tarreau40aa0702013-03-10 23:51:38 +0100200 /* if the listener already has an fd assigned, then we were offered the
201 * fd by an external process (most likely the parent), and we don't want
202 * to create a new socket. However we still want to set a few flags on
203 * the socket.
204 */
205 fd = listener->fd;
206 ext = (fd >= 0);
207 if (ext)
208 goto fd_ready;
209
Willy Tarreauccfccef2014-05-10 01:49:15 +0200210 if (path[0]) {
211 ret = snprintf(tempname, MAXPATHLEN, "%s.%d.tmp", path, pid);
212 if (ret < 0 || ret >= MAXPATHLEN) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200213 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200214 msg = "name too long for UNIX socket";
215 goto err_return;
216 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200217
Willy Tarreauccfccef2014-05-10 01:49:15 +0200218 ret = snprintf(backname, MAXPATHLEN, "%s.%d.bak", path, pid);
219 if (ret < 0 || ret >= MAXPATHLEN) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200220 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200221 msg = "name too long for UNIX socket";
222 goto err_return;
223 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200224
Willy Tarreauccfccef2014-05-10 01:49:15 +0200225 /* 2. clean existing orphaned entries */
226 if (unlink(tempname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200227 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200228 msg = "error when trying to unlink previous UNIX socket";
229 goto err_return;
230 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200231
Willy Tarreauccfccef2014-05-10 01:49:15 +0200232 if (unlink(backname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200233 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200234 msg = "error when trying to unlink previous UNIX socket";
235 goto err_return;
236 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200237
Willy Tarreauccfccef2014-05-10 01:49:15 +0200238 /* 3. backup existing socket */
239 if (link(path, backname) < 0 && errno != ENOENT) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200240 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200241 msg = "error when trying to preserve previous UNIX socket";
242 goto err_return;
243 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200244
Willy Tarreauccfccef2014-05-10 01:49:15 +0200245 strncpy(addr.sun_path, tempname, sizeof(addr.sun_path));
246 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200247 }
Willy Tarreauccfccef2014-05-10 01:49:15 +0200248 else {
249 /* first char is zero, it's an abstract socket whose address
250 * is defined by all the bytes past this zero.
251 */
252 memcpy(addr.sun_path, path, sizeof(addr.sun_path));
253 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200254 addr.sun_family = AF_UNIX;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200255
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100256 fd = socket(PF_UNIX, SOCK_STREAM, 0);
257 if (fd < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200258 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100259 msg = "cannot create UNIX socket";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200260 goto err_unlink_back;
261 }
262
Willy Tarreau40aa0702013-03-10 23:51:38 +0100263 fd_ready:
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100264 if (fd >= global.maxsock) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200265 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100266 msg = "socket(): not enough free sockets, raise -n argument";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200267 goto err_unlink_temp;
268 }
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100269
270 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200271 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100272 msg = "cannot make UNIX socket non-blocking";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200273 goto err_unlink_temp;
274 }
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100275
Willy Tarreau40aa0702013-03-10 23:51:38 +0100276 if (!ext && bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
Willy Tarreau92fb9832007-10-16 17:34:28 +0200277 /* note that bind() creates the socket <tempname> on the file system */
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200278 if (errno == EADDRINUSE) {
279 /* the old process might still own it, let's retry */
280 err |= ERR_RETRYABLE | ERR_ALERT;
281 msg = "cannot listen to socket";
282 }
283 else {
284 err |= ERR_FATAL | ERR_ALERT;
285 msg = "cannot bind UNIX socket";
286 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200287 goto err_unlink_temp;
288 }
289
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100290 /* <uid> and <gid> different of -1 will be used to change the socket owner.
291 * If <mode> is not 0, it will be used to restrict access to the socket.
292 * While it is known not to be portable on every OS, it's still useful
Willy Tarreauccfccef2014-05-10 01:49:15 +0200293 * where it works. We also don't change permissions on abstract sockets.
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100294 */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200295 if (!ext && path[0] &&
Willy Tarreau40aa0702013-03-10 23:51:38 +0100296 (((listener->bind_conf->ux.uid != -1 || listener->bind_conf->ux.gid != -1) &&
297 (chown(tempname, listener->bind_conf->ux.uid, listener->bind_conf->ux.gid) == -1)) ||
298 (listener->bind_conf->ux.mode != 0 && chmod(tempname, listener->bind_conf->ux.mode) == -1))) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200299 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100300 msg = "cannot change UNIX socket ownership";
Willy Tarreaue6ad2b12007-10-18 12:45:54 +0200301 goto err_unlink_temp;
302 }
303
Willy Tarreau40aa0702013-03-10 23:51:38 +0100304 ready = 0;
305 ready_len = sizeof(ready);
306 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
307 ready = 0;
308
309 if (!(ext && ready) && /* only listen if not already done by external process */
310 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200311 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100312 msg = "cannot listen to UNIX socket";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200313 goto err_unlink_temp;
314 }
315
Willy Tarreauccfccef2014-05-10 01:49:15 +0200316 /* Point of no return: we are ready, we'll switch the sockets. We don't
Willy Tarreau92fb9832007-10-16 17:34:28 +0200317 * fear loosing the socket <path> because we have a copy of it in
Willy Tarreauccfccef2014-05-10 01:49:15 +0200318 * backname. Abstract sockets are not renamed.
Willy Tarreau92fb9832007-10-16 17:34:28 +0200319 */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200320 if (!ext && path[0] && rename(tempname, path) < 0) {
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200321 err |= ERR_FATAL | ERR_ALERT;
Willy Tarreaub40dc942010-11-07 12:10:51 +0100322 msg = "cannot switch final and temporary UNIX sockets";
Willy Tarreau92fb9832007-10-16 17:34:28 +0200323 goto err_rename;
324 }
325
Willy Tarreau68986ab2017-06-16 10:34:20 +0200326 /* Cleanup: only unlink if we didn't inherit the fd from the parent */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200327 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100328 unlink(backname);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200329
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100330 /* the socket is now listening */
331 listener->fd = fd;
332 listener->state = LI_LISTEN;
333
Willy Tarreaua9786b62018-01-25 07:22:13 +0100334 fd_insert(fd, listener, listener->proto->accept,
335 listener->bind_conf->bind_thread[relative_pid-1] ?
336 listener->bind_conf->bind_thread[relative_pid-1] : MAX_THREADS_MASK);
337
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200338 return err;
339
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100340 err_rename:
341 ret = rename(backname, path);
342 if (ret < 0 && errno == ENOENT)
343 unlink(path);
344 err_unlink_temp:
Jan Seda7319b642014-06-26 20:44:05 +0200345 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100346 unlink(tempname);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100347 close(fd);
348 err_unlink_back:
Jan Seda7319b642014-06-26 20:44:05 +0200349 if (!ext && path[0])
Willy Tarreau40aa0702013-03-10 23:51:38 +0100350 unlink(backname);
Cyril Bonté1f5848a2010-11-14 17:03:19 +0100351 err_return:
Willy Tarreau40aa0702013-03-10 23:51:38 +0100352 if (msg && errlen) {
353 if (!ext)
354 snprintf(errmsg, errlen, "%s [%s]", msg, path);
355 else
356 snprintf(errmsg, errlen, "%s [fd %d]", msg, fd);
357 }
Willy Tarreau3c5efa22014-07-07 18:36:45 +0200358 return err;
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100359}
360
361/* This function closes the UNIX sockets for the specified listener.
362 * The listener enters the LI_ASSIGNED state. It always returns ERR_NONE.
363 */
364static int uxst_unbind_listener(struct listener *listener)
365{
Willy Tarreaube58c382011-07-24 18:28:10 +0200366 if (listener->state > LI_ASSIGNED) {
367 unbind_listener(listener);
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100368 }
369 return ERR_NONE;
370}
371
Willy Tarreau32282382017-09-15 07:44:44 +0200372/* Add <listener> to the list of unix stream listeners (port is ignored). The
373 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
374 * The number of listeners for the protocol is updated.
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100375 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +0200376static void uxst_add_listener(struct listener *listener, int port)
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100377{
378 if (listener->state != LI_INIT)
379 return;
380 listener->state = LI_ASSIGNED;
381 listener->proto = &proto_unix;
382 LIST_ADDQ(&proto_unix.listeners, &listener->proto_list);
383 proto_unix.nb_listeners++;
384}
385
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200386/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
387 * was totally stopped, or > 0 if correctly paused. Nothing is done for
388 * plain unix sockets since currently it's the new process which handles
389 * the renaming. Abstract sockets are completely unbound.
390 */
Willy Tarreau31794892017-09-15 07:59:31 +0200391static int uxst_pause_listener(struct listener *l)
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200392{
393 if (((struct sockaddr_un *)&l->addr)->sun_path[0])
394 return 1;
395
Christopher Faulet510c0d62018-03-16 10:04:47 +0100396 /* Listener's lock already held. Call lockless version of
397 * unbind_listener. */
398 do_unbind_listener(l, 1);
Willy Tarreaufd0e0082014-07-07 21:07:51 +0200399 return 0;
400}
401
Willy Tarreau47f48c42014-05-09 22:57:47 +0200402
403/*
404 * This function initiates a UNIX connection establishment to the target assigned
405 * to connection <conn> using (si->{target,addr.to}). The source address is ignored
406 * and will be selected by the system. conn->target may point either to a valid
407 * server or to a backend, depending on conn->target. Only OBJ_TYPE_PROXY and
408 * OBJ_TYPE_SERVER are supported. The <data> parameter is a boolean indicating
409 * whether there are data waiting for being sent or not, in order to adjust data
410 * write polling and on some platforms. The <delack> argument is ignored.
411 *
412 * Note that a pending send_proxy message accounts for data.
413 *
414 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200415 * - SF_ERR_NONE if everything's OK
416 * - SF_ERR_SRVTO if there are no more servers
417 * - SF_ERR_SRVCL if the connection was refused by the server
418 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
419 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
420 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +0100421 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau47f48c42014-05-09 22:57:47 +0200422 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200423 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau47f48c42014-05-09 22:57:47 +0200424 * it's invalid and the caller has nothing to do.
425 */
Willy Tarreau31794892017-09-15 07:59:31 +0200426static int uxst_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau47f48c42014-05-09 22:57:47 +0200427{
428 int fd;
429 struct server *srv;
430 struct proxy *be;
431
Willy Tarreau7bb21532014-05-10 09:48:28 +0200432 conn->flags = 0;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200433
434 switch (obj_type(conn->target)) {
435 case OBJ_TYPE_PROXY:
436 be = objt_proxy(conn->target);
437 srv = NULL;
438 break;
439 case OBJ_TYPE_SERVER:
440 srv = objt_server(conn->target);
441 be = srv->proxy;
442 break;
443 default:
444 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200445 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200446 }
447
Willy Tarreau585744b2017-08-24 14:31:19 +0200448 if ((fd = conn->handle.fd = socket(PF_UNIX, SOCK_STREAM, 0)) == -1) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200449 qfprintf(stderr, "Cannot get a server socket.\n");
450
451 if (errno == ENFILE) {
452 conn->err_code = CO_ER_SYS_FDLIM;
453 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100454 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
455 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200456 }
457 else if (errno == EMFILE) {
458 conn->err_code = CO_ER_PROC_FDLIM;
459 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100460 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
461 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200462 }
463 else if (errno == ENOBUFS || errno == ENOMEM) {
464 conn->err_code = CO_ER_SYS_MEMLIM;
465 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100466 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
467 be->id, global.maxsock);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200468 }
469 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
470 conn->err_code = CO_ER_NOPROTO;
471 }
472 else
473 conn->err_code = CO_ER_SOCK_ERR;
474
475 /* this is a resource error */
476 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200477 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200478 }
479
480 if (fd >= global.maxsock) {
481 /* do not log anything there, it's a normal condition when this option
482 * is used to serialize connections to a server !
483 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100484 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau47f48c42014-05-09 22:57:47 +0200485 close(fd);
486 conn->err_code = CO_ER_CONF_FDLIM;
487 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200488 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200489 }
490
491 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
492 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
493 close(fd);
494 conn->err_code = CO_ER_SOCK_ERR;
495 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200496 return SF_ERR_INTERNAL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200497 }
498
499 /* if a send_proxy is there, there are data */
500 data |= conn->send_proxy_ofs;
501
502 if (global.tune.server_sndbuf)
503 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
504
505 if (global.tune.server_rcvbuf)
506 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
507
Willy Tarreau7bb21532014-05-10 09:48:28 +0200508 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) {
Willy Tarreau94841792017-01-25 14:27:38 +0100509 if (errno == EINPROGRESS || errno == EALREADY) {
Willy Tarreau7bb21532014-05-10 09:48:28 +0200510 conn->flags |= CO_FL_WAIT_L4_CONN;
511 }
Willy Tarreau94841792017-01-25 14:27:38 +0100512 else if (errno == EISCONN) {
513 conn->flags &= ~CO_FL_WAIT_L4_CONN;
514 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200515 else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau47f48c42014-05-09 22:57:47 +0200516 char *msg;
517 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Lukas Tribus9f256d42016-01-26 20:33:14 +0100518 msg = "can't connect to destination unix socket, check backlog size on the server";
Willy Tarreau47f48c42014-05-09 22:57:47 +0200519 conn->err_code = CO_ER_FREE_PORTS;
520 }
521 else {
522 msg = "local address already in use";
523 conn->err_code = CO_ER_ADDR_INUSE;
524 }
525
526 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
527 close(fd);
528 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
529 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200530 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200531 }
532 else if (errno == ETIMEDOUT) {
533 close(fd);
534 conn->err_code = CO_ER_SOCK_ERR;
535 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200536 return SF_ERR_SRVTO;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200537 }
538 else { // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
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_SRVCL;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200543 }
544 }
Willy Tarreau7bb21532014-05-10 09:48:28 +0200545 else {
546 /* connect() already succeeded, which is quite usual for unix
Willy Tarreau94841792017-01-25 14:27:38 +0100547 * sockets. Let's avoid a second connect() probe to complete it.
Willy Tarreau7bb21532014-05-10 09:48:28 +0200548 */
549 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau7bb21532014-05-10 09:48:28 +0200550 }
Willy Tarreau47f48c42014-05-09 22:57:47 +0200551
552 conn->flags |= CO_FL_ADDR_TO_SET;
553
554 /* Prepare to send a few handshakes related to the on-wire protocol. */
555 if (conn->send_proxy_ofs)
556 conn->flags |= CO_FL_SEND_PROXY;
557
558 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreau7bb21532014-05-10 09:48:28 +0200559 fdtab[fd].linger_risk = 0; /* no need to disable lingering */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200560
561 if (conn_xprt_init(conn) < 0) {
Willy Tarreau8c829012017-10-05 18:02:11 +0200562 conn_full_close(conn);
Willy Tarreau47f48c42014-05-09 22:57:47 +0200563 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200564 return SF_ERR_RESOURCE;
Willy Tarreau47f48c42014-05-09 22:57:47 +0200565 }
566
Willy Tarreau94841792017-01-25 14:27:38 +0100567 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN)) {
568 conn_sock_want_send(conn); /* for connect status, proxy protocol or SSL */
569 }
570 else {
571 /* If there's no more handshake, we need to notify the data
572 * layer when the connection is already OK otherwise we'll have
573 * no other opportunity to do it later (eg: health checks).
574 */
575 data = 1;
576 }
577
Willy Tarreau47f48c42014-05-09 22:57:47 +0200578 if (data)
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200579 conn_xprt_want_send(conn); /* prepare to send data if any */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200580
Willy Tarreaue7dff022015-04-03 01:14:29 +0200581 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau47f48c42014-05-09 22:57:47 +0200582}
583
584
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100585/********************************
586 * 3) protocol-oriented functions
587 ********************************/
588
589
Willy Tarreau92fb9832007-10-16 17:34:28 +0200590/* This function creates all UNIX sockets bound to the protocol entry <proto>.
591 * It is intended to be used as the protocol's bind_all() function.
592 * The sockets will be registered but not added to any fd_set, in order not to
593 * loose them across the fork(). A call to uxst_enable_listeners() is needed
594 * to complete initialization.
595 *
596 * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
597 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200598static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreau92fb9832007-10-16 17:34:28 +0200599{
600 struct listener *listener;
601 int err = ERR_NONE;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200602
603 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200604 err |= uxst_bind_listener(listener, errmsg, errlen);
605 if (err & ERR_ABORT)
606 break;
Willy Tarreau92fb9832007-10-16 17:34:28 +0200607 }
Willy Tarreau92fb9832007-10-16 17:34:28 +0200608 return err;
609}
610
Willy Tarreau92fb9832007-10-16 17:34:28 +0200611
612/* This function stops all listening UNIX sockets bound to the protocol
613 * <proto>. It does not detaches them from the protocol.
614 * It always returns ERR_NONE.
615 */
616static int uxst_unbind_listeners(struct protocol *proto)
617{
618 struct listener *listener;
619
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100620 list_for_each_entry(listener, &proto->listeners, proto_list)
621 uxst_unbind_listener(listener);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200622 return ERR_NONE;
623}
624
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200625/* parse the "mode" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200626static 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 +0200627{
Willy Tarreaua1a247b2017-10-04 14:43:44 +0200628 char *endptr;
629
630 conf->ux.mode = strtol(args[cur_arg + 1], &endptr, 8);
631
632 if (!*args[cur_arg + 1] || *endptr) {
633 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 +0200634 return ERR_ALERT | ERR_FATAL;
635 }
636
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200637 return 0;
638}
639
640/* parse the "gid" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200641static 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 +0200642{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200643 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200644 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200645 return ERR_ALERT | ERR_FATAL;
646 }
647
Willy Tarreau290e63a2012-09-20 18:07:14 +0200648 conf->ux.gid = atol(args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200649 return 0;
650}
651
652/* parse the "group" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200653static 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 +0200654{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200655 struct group *group;
656
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200657 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200658 memprintf(err, "'%s' : missing group name", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200659 return ERR_ALERT | ERR_FATAL;
660 }
661
662 group = getgrnam(args[cur_arg + 1]);
663 if (!group) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200664 memprintf(err, "'%s' : unknown group name '%s'", args[cur_arg], args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200665 return ERR_ALERT | ERR_FATAL;
666 }
667
Willy Tarreau290e63a2012-09-20 18:07:14 +0200668 conf->ux.gid = group->gr_gid;
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200669 return 0;
670}
671
672/* parse the "uid" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200673static 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 +0200674{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200675 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200676 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200677 return ERR_ALERT | ERR_FATAL;
678 }
679
Willy Tarreau290e63a2012-09-20 18:07:14 +0200680 conf->ux.uid = atol(args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200681 return 0;
682}
683
684/* parse the "user" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200685static 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 +0200686{
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200687 struct passwd *user;
688
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200689 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200690 memprintf(err, "'%s' : missing user name", args[cur_arg]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200691 return ERR_ALERT | ERR_FATAL;
692 }
693
694 user = getpwnam(args[cur_arg + 1]);
695 if (!user) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200696 memprintf(err, "'%s' : unknown user name '%s'", args[cur_arg], args[cur_arg + 1]);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200697 return ERR_ALERT | ERR_FATAL;
698 }
699
Willy Tarreau290e63a2012-09-20 18:07:14 +0200700 conf->ux.uid = user->pw_uid;
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200701 return 0;
702}
703
704/* Note: must not be declared <const> as its list will be overwritten.
705 * Please take care of keeping this list alphabetically sorted, doing so helps
706 * all code contributors.
707 * Optional keywords are also declared with a NULL ->parse() function so that
708 * the config parser can report an appropriate error when a known keyword was
709 * not enabled.
710 */
Willy Tarreau51fb7652012-09-18 18:24:39 +0200711static struct bind_kw_list bind_kws = { "UNIX", { }, {
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200712 { "gid", bind_parse_gid, 1 }, /* set the socket's gid */
713 { "group", bind_parse_group, 1 }, /* set the socket's gid from the group name */
714 { "mode", bind_parse_mode, 1 }, /* set the socket's mode (eg: 0644)*/
715 { "uid", bind_parse_uid, 1 }, /* set the socket's uid */
716 { "user", bind_parse_user, 1 }, /* set the socket's uid from the user name */
717 { NULL, NULL, 0 },
718}};
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100719
720/********************************
721 * 4) high-level functions
722 ********************************/
723
Willy Tarreau92fb9832007-10-16 17:34:28 +0200724__attribute__((constructor))
725static void __uxst_protocol_init(void)
726{
727 protocol_register(&proto_unix);
Willy Tarreaud0a895d2012-09-18 17:40:35 +0200728 bind_register_keywords(&bind_kws);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200729}
730
731
732/*
733 * Local variables:
734 * c-indent-level: 8
735 * c-basic-offset: 8
736 * End:
737 */