blob: 5b45dfbaf6d31de277cd7675914e6e5665de1e92 [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 Lallemand75ea0a02017-11-15 19:02:58 +0100544 * Upon a reload, the master worker needs to close all listeners FDs but the mworker_pipe
545 * fd, and the FD provided by fd@
546 */
547static void mworker_cleanlisteners()
548{
549 struct listener *l, *l_next;
550 struct proxy *curproxy;
551
552 for (curproxy = proxy; curproxy; curproxy = curproxy->next) {
553
554 list_for_each_entry_safe(l, l_next, &curproxy->conf.listeners, by_fe) {
555 /* does not close if the FD is inherited with fd@
556 * from the parent process */
557 if (!(l->options & LI_O_INHERITED)) {
558 close(l->fd);
559 LIST_DEL(&l->by_fe);
560 LIST_DEL(&l->by_bind);
561 free(l->name);
562 free(l->counters);
563 free(l);
564 }
565 }
566 }
567}
568
569
570/*
William Lallemand73b85e72017-06-01 17:38:51 +0200571 * remove a pid forom the olpid array and decrease nb_oldpids
572 * return 1 pid was found otherwise return 0
573 */
574
575int delete_oldpid(int pid)
576{
577 int i;
578
579 for (i = 0; i < nb_oldpids; i++) {
580 if (oldpids[i] == pid) {
581 oldpids[i] = oldpids[nb_oldpids - 1];
582 oldpids[nb_oldpids - 1] = 0;
583 nb_oldpids--;
584 return 1;
585 }
586 }
587 return 0;
588}
589
William Lallemand85b0bd92017-06-01 17:38:53 +0200590
591static void get_cur_unixsocket()
592{
593 /* if -x was used, try to update the stat socket if not available anymore */
594 if (global.stats_fe) {
595 struct bind_conf *bind_conf;
596
597 /* pass through all stats socket */
598 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
599 struct listener *l;
600
601 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
602
603 if (l->addr.ss_family == AF_UNIX &&
604 (bind_conf->level & ACCESS_FD_LISTENERS)) {
605 const struct sockaddr_un *un;
606
607 un = (struct sockaddr_un *)&l->addr;
608 /* priority to old_unixsocket */
609 if (!cur_unixsocket) {
610 cur_unixsocket = strdup(un->sun_path);
611 } else {
612 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
613 free(cur_unixsocket);
614 cur_unixsocket = strdup(old_unixsocket);
615 return;
616 }
617 }
618 }
619 }
620 }
621 }
622 if (!cur_unixsocket && old_unixsocket)
623 cur_unixsocket = strdup(old_unixsocket);
624}
625
William Lallemand73b85e72017-06-01 17:38:51 +0200626/*
627 * When called, this function reexec haproxy with -sf followed by current
628 * children PIDs and possibily old children PIDs if they didn't leave yet.
629 */
630static void mworker_reload()
631{
632 int next_argc = 0;
633 int j;
634 char *msg = NULL;
635
636 mworker_block_signals();
637 mworker_unregister_signals();
638 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
639
640 /* compute length */
641 while (next_argv[next_argc])
642 next_argc++;
643
William Lallemand85b0bd92017-06-01 17:38:53 +0200644 /* 1 for haproxy -sf, 2 for -x /socket */
645 next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200646 if (next_argv == NULL)
647 goto alloc_error;
648
649
650 /* add -sf <PID>* to argv */
651 if (children || nb_oldpids > 0)
652 next_argv[next_argc++] = "-sf";
653 if (children) {
654 for (j = 0; j < global.nbproc; next_argc++,j++) {
655 next_argv[next_argc] = memprintf(&msg, "%d", children[j]);
656 if (next_argv[next_argc] == NULL)
657 goto alloc_error;
658 msg = NULL;
659 }
660 }
661 /* copy old process PIDs */
662 for (j = 0; j < nb_oldpids; next_argc++,j++) {
663 next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]);
664 if (next_argv[next_argc] == NULL)
665 goto alloc_error;
666 msg = NULL;
667 }
668 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200669
William Lallemand2bf6d622017-06-20 11:20:23 +0200670 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200671 if (cur_unixsocket) {
672
William Lallemand2bf6d622017-06-20 11:20:23 +0200673 next_argv[next_argc++] = "-x";
674 next_argv[next_argc++] = (char *)cur_unixsocket;
675 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200676 }
677
William Lallemand73b85e72017-06-01 17:38:51 +0200678 Warning("Reexecuting Master process\n");
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100679 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200680
William Lallemand722d4ca2017-11-15 19:02:55 +0100681 Warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
682 return;
683
William Lallemand73b85e72017-06-01 17:38:51 +0200684alloc_error:
William Lallemand722d4ca2017-11-15 19:02:55 +0100685 Warning("Failed to reexecute the master processs [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200686 return;
687}
688
689
690/*
691 * Wait for every children to exit
692 */
693
694static void mworker_wait()
695{
696 int exitpid = -1;
697 int status = 0;
698
William Lallemand2f8b31c2017-11-15 19:02:56 +0100699restart_wait:
700
William Lallemand73b85e72017-06-01 17:38:51 +0200701 mworker_register_signals();
702 mworker_unblock_signals();
703
704 while (1) {
705
706 while (((exitpid = wait(&status)) == -1) && errno == EINTR) {
707 int sig = caught_signal;
708 if (sig == SIGUSR2 || sig == SIGHUP) {
709 mworker_reload();
William Lallemand2f8b31c2017-11-15 19:02:56 +0100710 /* should reach there only if it fail */
711 goto restart_wait;
William Lallemand73b85e72017-06-01 17:38:51 +0200712 } else {
713 Warning("Exiting Master process...\n");
714 mworker_kill(sig);
715 mworker_unregister_signals();
716 }
717 caught_signal = 0;
718 }
719
720 if (exitpid == -1 && errno == ECHILD) {
721 Warning("All workers are left. Leaving... (%d)\n", status);
William Lallemandcb11fd22017-06-01 17:38:52 +0200722 atexit_flag = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200723 exit(status); /* parent must leave using the latest status code known */
724 }
725
726 if (WIFEXITED(status))
727 status = WEXITSTATUS(status);
728 else if (WIFSIGNALED(status))
729 status = 128 + WTERMSIG(status);
730 else if (WIFSTOPPED(status))
731 status = 128 + WSTOPSIG(status);
732 else
733 status = 255;
734
735 if (!children) {
736 Warning("Worker %d left with exit code %d\n", exitpid, status);
737 } else {
738 /* check if exited child was in the current children list */
739 if (current_child(exitpid)) {
740 Alert("Current worker %d left with exit code %d\n", exitpid, status);
William Lallemand69f9b3b2017-06-01 17:38:54 +0200741 if (status != 0 && status != 130 && status != 143
742 && global.tune.options & GTUNE_EXIT_ONFAILURE) {
743 Alert("exit-on-failure: killing every workers with SIGTERM\n");
744 mworker_kill(SIGTERM);
745 }
William Lallemand73b85e72017-06-01 17:38:51 +0200746 } else {
747 Warning("Former worker %d left with exit code %d\n", exitpid, status);
748 delete_oldpid(exitpid);
749 }
750 }
751 }
752}
753
William Lallemandcb11fd22017-06-01 17:38:52 +0200754
755/*
756 * Reexec the process in failure mode, instead of exiting
757 */
758void reexec_on_failure()
759{
760 if (!atexit_flag)
761 return;
762
763 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
764
765 Warning("Reexecuting Master process in waitpid mode\n");
766 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200767}
William Lallemand73b85e72017-06-01 17:38:51 +0200768
769
770/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200771 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
772 * a signal zero to all subscribers. This means that it's as easy as
773 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100775static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776{
777 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200778 signal_unregister_handler(sh);
Christopher Fauletb349e482017-08-29 09:52:38 +0200779 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200780}
781
782/*
783 * upon SIGTTOU, we pause everything
784 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100785static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786{
787 pause_proxies();
Christopher Fauletb349e482017-08-29 09:52:38 +0200788 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789}
790
791/*
792 * upon SIGTTIN, let's have a soft stop.
793 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100794static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795{
Willy Tarreaube58c382011-07-24 18:28:10 +0200796 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200797}
798
799/*
800 * this function dumps every server's state when the process receives SIGHUP.
801 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100802static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803{
804 struct proxy *p = proxy;
805
806 Warning("SIGHUP received, dumping servers states.\n");
807 while (p) {
808 struct server *s = p->srv;
809
810 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
811 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100812 chunk_printf(&trash,
813 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
814 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200815 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100816 s->cur_sess, s->nbpend, s->counters.cum_sess);
817 Warning("%s\n", trash.str);
818 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 s = s->next;
820 }
821
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200822 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
823 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100824 chunk_printf(&trash,
825 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
826 p->id,
827 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 +0200828 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100829 chunk_printf(&trash,
830 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
831 p->id,
832 (p->srv_bck) ? "is running on backup servers" : "has no server available",
833 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 +0200834 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100835 chunk_printf(&trash,
836 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
837 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
838 p->id, p->srv_act, p->srv_bck,
839 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 +0200840 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100841 Warning("%s\n", trash.str);
842 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843
844 p = p->next;
845 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200846}
847
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100848static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200849{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200850 /* dump memory usage then free everything possible */
851 dump_pools();
Christopher Fauletb349e482017-08-29 09:52:38 +0200852 pool_gc2(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200853}
854
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200855/* This function check if cfg_cfgfiles containes directories.
856 * If it find one, it add all the files (and only files) it containes
857 * in cfg_cfgfiles in place of the directory (and remove the directory).
858 * It add the files in lexical order.
859 * It add only files with .cfg extension.
860 * It doesn't add files with name starting with '.'
861 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100862static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200863{
864 struct wordlist *wl, *wlb;
865 char *err = NULL;
866
867 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
868 struct stat file_stat;
869 struct dirent **dir_entries = NULL;
870 int dir_entries_nb;
871 int dir_entries_it;
872
873 if (stat(wl->s, &file_stat)) {
874 Alert("Cannot open configuration file/directory %s : %s\n",
875 wl->s,
876 strerror(errno));
877 exit(1);
878 }
879
880 if (!S_ISDIR(file_stat.st_mode))
881 continue;
882
883 /* from this point wl->s is a directory */
884
885 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
886 if (dir_entries_nb < 0) {
887 Alert("Cannot open configuration directory %s : %s\n",
888 wl->s,
889 strerror(errno));
890 exit(1);
891 }
892
893 /* for each element in the directory wl->s */
894 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
895 struct dirent *dir_entry = dir_entries[dir_entries_it];
896 char *filename = NULL;
897 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
898
899 /* don't add filename that begin with .
900 * only add filename with .cfg extention
901 */
902 if (dir_entry->d_name[0] == '.' ||
903 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
904 goto next_dir_entry;
905
906 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
907 Alert("Cannot load configuration files %s : out of memory.\n",
908 filename);
909 exit(1);
910 }
911
912 if (stat(filename, &file_stat)) {
913 Alert("Cannot open configuration file %s : %s\n",
914 wl->s,
915 strerror(errno));
916 exit(1);
917 }
918
919 /* don't add anything else than regular file in cfg_cfgfiles
920 * this way we avoid loops
921 */
922 if (!S_ISREG(file_stat.st_mode))
923 goto next_dir_entry;
924
925 if (!list_append_word(&wl->list, filename, &err)) {
926 Alert("Cannot load configuration files %s : %s\n",
927 filename,
928 err);
929 exit(1);
930 }
931
932next_dir_entry:
933 free(filename);
934 free(dir_entry);
935 }
936
937 free(dir_entries);
938
939 /* remove the current directory (wl) from cfg_cfgfiles */
940 free(wl->s);
941 LIST_DEL(&wl->list);
942 free(wl);
943 }
944
945 free(err);
946}
947
Olivier Houchardf73629d2017-04-05 22:33:04 +0200948static int get_old_sockets(const char *unixsocket)
949{
950 char *cmsgbuf = NULL, *tmpbuf = NULL;
951 int *tmpfd = NULL;
952 struct sockaddr_un addr;
953 struct cmsghdr *cmsg;
954 struct msghdr msghdr;
955 struct iovec iov;
956 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +0200957 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +0200958 int sock = -1;
959 int ret = -1;
960 int ret2 = -1;
961 int fd_nb;
962 int got_fd = 0;
963 int i = 0;
964 size_t maxoff = 0, curoff = 0;
965
966 memset(&msghdr, 0, sizeof(msghdr));
967 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
968 if (!cmsgbuf) {
969 Warning("Failed to allocate memory to send sockets\n");
970 goto out;
971 }
972 sock = socket(PF_UNIX, SOCK_STREAM, 0);
973 if (sock < 0) {
974 Warning("Failed to connect to the old process socket '%s'\n",
975 unixsocket);
976 goto out;
977 }
978 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
979 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
980 addr.sun_family = PF_UNIX;
981 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
982 if (ret < 0) {
983 Warning("Failed to connect to the old process socket '%s'\n",
984 unixsocket);
985 goto out;
986 }
Olivier Houchard54740872017-04-06 14:45:14 +0200987 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200988 iov.iov_base = &fd_nb;
989 iov.iov_len = sizeof(fd_nb);
990 msghdr.msg_iov = &iov;
991 msghdr.msg_iovlen = 1;
992 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
993 /* First, get the number of file descriptors to be received */
994 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
995 Warning("Failed to get the number of sockets to be transferred !\n");
996 goto out;
997 }
998 if (fd_nb == 0) {
999 ret = 0;
1000 goto out;
1001 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001002 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001003 if (tmpbuf == NULL) {
1004 Warning("Failed to allocate memory while receiving sockets\n");
1005 goto out;
1006 }
1007 tmpfd = malloc(fd_nb * sizeof(int));
1008 if (tmpfd == NULL) {
1009 Warning("Failed to allocate memory while receiving sockets\n");
1010 goto out;
1011 }
1012 msghdr.msg_control = cmsgbuf;
1013 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001014 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001015 do {
1016 int ret3;
1017
1018 iov.iov_base = tmpbuf + curoff;
1019 ret = recvmsg(sock, &msghdr, 0);
1020 if (ret == -1 && errno == EINTR)
1021 continue;
1022 if (ret <= 0)
1023 break;
1024 /* Send an ack to let the sender know we got the sockets
1025 * and it can send some more
1026 */
1027 do {
1028 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1029 } while (ret3 == -1 && errno == EINTR);
1030 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1031 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1032 if (cmsg->cmsg_level == SOL_SOCKET &&
1033 cmsg->cmsg_type == SCM_RIGHTS) {
1034 size_t totlen = cmsg->cmsg_len -
1035 CMSG_LEN(0);
1036 if (totlen / sizeof(int) + got_fd > fd_nb) {
1037 Warning("Got to many sockets !\n");
1038 goto out;
1039 }
1040 /*
1041 * Be paranoid and use memcpy() to avoid any
1042 * potential alignement issue.
1043 */
1044 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1045 got_fd += totlen / sizeof(int);
1046 }
1047 }
1048 curoff += ret;
1049 } while (got_fd < fd_nb);
1050
1051 if (got_fd != fd_nb) {
1052 Warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1053 fd_nb, got_fd);
1054 goto out;
1055 }
1056 maxoff = curoff;
1057 curoff = 0;
1058 for (i = 0; i < got_fd; i++) {
1059 int fd = tmpfd[i];
1060 socklen_t socklen;
1061 int len;
1062
1063 xfer_sock = calloc(1, sizeof(*xfer_sock));
1064 if (!xfer_sock) {
1065 Warning("Failed to allocate memory in get_old_sockets() !\n");
1066 break;
1067 }
1068 xfer_sock->fd = -1;
1069
1070 socklen = sizeof(xfer_sock->addr);
1071 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
1072 Warning("Failed to get socket address\n");
1073 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001074 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001075 continue;
1076 }
1077 if (curoff >= maxoff) {
1078 Warning("Inconsistency while transferring sockets\n");
1079 goto out;
1080 }
1081 len = tmpbuf[curoff++];
1082 if (len > 0) {
1083 /* We have a namespace */
1084 if (curoff + len > maxoff) {
1085 Warning("Inconsistency while transferring sockets\n");
1086 goto out;
1087 }
1088 xfer_sock->namespace = malloc(len + 1);
1089 if (!xfer_sock->namespace) {
1090 Warning("Failed to allocate memory while transferring sockets\n");
1091 goto out;
1092 }
1093 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1094 xfer_sock->namespace[len] = 0;
1095 curoff += len;
1096 }
1097 if (curoff >= maxoff) {
1098 Warning("Inconsistency while transferring sockets\n");
1099 goto out;
1100 }
1101 len = tmpbuf[curoff++];
1102 if (len > 0) {
1103 /* We have an interface */
1104 if (curoff + len > maxoff) {
1105 Warning("Inconsistency while transferring sockets\n");
1106 goto out;
1107 }
1108 xfer_sock->iface = malloc(len + 1);
1109 if (!xfer_sock->iface) {
1110 Warning("Failed to allocate memory while transferring sockets\n");
1111 goto out;
1112 }
1113 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
1114 xfer_sock->namespace[len] = 0;
1115 curoff += len;
1116 }
1117 if (curoff + sizeof(int) > maxoff) {
1118 Warning("Inconsistency while transferring sockets\n");
1119 goto out;
1120 }
1121 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1122 sizeof(xfer_sock->options));
1123 curoff += sizeof(xfer_sock->options);
1124
1125 xfer_sock->fd = fd;
1126 if (xfer_sock_list)
1127 xfer_sock_list->prev = xfer_sock;
1128 xfer_sock->next = xfer_sock_list;
1129 xfer_sock->prev = NULL;
1130 xfer_sock_list = xfer_sock;
1131 xfer_sock = NULL;
1132 }
1133
1134 ret2 = 0;
1135out:
1136 /* If we failed midway make sure to close the remaining
1137 * file descriptors
1138 */
1139 if (tmpfd != NULL && i < got_fd) {
1140 for (; i < got_fd; i++) {
1141 close(tmpfd[i]);
1142 }
1143 }
1144 free(tmpbuf);
1145 free(tmpfd);
1146 free(cmsgbuf);
1147 if (sock != -1)
1148 close(sock);
1149 if (xfer_sock) {
1150 free(xfer_sock->namespace);
1151 free(xfer_sock->iface);
1152 if (xfer_sock->fd != -1)
1153 close(xfer_sock->fd);
1154 free(xfer_sock);
1155 }
1156 return (ret2);
1157}
1158
Willy Tarreaubaaee002006-06-26 02:48:02 +02001159/*
William Lallemand73b85e72017-06-01 17:38:51 +02001160 * copy and cleanup the current argv
1161 * Remove the -sf /-st parameters
1162 * Return an allocated copy of argv
1163 */
1164
1165static char **copy_argv(int argc, char **argv)
1166{
1167 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001168 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001169
1170 newargv = calloc(argc + 2, sizeof(char *));
1171 if (newargv == NULL) {
1172 Warning("Cannot allocate memory\n");
1173 return NULL;
1174 }
1175
William Lallemand2bf6d622017-06-20 11:20:23 +02001176 while (i < argc) {
1177 /* -sf or -st or -x */
1178 if ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' ) {
1179 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001180 i++;
1181 while (i < argc && argv[i][0] != '-') {
1182 i++;
1183 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001184 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001185 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001186
1187 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001188 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001189
William Lallemand73b85e72017-06-01 17:38:51 +02001190 return newargv;
1191}
1192
1193/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001194 * This function initializes all the necessary variables. It only returns
1195 * if everything is OK. If something fails, it exits.
1196 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001197static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001198{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001199 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001200 char *tmp;
1201 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001202 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001203 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001204 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001205 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001206 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001207 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001208 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001209
Christopher Faulete3a5e352017-10-24 13:53:54 +02001210 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001211 next_argv = copy_argv(argc, argv);
1212
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001213 if (!init_trash_buffers(1)) {
Christopher Faulet748919a2017-07-26 14:59:46 +02001214 Alert("failed to initialize trash buffers.\n");
1215 exit(1);
1216 }
David du Colombier7af46052012-05-16 14:16:48 +02001217
Emeric Brun2b920a12010-09-23 18:30:22 +02001218 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1219 * the string in case of truncation, and at least FreeBSD appears not to do
1220 * it.
1221 */
1222 memset(hostname, 0, sizeof(hostname));
1223 gethostname(hostname, sizeof(hostname) - 1);
1224 memset(localpeer, 0, sizeof(localpeer));
1225 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
1226
Willy Tarreaubaaee002006-06-26 02:48:02 +02001227 /*
1228 * Initialize the previously static variables.
1229 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001230
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001231 totalconn = actconn = maxfd = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001232 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001233
Willy Tarreaubaaee002006-06-26 02:48:02 +02001234
1235#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001236 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001237#endif
1238
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001239 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001240 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001241 start_date = now;
1242
Willy Tarreau84310e22014-02-14 11:59:04 +01001243 srandom(now_ms - getpid());
1244
Dragan Dosen835b9212016-02-12 13:23:03 +01001245 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +02001246 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001247 if (init_acl() != 0)
1248 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001249 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +02001250 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001251 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001252 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +02001253 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001254 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +01001255 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001256
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001257 /* Initialise lua. */
1258 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001259
Christopher Fauletff2613e2016-11-09 11:36:17 +01001260 /* Initialize process vars */
1261 vars_init(&global.vars, SCOPE_PROC);
1262
Willy Tarreau43b78992009-01-25 15:42:27 +01001263 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001264#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001265 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001266#endif
1267#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001268 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001269#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001270#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001271 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001272#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001273#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001274 global.tune.options |= GTUNE_USE_SPLICE;
1275#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001276#if defined(USE_GETADDRINFO)
1277 global.tune.options |= GTUNE_USE_GAI;
1278#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001279#if defined(SO_REUSEPORT)
1280 global.tune.options |= GTUNE_USE_REUSEPORT;
1281#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001282
1283 pid = getpid();
1284 progname = *argv;
1285 while ((tmp = strchr(progname, '/')) != NULL)
1286 progname = tmp + 1;
1287
Kevinm48936af2010-12-22 16:08:21 +00001288 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001289 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001290
Willy Tarreaubaaee002006-06-26 02:48:02 +02001291 argc--; argv++;
1292 while (argc > 0) {
1293 char *flag;
1294
1295 if (**argv == '-') {
1296 flag = *argv+1;
1297
1298 /* 1 arg */
1299 if (*flag == 'v') {
1300 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001301 if (flag[1] == 'v') /* -vv */
1302 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001303 exit(0);
1304 }
1305#if defined(ENABLE_EPOLL)
1306 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001307 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001308#endif
1309#if defined(ENABLE_POLL)
1310 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001311 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001312#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +02001313#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001314 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001315 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001316#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001317#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001318 else if (*flag == 'd' && flag[1] == 'S')
1319 global.tune.options &= ~GTUNE_USE_SPLICE;
1320#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001321#if defined(USE_GETADDRINFO)
1322 else if (*flag == 'd' && flag[1] == 'G')
1323 global.tune.options &= ~GTUNE_USE_GAI;
1324#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001325#if defined(SO_REUSEPORT)
1326 else if (*flag == 'd' && flag[1] == 'R')
1327 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1328#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001329 else if (*flag == 'd' && flag[1] == 'V')
1330 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001331 else if (*flag == 'V')
1332 arg_mode |= MODE_VERBOSE;
1333 else if (*flag == 'd' && flag[1] == 'b')
1334 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001335 else if (*flag == 'd' && flag[1] == 'M')
1336 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001337 else if (*flag == 'd' && flag[1] == 'r')
1338 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339 else if (*flag == 'd')
1340 arg_mode |= MODE_DEBUG;
1341 else if (*flag == 'c')
1342 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001343 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001344 arg_mode |= MODE_DAEMON;
William Lallemand095ba4c2017-06-01 17:38:50 +02001345 else if (*flag == 'W')
1346 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001347 else if (*flag == 'q')
1348 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001349 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001350 if (argc <= 1 || argv[1][0] == '-') {
1351 Alert("Unix socket path expected with the -x flag\n\n");
1352 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001353 }
William Lallemand4fc09692017-06-19 16:37:19 +02001354 if (old_unixsocket)
1355 Warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001356 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001357
Olivier Houchardf73629d2017-04-05 22:33:04 +02001358 argv++;
1359 argc--;
1360 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001361 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1362 /* list of pids to finish ('f') or terminate ('t') */
1363
1364 if (flag[1] == 'f')
1365 oldpids_sig = SIGUSR1; /* finish then exit */
1366 else
1367 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001368 while (argc > 1 && argv[1][0] != '-') {
1369 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1370 if (!oldpids) {
1371 Alert("Cannot allocate old pid : out of memory.\n");
1372 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001373 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001374 argc--; argv++;
1375 oldpids[nb_oldpids] = atol(*argv);
1376 if (oldpids[nb_oldpids] <= 0)
1377 usage(progname);
1378 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001379 }
1380 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001381 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1382 /* now that's a cfgfile list */
1383 argv++; argc--;
1384 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001385 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1386 Alert("Cannot load configuration file/directory %s : %s\n",
1387 *argv,
1388 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001389 exit(1);
1390 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001391 argv++; argc--;
1392 }
1393 break;
1394 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001395 else { /* >=2 args */
1396 argv++; argc--;
1397 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001398 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001399
1400 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001401 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001402 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001403 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001404 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +02001405 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001406 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001407 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1408 Alert("Cannot load configuration file/directory %s : %s\n",
1409 *argv,
1410 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001411 exit(1);
1412 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001413 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001414 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001415 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001416 }
1417 }
1418 }
1419 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001420 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001421 argv++; argc--;
1422 }
1423
Christopher Faulete3a5e352017-10-24 13:53:54 +02001424 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1425 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001426
William Lallemandcb11fd22017-06-01 17:38:52 +02001427 /* Master workers wait mode */
1428 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) {
1429
1430 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
1431 mworker_wait();
1432 }
1433
1434 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1435 atexit_flag = 1;
1436 atexit(reexec_on_failure);
1437 }
1438
Willy Tarreau576132e2011-09-10 19:26:56 +02001439 if (change_dir && chdir(change_dir) < 0) {
1440 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
1441 exit(1);
1442 }
1443
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001444 /* handle cfgfiles that are actualy directories */
1445 cfgfiles_expand_directories();
1446
1447 if (LIST_ISEMPTY(&cfg_cfgfiles))
1448 usage(progname);
1449
Willy Tarreaubaaee002006-06-26 02:48:02 +02001450 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001451
1452 init_default_instance();
1453
Willy Tarreau477ecd82010-01-03 21:12:30 +01001454 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001455 int ret;
1456
Willy Tarreau477ecd82010-01-03 21:12:30 +01001457 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001458 if (ret == -1) {
1459 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +01001460 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001461 exit(1);
1462 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001463 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +01001464 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001465 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001466 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001467 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001468 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001469
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001470 /* do not try to resolve arguments nor to spot inconsistencies when
1471 * the configuration contains fatal errors caused by files not found
1472 * or failed memory allocations.
1473 */
1474 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1475 Alert("Fatal errors found in configuration.\n");
1476 exit(1);
1477 }
1478
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001479 pattern_finalize_config();
1480
Willy Tarreaubb925012009-07-23 13:36:36 +02001481 err_code |= check_config_validity();
1482 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1483 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001484 exit(1);
1485 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001486
Willy Tarreau70060452015-12-14 12:46:07 +01001487 /* recompute the amount of per-process memory depending on nbproc and
1488 * the shared SSL cache size (allowed to exist in all processes).
1489 */
1490 if (global.rlimit_memmax_all) {
1491#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1492 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1493
1494 global.rlimit_memmax =
1495 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1496 ssl_cache_bytes) / global.nbproc +
1497 ssl_cache_bytes + 1048575LL) / 1048576LL;
1498#else
1499 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1500#endif
1501 }
1502
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001503#ifdef CONFIG_HAP_NS
1504 err_code |= netns_init();
1505 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1506 Alert("Failed to initialize namespace support.\n");
1507 exit(1);
1508 }
1509#endif
1510
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001511 /* Apply server states */
1512 apply_server_state();
1513
1514 for (px = proxy; px; px = px->next)
1515 srv_compute_all_admin_states(px);
1516
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001517 /* Apply servers' configured address */
1518 err_code |= srv_init_addr();
1519 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1520 Alert("Failed to initialize server(s) addr.\n");
1521 exit(1);
1522 }
1523
Willy Tarreaubaaee002006-06-26 02:48:02 +02001524 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001525 struct peers *pr;
1526 struct proxy *px;
1527
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001528 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001529 if (pr->peers_fe)
1530 break;
1531
1532 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001533 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001534 break;
1535
1536 if (pr || px) {
1537 /* At least one peer or one listener has been found */
1538 qfprintf(stdout, "Configuration file is valid\n");
1539 exit(0);
1540 }
1541 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1542 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001543 }
1544
Emeric Brunc60def82017-09-27 14:59:38 +02001545 global_listener_queue_task = task_new(MAX_THREADS_MASK);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001546 if (!global_listener_queue_task) {
1547 Alert("Out of memory when initializing global task\n");
1548 exit(1);
1549 }
1550 /* very simple initialization, users will queue the task if needed */
1551 global_listener_queue_task->context = NULL; /* not even a context! */
1552 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001553
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001554 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001555 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001556
Willy Tarreaue6945732016-12-21 19:57:00 +01001557 list_for_each_entry(pcf, &post_check_list, list) {
1558 err_code |= pcf->fct();
1559 if (err_code & (ERR_ABORT|ERR_FATAL))
1560 exit(1);
1561 }
1562
Willy Tarreaubaaee002006-06-26 02:48:02 +02001563 if (cfg_maxconn > 0)
1564 global.maxconn = cfg_maxconn;
1565
1566 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001567 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001568 global.pidfile = strdup(cfg_pidfile);
1569 }
1570
Willy Tarreaud0256482015-01-15 21:45:22 +01001571 /* Now we want to compute the maxconn and possibly maxsslconn values.
1572 * It's a bit tricky. If memmax is not set, maxconn defaults to
1573 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1574 *
1575 * If memmax is set, then it depends on which values are set. If
1576 * maxsslconn is set, we use memmax to determine how many cleartext
1577 * connections may be added, and set maxconn to the sum of the two.
1578 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1579 * the remaining amount of memory between memmax and the cleartext
1580 * connections. If neither are set, then it is considered that all
1581 * connections are SSL-capable, and maxconn is computed based on this,
1582 * then maxsslconn accordingly. We need to know if SSL is used on the
1583 * frontends, backends, or both, because when it's used on both sides,
1584 * we need twice the value for maxsslconn, but we only count the
1585 * handshake once since it is not performed on the two sides at the
1586 * same time (frontend-side is terminated before backend-side begins).
1587 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001588 * ssl_handshake_cost during its initialization. In any case, if
1589 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1590 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001591 */
1592 if (!global.rlimit_memmax) {
1593 if (global.maxconn == 0) {
1594 global.maxconn = DEFAULT_MAXCONN;
1595 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1596 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1597 }
1598 }
1599#ifdef USE_OPENSSL
1600 else if (!global.maxconn && !global.maxsslconn &&
1601 (global.ssl_used_frontend || global.ssl_used_backend)) {
1602 /* memmax is set, compute everything automatically. Here we want
1603 * to ensure that all SSL connections will be served. We take
1604 * care of the number of sides where SSL is used, and consider
1605 * the worst case : SSL used on both sides and doing a handshake
1606 * simultaneously. Note that we can't have more than maxconn
1607 * handshakes at a time by definition, so for the worst case of
1608 * two SSL conns per connection, we count a single handshake.
1609 */
1610 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1611 int64_t mem = global.rlimit_memmax * 1048576ULL;
1612
1613 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1614 mem -= global.maxzlibmem;
1615 mem = mem * MEM_USABLE_RATIO;
1616
1617 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001618 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001619 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1620 global.ssl_handshake_max_cost); // 1 handshake per connection max
1621
1622 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001623#ifdef SYSTEM_MAXCONN
1624 if (global.maxconn > DEFAULT_MAXCONN)
1625 global.maxconn = DEFAULT_MAXCONN;
1626#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001627 global.maxsslconn = sides * global.maxconn;
1628 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1629 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1630 global.maxconn, global.maxsslconn);
1631 }
1632 else if (!global.maxsslconn &&
1633 (global.ssl_used_frontend || global.ssl_used_backend)) {
1634 /* memmax and maxconn are known, compute maxsslconn automatically.
1635 * maxsslconn being forced, we don't know how many of it will be
1636 * on each side if both sides are being used. The worst case is
1637 * when all connections use only one SSL instance because
1638 * handshakes may be on two sides at the same time.
1639 */
1640 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1641 int64_t mem = global.rlimit_memmax * 1048576ULL;
1642 int64_t sslmem;
1643
1644 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1645 mem -= global.maxzlibmem;
1646 mem = mem * MEM_USABLE_RATIO;
1647
Willy Tarreau87b09662015-04-03 00:22:06 +02001648 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001649 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1650 global.maxsslconn = round_2dig(global.maxsslconn);
1651
1652 if (sslmem <= 0 || global.maxsslconn < sides) {
1653 Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1654 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1655 "without SSL is %d, but %d was found and SSL is in use.\n",
1656 global.rlimit_memmax,
Willy Tarreau87b09662015-04-03 00:22:06 +02001657 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
Willy Tarreaud0256482015-01-15 21:45:22 +01001658 global.maxconn);
1659 exit(1);
1660 }
1661
1662 if (global.maxsslconn > sides * global.maxconn)
1663 global.maxsslconn = sides * global.maxconn;
1664
1665 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1666 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1667 }
1668#endif
1669 else if (!global.maxconn) {
1670 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1671 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1672 int64_t mem = global.rlimit_memmax * 1048576ULL;
1673 int64_t clearmem;
1674
1675 if (global.ssl_used_frontend || global.ssl_used_backend)
1676 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1677
1678 mem -= global.maxzlibmem;
1679 mem = mem * MEM_USABLE_RATIO;
1680
1681 clearmem = mem;
1682 if (sides)
1683 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1684
Willy Tarreau87b09662015-04-03 00:22:06 +02001685 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001686 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001687#ifdef SYSTEM_MAXCONN
1688 if (global.maxconn > DEFAULT_MAXCONN)
1689 global.maxconn = DEFAULT_MAXCONN;
1690#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001691
1692 if (clearmem <= 0 || !global.maxconn) {
1693 Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1694 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1695 "is %d, but %d was found.\n",
1696 global.rlimit_memmax,
1697 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1698 global.maxsslconn);
1699 exit(1);
1700 }
1701
1702 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1703 if (sides && global.maxsslconn > sides * global.maxconn) {
1704 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1705 "to be limited to %d. Better reduce global.maxsslconn to get more "
1706 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1707 }
1708 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1709 }
1710 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001711
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001712 if (!global.maxpipes) {
1713 /* maxpipes not specified. Count how many frontends and backends
1714 * may be using splicing, and bound that to maxconn.
1715 */
1716 struct proxy *cur;
1717 int nbfe = 0, nbbe = 0;
1718
1719 for (cur = proxy; cur; cur = cur->next) {
1720 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1721 if (cur->cap & PR_CAP_FE)
1722 nbfe += cur->maxconn;
1723 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001724 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001725 }
1726 }
1727 global.maxpipes = MAX(nbfe, nbbe);
1728 if (global.maxpipes > global.maxconn)
1729 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001730 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001731 }
1732
1733
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001734 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001735 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001736 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001737
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001738 if (global.stats_fe)
1739 global.maxsock += global.stats_fe->maxconn;
1740
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001741 if (cfg_peers) {
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001742 /* peers also need to bypass global maxconn */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001743 struct peers *p = cfg_peers;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001744
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001745 for (p = cfg_peers; p; p = p->next)
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001746 if (p->peers_fe)
1747 global.maxsock += p->peers_fe->maxconn;
1748 }
1749
Willy Tarreau1db37712007-06-03 17:16:49 +02001750 if (global.tune.maxpollevents <= 0)
1751 global.tune.maxpollevents = MAX_POLL_EVENTS;
1752
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001753 if (global.tune.recv_enough == 0)
1754 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1755
Willy Tarreau27097842015-09-28 13:53:23 +02001756 if (global.tune.maxrewrite < 0)
1757 global.tune.maxrewrite = MAXREWRITE;
1758
Willy Tarreau27a674e2009-08-17 07:23:33 +02001759 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1760 global.tune.maxrewrite = global.tune.bufsize / 2;
1761
Willy Tarreaubaaee002006-06-26 02:48:02 +02001762 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1763 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02001764 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001765 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1766 }
1767
William Lallemand095ba4c2017-06-01 17:38:50 +02001768 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001769 /* command line daemon mode inhibits foreground and debug modes mode */
1770 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02001771 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001772 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001773
1774 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001775
William Lallemand095ba4c2017-06-01 17:38:50 +02001776 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
1777 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
1778 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001779 }
1780
William Lallemand095ba4c2017-06-01 17:38:50 +02001781 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001782 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
William Lallemandcc113822017-11-06 11:00:02 +01001783 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 +02001784 global.nbproc = 1;
1785 }
1786
1787 if (global.nbproc < 1)
1788 global.nbproc = 1;
1789
Christopher Fauletbe0faa22017-08-29 15:37:10 +02001790 if (global.nbthread < 1)
1791 global.nbthread = 1;
1792
Christopher Faulet3ef26392017-08-29 16:46:57 +02001793 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001794 if (!init_trash_buffers(0)) {
Christopher Faulet3ef26392017-08-29 16:46:57 +02001795 Alert("failed to initialize trash buffers.\n");
1796 exit(1);
1797 }
1798
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001799 /*
1800 * Note: we could register external pollers here.
1801 * Built-in pollers have been registered before main().
1802 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001803
Willy Tarreau43b78992009-01-25 15:42:27 +01001804 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001805 disable_poller("kqueue");
1806
Willy Tarreau43b78992009-01-25 15:42:27 +01001807 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001808 disable_poller("epoll");
1809
Willy Tarreau43b78992009-01-25 15:42:27 +01001810 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001811 disable_poller("poll");
1812
Willy Tarreau43b78992009-01-25 15:42:27 +01001813 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001814 disable_poller("select");
1815
1816 /* Note: we could disable any poller by name here */
1817
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001818 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001819 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001820 fprintf(stderr, "\n");
1821 list_filters(stderr);
1822 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001823
Willy Tarreau4f60f162007-04-08 16:39:58 +02001824 if (!init_pollers()) {
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001825 Alert("No polling mechanism available.\n"
1826 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1827 " is too low on this platform to support maxconn and the number of listeners\n"
1828 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1829 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
Prach Pongpanichb837e682013-05-14 20:56:28 +02001830 " global maxconn setting to accommodate the system's limitation. For reference,\n"
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001831 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1832 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1833 " check build settings using 'haproxy -vv'.\n\n",
1834 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001835 exit(1);
1836 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001837 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1838 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001839 }
1840
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001841 if (!global.node)
1842 global.node = strdup(hostname);
1843
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001844 if (!hlua_post_init())
1845 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001846
Maxime de Roucy0f503922016-05-13 23:52:55 +02001847 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001848}
1849
Simon Horman6fb82592011-07-15 13:14:11 +09001850static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001851{
Simon Hormanac821422011-07-15 13:14:09 +09001852 struct acl_term_suite *suite, *suiteb;
1853 struct acl_term *term, *termb;
1854
Simon Horman6fb82592011-07-15 13:14:11 +09001855 if (!cond)
1856 return;
1857
1858 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1859 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1860 LIST_DEL(&term->list);
1861 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001862 }
Simon Horman6fb82592011-07-15 13:14:11 +09001863 LIST_DEL(&suite->list);
1864 free(suite);
1865 }
1866
1867 free(cond);
1868}
1869
1870static void deinit_tcp_rules(struct list *rules)
1871{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001872 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001873
1874 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001875 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001876 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001877 free(trule);
1878 }
1879}
1880
Simon Horman6fb82592011-07-15 13:14:11 +09001881static void deinit_stick_rules(struct list *rules)
1882{
1883 struct sticking_rule *rule, *ruleb;
1884
1885 list_for_each_entry_safe(rule, ruleb, rules, list) {
1886 LIST_DEL(&rule->list);
1887 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001888 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001889 free(rule);
1890 }
1891}
1892
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001893void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001894{
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001895 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001896 struct cap_hdr *h,*h_next;
1897 struct server *s,*s_next;
1898 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001899 struct acl_cond *cond, *condb;
1900 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001901 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001902 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001903 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001904 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001905 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01001906 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001907 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02001908 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01001909 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001910 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001911 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01001912 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001913 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001914
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001915 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001916 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02001917 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001918 free(p->id);
1919 free(p->check_req);
1920 free(p->cookie_name);
1921 free(p->cookie_domain);
1922 free(p->url_param_name);
1923 free(p->capture_name);
1924 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09001925 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02001926 if (p->conf.logformat_string != default_http_log_format &&
1927 p->conf.logformat_string != default_tcp_log_format &&
1928 p->conf.logformat_string != clf_http_log_format)
1929 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02001930
Willy Tarreau62a61232013-04-12 18:13:46 +02001931 free(p->conf.lfs_file);
1932 free(p->conf.uniqueid_format_string);
1933 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08001934 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001935
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001936 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1937 free(p->conf.logformat_sd_string);
1938 free(p->conf.lfsd_file);
1939
Willy Tarreaua534fea2008-08-03 12:19:50 +02001940 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001941 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001942
Willy Tarreauf4f04122010-01-28 18:10:50 +01001943 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
1944 LIST_DEL(&cwl->list);
1945 free(cwl->s);
1946 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001947 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001948
Willy Tarreauf4f04122010-01-28 18:10:50 +01001949 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
1950 LIST_DEL(&cwl->list);
1951 free(cwl->s);
1952 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001953 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001954
Willy Tarreaub80c2302007-11-30 20:51:32 +01001955 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
1956 LIST_DEL(&cond->list);
1957 prune_acl_cond(cond);
1958 free(cond);
1959 }
1960
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001961 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001962 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001963 regex_free(exp->preg);
1964 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001965 }
1966
Willy Tarreau98d04852015-05-26 12:18:29 +02001967 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001968 expb = exp;
1969 exp = exp->next;
1970 free(expb);
1971 }
1972
1973 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001974 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001975 regex_free(exp->preg);
1976 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001977 }
1978
Willy Tarreau98d04852015-05-26 12:18:29 +02001979 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001980 expb = exp;
1981 exp = exp->next;
1982 free(expb);
1983 }
1984
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001985 /* build a list of unique uri_auths */
1986 if (!ua)
1987 ua = p->uri_auth;
1988 else {
1989 /* check if p->uri_auth is unique */
1990 for (uap = ua; uap; uap=uap->next)
1991 if (uap == p->uri_auth)
1992 break;
1993
Willy Tarreauaccc4e12008-06-24 11:14:45 +02001994 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001995 /* add it, if it is */
1996 p->uri_auth->next = ua;
1997 ua = p->uri_auth;
1998 }
1999 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002000
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002001 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2002 LIST_DEL(&acl->list);
2003 prune_acl(acl);
2004 free(acl);
2005 }
2006
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002007 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2008 LIST_DEL(&srule->list);
2009 prune_acl_cond(srule->cond);
2010 free(srule->cond);
2011 free(srule);
2012 }
2013
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002014 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2015 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002016 if (rule->cond) {
2017 prune_acl_cond(rule->cond);
2018 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002019 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002020 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002021 free(rule);
2022 }
2023
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002024 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2025 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002026 if (rdr->cond) {
2027 prune_acl_cond(rdr->cond);
2028 free(rdr->cond);
2029 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002030 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002031 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2032 LIST_DEL(&lf->list);
2033 free(lf);
2034 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002035 free(rdr);
2036 }
2037
William Lallemand0f99e342011-10-12 17:50:54 +02002038 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2039 LIST_DEL(&log->list);
2040 free(log);
2041 }
2042
William Lallemand723b73a2012-02-08 16:37:49 +01002043 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2044 LIST_DEL(&lf->list);
2045 free(lf);
2046 }
2047
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002048 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2049 LIST_DEL(&lf->list);
2050 free(lf);
2051 }
2052
Simon Hormanac821422011-07-15 13:14:09 +09002053 deinit_tcp_rules(&p->tcp_req.inspect_rules);
2054 deinit_tcp_rules(&p->tcp_req.l4_rules);
2055
Simon Horman6fb82592011-07-15 13:14:11 +09002056 deinit_stick_rules(&p->storersp_rules);
2057 deinit_stick_rules(&p->sticking_rules);
2058
Willy Tarreaubaaee002006-06-26 02:48:02 +02002059 h = p->req_cap;
2060 while (h) {
2061 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002062 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002063 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002064 free(h);
2065 h = h_next;
2066 }/* end while(h) */
2067
2068 h = p->rsp_cap;
2069 while (h) {
2070 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002071 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002072 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002073 free(h);
2074 h = h_next;
2075 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002076
Willy Tarreaubaaee002006-06-26 02:48:02 +02002077 s = p->srv;
2078 while (s) {
2079 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002080
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002081 if (s->check.task) {
2082 task_delete(s->check.task);
2083 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002084 }
Simon Hormand60d6912013-11-25 10:46:36 +09002085 if (s->agent.task) {
2086 task_delete(s->agent.task);
2087 task_free(s->agent.task);
2088 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002089
Willy Tarreau2e993902011-10-31 11:53:20 +01002090 if (s->warmup) {
2091 task_delete(s->warmup);
2092 task_free(s->warmup);
2093 }
2094
Willy Tarreaua534fea2008-08-03 12:19:50 +02002095 free(s->id);
2096 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002097 free(s->check.bi);
2098 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09002099 free(s->agent.bi);
2100 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07002101 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002102 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002103 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01002104
2105 if (s->use_ssl || s->check.use_ssl) {
2106 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2107 xprt_get(XPRT_SSL)->destroy_srv(s);
2108 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002109 HA_SPIN_DESTROY(&s->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002110 free(s);
2111 s = s_next;
2112 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002113
Willy Tarreau4348fad2012-09-20 16:48:07 +02002114 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002115 /*
2116 * Zombie proxy, the listener just pretend to be up
2117 * because they still hold an opened fd.
2118 * Close it and give the listener its real state.
2119 */
2120 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2121 close(l->fd);
2122 l->state = LI_INIT;
2123 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002124 unbind_listener(l);
2125 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002126 LIST_DEL(&l->by_fe);
2127 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002128 free(l->name);
2129 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002130 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002131 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002132
Willy Tarreau4348fad2012-09-20 16:48:07 +02002133 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002134 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002135 if (bind_conf->xprt->destroy_bind_conf)
2136 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002137 free(bind_conf->file);
2138 free(bind_conf->arg);
2139 LIST_DEL(&bind_conf->by_fe);
2140 free(bind_conf);
2141 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002142
Christopher Fauletd7c91962015-04-30 11:48:27 +02002143 flt_deinit(p);
2144
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002145 free(p->desc);
2146 free(p->fwdfor_hdr_name);
2147
Willy Tarreauff011f22011-01-06 17:51:27 +01002148 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002149 free_http_res_rules(&p->http_res_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02002150 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002151
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002152 pool_destroy2(p->req_cap_pool);
2153 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09002154 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002155
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002156 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002157 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002158 HA_SPIN_DESTROY(&p0->lbprm.lock);
2159 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002160 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002161 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002162
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002163 while (ua) {
2164 uap = ua;
2165 ua = ua->next;
2166
Willy Tarreaua534fea2008-08-03 12:19:50 +02002167 free(uap->uri_prefix);
2168 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002169 free(uap->node);
2170 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002171
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002172 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002173 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002174
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002175 free(uap);
2176 }
2177
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002178 userlist_free(userlist);
2179
David Carlier834cb2e2015-09-25 12:02:25 +01002180 cfg_unregister_sections();
2181
Christopher Faulet0132d062017-07-26 15:33:35 +02002182 deinit_log_buffers();
Christopher Faulet748919a2017-07-26 14:59:46 +02002183 deinit_trash_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002184
Willy Tarreaudd815982007-10-16 12:25:14 +02002185 protocol_unbind_all();
2186
Willy Tarreau05554e62016-12-21 20:46:26 +01002187 list_for_each_entry(pdf, &post_deinit_list, list)
2188 pdf->fct();
2189
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002190 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002191 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002192 free(global.chroot); global.chroot = NULL;
2193 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002194 free(global.node); global.node = NULL;
2195 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002196 free(oldpids); oldpids = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002197 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002198
William Lallemand0f99e342011-10-12 17:50:54 +02002199 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2200 LIST_DEL(&log->list);
2201 free(log);
2202 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002203 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002204 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002205 LIST_DEL(&wl->list);
2206 free(wl);
2207 }
2208
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002209 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2210 if (bol->must_free)
2211 free((void *)bol->str);
2212 LIST_DEL(&bol->list);
2213 free(bol);
2214 }
2215
Christopher Fauletff2613e2016-11-09 11:36:17 +01002216 vars_prune(&global.vars, NULL, NULL);
2217
Christopher Fauletad405f12017-08-29 15:30:11 +02002218 deinit_buffer();
2219
Willy Tarreau87b09662015-04-03 00:22:06 +02002220 pool_destroy2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +02002221 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002222 pool_destroy2(pool2_connection);
Olivier Houcharde2b40b92017-09-13 18:30:23 +02002223 pool_destroy2(pool2_connstream);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02002224 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02002225 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02002226 pool_destroy2(pool2_capture);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02002227 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002228 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02002229 pool_destroy2(pool2_hdr_idx);
Willy Tarreau63986c72015-04-03 22:55:33 +02002230 pool_destroy2(pool2_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002231 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002232} /* end deinit() */
2233
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002234void mworker_pipe_handler(int fd)
2235{
2236 char c;
2237
2238 while (read(fd, &c, 1) == -1) {
2239 if (errno == EINTR)
2240 continue;
2241 if (errno == EAGAIN) {
2242 fd_cant_recv(fd);
2243 return;
2244 }
2245 break;
2246 }
2247
2248 deinit();
2249 exit(EXIT_FAILURE);
2250 return;
2251}
2252
2253void mworker_pipe_register(int pipefd[2])
2254{
2255 close(mworker_pipe[1]); /* close the write end of the master pipe in the children */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002256
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002257 fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK);
2258 fdtab[mworker_pipe[0]].owner = mworker_pipe;
2259 fdtab[mworker_pipe[0]].iocb = mworker_pipe_handler;
Christopher Faulet36716a72017-05-30 11:07:16 +02002260 fd_insert(mworker_pipe[0], MAX_THREADS_MASK);
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002261 fd_want_recv(mworker_pipe[0]);
2262}
Christopher Fauletdc628a32017-10-19 11:59:44 +02002263
2264static void sync_poll_loop()
2265{
2266 if (THREAD_NO_SYNC())
2267 return;
2268
2269 THREAD_ENTER_SYNC();
2270
2271 if (!THREAD_NEED_SYNC())
2272 goto exit;
2273
2274 /* *** { */
2275 /* Put here all sync functions */
2276
Christopher Faulet5d42e092017-10-16 12:00:40 +02002277 servers_update_status(); /* Commit server status changes */
Christopher Fauletdc628a32017-10-19 11:59:44 +02002278
2279 /* *** } */
2280 exit:
2281 THREAD_EXIT_SYNC();
2282}
2283
Willy Tarreau918ff602011-07-25 16:33:49 +02002284/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002285static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002286{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002287 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002288
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002289 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002290 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002291 /* Process a few tasks */
2292 process_runnable_tasks();
2293
Willy Tarreau29857942009-05-10 09:01:21 +02002294 /* check if we caught some signals and process them */
2295 signal_process_queue();
2296
Willy Tarreau58b458d2008-06-29 22:40:23 +02002297 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002298 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002299
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002300 /* stop when there's nothing left to do */
2301 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02002302 break;
2303
Willy Tarreau10146c92015-04-13 20:44:19 +02002304 /* expire immediately if events are pending */
Christopher Faulet34c5cc92016-12-06 09:15:30 +01002305 if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue)
Willy Tarreau10146c92015-04-13 20:44:19 +02002306 next = now_ms;
2307
Willy Tarreau58b458d2008-06-29 22:40:23 +02002308 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002309 cur_poller.poll(&cur_poller, next);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002310 fd_process_cached_events();
Willy Tarreau3c595ac2015-04-19 09:59:31 +02002311 applet_run_active();
Emeric Brun64cc49c2017-10-03 14:46:45 +02002312
Christopher Fauletdc628a32017-10-19 11:59:44 +02002313
2314 /* Synchronize all polling loops */
2315 sync_poll_loop();
2316
Willy Tarreau4f60f162007-04-08 16:39:58 +02002317 }
2318}
2319
Christopher Faulet1d17c102017-08-29 15:38:48 +02002320static void *run_thread_poll_loop(void *data)
2321{
2322 struct per_thread_init_fct *ptif;
2323 struct per_thread_deinit_fct *ptdf;
2324
2325 tid = *((unsigned int *)data);
2326 tid_bit = (1UL << tid);
2327 tv_update_date(-1,-1);
2328
2329 list_for_each_entry(ptif, &per_thread_init_list, list) {
2330 if (!ptif->fct()) {
2331 Alert("failed to initialize thread %u.\n", tid);
2332 exit(1);
2333 }
2334 }
2335
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002336 if (global.mode & MODE_MWORKER)
2337 mworker_pipe_register(mworker_pipe);
2338
2339 protocol_enable_all();
Christopher Fauletdc628a32017-10-19 11:59:44 +02002340 THREAD_SYNC_ENABLE();
Christopher Faulet1d17c102017-08-29 15:38:48 +02002341 run_poll_loop();
2342
2343 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2344 ptdf->fct();
2345
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002346#ifdef USE_THREAD
2347 if (tid > 0)
2348 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002349#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002350 return NULL;
2351}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002352
Willy Tarreaue9b26022011-08-01 20:57:55 +02002353/* This is the global management task for listeners. It enables listeners waiting
2354 * for global resources when there are enough free resource, or at least once in
2355 * a while. It is designed to be called as a task.
2356 */
2357static struct task *manage_global_listener_queue(struct task *t)
2358{
2359 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002360 /* queue is empty, nothing to do */
2361 if (LIST_ISEMPTY(&global_listener_queue))
2362 goto out;
2363
2364 /* If there are still too many concurrent connections, let's wait for
2365 * some of them to go away. We don't need to re-arm the timer because
2366 * each of them will scan the queue anyway.
2367 */
2368 if (unlikely(actconn >= global.maxconn))
2369 goto out;
2370
2371 /* We should periodically try to enable listeners waiting for a global
2372 * resource here, because it is possible, though very unlikely, that
2373 * they have been blocked by a temporary lack of global resource such
2374 * as a file descriptor or memory and that the temporary condition has
2375 * disappeared.
2376 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002377 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002378
2379 out:
2380 t->expire = next;
2381 task_queue(t);
2382 return t;
2383}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002384
Willy Tarreaubaaee002006-06-26 02:48:02 +02002385int main(int argc, char **argv)
2386{
2387 int err, retry;
2388 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002389 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002390 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002391
Emeric Bruncf20bf12010-10-22 16:06:11 +02002392 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002393 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2394 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2395 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002396 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002397
Willy Tarreaue437c442010-03-17 18:02:46 +01002398 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2399 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2400 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002401 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002402 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002403
Willy Tarreaudc23a922011-02-16 11:10:36 +01002404 /* ulimits */
2405 if (!global.rlimit_nofile)
2406 global.rlimit_nofile = global.maxsock;
2407
2408 if (global.rlimit_nofile) {
2409 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
2410 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002411 /* try to set it to the max possible at least */
2412 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002413 limit.rlim_cur = limit.rlim_max;
2414 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2415 getrlimit(RLIMIT_NOFILE, &limit);
2416
Willy Tarreauef635472016-06-21 11:48:18 +02002417 Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2418 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002419 }
2420 }
2421
2422 if (global.rlimit_memmax) {
2423 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002424 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002425#ifdef RLIMIT_AS
2426 if (setrlimit(RLIMIT_AS, &limit) == -1) {
2427 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2428 argv[0], global.rlimit_memmax);
2429 }
2430#else
2431 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
2432 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2433 argv[0], global.rlimit_memmax);
2434 }
2435#endif
2436 }
2437
Olivier Houchardf73629d2017-04-05 22:33:04 +02002438 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002439 if (strcmp("/dev/null", old_unixsocket) != 0) {
2440 if (get_old_sockets(old_unixsocket) != 0) {
2441 Alert("Failed to get the sockets from the old process!\n");
2442 if (!(global.mode & MODE_MWORKER))
2443 exit(1);
2444 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002445 }
2446 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002447 get_cur_unixsocket();
2448
Willy Tarreaubaaee002006-06-26 02:48:02 +02002449 /* We will loop at most 100 times with 10 ms delay each time.
2450 * That's at most 1 second. We only send a signal to old pids
2451 * if we cannot grab at least one port.
2452 */
2453 retry = MAX_START_RETRIES;
2454 err = ERR_NONE;
2455 while (retry >= 0) {
2456 struct timeval w;
2457 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002458 /* exit the loop on no error or fatal error */
2459 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002460 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002461 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002462 break;
2463
2464 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2465 * listening sockets. So on those platforms, it would be wiser to
2466 * simply send SIGUSR1, which will not be undoable.
2467 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002468 if (tell_old_pids(SIGTTOU) == 0) {
2469 /* no need to wait if we can't contact old pids */
2470 retry = 0;
2471 continue;
2472 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002473 /* give some time to old processes to stop listening */
2474 w.tv_sec = 0;
2475 w.tv_usec = 10*1000;
2476 select(0, NULL, NULL, NULL, &w);
2477 retry--;
2478 }
2479
2480 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002481 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002482 if (retry != MAX_START_RETRIES && nb_oldpids) {
2483 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002484 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002485 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002486 exit(1);
2487 }
2488
2489 if (listeners == 0) {
Willy Tarreauf2ee0162015-08-09 11:01:51 +02002490 Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002491 /* Note: we don't have to send anything to the old pids because we
2492 * never stopped them. */
2493 exit(1);
2494 }
2495
Emeric Bruncf20bf12010-10-22 16:06:11 +02002496 err = protocol_bind_all(errmsg, sizeof(errmsg));
2497 if ((err & ~ERR_WARN) != ERR_NONE) {
2498 if ((err & ERR_ALERT) || (err & ERR_WARN))
2499 Alert("[%s.main()] %s.\n", argv[0], errmsg);
2500
Willy Tarreaudd815982007-10-16 12:25:14 +02002501 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
2502 protocol_unbind_all(); /* cleanup everything we can */
2503 if (nb_oldpids)
2504 tell_old_pids(SIGTTIN);
2505 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002506 } else if (err & ERR_WARN) {
2507 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002508 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002509 /* Ok, all listener should now be bound, close any leftover sockets
2510 * the previous process gave us, we don't need them anymore
2511 */
2512 while (xfer_sock_list != NULL) {
2513 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2514 close(xfer_sock_list->fd);
2515 free(xfer_sock_list->iface);
2516 free(xfer_sock_list->namespace);
2517 free(xfer_sock_list);
2518 xfer_sock_list = tmpxfer;
2519 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002520
Willy Tarreaubaaee002006-06-26 02:48:02 +02002521 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002522 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2523 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002524
Willy Tarreaubaaee002006-06-26 02:48:02 +02002525 /* MODE_QUIET can inhibit alerts and warnings below this line */
2526
Willy Tarreaubaaee002006-06-26 02:48:02 +02002527 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2528 /* detach from the tty */
2529 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002530 }
2531
2532 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01002533 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002534 unlink(global.pidfile);
2535 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2536 if (pidfd < 0) {
2537 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
2538 if (nb_oldpids)
2539 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002540 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002541 exit(1);
2542 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002543 }
2544
Willy Tarreaub38651a2007-03-24 17:24:39 +01002545 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
2546 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002547 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002548 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002549 exit(1);
2550 }
2551
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002552 /* If the user is not root, we'll still let him try the configuration
2553 * but we inform him that unexpected behaviour may occur.
2554 */
2555 if ((global.last_checks & LSTCHK_NETADM) && getuid())
2556 Warning("[%s.main()] Some options which require full privileges"
2557 " might not work well.\n"
2558 "", argv[0]);
2559
William Lallemand095ba4c2017-06-01 17:38:50 +02002560 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2561
2562 /* chroot if needed */
2563 if (global.chroot != NULL) {
2564 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2565 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
2566 if (nb_oldpids)
2567 tell_old_pids(SIGTTIN);
2568 protocol_unbind_all();
2569 exit(1);
2570 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002571 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002572 }
2573
Willy Tarreaubaaee002006-06-26 02:48:02 +02002574 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002575 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002576
William Lallemand8a361b52017-06-20 11:20:33 +02002577 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2578 nb_oldpids = 0;
2579 free(oldpids);
2580 oldpids = NULL;
2581 }
2582
2583
Willy Tarreaubaaee002006-06-26 02:48:02 +02002584 /* Note that any error at this stage will be fatal because we will not
2585 * be able to restart the old pids.
2586 */
2587
William Lallemand095ba4c2017-06-01 17:38:50 +02002588 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2589 /* setgid / setuid */
2590 if (global.gid) {
2591 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2592 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2593 " without 'uid'/'user' is generally useless.\n", argv[0]);
2594
2595 if (setgid(global.gid) == -1) {
2596 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2597 protocol_unbind_all();
2598 exit(1);
2599 }
2600 }
Michael Schererab012dd2013-01-12 18:35:19 +01002601
William Lallemand095ba4c2017-06-01 17:38:50 +02002602 if (global.uid && setuid(global.uid) == -1) {
2603 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002604 protocol_unbind_all();
2605 exit(1);
2606 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002607 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002608 /* check ulimits */
2609 limit.rlim_cur = limit.rlim_max = 0;
2610 getrlimit(RLIMIT_NOFILE, &limit);
2611 if (limit.rlim_cur < global.maxsock) {
2612 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 +02002613 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002614 }
2615
William Lallemand095ba4c2017-06-01 17:38:50 +02002616 if (global.mode & (MODE_DAEMON | MODE_MWORKER)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002617 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002618 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002619 int ret = 0;
2620 int proc;
2621
William Lallemand73b85e72017-06-01 17:38:51 +02002622 children = calloc(global.nbproc, sizeof(int));
William Lallemand095ba4c2017-06-01 17:38:50 +02002623 /*
2624 * if daemon + mworker: must fork here to let a master
2625 * process live in background before forking children
2626 */
William Lallemand73b85e72017-06-01 17:38:51 +02002627
2628 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2629 && (global.mode & MODE_MWORKER)
2630 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002631 ret = fork();
2632 if (ret < 0) {
2633 Alert("[%s.main()] Cannot fork.\n", argv[0]);
2634 protocol_unbind_all();
2635 exit(1); /* there has been an error */
2636 }
2637 /* parent leave to daemonize */
2638 if (ret > 0)
2639 exit(0);
2640 }
William Lallemande20b6a62017-06-01 17:38:55 +02002641
2642 if (global.mode & MODE_MWORKER) {
2643 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2644 char *msg = NULL;
2645 /* master pipe to ensure the master is still alive */
2646 ret = pipe(mworker_pipe);
2647 if (ret < 0) {
2648 Warning("[%s.main()] Cannot create master pipe.\n", argv[0]);
2649 } else {
2650 memprintf(&msg, "%d", mworker_pipe[0]);
2651 setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1);
2652 memprintf(&msg, "%d", mworker_pipe[1]);
2653 setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1);
2654 free(msg);
2655 }
2656 } else {
2657 mworker_pipe[0] = atol(getenv("HAPROXY_MWORKER_PIPE_RD"));
2658 mworker_pipe[1] = atol(getenv("HAPROXY_MWORKER_PIPE_WR"));
2659 if (mworker_pipe[0] <= 0 || mworker_pipe[1] <= 0) {
2660 Warning("[%s.main()] Cannot get master pipe FDs.\n", argv[0]);
2661 }
2662 }
2663 }
2664
William Lallemanddeed7802017-11-06 11:00:04 +01002665 /* if in master-worker mode, write the PID of the father */
2666 if (global.mode & MODE_MWORKER) {
2667 char pidstr[100];
2668 snprintf(pidstr, sizeof(pidstr), "%d\n", getpid());
2669 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
2670 }
2671
Willy Tarreaubaaee002006-06-26 02:48:02 +02002672 /* the father launches the required number of processes */
2673 for (proc = 0; proc < global.nbproc; proc++) {
2674 ret = fork();
2675 if (ret < 0) {
2676 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002677 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002678 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002679 }
2680 else if (ret == 0) /* child breaks here */
2681 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002682 children[proc] = ret;
William Lallemand92159b22017-11-06 11:16:12 +01002683 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
Willy Tarreau269ab312012-09-05 08:02:48 +02002684 char pidstr[100];
2685 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002686 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002687 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002688 relative_pid++; /* each child will get a different one */
Willy Tarreau387bd4f2017-11-10 19:08:14 +01002689 pid_bit <<= 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002690 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002691
2692#ifdef USE_CPU_AFFINITY
2693 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002694 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002695 global.cpu_map[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002696#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02002697 {
2698 cpuset_t cpuset;
2699 int i;
2700 unsigned long cpu_map = global.cpu_map[proc];
2701
2702 CPU_ZERO(&cpuset);
2703 while ((i = ffsl(cpu_map)) > 0) {
2704 CPU_SET(i - 1, &cpuset);
2705 cpu_map &= ~(1 << (i - 1));
2706 }
2707 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
2708 }
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002709#else
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002710 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2711#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002712#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002713 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002714 if (pidfd >= 0) {
2715 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2716 close(pidfd);
2717 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002718
2719 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02002720 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002721
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002722 if (proc == global.nbproc) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002723 if (global.mode & MODE_MWORKER) {
William Lallemand75ea0a02017-11-15 19:02:58 +01002724 mworker_cleanlisteners();
2725 deinit_pollers();
William Lallemand73b85e72017-06-01 17:38:51 +02002726 mworker_wait();
William Lallemand1499b9b2017-06-07 15:04:47 +02002727 /* should never get there */
2728 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002729 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002730#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002731 ssl_free_dh();
2732#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002733 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002734 }
2735
William Lallemandcb11fd22017-06-01 17:38:52 +02002736 /* child must never use the atexit function */
2737 atexit_flag = 0;
2738
William Lallemand095ba4c2017-06-01 17:38:50 +02002739 /* Must chroot and setgid/setuid in the children */
2740 /* chroot if needed */
2741 if (global.chroot != NULL) {
2742 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2743 Alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
2744 if (nb_oldpids)
2745 tell_old_pids(SIGTTIN);
2746 protocol_unbind_all();
2747 exit(1);
2748 }
2749 }
2750
2751 free(global.chroot);
2752 global.chroot = NULL;
2753
2754 /* setgid / setuid */
2755 if (global.gid) {
2756 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2757 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2758 " without 'uid'/'user' is generally useless.\n", argv[0]);
2759
2760 if (setgid(global.gid) == -1) {
2761 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2762 protocol_unbind_all();
2763 exit(1);
2764 }
2765 }
2766
2767 if (global.uid && setuid(global.uid) == -1) {
2768 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
2769 protocol_unbind_all();
2770 exit(1);
2771 }
2772
William Lallemand7f80eb22017-05-26 18:19:55 +02002773 /* pass through every cli socket, and check if it's bound to
2774 * the current process and if it exposes listeners sockets.
2775 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
2776 * */
2777
2778 if (global.stats_fe) {
2779 struct bind_conf *bind_conf;
2780
2781 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
2782 if (bind_conf->level & ACCESS_FD_LISTENERS) {
2783 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
2784 global.tune.options |= GTUNE_SOCKET_TRANSFER;
2785 break;
2786 }
2787 }
2788 }
2789 }
2790
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002791 /* we might have to unbind some proxies from some processes */
2792 px = proxy;
2793 while (px != NULL) {
2794 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002795 if (!(px->bind_proc & (1UL << proc))) {
2796 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
2797 zombify_proxy(px);
2798 else
2799 stop_proxy(px);
2800 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002801 }
2802 px = px->next;
2803 }
2804
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002805 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002806 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002807 if (!curpeers->peers_fe)
2808 continue;
2809
2810 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2811 continue;
2812
2813 stop_proxy(curpeers->peers_fe);
2814 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002815 signal_unregister_handler(curpeers->sighandler);
2816 task_delete(curpeers->sync_task);
2817 task_free(curpeers->sync_task);
2818 curpeers->sync_task = NULL;
2819 task_free(curpeers->peers_fe->task);
2820 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002821 curpeers->peers_fe = NULL;
2822 }
2823
Willy Tarreaubaaee002006-06-26 02:48:02 +02002824 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2825 * that we can detach from the TTY. We MUST NOT do it in other cases since
2826 * it would have already be done, and 0-2 would have been affected to listening
2827 * sockets
2828 */
Willy Tarreau106cb762008-11-16 07:40:34 +01002829 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002830 /* detach from the tty */
2831 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01002832 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002833 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2834 }
2835 pid = getpid(); /* update child's pid */
2836 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02002837 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002838 }
2839
Christopher Faulete3a5e352017-10-24 13:53:54 +02002840 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002841 /*
2842 * That's it : the central polling loop. Run until we stop.
2843 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002844#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002845 {
Christopher Faulet1d17c102017-08-29 15:38:48 +02002846 unsigned int *tids = calloc(global.nbthread, sizeof(unsigned int));
2847 pthread_t *threads = calloc(global.nbthread, sizeof(pthread_t));
2848 int i;
2849
Christopher Fauletd7bddda2017-10-31 17:30:12 +01002850 THREAD_SYNC_INIT((1UL << global.nbthread) - 1);
2851
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002852 /* Init tids array */
2853 for (i = 0; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002854 tids[i] = i;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002855
2856 /* Create nbthread-1 thread. The first thread is the current process */
2857 threads[0] = pthread_self();
2858 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002859 pthread_create(&threads[i], NULL, &run_thread_poll_loop, &tids[i]);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002860
Christopher Faulet62519022017-10-16 15:49:32 +02002861#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002862 /* Now the CPU affinity for all threads */
2863 for (i = 0; i < global.nbthread; i++) {
Christopher Faulet62519022017-10-16 15:49:32 +02002864 if (global.cpu_map[relative_pid-1])
2865 global.thread_map[relative_pid-1][i] &= global.cpu_map[relative_pid-1];
2866
2867 if (i < LONGBITS && /* only the first 32/64 threads may be pinned */
2868 global.thread_map[relative_pid-1][i]) /* only do this if the thread has a THREAD map */
2869 pthread_setaffinity_np(threads[i],
2870 sizeof(unsigned long), (void *)&global.thread_map[relative_pid-1][i]);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002871 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002872#endif /* !USE_CPU_AFFINITY */
2873
2874 /* Finally, start the poll loop for the first thread */
2875 run_thread_poll_loop(&tids[0]);
2876
2877 /* Wait the end of other threads */
2878 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02002879 pthread_join(threads[i], NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002880
Christopher Faulet1d17c102017-08-29 15:38:48 +02002881 free(tids);
2882 free(threads);
2883
Christopher Fauletb79a94c2017-05-30 15:34:30 +02002884#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
2885 show_lock_stats();
2886#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002887 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002888#else /* ! USE_THREAD */
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002889
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002890 run_thread_poll_loop((int []){0});
Christopher Faulet62519022017-10-16 15:49:32 +02002891
Christopher Faulet62519022017-10-16 15:49:32 +02002892#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002893
2894 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002895 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02002896
Willy Tarreaubaaee002006-06-26 02:48:02 +02002897 exit(0);
2898}
2899
2900
2901/*
2902 * Local variables:
2903 * c-indent-level: 8
2904 * c-basic-offset: 8
2905 * End:
2906 */