blob: a4e62a7c278ffd9c9d6e12908b425020b4ddcb9c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7b677262017-04-03 09:27:49 +02003 * Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
Lukas Tribus23953682017-04-28 13:24:30 +000010 * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and
11 * RFC6265 for informations about cookies usage. More generally, the IETF HTTP
Willy Tarreaubaaee002006-06-26 02:48:02 +020012 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
Olivier Houchardf73629d2017-04-05 22:33:04 +020042#include <net/if.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <netdb.h>
44#include <fcntl.h>
45#include <errno.h>
46#include <signal.h>
47#include <stdarg.h>
48#include <sys/resource.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010049#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <time.h>
51#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010052#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010053#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#include <sched.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020055#ifdef __FreeBSD__
56#include <sys/param.h>
57#include <sys/cpuset.h>
58#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010059#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020060
61#ifdef DEBUG_FULL
62#include <assert.h>
63#endif
64
Willy Tarreau2dd0d472006-06-29 17:53:05 +020065#include <common/base64.h>
66#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020067#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020068#include <common/compat.h>
69#include <common/config.h>
70#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010071#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020072#include <common/memory.h>
73#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010074#include <common/namespace.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020075#include <common/regex.h>
76#include <common/standard.h>
77#include <common/time.h>
78#include <common/uri_auth.h>
79#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
81#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020082#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090084#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020085#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020086
Willy Tarreau0fc45a72007-06-17 00:36:03 +020087#include <proto/acl.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020088#include <proto/applet.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020089#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020090#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020091#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020092#include <proto/channel.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020093#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020094#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020095#include <proto/filters.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020096#include <proto/hdr_idx.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010097#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020098#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020099#include <proto/log.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100100#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200101#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100102#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103#include <proto/proxy.h>
104#include <proto/queue.h>
105#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200106#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200107#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200108#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200110#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100111#include <proto/vars.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200112#ifdef USE_OPENSSL
Grant Zhang872f9c22017-01-21 01:10:18 +0000113#include <proto/ssl_sock.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200114#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115
Willy Tarreau477ecd82010-01-03 21:12:30 +0100116/* list of config files */
117static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100119int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120
121/* global options */
122struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100123 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100124 .nbproc = 1,
William Lallemand5f232402012-04-05 18:02:55 +0200125 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200126 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100127 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100128 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100129 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200130 .unix_bind = {
131 .ux = {
132 .uid = -1,
133 .gid = -1,
134 .mode = 0,
135 }
136 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200137 .tune = {
138 .bufsize = BUFSIZE,
Willy Tarreau27097842015-09-28 13:53:23 +0200139 .maxrewrite = -1,
Willy Tarreau43961d52010-10-04 20:39:20 +0200140 .chksize = BUFSIZE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100141 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200142 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200143#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100144 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200145#endif
William Lallemandf3747832012-11-09 12:33:10 +0100146 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100147#ifdef DEFAULT_IDLE_TIMER
148 .idle_timer = DEFAULT_IDLE_TIMER,
149#else
150 .idle_timer = 1000, /* 1 second */
151#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200152 },
Emeric Brun76d88952012-10-05 15:47:31 +0200153#ifdef USE_OPENSSL
154#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200155 .maxsslconn = DEFAULT_MAXSSLCONN,
156#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200157#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200158 /* others NULL OK */
159};
160
161/*********************************************************************/
162
163int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100164int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200165int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200166
167/* Here we store informations about the pids of the processes we may pause
168 * or kill. We will send them a signal every 10 ms until we can bind to all
169 * our ports. With 200 retries, that's about 2 seconds.
170 */
171#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200172static int *oldpids = NULL;
173static int oldpids_sig; /* use USR1 or TERM */
174
Olivier Houchardf73629d2017-04-05 22:33:04 +0200175/* Path to the unix socket we use to retrieve listener sockets from the old process */
176static const char *old_unixsocket;
177
William Lallemand85b0bd92017-06-01 17:38:53 +0200178static char *cur_unixsocket = NULL;
179
William Lallemandcb11fd22017-06-01 17:38:52 +0200180int atexit_flag = 0;
181
Willy Tarreaubb545b42010-08-25 12:58:59 +0200182int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200183const int zero = 0;
184const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200185const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100187char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200188char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189
Willy Tarreau89efaed2013-12-13 15:14:55 +0100190/* used from everywhere just to drain results we don't want to read and which
191 * recent versions of gcc increasingly and annoyingly complain about.
192 */
193int shut_your_big_mouth_gcc_int = 0;
194
William Lallemand73b85e72017-06-01 17:38:51 +0200195int *children = NULL; /* store PIDs of children in master workers mode */
196
197static volatile sig_atomic_t caught_signal = 0;
198static char **next_argv = NULL;
199
William Lallemande20b6a62017-06-01 17:38:55 +0200200int mworker_pipe[2];
201
Willy Tarreau08ceb102011-07-24 22:58:00 +0200202/* list of the temporarily limited listeners because of lack of resource */
203struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200204struct task *global_listener_queue_task;
205static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200206
Willy Tarreauff055502014-04-28 22:27:06 +0200207/* bitfield of a few warnings to emit just once (WARN_*) */
208unsigned int warned = 0;
209
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100210
211/* These are strings to be reported in the output of "haproxy -vv". They may
212 * either be constants (in which case must_free must be zero) or dynamically
213 * allocated strings to pass to free() on exit, and in this case must_free
214 * must be non-zero.
215 */
216struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
217struct build_opts_str {
218 struct list list;
219 const char *str;
220 int must_free;
221};
222
Willy Tarreaue6945732016-12-21 19:57:00 +0100223/* These functions are called just after the point where the program exits
224 * after a config validity check, so they are generally suited for resource
225 * allocation and slow initializations that should be skipped during basic
226 * config checks. The functions must return 0 on success, or a combination
227 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
228 * and immediate exit, so the function must have emitted any useful error.
229 */
230struct list post_check_list = LIST_HEAD_INIT(post_check_list);
231struct post_check_fct {
232 struct list list;
233 int (*fct)();
234};
235
Willy Tarreau05554e62016-12-21 20:46:26 +0100236/* These functions are called when freeing the global sections at the end
237 * of deinit, after everything is stopped. They don't return anything, and
238 * they work in best effort mode as their sole goal is to make valgrind
239 * mostly happy.
240 */
241struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
242struct post_deinit_fct {
243 struct list list;
244 void (*fct)();
245};
246
Christopher Faulet415f6112017-07-25 16:52:58 +0200247/* These functions are called for each thread just after the thread creation
248 * and before running the scheduler. They should be used to do per-thread
249 * initializations. They must return 0 if an error occurred. */
250struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
251struct per_thread_init_fct {
252 struct list list;
253 int (*fct)();
254};
255
256/* These functions are called for each thread just after the scheduler loop and
257 * before exiting the thread. They don't return anything and, as for post-deinit
258 * functions, they work in best effort mode as their sole goal is to make
259 * valgrind mostly happy. */
260struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
261struct per_thread_deinit_fct {
262 struct list list;
263 void (*fct)();
264};
265
Willy Tarreaubaaee002006-06-26 02:48:02 +0200266/*********************************************************************/
267/* general purpose functions ***************************************/
268/*********************************************************************/
269
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100270/* used to register some build option strings at boot. Set must_free to
271 * non-zero if the string must be freed upon exit.
272 */
273void hap_register_build_opts(const char *str, int must_free)
274{
275 struct build_opts_str *b;
276
277 b = calloc(1, sizeof(*b));
278 if (!b) {
279 fprintf(stderr, "out of memory\n");
280 exit(1);
281 }
282 b->str = str;
283 b->must_free = must_free;
284 LIST_ADDQ(&build_opts_list, &b->list);
285}
286
Willy Tarreaue6945732016-12-21 19:57:00 +0100287/* used to register some initialization functions to call after the checks. */
288void hap_register_post_check(int (*fct)())
289{
290 struct post_check_fct *b;
291
292 b = calloc(1, sizeof(*b));
293 if (!b) {
294 fprintf(stderr, "out of memory\n");
295 exit(1);
296 }
297 b->fct = fct;
298 LIST_ADDQ(&post_check_list, &b->list);
299}
300
Willy Tarreau05554e62016-12-21 20:46:26 +0100301/* used to register some de-initialization functions to call after everything
302 * has stopped.
303 */
304void hap_register_post_deinit(void (*fct)())
305{
306 struct post_deinit_fct *b;
307
308 b = calloc(1, sizeof(*b));
309 if (!b) {
310 fprintf(stderr, "out of memory\n");
311 exit(1);
312 }
313 b->fct = fct;
314 LIST_ADDQ(&post_deinit_list, &b->list);
315}
316
Christopher Faulet415f6112017-07-25 16:52:58 +0200317/* used to register some initialization functions to call for each thread. */
318void hap_register_per_thread_init(int (*fct)())
319{
320 struct per_thread_init_fct *b;
321
322 b = calloc(1, sizeof(*b));
323 if (!b) {
324 fprintf(stderr, "out of memory\n");
325 exit(1);
326 }
327 b->fct = fct;
328 LIST_ADDQ(&per_thread_init_list, &b->list);
329}
330
331/* used to register some de-initialization functions to call for each thread. */
332void hap_register_per_thread_deinit(void (*fct)())
333{
334 struct per_thread_deinit_fct *b;
335
336 b = calloc(1, sizeof(*b));
337 if (!b) {
338 fprintf(stderr, "out of memory\n");
339 exit(1);
340 }
341 b->fct = fct;
342 LIST_ADDQ(&per_thread_deinit_list, &b->list);
343}
344
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100345static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346{
347 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b677262017-04-03 09:27:49 +0200348 printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200349}
350
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100351static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100352{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100353 struct build_opts_str *item;
354
Willy Tarreau7b066db2007-12-02 11:28:59 +0100355 printf("Build options :"
356#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100357 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100358#endif
359#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100360 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100361#endif
362#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100363 "\n CC = " BUILD_CC
364#endif
365#ifdef BUILD_CFLAGS
366 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100367#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100368#ifdef BUILD_OPTIONS
369 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100370#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200371 "\n\nDefault settings :"
372 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
373 "\n\n",
374 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200375
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100376 list_for_each_entry(item, &build_opts_list, list) {
377 puts(item->str);
378 }
379
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100380 putchar('\n');
381
Willy Tarreaube5b6852009-10-03 18:57:08 +0200382 list_pollers(stdout);
383 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100384 list_filters(stdout);
385 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100386}
387
Willy Tarreaubaaee002006-06-26 02:48:02 +0200388/*
389 * This function prints the command line usage and exits
390 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100391static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392{
393 display_version();
394 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200395 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200397 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100398 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200400 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200401 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200402 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200403 " -W master-worker mode.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200405 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406 " -n sets the maximum total # of connections (%d)\n"
407 " -m limits the usable amount of memory (in MB)\n"
408 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200409 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 " -p writes pids of all children to this file\n"
411#if defined(ENABLE_EPOLL)
412 " -de disables epoll() usage even when available\n"
413#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200414#if defined(ENABLE_KQUEUE)
415 " -dk disables kqueue() usage even when available\n"
416#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417#if defined(ENABLE_POLL)
418 " -dp disables poll() usage even when available\n"
419#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200420#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100421 " -dS disables splice usage (broken on old kernels)\n"
422#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200423#if defined(USE_GETADDRINFO)
424 " -dG disables getaddrinfo() usage\n"
425#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000426#if defined(SO_REUSEPORT)
427 " -dR disables SO_REUSEPORT usage\n"
428#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100429 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100430 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200431 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200432 " -x <unix_socket> get listening sockets from a unix socket\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 "\n",
434 name, DEFAULT_MAXCONN, cfg_maxpconn);
435 exit(1);
436}
437
438
439
440/*********************************************************************/
441/* more specific functions ***************************************/
442/*********************************************************************/
443
William Lallemand73b85e72017-06-01 17:38:51 +0200444/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
445 * pids the signal was correctly delivered to.
446 */
447static int tell_old_pids(int sig)
448{
449 int p;
450 int ret = 0;
451 for (p = 0; p < nb_oldpids; p++)
452 if (kill(oldpids[p], sig) == 0)
453 ret++;
454 return ret;
455}
456
457/* return 1 if a pid is a current child otherwise 0 */
458
459int current_child(int pid)
460{
461 int i;
462
463 for (i = 0; i < global.nbproc; i++) {
464 if (children[i] == pid)
465 return 1;
466 }
467 return 0;
468}
469
470static void mworker_signalhandler(int signum)
471{
472 caught_signal = signum;
473}
474
475static void mworker_register_signals()
476{
477 struct sigaction sa;
478 /* Here we are not using the haproxy async way
479 for signals because it does not exists in
480 the master */
481 memset(&sa, 0, sizeof(struct sigaction));
482 sa.sa_handler = &mworker_signalhandler;
483 sigaction(SIGHUP, &sa, NULL);
484 sigaction(SIGUSR1, &sa, NULL);
485 sigaction(SIGUSR2, &sa, NULL);
486 sigaction(SIGINT, &sa, NULL);
487 sigaction(SIGTERM, &sa, NULL);
488}
489
490static void mworker_block_signals()
491{
492 sigset_t set;
493
494 sigemptyset(&set);
495 sigaddset(&set, SIGUSR1);
496 sigaddset(&set, SIGUSR2);
497 sigaddset(&set, SIGHUP);
498 sigaddset(&set, SIGINT);
499 sigaddset(&set, SIGTERM);
500 sigprocmask(SIG_SETMASK, &set, NULL);
501}
502
503static void mworker_unblock_signals()
504{
505 sigset_t set;
506
507 sigemptyset(&set);
508 sigaddset(&set, SIGUSR1);
509 sigaddset(&set, SIGUSR2);
510 sigaddset(&set, SIGHUP);
511 sigaddset(&set, SIGINT);
512 sigaddset(&set, SIGTERM);
513 sigprocmask(SIG_UNBLOCK, &set, NULL);
514}
515
516static void mworker_unregister_signals()
517{
518 signal(SIGINT, SIG_DFL);
519 signal(SIGTERM, SIG_DFL);
520 signal(SIGHUP, SIG_IGN);
521 signal(SIGUSR1, SIG_IGN);
522 signal(SIGUSR2, SIG_IGN);
523}
524
525/*
526 * Send signal to every known children.
527 */
528
529static void mworker_kill(int sig)
530{
531 int i;
532
533 tell_old_pids(sig);
534 if (children) {
535 for (i = 0; i < global.nbproc; i++)
536 kill(children[i], sig);
537 }
538}
539
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540/*
William Lallemand73b85e72017-06-01 17:38:51 +0200541 * remove a pid forom the olpid array and decrease nb_oldpids
542 * return 1 pid was found otherwise return 0
543 */
544
545int delete_oldpid(int pid)
546{
547 int i;
548
549 for (i = 0; i < nb_oldpids; i++) {
550 if (oldpids[i] == pid) {
551 oldpids[i] = oldpids[nb_oldpids - 1];
552 oldpids[nb_oldpids - 1] = 0;
553 nb_oldpids--;
554 return 1;
555 }
556 }
557 return 0;
558}
559
William Lallemand85b0bd92017-06-01 17:38:53 +0200560
561static void get_cur_unixsocket()
562{
563 /* if -x was used, try to update the stat socket if not available anymore */
564 if (global.stats_fe) {
565 struct bind_conf *bind_conf;
566
567 /* pass through all stats socket */
568 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
569 struct listener *l;
570
571 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
572
573 if (l->addr.ss_family == AF_UNIX &&
574 (bind_conf->level & ACCESS_FD_LISTENERS)) {
575 const struct sockaddr_un *un;
576
577 un = (struct sockaddr_un *)&l->addr;
578 /* priority to old_unixsocket */
579 if (!cur_unixsocket) {
580 cur_unixsocket = strdup(un->sun_path);
581 } else {
582 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
583 free(cur_unixsocket);
584 cur_unixsocket = strdup(old_unixsocket);
585 return;
586 }
587 }
588 }
589 }
590 }
591 }
592 if (!cur_unixsocket && old_unixsocket)
593 cur_unixsocket = strdup(old_unixsocket);
594}
595
William Lallemand73b85e72017-06-01 17:38:51 +0200596/*
597 * When called, this function reexec haproxy with -sf followed by current
598 * children PIDs and possibily old children PIDs if they didn't leave yet.
599 */
600static void mworker_reload()
601{
602 int next_argc = 0;
603 int j;
604 char *msg = NULL;
605
606 mworker_block_signals();
607 mworker_unregister_signals();
608 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
609
610 /* compute length */
611 while (next_argv[next_argc])
612 next_argc++;
613
William Lallemand85b0bd92017-06-01 17:38:53 +0200614 /* 1 for haproxy -sf, 2 for -x /socket */
615 next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200616 if (next_argv == NULL)
617 goto alloc_error;
618
619
620 /* add -sf <PID>* to argv */
621 if (children || nb_oldpids > 0)
622 next_argv[next_argc++] = "-sf";
623 if (children) {
624 for (j = 0; j < global.nbproc; next_argc++,j++) {
625 next_argv[next_argc] = memprintf(&msg, "%d", children[j]);
626 if (next_argv[next_argc] == NULL)
627 goto alloc_error;
628 msg = NULL;
629 }
630 }
631 /* copy old process PIDs */
632 for (j = 0; j < nb_oldpids; next_argc++,j++) {
633 next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]);
634 if (next_argv[next_argc] == NULL)
635 goto alloc_error;
636 msg = NULL;
637 }
638 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200639
William Lallemand2bf6d622017-06-20 11:20:23 +0200640 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200641 if (cur_unixsocket) {
642
William Lallemand2bf6d622017-06-20 11:20:23 +0200643 next_argv[next_argc++] = "-x";
644 next_argv[next_argc++] = (char *)cur_unixsocket;
645 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200646 }
647
William Lallemand73b85e72017-06-01 17:38:51 +0200648 deinit(); /* we don't want to leak FD there */
649 Warning("Reexecuting Master process\n");
650 execv(next_argv[0], next_argv);
651
652alloc_error:
653 Warning("Cannot allocate memory\n");
654 Warning("Failed to reexecute the master processs [%d]\n", pid);
655 return;
656}
657
658
659/*
660 * Wait for every children to exit
661 */
662
663static void mworker_wait()
664{
665 int exitpid = -1;
666 int status = 0;
667
668 mworker_register_signals();
669 mworker_unblock_signals();
670
671 while (1) {
672
673 while (((exitpid = wait(&status)) == -1) && errno == EINTR) {
674 int sig = caught_signal;
675 if (sig == SIGUSR2 || sig == SIGHUP) {
676 mworker_reload();
677 } else {
678 Warning("Exiting Master process...\n");
679 mworker_kill(sig);
680 mworker_unregister_signals();
681 }
682 caught_signal = 0;
683 }
684
685 if (exitpid == -1 && errno == ECHILD) {
686 Warning("All workers are left. Leaving... (%d)\n", status);
William Lallemandcb11fd22017-06-01 17:38:52 +0200687 atexit_flag = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200688 exit(status); /* parent must leave using the latest status code known */
689 }
690
691 if (WIFEXITED(status))
692 status = WEXITSTATUS(status);
693 else if (WIFSIGNALED(status))
694 status = 128 + WTERMSIG(status);
695 else if (WIFSTOPPED(status))
696 status = 128 + WSTOPSIG(status);
697 else
698 status = 255;
699
700 if (!children) {
701 Warning("Worker %d left with exit code %d\n", exitpid, status);
702 } else {
703 /* check if exited child was in the current children list */
704 if (current_child(exitpid)) {
705 Alert("Current worker %d left with exit code %d\n", exitpid, status);
William Lallemand69f9b3b2017-06-01 17:38:54 +0200706 if (status != 0 && status != 130 && status != 143
707 && global.tune.options & GTUNE_EXIT_ONFAILURE) {
708 Alert("exit-on-failure: killing every workers with SIGTERM\n");
709 mworker_kill(SIGTERM);
710 }
William Lallemand73b85e72017-06-01 17:38:51 +0200711 } else {
712 Warning("Former worker %d left with exit code %d\n", exitpid, status);
713 delete_oldpid(exitpid);
714 }
715 }
716 }
717}
718
William Lallemandcb11fd22017-06-01 17:38:52 +0200719
720/*
721 * Reexec the process in failure mode, instead of exiting
722 */
723void reexec_on_failure()
724{
725 if (!atexit_flag)
726 return;
727
728 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
729
730 Warning("Reexecuting Master process in waitpid mode\n");
731 mworker_reload();
732
733 Warning("Failed to reexecute the master processs\n");
734}
William Lallemand73b85e72017-06-01 17:38:51 +0200735
736
737/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200738 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
739 * a signal zero to all subscribers. This means that it's as easy as
740 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200741 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100742static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200743{
744 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200745 signal_unregister_handler(sh);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200746 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200747}
748
749/*
750 * upon SIGTTOU, we pause everything
751 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100752static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753{
754 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200755 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200756}
757
758/*
759 * upon SIGTTIN, let's have a soft stop.
760 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100761static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200762{
Willy Tarreaube58c382011-07-24 18:28:10 +0200763 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764}
765
766/*
767 * this function dumps every server's state when the process receives SIGHUP.
768 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100769static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770{
771 struct proxy *p = proxy;
772
773 Warning("SIGHUP received, dumping servers states.\n");
774 while (p) {
775 struct server *s = p->srv;
776
777 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
778 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100779 chunk_printf(&trash,
780 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
781 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200782 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100783 s->cur_sess, s->nbpend, s->counters.cum_sess);
784 Warning("%s\n", trash.str);
785 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786 s = s->next;
787 }
788
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200789 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
790 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100791 chunk_printf(&trash,
792 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
793 p->id,
794 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200795 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100796 chunk_printf(&trash,
797 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
798 p->id,
799 (p->srv_bck) ? "is running on backup servers" : "has no server available",
800 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100802 chunk_printf(&trash,
803 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
804 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
805 p->id, p->srv_act, p->srv_bck,
806 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200807 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100808 Warning("%s\n", trash.str);
809 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200810
811 p = p->next;
812 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813}
814
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100815static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200817 /* dump memory usage then free everything possible */
818 dump_pools();
819 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820}
821
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200822/* This function check if cfg_cfgfiles containes directories.
823 * If it find one, it add all the files (and only files) it containes
824 * in cfg_cfgfiles in place of the directory (and remove the directory).
825 * It add the files in lexical order.
826 * It add only files with .cfg extension.
827 * It doesn't add files with name starting with '.'
828 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100829static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200830{
831 struct wordlist *wl, *wlb;
832 char *err = NULL;
833
834 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
835 struct stat file_stat;
836 struct dirent **dir_entries = NULL;
837 int dir_entries_nb;
838 int dir_entries_it;
839
840 if (stat(wl->s, &file_stat)) {
841 Alert("Cannot open configuration file/directory %s : %s\n",
842 wl->s,
843 strerror(errno));
844 exit(1);
845 }
846
847 if (!S_ISDIR(file_stat.st_mode))
848 continue;
849
850 /* from this point wl->s is a directory */
851
852 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
853 if (dir_entries_nb < 0) {
854 Alert("Cannot open configuration directory %s : %s\n",
855 wl->s,
856 strerror(errno));
857 exit(1);
858 }
859
860 /* for each element in the directory wl->s */
861 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
862 struct dirent *dir_entry = dir_entries[dir_entries_it];
863 char *filename = NULL;
864 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
865
866 /* don't add filename that begin with .
867 * only add filename with .cfg extention
868 */
869 if (dir_entry->d_name[0] == '.' ||
870 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
871 goto next_dir_entry;
872
873 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
874 Alert("Cannot load configuration files %s : out of memory.\n",
875 filename);
876 exit(1);
877 }
878
879 if (stat(filename, &file_stat)) {
880 Alert("Cannot open configuration file %s : %s\n",
881 wl->s,
882 strerror(errno));
883 exit(1);
884 }
885
886 /* don't add anything else than regular file in cfg_cfgfiles
887 * this way we avoid loops
888 */
889 if (!S_ISREG(file_stat.st_mode))
890 goto next_dir_entry;
891
892 if (!list_append_word(&wl->list, filename, &err)) {
893 Alert("Cannot load configuration files %s : %s\n",
894 filename,
895 err);
896 exit(1);
897 }
898
899next_dir_entry:
900 free(filename);
901 free(dir_entry);
902 }
903
904 free(dir_entries);
905
906 /* remove the current directory (wl) from cfg_cfgfiles */
907 free(wl->s);
908 LIST_DEL(&wl->list);
909 free(wl);
910 }
911
912 free(err);
913}
914
Olivier Houchardf73629d2017-04-05 22:33:04 +0200915static int get_old_sockets(const char *unixsocket)
916{
917 char *cmsgbuf = NULL, *tmpbuf = NULL;
918 int *tmpfd = NULL;
919 struct sockaddr_un addr;
920 struct cmsghdr *cmsg;
921 struct msghdr msghdr;
922 struct iovec iov;
923 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +0200924 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +0200925 int sock = -1;
926 int ret = -1;
927 int ret2 = -1;
928 int fd_nb;
929 int got_fd = 0;
930 int i = 0;
931 size_t maxoff = 0, curoff = 0;
932
933 memset(&msghdr, 0, sizeof(msghdr));
934 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
935 if (!cmsgbuf) {
936 Warning("Failed to allocate memory to send sockets\n");
937 goto out;
938 }
939 sock = socket(PF_UNIX, SOCK_STREAM, 0);
940 if (sock < 0) {
941 Warning("Failed to connect to the old process socket '%s'\n",
942 unixsocket);
943 goto out;
944 }
945 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
946 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
947 addr.sun_family = PF_UNIX;
948 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
949 if (ret < 0) {
950 Warning("Failed to connect to the old process socket '%s'\n",
951 unixsocket);
952 goto out;
953 }
Olivier Houchard54740872017-04-06 14:45:14 +0200954 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200955 iov.iov_base = &fd_nb;
956 iov.iov_len = sizeof(fd_nb);
957 msghdr.msg_iov = &iov;
958 msghdr.msg_iovlen = 1;
959 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
960 /* First, get the number of file descriptors to be received */
961 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
962 Warning("Failed to get the number of sockets to be transferred !\n");
963 goto out;
964 }
965 if (fd_nb == 0) {
966 ret = 0;
967 goto out;
968 }
969 tmpbuf = malloc(fd_nb * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int)));
970 if (tmpbuf == NULL) {
971 Warning("Failed to allocate memory while receiving sockets\n");
972 goto out;
973 }
974 tmpfd = malloc(fd_nb * sizeof(int));
975 if (tmpfd == NULL) {
976 Warning("Failed to allocate memory while receiving sockets\n");
977 goto out;
978 }
979 msghdr.msg_control = cmsgbuf;
980 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
981 iov.iov_len = MAX_SEND_FD * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int));
982 do {
983 int ret3;
984
985 iov.iov_base = tmpbuf + curoff;
986 ret = recvmsg(sock, &msghdr, 0);
987 if (ret == -1 && errno == EINTR)
988 continue;
989 if (ret <= 0)
990 break;
991 /* Send an ack to let the sender know we got the sockets
992 * and it can send some more
993 */
994 do {
995 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
996 } while (ret3 == -1 && errno == EINTR);
997 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
998 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
999 if (cmsg->cmsg_level == SOL_SOCKET &&
1000 cmsg->cmsg_type == SCM_RIGHTS) {
1001 size_t totlen = cmsg->cmsg_len -
1002 CMSG_LEN(0);
1003 if (totlen / sizeof(int) + got_fd > fd_nb) {
1004 Warning("Got to many sockets !\n");
1005 goto out;
1006 }
1007 /*
1008 * Be paranoid and use memcpy() to avoid any
1009 * potential alignement issue.
1010 */
1011 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1012 got_fd += totlen / sizeof(int);
1013 }
1014 }
1015 curoff += ret;
1016 } while (got_fd < fd_nb);
1017
1018 if (got_fd != fd_nb) {
1019 Warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1020 fd_nb, got_fd);
1021 goto out;
1022 }
1023 maxoff = curoff;
1024 curoff = 0;
1025 for (i = 0; i < got_fd; i++) {
1026 int fd = tmpfd[i];
1027 socklen_t socklen;
1028 int len;
1029
1030 xfer_sock = calloc(1, sizeof(*xfer_sock));
1031 if (!xfer_sock) {
1032 Warning("Failed to allocate memory in get_old_sockets() !\n");
1033 break;
1034 }
1035 xfer_sock->fd = -1;
1036
1037 socklen = sizeof(xfer_sock->addr);
1038 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
1039 Warning("Failed to get socket address\n");
1040 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001041 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001042 continue;
1043 }
1044 if (curoff >= maxoff) {
1045 Warning("Inconsistency while transferring sockets\n");
1046 goto out;
1047 }
1048 len = tmpbuf[curoff++];
1049 if (len > 0) {
1050 /* We have a namespace */
1051 if (curoff + len > maxoff) {
1052 Warning("Inconsistency while transferring sockets\n");
1053 goto out;
1054 }
1055 xfer_sock->namespace = malloc(len + 1);
1056 if (!xfer_sock->namespace) {
1057 Warning("Failed to allocate memory while transferring sockets\n");
1058 goto out;
1059 }
1060 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1061 xfer_sock->namespace[len] = 0;
1062 curoff += len;
1063 }
1064 if (curoff >= maxoff) {
1065 Warning("Inconsistency while transferring sockets\n");
1066 goto out;
1067 }
1068 len = tmpbuf[curoff++];
1069 if (len > 0) {
1070 /* We have an interface */
1071 if (curoff + len > maxoff) {
1072 Warning("Inconsistency while transferring sockets\n");
1073 goto out;
1074 }
1075 xfer_sock->iface = malloc(len + 1);
1076 if (!xfer_sock->iface) {
1077 Warning("Failed to allocate memory while transferring sockets\n");
1078 goto out;
1079 }
1080 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
1081 xfer_sock->namespace[len] = 0;
1082 curoff += len;
1083 }
1084 if (curoff + sizeof(int) > maxoff) {
1085 Warning("Inconsistency while transferring sockets\n");
1086 goto out;
1087 }
1088 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1089 sizeof(xfer_sock->options));
1090 curoff += sizeof(xfer_sock->options);
1091
1092 xfer_sock->fd = fd;
1093 if (xfer_sock_list)
1094 xfer_sock_list->prev = xfer_sock;
1095 xfer_sock->next = xfer_sock_list;
1096 xfer_sock->prev = NULL;
1097 xfer_sock_list = xfer_sock;
1098 xfer_sock = NULL;
1099 }
1100
1101 ret2 = 0;
1102out:
1103 /* If we failed midway make sure to close the remaining
1104 * file descriptors
1105 */
1106 if (tmpfd != NULL && i < got_fd) {
1107 for (; i < got_fd; i++) {
1108 close(tmpfd[i]);
1109 }
1110 }
1111 free(tmpbuf);
1112 free(tmpfd);
1113 free(cmsgbuf);
1114 if (sock != -1)
1115 close(sock);
1116 if (xfer_sock) {
1117 free(xfer_sock->namespace);
1118 free(xfer_sock->iface);
1119 if (xfer_sock->fd != -1)
1120 close(xfer_sock->fd);
1121 free(xfer_sock);
1122 }
1123 return (ret2);
1124}
1125
Willy Tarreaubaaee002006-06-26 02:48:02 +02001126/*
William Lallemand73b85e72017-06-01 17:38:51 +02001127 * copy and cleanup the current argv
1128 * Remove the -sf /-st parameters
1129 * Return an allocated copy of argv
1130 */
1131
1132static char **copy_argv(int argc, char **argv)
1133{
1134 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001135 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001136
1137 newargv = calloc(argc + 2, sizeof(char *));
1138 if (newargv == NULL) {
1139 Warning("Cannot allocate memory\n");
1140 return NULL;
1141 }
1142
William Lallemand2bf6d622017-06-20 11:20:23 +02001143 while (i < argc) {
1144 /* -sf or -st or -x */
1145 if ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' ) {
1146 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001147 i++;
1148 while (i < argc && argv[i][0] != '-') {
1149 i++;
1150 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001151 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001152 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001153
1154 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001155 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001156
William Lallemand73b85e72017-06-01 17:38:51 +02001157 return newargv;
1158}
1159
1160/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001161 * This function initializes all the necessary variables. It only returns
1162 * if everything is OK. If something fails, it exits.
1163 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001164static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001165{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001166 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001167 char *tmp;
1168 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001169 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001170 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001171 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001172 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001173 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001174 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001175 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001176
Christopher Faulete3a5e352017-10-24 13:53:54 +02001177 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001178 next_argv = copy_argv(argc, argv);
1179
Christopher Faulet748919a2017-07-26 14:59:46 +02001180 if (!init_trash_buffers()) {
1181 Alert("failed to initialize trash buffers.\n");
1182 exit(1);
1183 }
David du Colombier7af46052012-05-16 14:16:48 +02001184
Emeric Brun2b920a12010-09-23 18:30:22 +02001185 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1186 * the string in case of truncation, and at least FreeBSD appears not to do
1187 * it.
1188 */
1189 memset(hostname, 0, sizeof(hostname));
1190 gethostname(hostname, sizeof(hostname) - 1);
1191 memset(localpeer, 0, sizeof(localpeer));
1192 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
1193
Willy Tarreaubaaee002006-06-26 02:48:02 +02001194 /*
1195 * Initialize the previously static variables.
1196 */
1197
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001198 totalconn = actconn = maxfd = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001199 killed = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001200
1201
1202#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001203 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001204#endif
1205
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001206 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001207 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001208 start_date = now;
1209
Willy Tarreau84310e22014-02-14 11:59:04 +01001210 srandom(now_ms - getpid());
1211
Dragan Dosen835b9212016-02-12 13:23:03 +01001212 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +02001213 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001214 if (init_acl() != 0)
1215 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001216 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +02001217 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001218 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001219 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +02001220 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001221 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +01001222 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001223
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001224 /* Initialise lua. */
1225 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001226
Christopher Fauletff2613e2016-11-09 11:36:17 +01001227 /* Initialize process vars */
1228 vars_init(&global.vars, SCOPE_PROC);
1229
Willy Tarreau43b78992009-01-25 15:42:27 +01001230 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001231#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001232 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001233#endif
1234#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001235 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001236#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001237#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001238 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001239#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001240#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001241 global.tune.options |= GTUNE_USE_SPLICE;
1242#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001243#if defined(USE_GETADDRINFO)
1244 global.tune.options |= GTUNE_USE_GAI;
1245#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001246#if defined(SO_REUSEPORT)
1247 global.tune.options |= GTUNE_USE_REUSEPORT;
1248#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001249
1250 pid = getpid();
1251 progname = *argv;
1252 while ((tmp = strchr(progname, '/')) != NULL)
1253 progname = tmp + 1;
1254
Kevinm48936af2010-12-22 16:08:21 +00001255 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001256 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001257
Willy Tarreaubaaee002006-06-26 02:48:02 +02001258 argc--; argv++;
1259 while (argc > 0) {
1260 char *flag;
1261
1262 if (**argv == '-') {
1263 flag = *argv+1;
1264
1265 /* 1 arg */
1266 if (*flag == 'v') {
1267 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001268 if (flag[1] == 'v') /* -vv */
1269 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001270 exit(0);
1271 }
1272#if defined(ENABLE_EPOLL)
1273 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001274 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001275#endif
1276#if defined(ENABLE_POLL)
1277 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001278 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001279#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +02001280#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001281 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001282 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001283#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001284#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001285 else if (*flag == 'd' && flag[1] == 'S')
1286 global.tune.options &= ~GTUNE_USE_SPLICE;
1287#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001288#if defined(USE_GETADDRINFO)
1289 else if (*flag == 'd' && flag[1] == 'G')
1290 global.tune.options &= ~GTUNE_USE_GAI;
1291#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001292#if defined(SO_REUSEPORT)
1293 else if (*flag == 'd' && flag[1] == 'R')
1294 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1295#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001296 else if (*flag == 'd' && flag[1] == 'V')
1297 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001298 else if (*flag == 'V')
1299 arg_mode |= MODE_VERBOSE;
1300 else if (*flag == 'd' && flag[1] == 'b')
1301 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001302 else if (*flag == 'd' && flag[1] == 'M')
1303 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001304 else if (*flag == 'd' && flag[1] == 'r')
1305 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001306 else if (*flag == 'd')
1307 arg_mode |= MODE_DEBUG;
1308 else if (*flag == 'c')
1309 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001310 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001311 arg_mode |= MODE_DAEMON;
William Lallemand095ba4c2017-06-01 17:38:50 +02001312 else if (*flag == 'W')
1313 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001314 else if (*flag == 'q')
1315 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001316 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001317 if (argc <= 1 || argv[1][0] == '-') {
1318 Alert("Unix socket path expected with the -x flag\n\n");
1319 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001320 }
William Lallemand4fc09692017-06-19 16:37:19 +02001321 if (old_unixsocket)
1322 Warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001323 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001324
Olivier Houchardf73629d2017-04-05 22:33:04 +02001325 argv++;
1326 argc--;
1327 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001328 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1329 /* list of pids to finish ('f') or terminate ('t') */
1330
1331 if (flag[1] == 'f')
1332 oldpids_sig = SIGUSR1; /* finish then exit */
1333 else
1334 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001335 while (argc > 1 && argv[1][0] != '-') {
1336 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1337 if (!oldpids) {
1338 Alert("Cannot allocate old pid : out of memory.\n");
1339 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001340 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001341 argc--; argv++;
1342 oldpids[nb_oldpids] = atol(*argv);
1343 if (oldpids[nb_oldpids] <= 0)
1344 usage(progname);
1345 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001346 }
1347 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001348 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1349 /* now that's a cfgfile list */
1350 argv++; argc--;
1351 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001352 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1353 Alert("Cannot load configuration file/directory %s : %s\n",
1354 *argv,
1355 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001356 exit(1);
1357 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001358 argv++; argc--;
1359 }
1360 break;
1361 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001362 else { /* >=2 args */
1363 argv++; argc--;
1364 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001365 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001366
1367 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001368 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001369 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001370 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +02001372 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001373 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001374 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1375 Alert("Cannot load configuration file/directory %s : %s\n",
1376 *argv,
1377 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001378 exit(1);
1379 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001380 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001381 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001382 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001383 }
1384 }
1385 }
1386 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001387 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001388 argv++; argc--;
1389 }
1390
Christopher Faulete3a5e352017-10-24 13:53:54 +02001391 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1392 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001393
William Lallemandcb11fd22017-06-01 17:38:52 +02001394 /* Master workers wait mode */
1395 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) {
1396
1397 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
1398 mworker_wait();
1399 }
1400
1401 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1402 atexit_flag = 1;
1403 atexit(reexec_on_failure);
1404 }
1405
Willy Tarreau576132e2011-09-10 19:26:56 +02001406 if (change_dir && chdir(change_dir) < 0) {
1407 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
1408 exit(1);
1409 }
1410
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001411 /* handle cfgfiles that are actualy directories */
1412 cfgfiles_expand_directories();
1413
1414 if (LIST_ISEMPTY(&cfg_cfgfiles))
1415 usage(progname);
1416
Willy Tarreaubaaee002006-06-26 02:48:02 +02001417 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001418
1419 init_default_instance();
1420
Willy Tarreau477ecd82010-01-03 21:12:30 +01001421 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001422 int ret;
1423
Willy Tarreau477ecd82010-01-03 21:12:30 +01001424 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001425 if (ret == -1) {
1426 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +01001427 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001428 exit(1);
1429 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001430 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +01001431 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001432 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001433 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001434 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001435 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001436
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001437 /* do not try to resolve arguments nor to spot inconsistencies when
1438 * the configuration contains fatal errors caused by files not found
1439 * or failed memory allocations.
1440 */
1441 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1442 Alert("Fatal errors found in configuration.\n");
1443 exit(1);
1444 }
1445
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001446 pattern_finalize_config();
1447
Willy Tarreaubb925012009-07-23 13:36:36 +02001448 err_code |= check_config_validity();
1449 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1450 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001451 exit(1);
1452 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001453
Willy Tarreau70060452015-12-14 12:46:07 +01001454 /* recompute the amount of per-process memory depending on nbproc and
1455 * the shared SSL cache size (allowed to exist in all processes).
1456 */
1457 if (global.rlimit_memmax_all) {
1458#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1459 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1460
1461 global.rlimit_memmax =
1462 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1463 ssl_cache_bytes) / global.nbproc +
1464 ssl_cache_bytes + 1048575LL) / 1048576LL;
1465#else
1466 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1467#endif
1468 }
1469
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001470#ifdef CONFIG_HAP_NS
1471 err_code |= netns_init();
1472 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1473 Alert("Failed to initialize namespace support.\n");
1474 exit(1);
1475 }
1476#endif
1477
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001478 /* Apply server states */
1479 apply_server_state();
1480
1481 for (px = proxy; px; px = px->next)
1482 srv_compute_all_admin_states(px);
1483
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001484 /* Apply servers' configured address */
1485 err_code |= srv_init_addr();
1486 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1487 Alert("Failed to initialize server(s) addr.\n");
1488 exit(1);
1489 }
1490
Willy Tarreaubaaee002006-06-26 02:48:02 +02001491 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001492 struct peers *pr;
1493 struct proxy *px;
1494
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001495 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001496 if (pr->peers_fe)
1497 break;
1498
1499 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001500 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001501 break;
1502
1503 if (pr || px) {
1504 /* At least one peer or one listener has been found */
1505 qfprintf(stdout, "Configuration file is valid\n");
1506 exit(0);
1507 }
1508 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1509 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001510 }
1511
Willy Tarreaue9b26022011-08-01 20:57:55 +02001512 global_listener_queue_task = task_new();
1513 if (!global_listener_queue_task) {
1514 Alert("Out of memory when initializing global task\n");
1515 exit(1);
1516 }
1517 /* very simple initialization, users will queue the task if needed */
1518 global_listener_queue_task->context = NULL; /* not even a context! */
1519 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001520
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001521 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001522 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001523
Willy Tarreaue6945732016-12-21 19:57:00 +01001524 list_for_each_entry(pcf, &post_check_list, list) {
1525 err_code |= pcf->fct();
1526 if (err_code & (ERR_ABORT|ERR_FATAL))
1527 exit(1);
1528 }
1529
Willy Tarreaubaaee002006-06-26 02:48:02 +02001530 if (cfg_maxconn > 0)
1531 global.maxconn = cfg_maxconn;
1532
1533 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001534 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001535 global.pidfile = strdup(cfg_pidfile);
1536 }
1537
Willy Tarreaud0256482015-01-15 21:45:22 +01001538 /* Now we want to compute the maxconn and possibly maxsslconn values.
1539 * It's a bit tricky. If memmax is not set, maxconn defaults to
1540 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1541 *
1542 * If memmax is set, then it depends on which values are set. If
1543 * maxsslconn is set, we use memmax to determine how many cleartext
1544 * connections may be added, and set maxconn to the sum of the two.
1545 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1546 * the remaining amount of memory between memmax and the cleartext
1547 * connections. If neither are set, then it is considered that all
1548 * connections are SSL-capable, and maxconn is computed based on this,
1549 * then maxsslconn accordingly. We need to know if SSL is used on the
1550 * frontends, backends, or both, because when it's used on both sides,
1551 * we need twice the value for maxsslconn, but we only count the
1552 * handshake once since it is not performed on the two sides at the
1553 * same time (frontend-side is terminated before backend-side begins).
1554 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001555 * ssl_handshake_cost during its initialization. In any case, if
1556 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1557 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001558 */
1559 if (!global.rlimit_memmax) {
1560 if (global.maxconn == 0) {
1561 global.maxconn = DEFAULT_MAXCONN;
1562 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1563 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1564 }
1565 }
1566#ifdef USE_OPENSSL
1567 else if (!global.maxconn && !global.maxsslconn &&
1568 (global.ssl_used_frontend || global.ssl_used_backend)) {
1569 /* memmax is set, compute everything automatically. Here we want
1570 * to ensure that all SSL connections will be served. We take
1571 * care of the number of sides where SSL is used, and consider
1572 * the worst case : SSL used on both sides and doing a handshake
1573 * simultaneously. Note that we can't have more than maxconn
1574 * handshakes at a time by definition, so for the worst case of
1575 * two SSL conns per connection, we count a single handshake.
1576 */
1577 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1578 int64_t mem = global.rlimit_memmax * 1048576ULL;
1579
1580 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1581 mem -= global.maxzlibmem;
1582 mem = mem * MEM_USABLE_RATIO;
1583
1584 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001585 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001586 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1587 global.ssl_handshake_max_cost); // 1 handshake per connection max
1588
1589 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001590#ifdef SYSTEM_MAXCONN
1591 if (global.maxconn > DEFAULT_MAXCONN)
1592 global.maxconn = DEFAULT_MAXCONN;
1593#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001594 global.maxsslconn = sides * global.maxconn;
1595 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1596 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1597 global.maxconn, global.maxsslconn);
1598 }
1599 else if (!global.maxsslconn &&
1600 (global.ssl_used_frontend || global.ssl_used_backend)) {
1601 /* memmax and maxconn are known, compute maxsslconn automatically.
1602 * maxsslconn being forced, we don't know how many of it will be
1603 * on each side if both sides are being used. The worst case is
1604 * when all connections use only one SSL instance because
1605 * handshakes may be on two sides at the same time.
1606 */
1607 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1608 int64_t mem = global.rlimit_memmax * 1048576ULL;
1609 int64_t sslmem;
1610
1611 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1612 mem -= global.maxzlibmem;
1613 mem = mem * MEM_USABLE_RATIO;
1614
Willy Tarreau87b09662015-04-03 00:22:06 +02001615 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001616 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1617 global.maxsslconn = round_2dig(global.maxsslconn);
1618
1619 if (sslmem <= 0 || global.maxsslconn < sides) {
1620 Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1621 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1622 "without SSL is %d, but %d was found and SSL is in use.\n",
1623 global.rlimit_memmax,
Willy Tarreau87b09662015-04-03 00:22:06 +02001624 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
Willy Tarreaud0256482015-01-15 21:45:22 +01001625 global.maxconn);
1626 exit(1);
1627 }
1628
1629 if (global.maxsslconn > sides * global.maxconn)
1630 global.maxsslconn = sides * global.maxconn;
1631
1632 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1633 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1634 }
1635#endif
1636 else if (!global.maxconn) {
1637 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1638 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1639 int64_t mem = global.rlimit_memmax * 1048576ULL;
1640 int64_t clearmem;
1641
1642 if (global.ssl_used_frontend || global.ssl_used_backend)
1643 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1644
1645 mem -= global.maxzlibmem;
1646 mem = mem * MEM_USABLE_RATIO;
1647
1648 clearmem = mem;
1649 if (sides)
1650 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1651
Willy Tarreau87b09662015-04-03 00:22:06 +02001652 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001653 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001654#ifdef SYSTEM_MAXCONN
1655 if (global.maxconn > DEFAULT_MAXCONN)
1656 global.maxconn = DEFAULT_MAXCONN;
1657#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001658
1659 if (clearmem <= 0 || !global.maxconn) {
1660 Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1661 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1662 "is %d, but %d was found.\n",
1663 global.rlimit_memmax,
1664 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1665 global.maxsslconn);
1666 exit(1);
1667 }
1668
1669 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1670 if (sides && global.maxsslconn > sides * global.maxconn) {
1671 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1672 "to be limited to %d. Better reduce global.maxsslconn to get more "
1673 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1674 }
1675 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1676 }
1677 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001678
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001679 if (!global.maxpipes) {
1680 /* maxpipes not specified. Count how many frontends and backends
1681 * may be using splicing, and bound that to maxconn.
1682 */
1683 struct proxy *cur;
1684 int nbfe = 0, nbbe = 0;
1685
1686 for (cur = proxy; cur; cur = cur->next) {
1687 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1688 if (cur->cap & PR_CAP_FE)
1689 nbfe += cur->maxconn;
1690 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001691 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001692 }
1693 }
1694 global.maxpipes = MAX(nbfe, nbbe);
1695 if (global.maxpipes > global.maxconn)
1696 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001697 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001698 }
1699
1700
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001701 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001702 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001703 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001704
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001705 if (global.stats_fe)
1706 global.maxsock += global.stats_fe->maxconn;
1707
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001708 if (cfg_peers) {
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001709 /* peers also need to bypass global maxconn */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001710 struct peers *p = cfg_peers;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001711
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001712 for (p = cfg_peers; p; p = p->next)
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001713 if (p->peers_fe)
1714 global.maxsock += p->peers_fe->maxconn;
1715 }
1716
Willy Tarreau1db37712007-06-03 17:16:49 +02001717 if (global.tune.maxpollevents <= 0)
1718 global.tune.maxpollevents = MAX_POLL_EVENTS;
1719
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001720 if (global.tune.recv_enough == 0)
1721 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1722
Willy Tarreau27097842015-09-28 13:53:23 +02001723 if (global.tune.maxrewrite < 0)
1724 global.tune.maxrewrite = MAXREWRITE;
1725
Willy Tarreau27a674e2009-08-17 07:23:33 +02001726 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1727 global.tune.maxrewrite = global.tune.bufsize / 2;
1728
Willy Tarreaubaaee002006-06-26 02:48:02 +02001729 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1730 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02001731 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001732 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1733 }
1734
William Lallemand095ba4c2017-06-01 17:38:50 +02001735 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001736 /* command line daemon mode inhibits foreground and debug modes mode */
1737 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02001738 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001739 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001740
1741 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001742
William Lallemand095ba4c2017-06-01 17:38:50 +02001743 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
1744 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
1745 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001746 }
1747
William Lallemand095ba4c2017-06-01 17:38:50 +02001748 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001749 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
1750 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
1751 global.nbproc = 1;
1752 }
1753
1754 if (global.nbproc < 1)
1755 global.nbproc = 1;
1756
Christopher Faulet3ef26392017-08-29 16:46:57 +02001757 /* Realloc trash buffers because global.tune.bufsize may have changed */
1758 if (!init_trash_buffers()) {
1759 Alert("failed to initialize trash buffers.\n");
1760 exit(1);
1761 }
1762
Christopher Faulet084aa962017-08-29 16:54:41 +02001763 if (!init_log_buffers()) {
1764 Alert("failed to initialize log buffers.\n");
1765 exit(1);
1766 }
1767
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001768 /*
1769 * Note: we could register external pollers here.
1770 * Built-in pollers have been registered before main().
1771 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001772
Willy Tarreau43b78992009-01-25 15:42:27 +01001773 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001774 disable_poller("kqueue");
1775
Willy Tarreau43b78992009-01-25 15:42:27 +01001776 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001777 disable_poller("epoll");
1778
Willy Tarreau43b78992009-01-25 15:42:27 +01001779 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001780 disable_poller("poll");
1781
Willy Tarreau43b78992009-01-25 15:42:27 +01001782 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001783 disable_poller("select");
1784
1785 /* Note: we could disable any poller by name here */
1786
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001787 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001788 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001789 fprintf(stderr, "\n");
1790 list_filters(stderr);
1791 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001792
Willy Tarreau4f60f162007-04-08 16:39:58 +02001793 if (!init_pollers()) {
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001794 Alert("No polling mechanism available.\n"
1795 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1796 " is too low on this platform to support maxconn and the number of listeners\n"
1797 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1798 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
Prach Pongpanichb837e682013-05-14 20:56:28 +02001799 " global maxconn setting to accommodate the system's limitation. For reference,\n"
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001800 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1801 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1802 " check build settings using 'haproxy -vv'.\n\n",
1803 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001804 exit(1);
1805 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001806 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1807 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001808 }
1809
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001810 if (!global.node)
1811 global.node = strdup(hostname);
1812
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001813 if (!hlua_post_init())
1814 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001815
Maxime de Roucy0f503922016-05-13 23:52:55 +02001816 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001817}
1818
Simon Horman6fb82592011-07-15 13:14:11 +09001819static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001820{
Simon Hormanac821422011-07-15 13:14:09 +09001821 struct acl_term_suite *suite, *suiteb;
1822 struct acl_term *term, *termb;
1823
Simon Horman6fb82592011-07-15 13:14:11 +09001824 if (!cond)
1825 return;
1826
1827 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1828 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1829 LIST_DEL(&term->list);
1830 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001831 }
Simon Horman6fb82592011-07-15 13:14:11 +09001832 LIST_DEL(&suite->list);
1833 free(suite);
1834 }
1835
1836 free(cond);
1837}
1838
1839static void deinit_tcp_rules(struct list *rules)
1840{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001841 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001842
1843 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001844 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001845 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001846 free(trule);
1847 }
1848}
1849
Simon Horman6fb82592011-07-15 13:14:11 +09001850static void deinit_stick_rules(struct list *rules)
1851{
1852 struct sticking_rule *rule, *ruleb;
1853
1854 list_for_each_entry_safe(rule, ruleb, rules, list) {
1855 LIST_DEL(&rule->list);
1856 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001857 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001858 free(rule);
1859 }
1860}
1861
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001862void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001863{
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001864 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865 struct cap_hdr *h,*h_next;
1866 struct server *s,*s_next;
1867 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001868 struct acl_cond *cond, *condb;
1869 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001870 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001871 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001872 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001873 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001874 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01001875 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001876 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02001877 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01001878 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001879 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001880 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01001881 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001882 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001883
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001884 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001885 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02001886 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001887 free(p->id);
1888 free(p->check_req);
1889 free(p->cookie_name);
1890 free(p->cookie_domain);
1891 free(p->url_param_name);
1892 free(p->capture_name);
1893 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09001894 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02001895 if (p->conf.logformat_string != default_http_log_format &&
1896 p->conf.logformat_string != default_tcp_log_format &&
1897 p->conf.logformat_string != clf_http_log_format)
1898 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02001899
Willy Tarreau62a61232013-04-12 18:13:46 +02001900 free(p->conf.lfs_file);
1901 free(p->conf.uniqueid_format_string);
1902 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08001903 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001905 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1906 free(p->conf.logformat_sd_string);
1907 free(p->conf.lfsd_file);
1908
Willy Tarreaua534fea2008-08-03 12:19:50 +02001909 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001910 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001911
Willy Tarreauf4f04122010-01-28 18:10:50 +01001912 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
1913 LIST_DEL(&cwl->list);
1914 free(cwl->s);
1915 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001916 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001917
Willy Tarreauf4f04122010-01-28 18:10:50 +01001918 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
1919 LIST_DEL(&cwl->list);
1920 free(cwl->s);
1921 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001922 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001923
Willy Tarreaub80c2302007-11-30 20:51:32 +01001924 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
1925 LIST_DEL(&cond->list);
1926 prune_acl_cond(cond);
1927 free(cond);
1928 }
1929
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001930 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001931 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001932 regex_free(exp->preg);
1933 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001934 }
1935
Willy Tarreau98d04852015-05-26 12:18:29 +02001936 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001937 expb = exp;
1938 exp = exp->next;
1939 free(expb);
1940 }
1941
1942 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001943 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001944 regex_free(exp->preg);
1945 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001946 }
1947
Willy Tarreau98d04852015-05-26 12:18:29 +02001948 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001949 expb = exp;
1950 exp = exp->next;
1951 free(expb);
1952 }
1953
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001954 /* build a list of unique uri_auths */
1955 if (!ua)
1956 ua = p->uri_auth;
1957 else {
1958 /* check if p->uri_auth is unique */
1959 for (uap = ua; uap; uap=uap->next)
1960 if (uap == p->uri_auth)
1961 break;
1962
Willy Tarreauaccc4e12008-06-24 11:14:45 +02001963 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001964 /* add it, if it is */
1965 p->uri_auth->next = ua;
1966 ua = p->uri_auth;
1967 }
1968 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001969
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001970 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
1971 LIST_DEL(&acl->list);
1972 prune_acl(acl);
1973 free(acl);
1974 }
1975
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001976 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
1977 LIST_DEL(&srule->list);
1978 prune_acl_cond(srule->cond);
1979 free(srule->cond);
1980 free(srule);
1981 }
1982
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001983 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
1984 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001985 if (rule->cond) {
1986 prune_acl_cond(rule->cond);
1987 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01001988 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001989 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001990 free(rule);
1991 }
1992
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001993 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
1994 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01001995 if (rdr->cond) {
1996 prune_acl_cond(rdr->cond);
1997 free(rdr->cond);
1998 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001999 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002000 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2001 LIST_DEL(&lf->list);
2002 free(lf);
2003 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002004 free(rdr);
2005 }
2006
William Lallemand0f99e342011-10-12 17:50:54 +02002007 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2008 LIST_DEL(&log->list);
2009 free(log);
2010 }
2011
William Lallemand723b73a2012-02-08 16:37:49 +01002012 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2013 LIST_DEL(&lf->list);
2014 free(lf);
2015 }
2016
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002017 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2018 LIST_DEL(&lf->list);
2019 free(lf);
2020 }
2021
Simon Hormanac821422011-07-15 13:14:09 +09002022 deinit_tcp_rules(&p->tcp_req.inspect_rules);
2023 deinit_tcp_rules(&p->tcp_req.l4_rules);
2024
Simon Horman6fb82592011-07-15 13:14:11 +09002025 deinit_stick_rules(&p->storersp_rules);
2026 deinit_stick_rules(&p->sticking_rules);
2027
Willy Tarreaubaaee002006-06-26 02:48:02 +02002028 h = p->req_cap;
2029 while (h) {
2030 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002031 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002032 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002033 free(h);
2034 h = h_next;
2035 }/* end while(h) */
2036
2037 h = p->rsp_cap;
2038 while (h) {
2039 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002040 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002041 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002042 free(h);
2043 h = h_next;
2044 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002045
Willy Tarreaubaaee002006-06-26 02:48:02 +02002046 s = p->srv;
2047 while (s) {
2048 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002049
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002050 if (s->check.task) {
2051 task_delete(s->check.task);
2052 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002053 }
Simon Hormand60d6912013-11-25 10:46:36 +09002054 if (s->agent.task) {
2055 task_delete(s->agent.task);
2056 task_free(s->agent.task);
2057 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002058
Willy Tarreau2e993902011-10-31 11:53:20 +01002059 if (s->warmup) {
2060 task_delete(s->warmup);
2061 task_free(s->warmup);
2062 }
2063
Willy Tarreaua534fea2008-08-03 12:19:50 +02002064 free(s->id);
2065 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002066 free(s->check.bi);
2067 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09002068 free(s->agent.bi);
2069 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07002070 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002071 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002072 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01002073
2074 if (s->use_ssl || s->check.use_ssl) {
2075 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2076 xprt_get(XPRT_SSL)->destroy_srv(s);
2077 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002078 free(s);
2079 s = s_next;
2080 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002081
Willy Tarreau4348fad2012-09-20 16:48:07 +02002082 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002083 /*
2084 * Zombie proxy, the listener just pretend to be up
2085 * because they still hold an opened fd.
2086 * Close it and give the listener its real state.
2087 */
2088 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2089 close(l->fd);
2090 l->state = LI_INIT;
2091 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002092 unbind_listener(l);
2093 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002094 LIST_DEL(&l->by_fe);
2095 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002096 free(l->name);
2097 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002098 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002099 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002100
Willy Tarreau4348fad2012-09-20 16:48:07 +02002101 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002102 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002103 if (bind_conf->xprt->destroy_bind_conf)
2104 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002105 free(bind_conf->file);
2106 free(bind_conf->arg);
2107 LIST_DEL(&bind_conf->by_fe);
2108 free(bind_conf);
2109 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002110
Christopher Fauletd7c91962015-04-30 11:48:27 +02002111 flt_deinit(p);
2112
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002113 free(p->desc);
2114 free(p->fwdfor_hdr_name);
2115
Willy Tarreauff011f22011-01-06 17:51:27 +01002116 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002117 free_http_res_rules(&p->http_res_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02002118 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002119
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002120 pool_destroy2(p->req_cap_pool);
2121 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09002122 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002123
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002124 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002125 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002126 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002127 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002128
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002129 while (ua) {
2130 uap = ua;
2131 ua = ua->next;
2132
Willy Tarreaua534fea2008-08-03 12:19:50 +02002133 free(uap->uri_prefix);
2134 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002135 free(uap->node);
2136 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002137
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002138 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002139 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002140
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002141 free(uap);
2142 }
2143
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002144 userlist_free(userlist);
2145
David Carlier834cb2e2015-09-25 12:02:25 +01002146 cfg_unregister_sections();
2147
Christopher Faulet0132d062017-07-26 15:33:35 +02002148 deinit_log_buffers();
Christopher Faulet748919a2017-07-26 14:59:46 +02002149 deinit_trash_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002150
Willy Tarreaudd815982007-10-16 12:25:14 +02002151 protocol_unbind_all();
2152
Willy Tarreau05554e62016-12-21 20:46:26 +01002153 list_for_each_entry(pdf, &post_deinit_list, list)
2154 pdf->fct();
2155
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002156 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002157 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002158 free(global.chroot); global.chroot = NULL;
2159 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002160 free(global.node); global.node = NULL;
2161 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002162 free(oldpids); oldpids = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002163 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002164
William Lallemand0f99e342011-10-12 17:50:54 +02002165 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2166 LIST_DEL(&log->list);
2167 free(log);
2168 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002169 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002170 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002171 LIST_DEL(&wl->list);
2172 free(wl);
2173 }
2174
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002175 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2176 if (bol->must_free)
2177 free((void *)bol->str);
2178 LIST_DEL(&bol->list);
2179 free(bol);
2180 }
2181
Christopher Fauletff2613e2016-11-09 11:36:17 +01002182 vars_prune(&global.vars, NULL, NULL);
2183
Christopher Fauletad405f12017-08-29 15:30:11 +02002184 deinit_buffer();
2185
Willy Tarreau87b09662015-04-03 00:22:06 +02002186 pool_destroy2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +02002187 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002188 pool_destroy2(pool2_connection);
Willy Tarreaub686afd2017-02-08 11:06:11 +01002189 pool_destroy2(pool2_trash);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02002190 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02002191 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02002192 pool_destroy2(pool2_capture);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02002193 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002194 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02002195 pool_destroy2(pool2_hdr_idx);
Willy Tarreau63986c72015-04-03 22:55:33 +02002196 pool_destroy2(pool2_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002197 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002198} /* end deinit() */
2199
Willy Tarreaubaaee002006-06-26 02:48:02 +02002200
Willy Tarreau918ff602011-07-25 16:33:49 +02002201/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002202static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002203{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002204 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002205
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002206 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002207 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002208 /* Process a few tasks */
2209 process_runnable_tasks();
2210
Willy Tarreau29857942009-05-10 09:01:21 +02002211 /* check if we caught some signals and process them */
2212 signal_process_queue();
2213
Willy Tarreau58b458d2008-06-29 22:40:23 +02002214 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002215 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002216
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002217 /* stop when there's nothing left to do */
2218 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02002219 break;
2220
Willy Tarreau10146c92015-04-13 20:44:19 +02002221 /* expire immediately if events are pending */
Christopher Faulet34c5cc92016-12-06 09:15:30 +01002222 if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue)
Willy Tarreau10146c92015-04-13 20:44:19 +02002223 next = now_ms;
2224
Willy Tarreau58b458d2008-06-29 22:40:23 +02002225 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002226 cur_poller.poll(&cur_poller, next);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002227 fd_process_cached_events();
Willy Tarreau3c595ac2015-04-19 09:59:31 +02002228 applet_run_active();
Emeric Brun64cc49c2017-10-03 14:46:45 +02002229
2230 /* Commit server status changes */
2231 servers_update_status();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002232 }
2233}
2234
Willy Tarreaue9b26022011-08-01 20:57:55 +02002235/* This is the global management task for listeners. It enables listeners waiting
2236 * for global resources when there are enough free resource, or at least once in
2237 * a while. It is designed to be called as a task.
2238 */
2239static struct task *manage_global_listener_queue(struct task *t)
2240{
2241 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002242 /* queue is empty, nothing to do */
2243 if (LIST_ISEMPTY(&global_listener_queue))
2244 goto out;
2245
2246 /* If there are still too many concurrent connections, let's wait for
2247 * some of them to go away. We don't need to re-arm the timer because
2248 * each of them will scan the queue anyway.
2249 */
2250 if (unlikely(actconn >= global.maxconn))
2251 goto out;
2252
2253 /* We should periodically try to enable listeners waiting for a global
2254 * resource here, because it is possible, though very unlikely, that
2255 * they have been blocked by a temporary lack of global resource such
2256 * as a file descriptor or memory and that the temporary condition has
2257 * disappeared.
2258 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002259 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002260
2261 out:
2262 t->expire = next;
2263 task_queue(t);
2264 return t;
2265}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002266
William Lallemande20b6a62017-06-01 17:38:55 +02002267void mworker_pipe_handler(int fd)
2268{
2269 char c;
2270
2271 while (read(fd, &c, 1) == -1) {
2272 if (errno == EINTR)
2273 continue;
2274 if (errno == EAGAIN) {
2275 fd_cant_recv(fd);
2276 return;
2277 }
2278 break;
2279 }
2280
2281 deinit();
2282 exit(EXIT_FAILURE);
2283 return;
2284}
2285
2286void mworker_pipe_register(int pipefd[2])
2287{
2288 close(mworker_pipe[1]); /* close the write end of the master pipe in the children */
2289
2290 fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK);
2291 fdtab[mworker_pipe[0]].owner = mworker_pipe;
2292 fdtab[mworker_pipe[0]].iocb = mworker_pipe_handler;
2293 fd_insert(mworker_pipe[0]);
2294 fd_want_recv(mworker_pipe[0]);
2295 }
2296
2297
Willy Tarreaubaaee002006-06-26 02:48:02 +02002298int main(int argc, char **argv)
2299{
2300 int err, retry;
2301 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002302 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002303 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002304
Emeric Bruncf20bf12010-10-22 16:06:11 +02002305 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002306 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2307 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2308 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002309 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002310
Willy Tarreaue437c442010-03-17 18:02:46 +01002311 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2312 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2313 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002314 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002315 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002316
Willy Tarreaudc23a922011-02-16 11:10:36 +01002317 /* ulimits */
2318 if (!global.rlimit_nofile)
2319 global.rlimit_nofile = global.maxsock;
2320
2321 if (global.rlimit_nofile) {
2322 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
2323 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002324 /* try to set it to the max possible at least */
2325 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002326 limit.rlim_cur = limit.rlim_max;
2327 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2328 getrlimit(RLIMIT_NOFILE, &limit);
2329
Willy Tarreauef635472016-06-21 11:48:18 +02002330 Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2331 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002332 }
2333 }
2334
2335 if (global.rlimit_memmax) {
2336 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002337 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002338#ifdef RLIMIT_AS
2339 if (setrlimit(RLIMIT_AS, &limit) == -1) {
2340 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2341 argv[0], global.rlimit_memmax);
2342 }
2343#else
2344 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
2345 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2346 argv[0], global.rlimit_memmax);
2347 }
2348#endif
2349 }
2350
Olivier Houchardf73629d2017-04-05 22:33:04 +02002351 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002352 if (strcmp("/dev/null", old_unixsocket) != 0) {
2353 if (get_old_sockets(old_unixsocket) != 0) {
2354 Alert("Failed to get the sockets from the old process!\n");
2355 if (!(global.mode & MODE_MWORKER))
2356 exit(1);
2357 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002358 }
2359 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002360 get_cur_unixsocket();
2361
Willy Tarreaubaaee002006-06-26 02:48:02 +02002362 /* We will loop at most 100 times with 10 ms delay each time.
2363 * That's at most 1 second. We only send a signal to old pids
2364 * if we cannot grab at least one port.
2365 */
2366 retry = MAX_START_RETRIES;
2367 err = ERR_NONE;
2368 while (retry >= 0) {
2369 struct timeval w;
2370 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002371 /* exit the loop on no error or fatal error */
2372 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002373 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002374 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002375 break;
2376
2377 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2378 * listening sockets. So on those platforms, it would be wiser to
2379 * simply send SIGUSR1, which will not be undoable.
2380 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002381 if (tell_old_pids(SIGTTOU) == 0) {
2382 /* no need to wait if we can't contact old pids */
2383 retry = 0;
2384 continue;
2385 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002386 /* give some time to old processes to stop listening */
2387 w.tv_sec = 0;
2388 w.tv_usec = 10*1000;
2389 select(0, NULL, NULL, NULL, &w);
2390 retry--;
2391 }
2392
2393 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002394 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002395 if (retry != MAX_START_RETRIES && nb_oldpids) {
2396 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002397 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002398 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002399 exit(1);
2400 }
2401
2402 if (listeners == 0) {
Willy Tarreauf2ee0162015-08-09 11:01:51 +02002403 Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002404 /* Note: we don't have to send anything to the old pids because we
2405 * never stopped them. */
2406 exit(1);
2407 }
2408
Emeric Bruncf20bf12010-10-22 16:06:11 +02002409 err = protocol_bind_all(errmsg, sizeof(errmsg));
2410 if ((err & ~ERR_WARN) != ERR_NONE) {
2411 if ((err & ERR_ALERT) || (err & ERR_WARN))
2412 Alert("[%s.main()] %s.\n", argv[0], errmsg);
2413
Willy Tarreaudd815982007-10-16 12:25:14 +02002414 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
2415 protocol_unbind_all(); /* cleanup everything we can */
2416 if (nb_oldpids)
2417 tell_old_pids(SIGTTIN);
2418 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002419 } else if (err & ERR_WARN) {
2420 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002421 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002422 /* Ok, all listener should now be bound, close any leftover sockets
2423 * the previous process gave us, we don't need them anymore
2424 */
2425 while (xfer_sock_list != NULL) {
2426 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2427 close(xfer_sock_list->fd);
2428 free(xfer_sock_list->iface);
2429 free(xfer_sock_list->namespace);
2430 free(xfer_sock_list);
2431 xfer_sock_list = tmpxfer;
2432 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002433
Willy Tarreaubaaee002006-06-26 02:48:02 +02002434 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002435 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2436 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002437
Willy Tarreaubaaee002006-06-26 02:48:02 +02002438 /* MODE_QUIET can inhibit alerts and warnings below this line */
2439
Willy Tarreaubaaee002006-06-26 02:48:02 +02002440 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2441 /* detach from the tty */
2442 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002443 }
2444
2445 /* open log & pid files before the chroot */
William Lallemand095ba4c2017-06-01 17:38:50 +02002446 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002447 unlink(global.pidfile);
2448 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2449 if (pidfd < 0) {
2450 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
2451 if (nb_oldpids)
2452 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002453 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454 exit(1);
2455 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002456 }
2457
Willy Tarreaub38651a2007-03-24 17:24:39 +01002458 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
2459 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002460 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002461 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002462 exit(1);
2463 }
2464
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002465 /* If the user is not root, we'll still let him try the configuration
2466 * but we inform him that unexpected behaviour may occur.
2467 */
2468 if ((global.last_checks & LSTCHK_NETADM) && getuid())
2469 Warning("[%s.main()] Some options which require full privileges"
2470 " might not work well.\n"
2471 "", argv[0]);
2472
William Lallemand095ba4c2017-06-01 17:38:50 +02002473 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2474
2475 /* chroot if needed */
2476 if (global.chroot != NULL) {
2477 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2478 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
2479 if (nb_oldpids)
2480 tell_old_pids(SIGTTIN);
2481 protocol_unbind_all();
2482 exit(1);
2483 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002484 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002485 }
2486
Willy Tarreaubaaee002006-06-26 02:48:02 +02002487 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002488 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002489
William Lallemand8a361b52017-06-20 11:20:33 +02002490 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2491 nb_oldpids = 0;
2492 free(oldpids);
2493 oldpids = NULL;
2494 }
2495
2496
Willy Tarreaubaaee002006-06-26 02:48:02 +02002497 /* Note that any error at this stage will be fatal because we will not
2498 * be able to restart the old pids.
2499 */
2500
William Lallemand095ba4c2017-06-01 17:38:50 +02002501 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2502 /* setgid / setuid */
2503 if (global.gid) {
2504 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2505 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2506 " without 'uid'/'user' is generally useless.\n", argv[0]);
2507
2508 if (setgid(global.gid) == -1) {
2509 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2510 protocol_unbind_all();
2511 exit(1);
2512 }
2513 }
Michael Schererab012dd2013-01-12 18:35:19 +01002514
William Lallemand095ba4c2017-06-01 17:38:50 +02002515 if (global.uid && setuid(global.uid) == -1) {
2516 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002517 protocol_unbind_all();
2518 exit(1);
2519 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002520 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002521 /* check ulimits */
2522 limit.rlim_cur = limit.rlim_max = 0;
2523 getrlimit(RLIMIT_NOFILE, &limit);
2524 if (limit.rlim_cur < global.maxsock) {
2525 Warning("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
Willy Tarreau1772ece2009-04-03 14:49:12 +02002526 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002527 }
2528
William Lallemand095ba4c2017-06-01 17:38:50 +02002529 if (global.mode & (MODE_DAEMON | MODE_MWORKER)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002530 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002531 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002532 int ret = 0;
2533 int proc;
2534
William Lallemand73b85e72017-06-01 17:38:51 +02002535 children = calloc(global.nbproc, sizeof(int));
William Lallemand095ba4c2017-06-01 17:38:50 +02002536 /*
2537 * if daemon + mworker: must fork here to let a master
2538 * process live in background before forking children
2539 */
William Lallemand73b85e72017-06-01 17:38:51 +02002540
2541 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2542 && (global.mode & MODE_MWORKER)
2543 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002544 ret = fork();
2545 if (ret < 0) {
2546 Alert("[%s.main()] Cannot fork.\n", argv[0]);
2547 protocol_unbind_all();
2548 exit(1); /* there has been an error */
2549 }
2550 /* parent leave to daemonize */
2551 if (ret > 0)
2552 exit(0);
2553 }
William Lallemande20b6a62017-06-01 17:38:55 +02002554
2555 if (global.mode & MODE_MWORKER) {
2556 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2557 char *msg = NULL;
2558 /* master pipe to ensure the master is still alive */
2559 ret = pipe(mworker_pipe);
2560 if (ret < 0) {
2561 Warning("[%s.main()] Cannot create master pipe.\n", argv[0]);
2562 } else {
2563 memprintf(&msg, "%d", mworker_pipe[0]);
2564 setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1);
2565 memprintf(&msg, "%d", mworker_pipe[1]);
2566 setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1);
2567 free(msg);
2568 }
2569 } else {
2570 mworker_pipe[0] = atol(getenv("HAPROXY_MWORKER_PIPE_RD"));
2571 mworker_pipe[1] = atol(getenv("HAPROXY_MWORKER_PIPE_WR"));
2572 if (mworker_pipe[0] <= 0 || mworker_pipe[1] <= 0) {
2573 Warning("[%s.main()] Cannot get master pipe FDs.\n", argv[0]);
2574 }
2575 }
2576 }
2577
Willy Tarreaubaaee002006-06-26 02:48:02 +02002578 /* the father launches the required number of processes */
2579 for (proc = 0; proc < global.nbproc; proc++) {
2580 ret = fork();
2581 if (ret < 0) {
2582 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002583 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002584 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002585 }
2586 else if (ret == 0) /* child breaks here */
2587 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002588 children[proc] = ret;
Willy Tarreau269ab312012-09-05 08:02:48 +02002589 if (pidfd >= 0) {
2590 char pidstr[100];
2591 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002592 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002593 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002594 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002595 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002596
2597#ifdef USE_CPU_AFFINITY
2598 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002599 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002600 global.cpu_map[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002601#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02002602 {
2603 cpuset_t cpuset;
2604 int i;
2605 unsigned long cpu_map = global.cpu_map[proc];
2606
2607 CPU_ZERO(&cpuset);
2608 while ((i = ffsl(cpu_map)) > 0) {
2609 CPU_SET(i - 1, &cpuset);
2610 cpu_map &= ~(1 << (i - 1));
2611 }
2612 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
2613 }
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002614#else
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002615 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2616#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002617#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002618 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002619 if (pidfd >= 0) {
2620 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2621 close(pidfd);
2622 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002623
2624 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02002625 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002626
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002627 if (proc == global.nbproc) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002628 if (global.mode & MODE_MWORKER) {
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002629 protocol_unbind_all();
William Lallemand73b85e72017-06-01 17:38:51 +02002630 mworker_wait();
William Lallemand1499b9b2017-06-07 15:04:47 +02002631 /* should never get there */
2632 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002633 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002634#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002635 ssl_free_dh();
2636#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002637 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002638 }
2639
William Lallemandcb11fd22017-06-01 17:38:52 +02002640 /* child must never use the atexit function */
2641 atexit_flag = 0;
2642
William Lallemand095ba4c2017-06-01 17:38:50 +02002643 /* Must chroot and setgid/setuid in the children */
2644 /* chroot if needed */
2645 if (global.chroot != NULL) {
2646 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2647 Alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
2648 if (nb_oldpids)
2649 tell_old_pids(SIGTTIN);
2650 protocol_unbind_all();
2651 exit(1);
2652 }
2653 }
2654
2655 free(global.chroot);
2656 global.chroot = NULL;
2657
2658 /* setgid / setuid */
2659 if (global.gid) {
2660 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2661 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2662 " without 'uid'/'user' is generally useless.\n", argv[0]);
2663
2664 if (setgid(global.gid) == -1) {
2665 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2666 protocol_unbind_all();
2667 exit(1);
2668 }
2669 }
2670
2671 if (global.uid && setuid(global.uid) == -1) {
2672 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
2673 protocol_unbind_all();
2674 exit(1);
2675 }
2676
William Lallemand7f80eb22017-05-26 18:19:55 +02002677 /* pass through every cli socket, and check if it's bound to
2678 * the current process and if it exposes listeners sockets.
2679 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
2680 * */
2681
2682 if (global.stats_fe) {
2683 struct bind_conf *bind_conf;
2684
2685 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
2686 if (bind_conf->level & ACCESS_FD_LISTENERS) {
2687 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
2688 global.tune.options |= GTUNE_SOCKET_TRANSFER;
2689 break;
2690 }
2691 }
2692 }
2693 }
2694
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002695 /* we might have to unbind some proxies from some processes */
2696 px = proxy;
2697 while (px != NULL) {
2698 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002699 if (!(px->bind_proc & (1UL << proc))) {
2700 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
2701 zombify_proxy(px);
2702 else
2703 stop_proxy(px);
2704 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002705 }
2706 px = px->next;
2707 }
2708
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002709 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002710 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002711 if (!curpeers->peers_fe)
2712 continue;
2713
2714 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2715 continue;
2716
2717 stop_proxy(curpeers->peers_fe);
2718 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002719 signal_unregister_handler(curpeers->sighandler);
2720 task_delete(curpeers->sync_task);
2721 task_free(curpeers->sync_task);
2722 curpeers->sync_task = NULL;
2723 task_free(curpeers->peers_fe->task);
2724 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002725 curpeers->peers_fe = NULL;
2726 }
2727
Willy Tarreaubaaee002006-06-26 02:48:02 +02002728 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2729 * that we can detach from the TTY. We MUST NOT do it in other cases since
2730 * it would have already be done, and 0-2 would have been affected to listening
2731 * sockets
2732 */
Willy Tarreau106cb762008-11-16 07:40:34 +01002733 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002734 /* detach from the tty */
2735 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01002736 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002737 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2738 }
2739 pid = getpid(); /* update child's pid */
2740 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02002741 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002742 }
2743
Christopher Faulete3a5e352017-10-24 13:53:54 +02002744 global.mode &= ~MODE_STARTING;
2745
William Lallemande20b6a62017-06-01 17:38:55 +02002746 if (global.mode & MODE_MWORKER)
2747 mworker_pipe_register(mworker_pipe);
2748
Willy Tarreaudd815982007-10-16 12:25:14 +02002749 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002750 /*
2751 * That's it : the central polling loop. Run until we stop.
2752 */
2753 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002754
Willy Tarreaubaaee002006-06-26 02:48:02 +02002755 /* Do some cleanup */
2756 deinit();
2757
2758 exit(0);
2759}
2760
2761
2762/*
2763 * Local variables:
2764 * c-indent-level: 8
2765 * c-basic-offset: 8
2766 * End:
2767 */