blob: 00cc25b165a220916eac201fc12188aa129195d4 [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>
Christopher Fauletbe0faa22017-08-29 15:37:10 +020080#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081
82#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020083#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090085#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020086#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Willy Tarreau0fc45a72007-06-17 00:36:03 +020088#include <proto/acl.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020089#include <proto/applet.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020090#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020091#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020092#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020093#include <proto/channel.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020094#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020095#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020096#include <proto/filters.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020097#include <proto/hdr_idx.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010098#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020099#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100#include <proto/log.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100101#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200102#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100103#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104#include <proto/proxy.h>
105#include <proto/queue.h>
106#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200107#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200108#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200109#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200111#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100112#include <proto/vars.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200113#ifdef USE_OPENSSL
Grant Zhang872f9c22017-01-21 01:10:18 +0000114#include <proto/ssl_sock.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200115#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116
Willy Tarreau477ecd82010-01-03 21:12:30 +0100117/* list of config files */
118static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100120int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100121unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122
123/* global options */
124struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100125 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100126 .nbproc = 1,
Christopher Fauletbe0faa22017-08-29 15:37:10 +0200127 .nbthread = 1,
William Lallemand5f232402012-04-05 18:02:55 +0200128 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200129 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100130 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100131 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100132 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200133 .unix_bind = {
134 .ux = {
135 .uid = -1,
136 .gid = -1,
137 .mode = 0,
138 }
139 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200140 .tune = {
141 .bufsize = BUFSIZE,
Willy Tarreau27097842015-09-28 13:53:23 +0200142 .maxrewrite = -1,
Willy Tarreau43961d52010-10-04 20:39:20 +0200143 .chksize = BUFSIZE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100144 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200145 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200146#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100147 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200148#endif
William Lallemandf3747832012-11-09 12:33:10 +0100149 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100150#ifdef DEFAULT_IDLE_TIMER
151 .idle_timer = DEFAULT_IDLE_TIMER,
152#else
153 .idle_timer = 1000, /* 1 second */
154#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200155 },
Emeric Brun76d88952012-10-05 15:47:31 +0200156#ifdef USE_OPENSSL
157#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200158 .maxsslconn = DEFAULT_MAXSSLCONN,
159#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200160#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161 /* others NULL OK */
162};
163
164/*********************************************************************/
165
166int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100167int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200168int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169
170/* Here we store informations about the pids of the processes we may pause
171 * or kill. We will send them a signal every 10 ms until we can bind to all
172 * our ports. With 200 retries, that's about 2 seconds.
173 */
174#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200175static int *oldpids = NULL;
176static int oldpids_sig; /* use USR1 or TERM */
177
Olivier Houchardf73629d2017-04-05 22:33:04 +0200178/* Path to the unix socket we use to retrieve listener sockets from the old process */
179static const char *old_unixsocket;
180
William Lallemand85b0bd92017-06-01 17:38:53 +0200181static char *cur_unixsocket = NULL;
182
William Lallemandcb11fd22017-06-01 17:38:52 +0200183int atexit_flag = 0;
184
Willy Tarreaubb545b42010-08-25 12:58:59 +0200185int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186const int zero = 0;
187const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200188const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100190char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200191char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192
Willy Tarreau89efaed2013-12-13 15:14:55 +0100193/* used from everywhere just to drain results we don't want to read and which
194 * recent versions of gcc increasingly and annoyingly complain about.
195 */
196int shut_your_big_mouth_gcc_int = 0;
197
William Lallemand73b85e72017-06-01 17:38:51 +0200198int *children = NULL; /* store PIDs of children in master workers mode */
199
200static volatile sig_atomic_t caught_signal = 0;
201static char **next_argv = NULL;
202
William Lallemande20b6a62017-06-01 17:38:55 +0200203int mworker_pipe[2];
204
Willy Tarreau08ceb102011-07-24 22:58:00 +0200205/* list of the temporarily limited listeners because of lack of resource */
206struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200207struct task *global_listener_queue_task;
208static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200209
Willy Tarreauff055502014-04-28 22:27:06 +0200210/* bitfield of a few warnings to emit just once (WARN_*) */
211unsigned int warned = 0;
212
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100213
214/* These are strings to be reported in the output of "haproxy -vv". They may
215 * either be constants (in which case must_free must be zero) or dynamically
216 * allocated strings to pass to free() on exit, and in this case must_free
217 * must be non-zero.
218 */
219struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
220struct build_opts_str {
221 struct list list;
222 const char *str;
223 int must_free;
224};
225
Willy Tarreaue6945732016-12-21 19:57:00 +0100226/* These functions are called just after the point where the program exits
227 * after a config validity check, so they are generally suited for resource
228 * allocation and slow initializations that should be skipped during basic
229 * config checks. The functions must return 0 on success, or a combination
230 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
231 * and immediate exit, so the function must have emitted any useful error.
232 */
233struct list post_check_list = LIST_HEAD_INIT(post_check_list);
234struct post_check_fct {
235 struct list list;
236 int (*fct)();
237};
238
Willy Tarreau05554e62016-12-21 20:46:26 +0100239/* These functions are called when freeing the global sections at the end
240 * of deinit, after everything is stopped. They don't return anything, and
241 * they work in best effort mode as their sole goal is to make valgrind
242 * mostly happy.
243 */
244struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
245struct post_deinit_fct {
246 struct list list;
247 void (*fct)();
248};
249
Christopher Faulet415f6112017-07-25 16:52:58 +0200250/* These functions are called for each thread just after the thread creation
251 * and before running the scheduler. They should be used to do per-thread
252 * initializations. They must return 0 if an error occurred. */
253struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
254struct per_thread_init_fct {
255 struct list list;
256 int (*fct)();
257};
258
259/* These functions are called for each thread just after the scheduler loop and
260 * before exiting the thread. They don't return anything and, as for post-deinit
261 * functions, they work in best effort mode as their sole goal is to make
262 * valgrind mostly happy. */
263struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
264struct per_thread_deinit_fct {
265 struct list list;
266 void (*fct)();
267};
268
Willy Tarreaubaaee002006-06-26 02:48:02 +0200269/*********************************************************************/
270/* general purpose functions ***************************************/
271/*********************************************************************/
272
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100273/* used to register some build option strings at boot. Set must_free to
274 * non-zero if the string must be freed upon exit.
275 */
276void hap_register_build_opts(const char *str, int must_free)
277{
278 struct build_opts_str *b;
279
280 b = calloc(1, sizeof(*b));
281 if (!b) {
282 fprintf(stderr, "out of memory\n");
283 exit(1);
284 }
285 b->str = str;
286 b->must_free = must_free;
287 LIST_ADDQ(&build_opts_list, &b->list);
288}
289
Willy Tarreaue6945732016-12-21 19:57:00 +0100290/* used to register some initialization functions to call after the checks. */
291void hap_register_post_check(int (*fct)())
292{
293 struct post_check_fct *b;
294
295 b = calloc(1, sizeof(*b));
296 if (!b) {
297 fprintf(stderr, "out of memory\n");
298 exit(1);
299 }
300 b->fct = fct;
301 LIST_ADDQ(&post_check_list, &b->list);
302}
303
Willy Tarreau05554e62016-12-21 20:46:26 +0100304/* used to register some de-initialization functions to call after everything
305 * has stopped.
306 */
307void hap_register_post_deinit(void (*fct)())
308{
309 struct post_deinit_fct *b;
310
311 b = calloc(1, sizeof(*b));
312 if (!b) {
313 fprintf(stderr, "out of memory\n");
314 exit(1);
315 }
316 b->fct = fct;
317 LIST_ADDQ(&post_deinit_list, &b->list);
318}
319
Christopher Faulet415f6112017-07-25 16:52:58 +0200320/* used to register some initialization functions to call for each thread. */
321void hap_register_per_thread_init(int (*fct)())
322{
323 struct per_thread_init_fct *b;
324
325 b = calloc(1, sizeof(*b));
326 if (!b) {
327 fprintf(stderr, "out of memory\n");
328 exit(1);
329 }
330 b->fct = fct;
331 LIST_ADDQ(&per_thread_init_list, &b->list);
332}
333
334/* used to register some de-initialization functions to call for each thread. */
335void hap_register_per_thread_deinit(void (*fct)())
336{
337 struct per_thread_deinit_fct *b;
338
339 b = calloc(1, sizeof(*b));
340 if (!b) {
341 fprintf(stderr, "out of memory\n");
342 exit(1);
343 }
344 b->fct = fct;
345 LIST_ADDQ(&per_thread_deinit_list, &b->list);
346}
347
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100348static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200349{
350 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b677262017-04-03 09:27:49 +0200351 printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352}
353
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100354static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100355{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100356 struct build_opts_str *item;
357
Willy Tarreau7b066db2007-12-02 11:28:59 +0100358 printf("Build options :"
359#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100360 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100361#endif
362#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100363 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100364#endif
365#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100366 "\n CC = " BUILD_CC
367#endif
368#ifdef BUILD_CFLAGS
369 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100370#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100371#ifdef BUILD_OPTIONS
372 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100373#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200374 "\n\nDefault settings :"
375 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
376 "\n\n",
377 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200378
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100379 list_for_each_entry(item, &build_opts_list, list) {
380 puts(item->str);
381 }
382
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100383 putchar('\n');
384
Willy Tarreaube5b6852009-10-03 18:57:08 +0200385 list_pollers(stdout);
386 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100387 list_filters(stdout);
388 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100389}
390
Willy Tarreaubaaee002006-06-26 02:48:02 +0200391/*
392 * This function prints the command line usage and exits
393 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100394static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200395{
396 display_version();
397 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200398 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200400 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100401 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200402 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200403 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200405 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200406 " -W master-worker mode.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200408 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409 " -n sets the maximum total # of connections (%d)\n"
410 " -m limits the usable amount of memory (in MB)\n"
411 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200412 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413 " -p writes pids of all children to this file\n"
414#if defined(ENABLE_EPOLL)
415 " -de disables epoll() usage even when available\n"
416#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200417#if defined(ENABLE_KQUEUE)
418 " -dk disables kqueue() usage even when available\n"
419#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420#if defined(ENABLE_POLL)
421 " -dp disables poll() usage even when available\n"
422#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200423#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100424 " -dS disables splice usage (broken on old kernels)\n"
425#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200426#if defined(USE_GETADDRINFO)
427 " -dG disables getaddrinfo() usage\n"
428#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000429#if defined(SO_REUSEPORT)
430 " -dR disables SO_REUSEPORT usage\n"
431#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100432 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100433 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200434 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200435 " -x <unix_socket> get listening sockets from a unix socket\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200436 "\n",
437 name, DEFAULT_MAXCONN, cfg_maxpconn);
438 exit(1);
439}
440
441
442
443/*********************************************************************/
444/* more specific functions ***************************************/
445/*********************************************************************/
446
William Lallemand73b85e72017-06-01 17:38:51 +0200447/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
448 * pids the signal was correctly delivered to.
449 */
450static int tell_old_pids(int sig)
451{
452 int p;
453 int ret = 0;
454 for (p = 0; p < nb_oldpids; p++)
455 if (kill(oldpids[p], sig) == 0)
456 ret++;
457 return ret;
458}
459
460/* return 1 if a pid is a current child otherwise 0 */
461
462int current_child(int pid)
463{
464 int i;
465
466 for (i = 0; i < global.nbproc; i++) {
467 if (children[i] == pid)
468 return 1;
469 }
470 return 0;
471}
472
473static void mworker_signalhandler(int signum)
474{
475 caught_signal = signum;
476}
477
478static void mworker_register_signals()
479{
480 struct sigaction sa;
481 /* Here we are not using the haproxy async way
482 for signals because it does not exists in
483 the master */
484 memset(&sa, 0, sizeof(struct sigaction));
485 sa.sa_handler = &mworker_signalhandler;
486 sigaction(SIGHUP, &sa, NULL);
487 sigaction(SIGUSR1, &sa, NULL);
488 sigaction(SIGUSR2, &sa, NULL);
489 sigaction(SIGINT, &sa, NULL);
490 sigaction(SIGTERM, &sa, NULL);
491}
492
493static void mworker_block_signals()
494{
495 sigset_t set;
496
497 sigemptyset(&set);
498 sigaddset(&set, SIGUSR1);
499 sigaddset(&set, SIGUSR2);
500 sigaddset(&set, SIGHUP);
501 sigaddset(&set, SIGINT);
502 sigaddset(&set, SIGTERM);
503 sigprocmask(SIG_SETMASK, &set, NULL);
504}
505
506static void mworker_unblock_signals()
507{
508 sigset_t set;
509
510 sigemptyset(&set);
511 sigaddset(&set, SIGUSR1);
512 sigaddset(&set, SIGUSR2);
513 sigaddset(&set, SIGHUP);
514 sigaddset(&set, SIGINT);
515 sigaddset(&set, SIGTERM);
516 sigprocmask(SIG_UNBLOCK, &set, NULL);
517}
518
519static void mworker_unregister_signals()
520{
521 signal(SIGINT, SIG_DFL);
522 signal(SIGTERM, SIG_DFL);
523 signal(SIGHUP, SIG_IGN);
524 signal(SIGUSR1, SIG_IGN);
525 signal(SIGUSR2, SIG_IGN);
526}
527
528/*
529 * Send signal to every known children.
530 */
531
532static void mworker_kill(int sig)
533{
534 int i;
535
536 tell_old_pids(sig);
537 if (children) {
538 for (i = 0; i < global.nbproc; i++)
539 kill(children[i], sig);
540 }
541}
542
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543/*
William Lallemand73b85e72017-06-01 17:38:51 +0200544 * remove a pid forom the olpid array and decrease nb_oldpids
545 * return 1 pid was found otherwise return 0
546 */
547
548int delete_oldpid(int pid)
549{
550 int i;
551
552 for (i = 0; i < nb_oldpids; i++) {
553 if (oldpids[i] == pid) {
554 oldpids[i] = oldpids[nb_oldpids - 1];
555 oldpids[nb_oldpids - 1] = 0;
556 nb_oldpids--;
557 return 1;
558 }
559 }
560 return 0;
561}
562
William Lallemand85b0bd92017-06-01 17:38:53 +0200563
564static void get_cur_unixsocket()
565{
566 /* if -x was used, try to update the stat socket if not available anymore */
567 if (global.stats_fe) {
568 struct bind_conf *bind_conf;
569
570 /* pass through all stats socket */
571 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
572 struct listener *l;
573
574 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
575
576 if (l->addr.ss_family == AF_UNIX &&
577 (bind_conf->level & ACCESS_FD_LISTENERS)) {
578 const struct sockaddr_un *un;
579
580 un = (struct sockaddr_un *)&l->addr;
581 /* priority to old_unixsocket */
582 if (!cur_unixsocket) {
583 cur_unixsocket = strdup(un->sun_path);
584 } else {
585 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
586 free(cur_unixsocket);
587 cur_unixsocket = strdup(old_unixsocket);
588 return;
589 }
590 }
591 }
592 }
593 }
594 }
595 if (!cur_unixsocket && old_unixsocket)
596 cur_unixsocket = strdup(old_unixsocket);
597}
598
William Lallemand73b85e72017-06-01 17:38:51 +0200599/*
600 * When called, this function reexec haproxy with -sf followed by current
601 * children PIDs and possibily old children PIDs if they didn't leave yet.
602 */
603static void mworker_reload()
604{
605 int next_argc = 0;
606 int j;
607 char *msg = NULL;
608
609 mworker_block_signals();
610 mworker_unregister_signals();
611 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
612
613 /* compute length */
614 while (next_argv[next_argc])
615 next_argc++;
616
William Lallemand85b0bd92017-06-01 17:38:53 +0200617 /* 1 for haproxy -sf, 2 for -x /socket */
618 next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200619 if (next_argv == NULL)
620 goto alloc_error;
621
622
623 /* add -sf <PID>* to argv */
624 if (children || nb_oldpids > 0)
625 next_argv[next_argc++] = "-sf";
626 if (children) {
627 for (j = 0; j < global.nbproc; next_argc++,j++) {
628 next_argv[next_argc] = memprintf(&msg, "%d", children[j]);
629 if (next_argv[next_argc] == NULL)
630 goto alloc_error;
631 msg = NULL;
632 }
633 }
634 /* copy old process PIDs */
635 for (j = 0; j < nb_oldpids; next_argc++,j++) {
636 next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]);
637 if (next_argv[next_argc] == NULL)
638 goto alloc_error;
639 msg = NULL;
640 }
641 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200642
William Lallemand2bf6d622017-06-20 11:20:23 +0200643 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200644 if (cur_unixsocket) {
645
William Lallemand2bf6d622017-06-20 11:20:23 +0200646 next_argv[next_argc++] = "-x";
647 next_argv[next_argc++] = (char *)cur_unixsocket;
648 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200649 }
650
William Lallemand73b85e72017-06-01 17:38:51 +0200651 Warning("Reexecuting Master process\n");
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100652 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200653
William Lallemand722d4ca2017-11-15 19:02:55 +0100654 Warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
655 return;
656
William Lallemand73b85e72017-06-01 17:38:51 +0200657alloc_error:
William Lallemand722d4ca2017-11-15 19:02:55 +0100658 Warning("Failed to reexecute the master processs [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200659 return;
660}
661
662
663/*
664 * Wait for every children to exit
665 */
666
667static void mworker_wait()
668{
669 int exitpid = -1;
670 int status = 0;
671
William Lallemand2f8b31c2017-11-15 19:02:56 +0100672restart_wait:
673
William Lallemand73b85e72017-06-01 17:38:51 +0200674 mworker_register_signals();
675 mworker_unblock_signals();
676
677 while (1) {
678
679 while (((exitpid = wait(&status)) == -1) && errno == EINTR) {
680 int sig = caught_signal;
681 if (sig == SIGUSR2 || sig == SIGHUP) {
682 mworker_reload();
William Lallemand2f8b31c2017-11-15 19:02:56 +0100683 /* should reach there only if it fail */
684 goto restart_wait;
William Lallemand73b85e72017-06-01 17:38:51 +0200685 } else {
686 Warning("Exiting Master process...\n");
687 mworker_kill(sig);
688 mworker_unregister_signals();
689 }
690 caught_signal = 0;
691 }
692
693 if (exitpid == -1 && errno == ECHILD) {
694 Warning("All workers are left. Leaving... (%d)\n", status);
William Lallemandcb11fd22017-06-01 17:38:52 +0200695 atexit_flag = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200696 exit(status); /* parent must leave using the latest status code known */
697 }
698
699 if (WIFEXITED(status))
700 status = WEXITSTATUS(status);
701 else if (WIFSIGNALED(status))
702 status = 128 + WTERMSIG(status);
703 else if (WIFSTOPPED(status))
704 status = 128 + WSTOPSIG(status);
705 else
706 status = 255;
707
708 if (!children) {
709 Warning("Worker %d left with exit code %d\n", exitpid, status);
710 } else {
711 /* check if exited child was in the current children list */
712 if (current_child(exitpid)) {
713 Alert("Current worker %d left with exit code %d\n", exitpid, status);
William Lallemand69f9b3b2017-06-01 17:38:54 +0200714 if (status != 0 && status != 130 && status != 143
715 && global.tune.options & GTUNE_EXIT_ONFAILURE) {
716 Alert("exit-on-failure: killing every workers with SIGTERM\n");
717 mworker_kill(SIGTERM);
718 }
William Lallemand73b85e72017-06-01 17:38:51 +0200719 } else {
720 Warning("Former worker %d left with exit code %d\n", exitpid, status);
721 delete_oldpid(exitpid);
722 }
723 }
724 }
725}
726
William Lallemandcb11fd22017-06-01 17:38:52 +0200727
728/*
729 * Reexec the process in failure mode, instead of exiting
730 */
731void reexec_on_failure()
732{
733 if (!atexit_flag)
734 return;
735
736 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
737
738 Warning("Reexecuting Master process in waitpid mode\n");
739 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200740}
William Lallemand73b85e72017-06-01 17:38:51 +0200741
742
743/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200744 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
745 * a signal zero to all subscribers. This means that it's as easy as
746 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200747 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100748static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200749{
750 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200751 signal_unregister_handler(sh);
Christopher Fauletb349e482017-08-29 09:52:38 +0200752 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753}
754
755/*
756 * upon SIGTTOU, we pause everything
757 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100758static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200759{
760 pause_proxies();
Christopher Fauletb349e482017-08-29 09:52:38 +0200761 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200762}
763
764/*
765 * upon SIGTTIN, let's have a soft stop.
766 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100767static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768{
Willy Tarreaube58c382011-07-24 18:28:10 +0200769 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770}
771
772/*
773 * this function dumps every server's state when the process receives SIGHUP.
774 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100775static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776{
777 struct proxy *p = proxy;
778
779 Warning("SIGHUP received, dumping servers states.\n");
780 while (p) {
781 struct server *s = p->srv;
782
783 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
784 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100785 chunk_printf(&trash,
786 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
787 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200788 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100789 s->cur_sess, s->nbpend, s->counters.cum_sess);
790 Warning("%s\n", trash.str);
791 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200792 s = s->next;
793 }
794
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200795 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
796 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100797 chunk_printf(&trash,
798 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
799 p->id,
800 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 +0200801 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100802 chunk_printf(&trash,
803 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
804 p->id,
805 (p->srv_bck) ? "is running on backup servers" : "has no server available",
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 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100808 chunk_printf(&trash,
809 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
810 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
811 p->id, p->srv_act, p->srv_bck,
812 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 +0200813 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100814 Warning("%s\n", trash.str);
815 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816
817 p = p->next;
818 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819}
820
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100821static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200823 /* dump memory usage then free everything possible */
824 dump_pools();
Christopher Fauletb349e482017-08-29 09:52:38 +0200825 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200826}
827
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200828/* This function check if cfg_cfgfiles containes directories.
829 * If it find one, it add all the files (and only files) it containes
830 * in cfg_cfgfiles in place of the directory (and remove the directory).
831 * It add the files in lexical order.
832 * It add only files with .cfg extension.
833 * It doesn't add files with name starting with '.'
834 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100835static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200836{
837 struct wordlist *wl, *wlb;
838 char *err = NULL;
839
840 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
841 struct stat file_stat;
842 struct dirent **dir_entries = NULL;
843 int dir_entries_nb;
844 int dir_entries_it;
845
846 if (stat(wl->s, &file_stat)) {
847 Alert("Cannot open configuration file/directory %s : %s\n",
848 wl->s,
849 strerror(errno));
850 exit(1);
851 }
852
853 if (!S_ISDIR(file_stat.st_mode))
854 continue;
855
856 /* from this point wl->s is a directory */
857
858 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
859 if (dir_entries_nb < 0) {
860 Alert("Cannot open configuration directory %s : %s\n",
861 wl->s,
862 strerror(errno));
863 exit(1);
864 }
865
866 /* for each element in the directory wl->s */
867 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
868 struct dirent *dir_entry = dir_entries[dir_entries_it];
869 char *filename = NULL;
870 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
871
872 /* don't add filename that begin with .
873 * only add filename with .cfg extention
874 */
875 if (dir_entry->d_name[0] == '.' ||
876 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
877 goto next_dir_entry;
878
879 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
880 Alert("Cannot load configuration files %s : out of memory.\n",
881 filename);
882 exit(1);
883 }
884
885 if (stat(filename, &file_stat)) {
886 Alert("Cannot open configuration file %s : %s\n",
887 wl->s,
888 strerror(errno));
889 exit(1);
890 }
891
892 /* don't add anything else than regular file in cfg_cfgfiles
893 * this way we avoid loops
894 */
895 if (!S_ISREG(file_stat.st_mode))
896 goto next_dir_entry;
897
898 if (!list_append_word(&wl->list, filename, &err)) {
899 Alert("Cannot load configuration files %s : %s\n",
900 filename,
901 err);
902 exit(1);
903 }
904
905next_dir_entry:
906 free(filename);
907 free(dir_entry);
908 }
909
910 free(dir_entries);
911
912 /* remove the current directory (wl) from cfg_cfgfiles */
913 free(wl->s);
914 LIST_DEL(&wl->list);
915 free(wl);
916 }
917
918 free(err);
919}
920
Olivier Houchardf73629d2017-04-05 22:33:04 +0200921static int get_old_sockets(const char *unixsocket)
922{
923 char *cmsgbuf = NULL, *tmpbuf = NULL;
924 int *tmpfd = NULL;
925 struct sockaddr_un addr;
926 struct cmsghdr *cmsg;
927 struct msghdr msghdr;
928 struct iovec iov;
929 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +0200930 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +0200931 int sock = -1;
932 int ret = -1;
933 int ret2 = -1;
934 int fd_nb;
935 int got_fd = 0;
936 int i = 0;
937 size_t maxoff = 0, curoff = 0;
938
939 memset(&msghdr, 0, sizeof(msghdr));
940 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
941 if (!cmsgbuf) {
942 Warning("Failed to allocate memory to send sockets\n");
943 goto out;
944 }
945 sock = socket(PF_UNIX, SOCK_STREAM, 0);
946 if (sock < 0) {
947 Warning("Failed to connect to the old process socket '%s'\n",
948 unixsocket);
949 goto out;
950 }
951 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
952 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
953 addr.sun_family = PF_UNIX;
954 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
955 if (ret < 0) {
956 Warning("Failed to connect to the old process socket '%s'\n",
957 unixsocket);
958 goto out;
959 }
Olivier Houchard54740872017-04-06 14:45:14 +0200960 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200961 iov.iov_base = &fd_nb;
962 iov.iov_len = sizeof(fd_nb);
963 msghdr.msg_iov = &iov;
964 msghdr.msg_iovlen = 1;
965 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
966 /* First, get the number of file descriptors to be received */
967 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
968 Warning("Failed to get the number of sockets to be transferred !\n");
969 goto out;
970 }
971 if (fd_nb == 0) {
972 ret = 0;
973 goto out;
974 }
Olivier Houchardf143b802017-11-04 15:13:01 +0100975 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200976 if (tmpbuf == NULL) {
977 Warning("Failed to allocate memory while receiving sockets\n");
978 goto out;
979 }
980 tmpfd = malloc(fd_nb * sizeof(int));
981 if (tmpfd == NULL) {
982 Warning("Failed to allocate memory while receiving sockets\n");
983 goto out;
984 }
985 msghdr.msg_control = cmsgbuf;
986 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +0100987 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200988 do {
989 int ret3;
990
991 iov.iov_base = tmpbuf + curoff;
992 ret = recvmsg(sock, &msghdr, 0);
993 if (ret == -1 && errno == EINTR)
994 continue;
995 if (ret <= 0)
996 break;
997 /* Send an ack to let the sender know we got the sockets
998 * and it can send some more
999 */
1000 do {
1001 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1002 } while (ret3 == -1 && errno == EINTR);
1003 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1004 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1005 if (cmsg->cmsg_level == SOL_SOCKET &&
1006 cmsg->cmsg_type == SCM_RIGHTS) {
1007 size_t totlen = cmsg->cmsg_len -
1008 CMSG_LEN(0);
1009 if (totlen / sizeof(int) + got_fd > fd_nb) {
1010 Warning("Got to many sockets !\n");
1011 goto out;
1012 }
1013 /*
1014 * Be paranoid and use memcpy() to avoid any
1015 * potential alignement issue.
1016 */
1017 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1018 got_fd += totlen / sizeof(int);
1019 }
1020 }
1021 curoff += ret;
1022 } while (got_fd < fd_nb);
1023
1024 if (got_fd != fd_nb) {
1025 Warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1026 fd_nb, got_fd);
1027 goto out;
1028 }
1029 maxoff = curoff;
1030 curoff = 0;
1031 for (i = 0; i < got_fd; i++) {
1032 int fd = tmpfd[i];
1033 socklen_t socklen;
1034 int len;
1035
1036 xfer_sock = calloc(1, sizeof(*xfer_sock));
1037 if (!xfer_sock) {
1038 Warning("Failed to allocate memory in get_old_sockets() !\n");
1039 break;
1040 }
1041 xfer_sock->fd = -1;
1042
1043 socklen = sizeof(xfer_sock->addr);
1044 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
1045 Warning("Failed to get socket address\n");
1046 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001047 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001048 continue;
1049 }
1050 if (curoff >= maxoff) {
1051 Warning("Inconsistency while transferring sockets\n");
1052 goto out;
1053 }
1054 len = tmpbuf[curoff++];
1055 if (len > 0) {
1056 /* We have a namespace */
1057 if (curoff + len > maxoff) {
1058 Warning("Inconsistency while transferring sockets\n");
1059 goto out;
1060 }
1061 xfer_sock->namespace = malloc(len + 1);
1062 if (!xfer_sock->namespace) {
1063 Warning("Failed to allocate memory while transferring sockets\n");
1064 goto out;
1065 }
1066 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1067 xfer_sock->namespace[len] = 0;
1068 curoff += len;
1069 }
1070 if (curoff >= maxoff) {
1071 Warning("Inconsistency while transferring sockets\n");
1072 goto out;
1073 }
1074 len = tmpbuf[curoff++];
1075 if (len > 0) {
1076 /* We have an interface */
1077 if (curoff + len > maxoff) {
1078 Warning("Inconsistency while transferring sockets\n");
1079 goto out;
1080 }
1081 xfer_sock->iface = malloc(len + 1);
1082 if (!xfer_sock->iface) {
1083 Warning("Failed to allocate memory while transferring sockets\n");
1084 goto out;
1085 }
1086 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
1087 xfer_sock->namespace[len] = 0;
1088 curoff += len;
1089 }
1090 if (curoff + sizeof(int) > maxoff) {
1091 Warning("Inconsistency while transferring sockets\n");
1092 goto out;
1093 }
1094 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1095 sizeof(xfer_sock->options));
1096 curoff += sizeof(xfer_sock->options);
1097
1098 xfer_sock->fd = fd;
1099 if (xfer_sock_list)
1100 xfer_sock_list->prev = xfer_sock;
1101 xfer_sock->next = xfer_sock_list;
1102 xfer_sock->prev = NULL;
1103 xfer_sock_list = xfer_sock;
1104 xfer_sock = NULL;
1105 }
1106
1107 ret2 = 0;
1108out:
1109 /* If we failed midway make sure to close the remaining
1110 * file descriptors
1111 */
1112 if (tmpfd != NULL && i < got_fd) {
1113 for (; i < got_fd; i++) {
1114 close(tmpfd[i]);
1115 }
1116 }
1117 free(tmpbuf);
1118 free(tmpfd);
1119 free(cmsgbuf);
1120 if (sock != -1)
1121 close(sock);
1122 if (xfer_sock) {
1123 free(xfer_sock->namespace);
1124 free(xfer_sock->iface);
1125 if (xfer_sock->fd != -1)
1126 close(xfer_sock->fd);
1127 free(xfer_sock);
1128 }
1129 return (ret2);
1130}
1131
Willy Tarreaubaaee002006-06-26 02:48:02 +02001132/*
William Lallemand73b85e72017-06-01 17:38:51 +02001133 * copy and cleanup the current argv
1134 * Remove the -sf /-st parameters
1135 * Return an allocated copy of argv
1136 */
1137
1138static char **copy_argv(int argc, char **argv)
1139{
1140 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001141 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001142
1143 newargv = calloc(argc + 2, sizeof(char *));
1144 if (newargv == NULL) {
1145 Warning("Cannot allocate memory\n");
1146 return NULL;
1147 }
1148
William Lallemand2bf6d622017-06-20 11:20:23 +02001149 while (i < argc) {
1150 /* -sf or -st or -x */
1151 if ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' ) {
1152 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001153 i++;
1154 while (i < argc && argv[i][0] != '-') {
1155 i++;
1156 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001157 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001158 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001159
1160 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001161 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001162
William Lallemand73b85e72017-06-01 17:38:51 +02001163 return newargv;
1164}
1165
1166/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001167 * This function initializes all the necessary variables. It only returns
1168 * if everything is OK. If something fails, it exits.
1169 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001170static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001171{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001172 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001173 char *tmp;
1174 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001175 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001176 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001177 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001178 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001179 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001180 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001181 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001182
Christopher Faulete3a5e352017-10-24 13:53:54 +02001183 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001184 next_argv = copy_argv(argc, argv);
1185
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001186 if (!init_trash_buffers(1)) {
Christopher Faulet748919a2017-07-26 14:59:46 +02001187 Alert("failed to initialize trash buffers.\n");
1188 exit(1);
1189 }
David du Colombier7af46052012-05-16 14:16:48 +02001190
Emeric Brun2b920a12010-09-23 18:30:22 +02001191 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1192 * the string in case of truncation, and at least FreeBSD appears not to do
1193 * it.
1194 */
1195 memset(hostname, 0, sizeof(hostname));
1196 gethostname(hostname, sizeof(hostname) - 1);
1197 memset(localpeer, 0, sizeof(localpeer));
1198 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
1199
Willy Tarreaubaaee002006-06-26 02:48:02 +02001200 /*
1201 * Initialize the previously static variables.
1202 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001203
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001204 totalconn = actconn = maxfd = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001205 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001206
Willy Tarreaubaaee002006-06-26 02:48:02 +02001207
1208#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001209 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001210#endif
1211
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001212 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001213 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001214 start_date = now;
1215
Willy Tarreau84310e22014-02-14 11:59:04 +01001216 srandom(now_ms - getpid());
1217
Dragan Dosen835b9212016-02-12 13:23:03 +01001218 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +02001219 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001220 if (init_acl() != 0)
1221 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001222 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +02001223 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001224 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001225 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +02001226 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001227 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +01001228 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001229
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001230 /* Initialise lua. */
1231 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001232
Christopher Fauletff2613e2016-11-09 11:36:17 +01001233 /* Initialize process vars */
1234 vars_init(&global.vars, SCOPE_PROC);
1235
Willy Tarreau43b78992009-01-25 15:42:27 +01001236 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001237#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001238 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001239#endif
1240#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001241 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001242#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001243#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001244 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001245#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001246#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001247 global.tune.options |= GTUNE_USE_SPLICE;
1248#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001249#if defined(USE_GETADDRINFO)
1250 global.tune.options |= GTUNE_USE_GAI;
1251#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001252#if defined(SO_REUSEPORT)
1253 global.tune.options |= GTUNE_USE_REUSEPORT;
1254#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001255
1256 pid = getpid();
1257 progname = *argv;
1258 while ((tmp = strchr(progname, '/')) != NULL)
1259 progname = tmp + 1;
1260
Kevinm48936af2010-12-22 16:08:21 +00001261 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001262 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001263
Willy Tarreaubaaee002006-06-26 02:48:02 +02001264 argc--; argv++;
1265 while (argc > 0) {
1266 char *flag;
1267
1268 if (**argv == '-') {
1269 flag = *argv+1;
1270
1271 /* 1 arg */
1272 if (*flag == 'v') {
1273 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001274 if (flag[1] == 'v') /* -vv */
1275 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001276 exit(0);
1277 }
1278#if defined(ENABLE_EPOLL)
1279 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001280 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001281#endif
1282#if defined(ENABLE_POLL)
1283 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001284 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001285#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +02001286#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001287 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001288 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001289#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001290#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001291 else if (*flag == 'd' && flag[1] == 'S')
1292 global.tune.options &= ~GTUNE_USE_SPLICE;
1293#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001294#if defined(USE_GETADDRINFO)
1295 else if (*flag == 'd' && flag[1] == 'G')
1296 global.tune.options &= ~GTUNE_USE_GAI;
1297#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001298#if defined(SO_REUSEPORT)
1299 else if (*flag == 'd' && flag[1] == 'R')
1300 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1301#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001302 else if (*flag == 'd' && flag[1] == 'V')
1303 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001304 else if (*flag == 'V')
1305 arg_mode |= MODE_VERBOSE;
1306 else if (*flag == 'd' && flag[1] == 'b')
1307 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001308 else if (*flag == 'd' && flag[1] == 'M')
1309 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001310 else if (*flag == 'd' && flag[1] == 'r')
1311 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001312 else if (*flag == 'd')
1313 arg_mode |= MODE_DEBUG;
1314 else if (*flag == 'c')
1315 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001316 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001317 arg_mode |= MODE_DAEMON;
William Lallemand095ba4c2017-06-01 17:38:50 +02001318 else if (*flag == 'W')
1319 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001320 else if (*flag == 'q')
1321 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001322 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001323 if (argc <= 1 || argv[1][0] == '-') {
1324 Alert("Unix socket path expected with the -x flag\n\n");
1325 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001326 }
William Lallemand4fc09692017-06-19 16:37:19 +02001327 if (old_unixsocket)
1328 Warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001329 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001330
Olivier Houchardf73629d2017-04-05 22:33:04 +02001331 argv++;
1332 argc--;
1333 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1335 /* list of pids to finish ('f') or terminate ('t') */
1336
1337 if (flag[1] == 'f')
1338 oldpids_sig = SIGUSR1; /* finish then exit */
1339 else
1340 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001341 while (argc > 1 && argv[1][0] != '-') {
1342 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1343 if (!oldpids) {
1344 Alert("Cannot allocate old pid : out of memory.\n");
1345 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001346 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001347 argc--; argv++;
1348 oldpids[nb_oldpids] = atol(*argv);
1349 if (oldpids[nb_oldpids] <= 0)
1350 usage(progname);
1351 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001352 }
1353 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001354 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1355 /* now that's a cfgfile list */
1356 argv++; argc--;
1357 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001358 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1359 Alert("Cannot load configuration file/directory %s : %s\n",
1360 *argv,
1361 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001362 exit(1);
1363 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001364 argv++; argc--;
1365 }
1366 break;
1367 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001368 else { /* >=2 args */
1369 argv++; argc--;
1370 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001371 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001372
1373 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001374 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001375 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001376 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001377 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +02001378 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001379 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001380 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1381 Alert("Cannot load configuration file/directory %s : %s\n",
1382 *argv,
1383 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001384 exit(1);
1385 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001386 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001387 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001388 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001389 }
1390 }
1391 }
1392 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001393 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001394 argv++; argc--;
1395 }
1396
Christopher Faulete3a5e352017-10-24 13:53:54 +02001397 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1398 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001399
William Lallemandcb11fd22017-06-01 17:38:52 +02001400 /* Master workers wait mode */
1401 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) {
1402
1403 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
1404 mworker_wait();
1405 }
1406
1407 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1408 atexit_flag = 1;
1409 atexit(reexec_on_failure);
1410 }
1411
Willy Tarreau576132e2011-09-10 19:26:56 +02001412 if (change_dir && chdir(change_dir) < 0) {
1413 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
1414 exit(1);
1415 }
1416
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001417 /* handle cfgfiles that are actualy directories */
1418 cfgfiles_expand_directories();
1419
1420 if (LIST_ISEMPTY(&cfg_cfgfiles))
1421 usage(progname);
1422
Willy Tarreaubaaee002006-06-26 02:48:02 +02001423 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001424
1425 init_default_instance();
1426
Willy Tarreau477ecd82010-01-03 21:12:30 +01001427 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001428 int ret;
1429
Willy Tarreau477ecd82010-01-03 21:12:30 +01001430 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001431 if (ret == -1) {
1432 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +01001433 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001434 exit(1);
1435 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001436 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +01001437 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001438 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001439 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001440 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001441 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001442
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001443 /* do not try to resolve arguments nor to spot inconsistencies when
1444 * the configuration contains fatal errors caused by files not found
1445 * or failed memory allocations.
1446 */
1447 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1448 Alert("Fatal errors found in configuration.\n");
1449 exit(1);
1450 }
1451
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001452 pattern_finalize_config();
1453
Willy Tarreaubb925012009-07-23 13:36:36 +02001454 err_code |= check_config_validity();
1455 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1456 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001457 exit(1);
1458 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001459
Willy Tarreau70060452015-12-14 12:46:07 +01001460 /* recompute the amount of per-process memory depending on nbproc and
1461 * the shared SSL cache size (allowed to exist in all processes).
1462 */
1463 if (global.rlimit_memmax_all) {
1464#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1465 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1466
1467 global.rlimit_memmax =
1468 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1469 ssl_cache_bytes) / global.nbproc +
1470 ssl_cache_bytes + 1048575LL) / 1048576LL;
1471#else
1472 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1473#endif
1474 }
1475
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001476#ifdef CONFIG_HAP_NS
1477 err_code |= netns_init();
1478 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1479 Alert("Failed to initialize namespace support.\n");
1480 exit(1);
1481 }
1482#endif
1483
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001484 /* Apply server states */
1485 apply_server_state();
1486
1487 for (px = proxy; px; px = px->next)
1488 srv_compute_all_admin_states(px);
1489
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001490 /* Apply servers' configured address */
1491 err_code |= srv_init_addr();
1492 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1493 Alert("Failed to initialize server(s) addr.\n");
1494 exit(1);
1495 }
1496
Willy Tarreaubaaee002006-06-26 02:48:02 +02001497 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001498 struct peers *pr;
1499 struct proxy *px;
1500
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001501 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001502 if (pr->peers_fe)
1503 break;
1504
1505 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001506 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001507 break;
1508
1509 if (pr || px) {
1510 /* At least one peer or one listener has been found */
1511 qfprintf(stdout, "Configuration file is valid\n");
1512 exit(0);
1513 }
1514 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1515 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001516 }
1517
Emeric Brunc60def82017-09-27 14:59:38 +02001518 global_listener_queue_task = task_new(MAX_THREADS_MASK);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001519 if (!global_listener_queue_task) {
1520 Alert("Out of memory when initializing global task\n");
1521 exit(1);
1522 }
1523 /* very simple initialization, users will queue the task if needed */
1524 global_listener_queue_task->context = NULL; /* not even a context! */
1525 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001526
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001527 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001528 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001529
Willy Tarreaue6945732016-12-21 19:57:00 +01001530 list_for_each_entry(pcf, &post_check_list, list) {
1531 err_code |= pcf->fct();
1532 if (err_code & (ERR_ABORT|ERR_FATAL))
1533 exit(1);
1534 }
1535
Willy Tarreaubaaee002006-06-26 02:48:02 +02001536 if (cfg_maxconn > 0)
1537 global.maxconn = cfg_maxconn;
1538
1539 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001540 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001541 global.pidfile = strdup(cfg_pidfile);
1542 }
1543
Willy Tarreaud0256482015-01-15 21:45:22 +01001544 /* Now we want to compute the maxconn and possibly maxsslconn values.
1545 * It's a bit tricky. If memmax is not set, maxconn defaults to
1546 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1547 *
1548 * If memmax is set, then it depends on which values are set. If
1549 * maxsslconn is set, we use memmax to determine how many cleartext
1550 * connections may be added, and set maxconn to the sum of the two.
1551 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1552 * the remaining amount of memory between memmax and the cleartext
1553 * connections. If neither are set, then it is considered that all
1554 * connections are SSL-capable, and maxconn is computed based on this,
1555 * then maxsslconn accordingly. We need to know if SSL is used on the
1556 * frontends, backends, or both, because when it's used on both sides,
1557 * we need twice the value for maxsslconn, but we only count the
1558 * handshake once since it is not performed on the two sides at the
1559 * same time (frontend-side is terminated before backend-side begins).
1560 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001561 * ssl_handshake_cost during its initialization. In any case, if
1562 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1563 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001564 */
1565 if (!global.rlimit_memmax) {
1566 if (global.maxconn == 0) {
1567 global.maxconn = DEFAULT_MAXCONN;
1568 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1569 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1570 }
1571 }
1572#ifdef USE_OPENSSL
1573 else if (!global.maxconn && !global.maxsslconn &&
1574 (global.ssl_used_frontend || global.ssl_used_backend)) {
1575 /* memmax is set, compute everything automatically. Here we want
1576 * to ensure that all SSL connections will be served. We take
1577 * care of the number of sides where SSL is used, and consider
1578 * the worst case : SSL used on both sides and doing a handshake
1579 * simultaneously. Note that we can't have more than maxconn
1580 * handshakes at a time by definition, so for the worst case of
1581 * two SSL conns per connection, we count a single handshake.
1582 */
1583 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1584 int64_t mem = global.rlimit_memmax * 1048576ULL;
1585
1586 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1587 mem -= global.maxzlibmem;
1588 mem = mem * MEM_USABLE_RATIO;
1589
1590 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001591 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001592 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1593 global.ssl_handshake_max_cost); // 1 handshake per connection max
1594
1595 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001596#ifdef SYSTEM_MAXCONN
1597 if (global.maxconn > DEFAULT_MAXCONN)
1598 global.maxconn = DEFAULT_MAXCONN;
1599#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001600 global.maxsslconn = sides * global.maxconn;
1601 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1602 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1603 global.maxconn, global.maxsslconn);
1604 }
1605 else if (!global.maxsslconn &&
1606 (global.ssl_used_frontend || global.ssl_used_backend)) {
1607 /* memmax and maxconn are known, compute maxsslconn automatically.
1608 * maxsslconn being forced, we don't know how many of it will be
1609 * on each side if both sides are being used. The worst case is
1610 * when all connections use only one SSL instance because
1611 * handshakes may be on two sides at the same time.
1612 */
1613 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1614 int64_t mem = global.rlimit_memmax * 1048576ULL;
1615 int64_t sslmem;
1616
1617 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1618 mem -= global.maxzlibmem;
1619 mem = mem * MEM_USABLE_RATIO;
1620
Willy Tarreau87b09662015-04-03 00:22:06 +02001621 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001622 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1623 global.maxsslconn = round_2dig(global.maxsslconn);
1624
1625 if (sslmem <= 0 || global.maxsslconn < sides) {
1626 Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1627 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1628 "without SSL is %d, but %d was found and SSL is in use.\n",
1629 global.rlimit_memmax,
Willy Tarreau87b09662015-04-03 00:22:06 +02001630 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
Willy Tarreaud0256482015-01-15 21:45:22 +01001631 global.maxconn);
1632 exit(1);
1633 }
1634
1635 if (global.maxsslconn > sides * global.maxconn)
1636 global.maxsslconn = sides * global.maxconn;
1637
1638 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1639 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1640 }
1641#endif
1642 else if (!global.maxconn) {
1643 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1644 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1645 int64_t mem = global.rlimit_memmax * 1048576ULL;
1646 int64_t clearmem;
1647
1648 if (global.ssl_used_frontend || global.ssl_used_backend)
1649 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1650
1651 mem -= global.maxzlibmem;
1652 mem = mem * MEM_USABLE_RATIO;
1653
1654 clearmem = mem;
1655 if (sides)
1656 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1657
Willy Tarreau87b09662015-04-03 00:22:06 +02001658 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001659 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001660#ifdef SYSTEM_MAXCONN
1661 if (global.maxconn > DEFAULT_MAXCONN)
1662 global.maxconn = DEFAULT_MAXCONN;
1663#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001664
1665 if (clearmem <= 0 || !global.maxconn) {
1666 Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1667 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1668 "is %d, but %d was found.\n",
1669 global.rlimit_memmax,
1670 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1671 global.maxsslconn);
1672 exit(1);
1673 }
1674
1675 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1676 if (sides && global.maxsslconn > sides * global.maxconn) {
1677 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1678 "to be limited to %d. Better reduce global.maxsslconn to get more "
1679 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1680 }
1681 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1682 }
1683 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001684
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001685 if (!global.maxpipes) {
1686 /* maxpipes not specified. Count how many frontends and backends
1687 * may be using splicing, and bound that to maxconn.
1688 */
1689 struct proxy *cur;
1690 int nbfe = 0, nbbe = 0;
1691
1692 for (cur = proxy; cur; cur = cur->next) {
1693 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1694 if (cur->cap & PR_CAP_FE)
1695 nbfe += cur->maxconn;
1696 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001697 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001698 }
1699 }
1700 global.maxpipes = MAX(nbfe, nbbe);
1701 if (global.maxpipes > global.maxconn)
1702 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001703 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001704 }
1705
1706
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001707 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001708 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001709 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001710
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001711 if (global.stats_fe)
1712 global.maxsock += global.stats_fe->maxconn;
1713
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001714 if (cfg_peers) {
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001715 /* peers also need to bypass global maxconn */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001716 struct peers *p = cfg_peers;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001717
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001718 for (p = cfg_peers; p; p = p->next)
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001719 if (p->peers_fe)
1720 global.maxsock += p->peers_fe->maxconn;
1721 }
1722
Willy Tarreau1db37712007-06-03 17:16:49 +02001723 if (global.tune.maxpollevents <= 0)
1724 global.tune.maxpollevents = MAX_POLL_EVENTS;
1725
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001726 if (global.tune.recv_enough == 0)
1727 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1728
Willy Tarreau27097842015-09-28 13:53:23 +02001729 if (global.tune.maxrewrite < 0)
1730 global.tune.maxrewrite = MAXREWRITE;
1731
Willy Tarreau27a674e2009-08-17 07:23:33 +02001732 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1733 global.tune.maxrewrite = global.tune.bufsize / 2;
1734
Willy Tarreaubaaee002006-06-26 02:48:02 +02001735 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1736 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02001737 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001738 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1739 }
1740
William Lallemand095ba4c2017-06-01 17:38:50 +02001741 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001742 /* command line daemon mode inhibits foreground and debug modes mode */
1743 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02001744 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001745 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001746
1747 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001748
William Lallemand095ba4c2017-06-01 17:38:50 +02001749 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
1750 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
1751 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001752 }
1753
William Lallemand095ba4c2017-06-01 17:38:50 +02001754 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001755 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
William Lallemandcc113822017-11-06 11:00:02 +01001756 Warning("<nbproc> is only meaningful in daemon mode or master-worker mode. Setting limit to 1 process.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001757 global.nbproc = 1;
1758 }
1759
1760 if (global.nbproc < 1)
1761 global.nbproc = 1;
1762
Christopher Fauletbe0faa22017-08-29 15:37:10 +02001763 if (global.nbthread < 1)
1764 global.nbthread = 1;
1765
Christopher Faulet3ef26392017-08-29 16:46:57 +02001766 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001767 if (!init_trash_buffers(0)) {
Christopher Faulet3ef26392017-08-29 16:46:57 +02001768 Alert("failed to initialize trash buffers.\n");
1769 exit(1);
1770 }
1771
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001772 /*
1773 * Note: we could register external pollers here.
1774 * Built-in pollers have been registered before main().
1775 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001776
Willy Tarreau43b78992009-01-25 15:42:27 +01001777 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001778 disable_poller("kqueue");
1779
Willy Tarreau43b78992009-01-25 15:42:27 +01001780 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001781 disable_poller("epoll");
1782
Willy Tarreau43b78992009-01-25 15:42:27 +01001783 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001784 disable_poller("poll");
1785
Willy Tarreau43b78992009-01-25 15:42:27 +01001786 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001787 disable_poller("select");
1788
1789 /* Note: we could disable any poller by name here */
1790
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001791 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001792 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001793 fprintf(stderr, "\n");
1794 list_filters(stderr);
1795 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001796
Willy Tarreau4f60f162007-04-08 16:39:58 +02001797 if (!init_pollers()) {
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001798 Alert("No polling mechanism available.\n"
1799 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1800 " is too low on this platform to support maxconn and the number of listeners\n"
1801 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1802 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
Prach Pongpanichb837e682013-05-14 20:56:28 +02001803 " global maxconn setting to accommodate the system's limitation. For reference,\n"
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001804 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1805 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1806 " check build settings using 'haproxy -vv'.\n\n",
1807 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001808 exit(1);
1809 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001810 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1811 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001812 }
1813
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001814 if (!global.node)
1815 global.node = strdup(hostname);
1816
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001817 if (!hlua_post_init())
1818 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001819
Maxime de Roucy0f503922016-05-13 23:52:55 +02001820 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821}
1822
Simon Horman6fb82592011-07-15 13:14:11 +09001823static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001824{
Simon Hormanac821422011-07-15 13:14:09 +09001825 struct acl_term_suite *suite, *suiteb;
1826 struct acl_term *term, *termb;
1827
Simon Horman6fb82592011-07-15 13:14:11 +09001828 if (!cond)
1829 return;
1830
1831 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1832 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1833 LIST_DEL(&term->list);
1834 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001835 }
Simon Horman6fb82592011-07-15 13:14:11 +09001836 LIST_DEL(&suite->list);
1837 free(suite);
1838 }
1839
1840 free(cond);
1841}
1842
1843static void deinit_tcp_rules(struct list *rules)
1844{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001845 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001846
1847 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001848 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001849 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001850 free(trule);
1851 }
1852}
1853
Simon Horman6fb82592011-07-15 13:14:11 +09001854static void deinit_stick_rules(struct list *rules)
1855{
1856 struct sticking_rule *rule, *ruleb;
1857
1858 list_for_each_entry_safe(rule, ruleb, rules, list) {
1859 LIST_DEL(&rule->list);
1860 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001861 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001862 free(rule);
1863 }
1864}
1865
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001866void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867{
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001868 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869 struct cap_hdr *h,*h_next;
1870 struct server *s,*s_next;
1871 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001872 struct acl_cond *cond, *condb;
1873 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001874 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001875 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001876 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001877 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001878 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01001879 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001880 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02001881 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01001882 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001883 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001884 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01001885 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001886 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001887
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001888 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001889 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02001890 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001891 free(p->id);
1892 free(p->check_req);
1893 free(p->cookie_name);
1894 free(p->cookie_domain);
1895 free(p->url_param_name);
1896 free(p->capture_name);
1897 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09001898 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02001899 if (p->conf.logformat_string != default_http_log_format &&
1900 p->conf.logformat_string != default_tcp_log_format &&
1901 p->conf.logformat_string != clf_http_log_format)
1902 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02001903
Willy Tarreau62a61232013-04-12 18:13:46 +02001904 free(p->conf.lfs_file);
1905 free(p->conf.uniqueid_format_string);
1906 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08001907 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001908
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001909 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1910 free(p->conf.logformat_sd_string);
1911 free(p->conf.lfsd_file);
1912
Willy Tarreaua534fea2008-08-03 12:19:50 +02001913 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001914 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001915
Willy Tarreauf4f04122010-01-28 18:10:50 +01001916 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
1917 LIST_DEL(&cwl->list);
1918 free(cwl->s);
1919 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001920 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001921
Willy Tarreauf4f04122010-01-28 18:10:50 +01001922 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
1923 LIST_DEL(&cwl->list);
1924 free(cwl->s);
1925 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001926 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001927
Willy Tarreaub80c2302007-11-30 20:51:32 +01001928 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
1929 LIST_DEL(&cond->list);
1930 prune_acl_cond(cond);
1931 free(cond);
1932 }
1933
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001934 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001935 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001936 regex_free(exp->preg);
1937 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001938 }
1939
Willy Tarreau98d04852015-05-26 12:18:29 +02001940 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001941 expb = exp;
1942 exp = exp->next;
1943 free(expb);
1944 }
1945
1946 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001947 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001948 regex_free(exp->preg);
1949 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001950 }
1951
Willy Tarreau98d04852015-05-26 12:18:29 +02001952 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001953 expb = exp;
1954 exp = exp->next;
1955 free(expb);
1956 }
1957
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001958 /* build a list of unique uri_auths */
1959 if (!ua)
1960 ua = p->uri_auth;
1961 else {
1962 /* check if p->uri_auth is unique */
1963 for (uap = ua; uap; uap=uap->next)
1964 if (uap == p->uri_auth)
1965 break;
1966
Willy Tarreauaccc4e12008-06-24 11:14:45 +02001967 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001968 /* add it, if it is */
1969 p->uri_auth->next = ua;
1970 ua = p->uri_auth;
1971 }
1972 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001973
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001974 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
1975 LIST_DEL(&acl->list);
1976 prune_acl(acl);
1977 free(acl);
1978 }
1979
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001980 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
1981 LIST_DEL(&srule->list);
1982 prune_acl_cond(srule->cond);
1983 free(srule->cond);
1984 free(srule);
1985 }
1986
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001987 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
1988 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001989 if (rule->cond) {
1990 prune_acl_cond(rule->cond);
1991 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01001992 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001993 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001994 free(rule);
1995 }
1996
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001997 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
1998 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01001999 if (rdr->cond) {
2000 prune_acl_cond(rdr->cond);
2001 free(rdr->cond);
2002 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002003 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002004 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2005 LIST_DEL(&lf->list);
2006 free(lf);
2007 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002008 free(rdr);
2009 }
2010
William Lallemand0f99e342011-10-12 17:50:54 +02002011 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2012 LIST_DEL(&log->list);
2013 free(log);
2014 }
2015
William Lallemand723b73a2012-02-08 16:37:49 +01002016 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2017 LIST_DEL(&lf->list);
2018 free(lf);
2019 }
2020
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002021 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2022 LIST_DEL(&lf->list);
2023 free(lf);
2024 }
2025
Simon Hormanac821422011-07-15 13:14:09 +09002026 deinit_tcp_rules(&p->tcp_req.inspect_rules);
2027 deinit_tcp_rules(&p->tcp_req.l4_rules);
2028
Simon Horman6fb82592011-07-15 13:14:11 +09002029 deinit_stick_rules(&p->storersp_rules);
2030 deinit_stick_rules(&p->sticking_rules);
2031
Willy Tarreaubaaee002006-06-26 02:48:02 +02002032 h = p->req_cap;
2033 while (h) {
2034 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002035 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002036 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002037 free(h);
2038 h = h_next;
2039 }/* end while(h) */
2040
2041 h = p->rsp_cap;
2042 while (h) {
2043 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002044 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002045 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002046 free(h);
2047 h = h_next;
2048 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002049
Willy Tarreaubaaee002006-06-26 02:48:02 +02002050 s = p->srv;
2051 while (s) {
2052 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002053
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002054 if (s->check.task) {
2055 task_delete(s->check.task);
2056 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002057 }
Simon Hormand60d6912013-11-25 10:46:36 +09002058 if (s->agent.task) {
2059 task_delete(s->agent.task);
2060 task_free(s->agent.task);
2061 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002062
Willy Tarreau2e993902011-10-31 11:53:20 +01002063 if (s->warmup) {
2064 task_delete(s->warmup);
2065 task_free(s->warmup);
2066 }
2067
Willy Tarreaua534fea2008-08-03 12:19:50 +02002068 free(s->id);
2069 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002070 free(s->check.bi);
2071 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09002072 free(s->agent.bi);
2073 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07002074 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002075 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002076 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01002077
2078 if (s->use_ssl || s->check.use_ssl) {
2079 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2080 xprt_get(XPRT_SSL)->destroy_srv(s);
2081 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002082 HA_SPIN_DESTROY(&s->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002083 free(s);
2084 s = s_next;
2085 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002086
Willy Tarreau4348fad2012-09-20 16:48:07 +02002087 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002088 /*
2089 * Zombie proxy, the listener just pretend to be up
2090 * because they still hold an opened fd.
2091 * Close it and give the listener its real state.
2092 */
2093 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2094 close(l->fd);
2095 l->state = LI_INIT;
2096 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002097 unbind_listener(l);
2098 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002099 LIST_DEL(&l->by_fe);
2100 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002101 free(l->name);
2102 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002103 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002104 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002105
Willy Tarreau4348fad2012-09-20 16:48:07 +02002106 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002107 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002108 if (bind_conf->xprt->destroy_bind_conf)
2109 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002110 free(bind_conf->file);
2111 free(bind_conf->arg);
2112 LIST_DEL(&bind_conf->by_fe);
2113 free(bind_conf);
2114 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002115
Christopher Fauletd7c91962015-04-30 11:48:27 +02002116 flt_deinit(p);
2117
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002118 free(p->desc);
2119 free(p->fwdfor_hdr_name);
2120
Willy Tarreauff011f22011-01-06 17:51:27 +01002121 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002122 free_http_res_rules(&p->http_res_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02002123 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002124
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002125 pool_destroy2(p->req_cap_pool);
2126 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09002127 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002128
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002129 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002130 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002131 HA_SPIN_DESTROY(&p0->lbprm.lock);
2132 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002133 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002134 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002135
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002136 while (ua) {
2137 uap = ua;
2138 ua = ua->next;
2139
Willy Tarreaua534fea2008-08-03 12:19:50 +02002140 free(uap->uri_prefix);
2141 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002142 free(uap->node);
2143 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002144
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002145 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002146 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002147
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002148 free(uap);
2149 }
2150
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002151 userlist_free(userlist);
2152
David Carlier834cb2e2015-09-25 12:02:25 +01002153 cfg_unregister_sections();
2154
Christopher Faulet0132d062017-07-26 15:33:35 +02002155 deinit_log_buffers();
Christopher Faulet748919a2017-07-26 14:59:46 +02002156 deinit_trash_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002157
Willy Tarreaudd815982007-10-16 12:25:14 +02002158 protocol_unbind_all();
2159
Willy Tarreau05554e62016-12-21 20:46:26 +01002160 list_for_each_entry(pdf, &post_deinit_list, list)
2161 pdf->fct();
2162
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002163 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002164 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002165 free(global.chroot); global.chroot = NULL;
2166 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002167 free(global.node); global.node = NULL;
2168 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002169 free(oldpids); oldpids = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002170 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002171
William Lallemand0f99e342011-10-12 17:50:54 +02002172 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2173 LIST_DEL(&log->list);
2174 free(log);
2175 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002176 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002177 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002178 LIST_DEL(&wl->list);
2179 free(wl);
2180 }
2181
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002182 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2183 if (bol->must_free)
2184 free((void *)bol->str);
2185 LIST_DEL(&bol->list);
2186 free(bol);
2187 }
2188
Christopher Fauletff2613e2016-11-09 11:36:17 +01002189 vars_prune(&global.vars, NULL, NULL);
2190
Christopher Fauletad405f12017-08-29 15:30:11 +02002191 deinit_buffer();
2192
Willy Tarreau87b09662015-04-03 00:22:06 +02002193 pool_destroy2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +02002194 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002195 pool_destroy2(pool2_connection);
Olivier Houcharde2b40b92017-09-13 18:30:23 +02002196 pool_destroy2(pool2_connstream);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02002197 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02002198 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02002199 pool_destroy2(pool2_capture);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02002200 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002201 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02002202 pool_destroy2(pool2_hdr_idx);
Willy Tarreau63986c72015-04-03 22:55:33 +02002203 pool_destroy2(pool2_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002204 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002205} /* end deinit() */
2206
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002207void mworker_pipe_handler(int fd)
2208{
2209 char c;
2210
2211 while (read(fd, &c, 1) == -1) {
2212 if (errno == EINTR)
2213 continue;
2214 if (errno == EAGAIN) {
2215 fd_cant_recv(fd);
2216 return;
2217 }
2218 break;
2219 }
2220
2221 deinit();
2222 exit(EXIT_FAILURE);
2223 return;
2224}
2225
2226void mworker_pipe_register(int pipefd[2])
2227{
2228 close(mworker_pipe[1]); /* close the write end of the master pipe in the children */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002229
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002230 fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK);
2231 fdtab[mworker_pipe[0]].owner = mworker_pipe;
2232 fdtab[mworker_pipe[0]].iocb = mworker_pipe_handler;
Christopher Faulet36716a72017-05-30 11:07:16 +02002233 fd_insert(mworker_pipe[0], MAX_THREADS_MASK);
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002234 fd_want_recv(mworker_pipe[0]);
2235}
Christopher Fauletdc628a32017-10-19 11:59:44 +02002236
2237static void sync_poll_loop()
2238{
2239 if (THREAD_NO_SYNC())
2240 return;
2241
2242 THREAD_ENTER_SYNC();
2243
2244 if (!THREAD_NEED_SYNC())
2245 goto exit;
2246
2247 /* *** { */
2248 /* Put here all sync functions */
2249
Christopher Faulet5d42e092017-10-16 12:00:40 +02002250 servers_update_status(); /* Commit server status changes */
Christopher Fauletdc628a32017-10-19 11:59:44 +02002251
2252 /* *** } */
2253 exit:
2254 THREAD_EXIT_SYNC();
2255}
2256
Willy Tarreau918ff602011-07-25 16:33:49 +02002257/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002258static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002259{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002260 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002261
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002262 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002263 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002264 /* Process a few tasks */
2265 process_runnable_tasks();
2266
Willy Tarreau29857942009-05-10 09:01:21 +02002267 /* check if we caught some signals and process them */
2268 signal_process_queue();
2269
Willy Tarreau58b458d2008-06-29 22:40:23 +02002270 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002271 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002272
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002273 /* stop when there's nothing left to do */
2274 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02002275 break;
2276
Willy Tarreau10146c92015-04-13 20:44:19 +02002277 /* expire immediately if events are pending */
Christopher Faulet34c5cc92016-12-06 09:15:30 +01002278 if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue)
Willy Tarreau10146c92015-04-13 20:44:19 +02002279 next = now_ms;
2280
Willy Tarreau58b458d2008-06-29 22:40:23 +02002281 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002282 cur_poller.poll(&cur_poller, next);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002283 fd_process_cached_events();
Willy Tarreau3c595ac2015-04-19 09:59:31 +02002284 applet_run_active();
Emeric Brun64cc49c2017-10-03 14:46:45 +02002285
Christopher Fauletdc628a32017-10-19 11:59:44 +02002286
2287 /* Synchronize all polling loops */
2288 sync_poll_loop();
2289
Willy Tarreau4f60f162007-04-08 16:39:58 +02002290 }
2291}
2292
Christopher Faulet1d17c102017-08-29 15:38:48 +02002293static void *run_thread_poll_loop(void *data)
2294{
2295 struct per_thread_init_fct *ptif;
2296 struct per_thread_deinit_fct *ptdf;
2297
2298 tid = *((unsigned int *)data);
2299 tid_bit = (1UL << tid);
2300 tv_update_date(-1,-1);
2301
2302 list_for_each_entry(ptif, &per_thread_init_list, list) {
2303 if (!ptif->fct()) {
2304 Alert("failed to initialize thread %u.\n", tid);
2305 exit(1);
2306 }
2307 }
2308
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002309 if (global.mode & MODE_MWORKER)
2310 mworker_pipe_register(mworker_pipe);
2311
2312 protocol_enable_all();
Christopher Fauletdc628a32017-10-19 11:59:44 +02002313 THREAD_SYNC_ENABLE();
Christopher Faulet1d17c102017-08-29 15:38:48 +02002314 run_poll_loop();
2315
2316 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2317 ptdf->fct();
2318
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002319#ifdef USE_THREAD
2320 if (tid > 0)
2321 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002322#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002323 return NULL;
2324}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002325
Willy Tarreaue9b26022011-08-01 20:57:55 +02002326/* This is the global management task for listeners. It enables listeners waiting
2327 * for global resources when there are enough free resource, or at least once in
2328 * a while. It is designed to be called as a task.
2329 */
2330static struct task *manage_global_listener_queue(struct task *t)
2331{
2332 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002333 /* queue is empty, nothing to do */
2334 if (LIST_ISEMPTY(&global_listener_queue))
2335 goto out;
2336
2337 /* If there are still too many concurrent connections, let's wait for
2338 * some of them to go away. We don't need to re-arm the timer because
2339 * each of them will scan the queue anyway.
2340 */
2341 if (unlikely(actconn >= global.maxconn))
2342 goto out;
2343
2344 /* We should periodically try to enable listeners waiting for a global
2345 * resource here, because it is possible, though very unlikely, that
2346 * they have been blocked by a temporary lack of global resource such
2347 * as a file descriptor or memory and that the temporary condition has
2348 * disappeared.
2349 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002350 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002351
2352 out:
2353 t->expire = next;
2354 task_queue(t);
2355 return t;
2356}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002357
Willy Tarreaubaaee002006-06-26 02:48:02 +02002358int main(int argc, char **argv)
2359{
2360 int err, retry;
2361 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002362 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002363 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002364
Emeric Bruncf20bf12010-10-22 16:06:11 +02002365 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002366 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2367 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2368 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002369 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002370
Willy Tarreaue437c442010-03-17 18:02:46 +01002371 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2372 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2373 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002374 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002375 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002376
Willy Tarreaudc23a922011-02-16 11:10:36 +01002377 /* ulimits */
2378 if (!global.rlimit_nofile)
2379 global.rlimit_nofile = global.maxsock;
2380
2381 if (global.rlimit_nofile) {
2382 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
2383 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002384 /* try to set it to the max possible at least */
2385 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002386 limit.rlim_cur = limit.rlim_max;
2387 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2388 getrlimit(RLIMIT_NOFILE, &limit);
2389
Willy Tarreauef635472016-06-21 11:48:18 +02002390 Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2391 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002392 }
2393 }
2394
2395 if (global.rlimit_memmax) {
2396 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002397 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002398#ifdef RLIMIT_AS
2399 if (setrlimit(RLIMIT_AS, &limit) == -1) {
2400 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2401 argv[0], global.rlimit_memmax);
2402 }
2403#else
2404 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
2405 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2406 argv[0], global.rlimit_memmax);
2407 }
2408#endif
2409 }
2410
Olivier Houchardf73629d2017-04-05 22:33:04 +02002411 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002412 if (strcmp("/dev/null", old_unixsocket) != 0) {
2413 if (get_old_sockets(old_unixsocket) != 0) {
2414 Alert("Failed to get the sockets from the old process!\n");
2415 if (!(global.mode & MODE_MWORKER))
2416 exit(1);
2417 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002418 }
2419 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002420 get_cur_unixsocket();
2421
Willy Tarreaubaaee002006-06-26 02:48:02 +02002422 /* We will loop at most 100 times with 10 ms delay each time.
2423 * That's at most 1 second. We only send a signal to old pids
2424 * if we cannot grab at least one port.
2425 */
2426 retry = MAX_START_RETRIES;
2427 err = ERR_NONE;
2428 while (retry >= 0) {
2429 struct timeval w;
2430 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002431 /* exit the loop on no error or fatal error */
2432 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002433 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002434 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002435 break;
2436
2437 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2438 * listening sockets. So on those platforms, it would be wiser to
2439 * simply send SIGUSR1, which will not be undoable.
2440 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002441 if (tell_old_pids(SIGTTOU) == 0) {
2442 /* no need to wait if we can't contact old pids */
2443 retry = 0;
2444 continue;
2445 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002446 /* give some time to old processes to stop listening */
2447 w.tv_sec = 0;
2448 w.tv_usec = 10*1000;
2449 select(0, NULL, NULL, NULL, &w);
2450 retry--;
2451 }
2452
2453 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002454 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002455 if (retry != MAX_START_RETRIES && nb_oldpids) {
2456 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002457 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002458 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002459 exit(1);
2460 }
2461
2462 if (listeners == 0) {
Willy Tarreauf2ee0162015-08-09 11:01:51 +02002463 Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002464 /* Note: we don't have to send anything to the old pids because we
2465 * never stopped them. */
2466 exit(1);
2467 }
2468
Emeric Bruncf20bf12010-10-22 16:06:11 +02002469 err = protocol_bind_all(errmsg, sizeof(errmsg));
2470 if ((err & ~ERR_WARN) != ERR_NONE) {
2471 if ((err & ERR_ALERT) || (err & ERR_WARN))
2472 Alert("[%s.main()] %s.\n", argv[0], errmsg);
2473
Willy Tarreaudd815982007-10-16 12:25:14 +02002474 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
2475 protocol_unbind_all(); /* cleanup everything we can */
2476 if (nb_oldpids)
2477 tell_old_pids(SIGTTIN);
2478 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002479 } else if (err & ERR_WARN) {
2480 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002481 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002482 /* Ok, all listener should now be bound, close any leftover sockets
2483 * the previous process gave us, we don't need them anymore
2484 */
2485 while (xfer_sock_list != NULL) {
2486 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2487 close(xfer_sock_list->fd);
2488 free(xfer_sock_list->iface);
2489 free(xfer_sock_list->namespace);
2490 free(xfer_sock_list);
2491 xfer_sock_list = tmpxfer;
2492 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002493
Willy Tarreaubaaee002006-06-26 02:48:02 +02002494 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002495 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2496 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002497
Willy Tarreaubaaee002006-06-26 02:48:02 +02002498 /* MODE_QUIET can inhibit alerts and warnings below this line */
2499
Willy Tarreaubaaee002006-06-26 02:48:02 +02002500 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2501 /* detach from the tty */
2502 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002503 }
2504
2505 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01002506 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002507 unlink(global.pidfile);
2508 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2509 if (pidfd < 0) {
2510 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
2511 if (nb_oldpids)
2512 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002513 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002514 exit(1);
2515 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002516 }
2517
Willy Tarreaub38651a2007-03-24 17:24:39 +01002518 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
2519 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002520 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002521 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002522 exit(1);
2523 }
2524
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002525 /* If the user is not root, we'll still let him try the configuration
2526 * but we inform him that unexpected behaviour may occur.
2527 */
2528 if ((global.last_checks & LSTCHK_NETADM) && getuid())
2529 Warning("[%s.main()] Some options which require full privileges"
2530 " might not work well.\n"
2531 "", argv[0]);
2532
William Lallemand095ba4c2017-06-01 17:38:50 +02002533 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2534
2535 /* chroot if needed */
2536 if (global.chroot != NULL) {
2537 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2538 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
2539 if (nb_oldpids)
2540 tell_old_pids(SIGTTIN);
2541 protocol_unbind_all();
2542 exit(1);
2543 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002544 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002545 }
2546
Willy Tarreaubaaee002006-06-26 02:48:02 +02002547 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002548 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002549
William Lallemand8a361b52017-06-20 11:20:33 +02002550 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2551 nb_oldpids = 0;
2552 free(oldpids);
2553 oldpids = NULL;
2554 }
2555
2556
Willy Tarreaubaaee002006-06-26 02:48:02 +02002557 /* Note that any error at this stage will be fatal because we will not
2558 * be able to restart the old pids.
2559 */
2560
William Lallemand095ba4c2017-06-01 17:38:50 +02002561 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2562 /* setgid / setuid */
2563 if (global.gid) {
2564 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2565 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2566 " without 'uid'/'user' is generally useless.\n", argv[0]);
2567
2568 if (setgid(global.gid) == -1) {
2569 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2570 protocol_unbind_all();
2571 exit(1);
2572 }
2573 }
Michael Schererab012dd2013-01-12 18:35:19 +01002574
William Lallemand095ba4c2017-06-01 17:38:50 +02002575 if (global.uid && setuid(global.uid) == -1) {
2576 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002577 protocol_unbind_all();
2578 exit(1);
2579 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002580 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002581 /* check ulimits */
2582 limit.rlim_cur = limit.rlim_max = 0;
2583 getrlimit(RLIMIT_NOFILE, &limit);
2584 if (limit.rlim_cur < global.maxsock) {
2585 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 +02002586 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002587 }
2588
William Lallemand095ba4c2017-06-01 17:38:50 +02002589 if (global.mode & (MODE_DAEMON | MODE_MWORKER)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002590 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002591 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002592 int ret = 0;
2593 int proc;
2594
William Lallemand73b85e72017-06-01 17:38:51 +02002595 children = calloc(global.nbproc, sizeof(int));
William Lallemand095ba4c2017-06-01 17:38:50 +02002596 /*
2597 * if daemon + mworker: must fork here to let a master
2598 * process live in background before forking children
2599 */
William Lallemand73b85e72017-06-01 17:38:51 +02002600
2601 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2602 && (global.mode & MODE_MWORKER)
2603 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002604 ret = fork();
2605 if (ret < 0) {
2606 Alert("[%s.main()] Cannot fork.\n", argv[0]);
2607 protocol_unbind_all();
2608 exit(1); /* there has been an error */
2609 }
2610 /* parent leave to daemonize */
2611 if (ret > 0)
2612 exit(0);
2613 }
William Lallemande20b6a62017-06-01 17:38:55 +02002614
2615 if (global.mode & MODE_MWORKER) {
2616 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2617 char *msg = NULL;
2618 /* master pipe to ensure the master is still alive */
2619 ret = pipe(mworker_pipe);
2620 if (ret < 0) {
2621 Warning("[%s.main()] Cannot create master pipe.\n", argv[0]);
2622 } else {
2623 memprintf(&msg, "%d", mworker_pipe[0]);
2624 setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1);
2625 memprintf(&msg, "%d", mworker_pipe[1]);
2626 setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1);
2627 free(msg);
2628 }
2629 } else {
2630 mworker_pipe[0] = atol(getenv("HAPROXY_MWORKER_PIPE_RD"));
2631 mworker_pipe[1] = atol(getenv("HAPROXY_MWORKER_PIPE_WR"));
2632 if (mworker_pipe[0] <= 0 || mworker_pipe[1] <= 0) {
2633 Warning("[%s.main()] Cannot get master pipe FDs.\n", argv[0]);
2634 }
2635 }
2636 }
2637
William Lallemanddeed7802017-11-06 11:00:04 +01002638 /* if in master-worker mode, write the PID of the father */
2639 if (global.mode & MODE_MWORKER) {
2640 char pidstr[100];
2641 snprintf(pidstr, sizeof(pidstr), "%d\n", getpid());
2642 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
2643 }
2644
Willy Tarreaubaaee002006-06-26 02:48:02 +02002645 /* the father launches the required number of processes */
2646 for (proc = 0; proc < global.nbproc; proc++) {
2647 ret = fork();
2648 if (ret < 0) {
2649 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002650 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002651 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002652 }
2653 else if (ret == 0) /* child breaks here */
2654 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002655 children[proc] = ret;
William Lallemand92159b22017-11-06 11:16:12 +01002656 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
Willy Tarreau269ab312012-09-05 08:02:48 +02002657 char pidstr[100];
2658 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002659 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002660 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002661 relative_pid++; /* each child will get a different one */
Willy Tarreau387bd4f2017-11-10 19:08:14 +01002662 pid_bit <<= 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002663 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002664
2665#ifdef USE_CPU_AFFINITY
2666 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002667 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002668 global.cpu_map[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002669#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02002670 {
2671 cpuset_t cpuset;
2672 int i;
2673 unsigned long cpu_map = global.cpu_map[proc];
2674
2675 CPU_ZERO(&cpuset);
2676 while ((i = ffsl(cpu_map)) > 0) {
2677 CPU_SET(i - 1, &cpuset);
2678 cpu_map &= ~(1 << (i - 1));
2679 }
2680 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
2681 }
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002682#else
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002683 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2684#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002685#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002686 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002687 if (pidfd >= 0) {
2688 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2689 close(pidfd);
2690 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002691
2692 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02002693 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002694
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002695 if (proc == global.nbproc) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002696 if (global.mode & MODE_MWORKER) {
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002697 protocol_unbind_all();
William Lallemand73b85e72017-06-01 17:38:51 +02002698 mworker_wait();
William Lallemand1499b9b2017-06-07 15:04:47 +02002699 /* should never get there */
2700 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002701 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002702#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002703 ssl_free_dh();
2704#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002705 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002706 }
2707
William Lallemandcb11fd22017-06-01 17:38:52 +02002708 /* child must never use the atexit function */
2709 atexit_flag = 0;
2710
William Lallemand095ba4c2017-06-01 17:38:50 +02002711 /* Must chroot and setgid/setuid in the children */
2712 /* chroot if needed */
2713 if (global.chroot != NULL) {
2714 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2715 Alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
2716 if (nb_oldpids)
2717 tell_old_pids(SIGTTIN);
2718 protocol_unbind_all();
2719 exit(1);
2720 }
2721 }
2722
2723 free(global.chroot);
2724 global.chroot = NULL;
2725
2726 /* setgid / setuid */
2727 if (global.gid) {
2728 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2729 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2730 " without 'uid'/'user' is generally useless.\n", argv[0]);
2731
2732 if (setgid(global.gid) == -1) {
2733 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2734 protocol_unbind_all();
2735 exit(1);
2736 }
2737 }
2738
2739 if (global.uid && setuid(global.uid) == -1) {
2740 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
2741 protocol_unbind_all();
2742 exit(1);
2743 }
2744
William Lallemand7f80eb22017-05-26 18:19:55 +02002745 /* pass through every cli socket, and check if it's bound to
2746 * the current process and if it exposes listeners sockets.
2747 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
2748 * */
2749
2750 if (global.stats_fe) {
2751 struct bind_conf *bind_conf;
2752
2753 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
2754 if (bind_conf->level & ACCESS_FD_LISTENERS) {
2755 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
2756 global.tune.options |= GTUNE_SOCKET_TRANSFER;
2757 break;
2758 }
2759 }
2760 }
2761 }
2762
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002763 /* we might have to unbind some proxies from some processes */
2764 px = proxy;
2765 while (px != NULL) {
2766 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002767 if (!(px->bind_proc & (1UL << proc))) {
2768 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
2769 zombify_proxy(px);
2770 else
2771 stop_proxy(px);
2772 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002773 }
2774 px = px->next;
2775 }
2776
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002777 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002778 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002779 if (!curpeers->peers_fe)
2780 continue;
2781
2782 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2783 continue;
2784
2785 stop_proxy(curpeers->peers_fe);
2786 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002787 signal_unregister_handler(curpeers->sighandler);
2788 task_delete(curpeers->sync_task);
2789 task_free(curpeers->sync_task);
2790 curpeers->sync_task = NULL;
2791 task_free(curpeers->peers_fe->task);
2792 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002793 curpeers->peers_fe = NULL;
2794 }
2795
Willy Tarreaubaaee002006-06-26 02:48:02 +02002796 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2797 * that we can detach from the TTY. We MUST NOT do it in other cases since
2798 * it would have already be done, and 0-2 would have been affected to listening
2799 * sockets
2800 */
Willy Tarreau106cb762008-11-16 07:40:34 +01002801 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002802 /* detach from the tty */
2803 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01002804 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002805 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2806 }
2807 pid = getpid(); /* update child's pid */
2808 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02002809 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002810 }
2811
Christopher Faulete3a5e352017-10-24 13:53:54 +02002812 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002813 /*
2814 * That's it : the central polling loop. Run until we stop.
2815 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002816#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002817 {
Christopher Faulet1d17c102017-08-29 15:38:48 +02002818 unsigned int *tids = calloc(global.nbthread, sizeof(unsigned int));
2819 pthread_t *threads = calloc(global.nbthread, sizeof(pthread_t));
2820 int i;
2821
Christopher Fauletd7bddda2017-10-31 17:30:12 +01002822 THREAD_SYNC_INIT((1UL << global.nbthread) - 1);
2823
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002824 /* Init tids array */
2825 for (i = 0; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002826 tids[i] = i;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002827
2828 /* Create nbthread-1 thread. The first thread is the current process */
2829 threads[0] = pthread_self();
2830 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002831 pthread_create(&threads[i], NULL, &run_thread_poll_loop, &tids[i]);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002832
Christopher Faulet62519022017-10-16 15:49:32 +02002833#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002834 /* Now the CPU affinity for all threads */
2835 for (i = 0; i < global.nbthread; i++) {
Christopher Faulet62519022017-10-16 15:49:32 +02002836 if (global.cpu_map[relative_pid-1])
2837 global.thread_map[relative_pid-1][i] &= global.cpu_map[relative_pid-1];
2838
2839 if (i < LONGBITS && /* only the first 32/64 threads may be pinned */
2840 global.thread_map[relative_pid-1][i]) /* only do this if the thread has a THREAD map */
2841 pthread_setaffinity_np(threads[i],
2842 sizeof(unsigned long), (void *)&global.thread_map[relative_pid-1][i]);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002843 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002844#endif /* !USE_CPU_AFFINITY */
2845
2846 /* Finally, start the poll loop for the first thread */
2847 run_thread_poll_loop(&tids[0]);
2848
2849 /* Wait the end of other threads */
2850 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002851 pthread_join(threads[i], NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002852
Christopher Faulet1d17c102017-08-29 15:38:48 +02002853 free(tids);
2854 free(threads);
2855
Christopher Fauletb79a94c2017-05-30 15:34:30 +02002856#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
2857 show_lock_stats();
2858#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002859 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002860#else /* ! USE_THREAD */
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002861
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002862 run_thread_poll_loop((int []){0});
Christopher Faulet62519022017-10-16 15:49:32 +02002863
Christopher Faulet62519022017-10-16 15:49:32 +02002864#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002865
2866 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002867 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02002868
Willy Tarreaubaaee002006-06-26 02:48:02 +02002869 exit(0);
2870}
2871
2872
2873/*
2874 * Local variables:
2875 * c-indent-level: 8
2876 * c-basic-offset: 8
2877 * End:
2878 */