blob: 60c5f65cb883d576f213c1b2699377759a347f17 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau71f95fa2020-01-22 10:34:58 +01003 * Copyright 2000-2020 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>
Tim Duesterhusdfad6a42020-04-18 16:02:47 +020049#include <sys/utsname.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010050#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <time.h>
52#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010053#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010055#include <sched.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000056#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020057#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000058#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020059#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000060#endif
David Carlier6d5c8412017-11-29 11:02:32 +000061#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020062#endif
David Carlier5e4c8e22019-09-13 05:12:58 +010063#ifdef __APPLE__
64#include <mach/mach_types.h>
65#include <mach/thread_act.h>
66#include <mach/thread_policy.h>
67#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010068#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020069
Willy Tarreau636848a2019-04-15 19:38:50 +020070#if defined(USE_PRCTL)
71#include <sys/prctl.h>
72#endif
73
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#ifdef DEBUG_FULL
75#include <assert.h>
76#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010077#if defined(USE_SYSTEMD)
78#include <systemd/sd-daemon.h>
79#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Willy Tarreauac13aea2020-06-04 10:36:03 +020081#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020082#include <haproxy/api.h>
Willy Tarreau6c3a6812020-03-06 18:57:15 +010083#include <import/sha1.h>
84
Willy Tarreau8d366972020-05-27 16:10:29 +020085#include <haproxy/base64.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020086#include <common/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020087#include <haproxy/chunk.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020088#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020089#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020090#include <haproxy/errors.h>
Willy Tarreau86416052020-06-04 09:20:54 +020091#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020092#include <haproxy/http_rules.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020093#include <haproxy/pool.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020094#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020095#include <haproxy/listener.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020096#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020097#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020098#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020099#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200100#include <haproxy/pattern.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +0200101#include <haproxy/sample.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200102#include <haproxy/regex.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +0200103#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +0200104#include <haproxy/time.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200105#include <common/uri_auth.h>
Willy Tarreaud6788052020-05-27 15:59:00 +0200106#include <haproxy/version.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200107#include <haproxy/thread.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108
Willy Tarreau278161c2020-06-04 11:18:28 +0200109#include <haproxy/capture-t.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200110#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200111#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +0900113#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +0200114#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200116#include <proto/acl.h>
Willy Tarreaua04ded52020-06-02 10:29:48 +0200117#include <haproxy/activity.h>
Willy Tarreauaa74c4e2020-06-04 10:19:23 +0200118#include <haproxy/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +0200120#include <proto/channel.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200121#include <proto/cli.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200122#include <proto/connection.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +0200123#include <haproxy/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200124#include <proto/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125#include <proto/log.h>
Willy Tarreau2dd7c352020-06-03 15:26:55 +0200126#include <haproxy/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200127#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128#include <proto/proxy.h>
129#include <proto/queue.h>
130#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200131#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200132#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200133#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134#include <proto/task.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100135#include <proto/vars.h>
Grant Zhang872f9c22017-01-21 01:10:18 +0000136#include <proto/ssl_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100138/* array of init calls for older platforms */
139DECLARE_INIT_STAGES;
140
Willy Tarreau477ecd82010-01-03 21:12:30 +0100141/* list of config files */
142static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100144int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100145unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100146unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100148volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100149volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100150
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151/* global options */
152struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100153 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100154 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100155 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200156 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200157 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100158 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100159 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100160 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200161 .unix_bind = {
162 .ux = {
163 .uid = -1,
164 .gid = -1,
165 .mode = 0,
166 }
167 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200168 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100169 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100170 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100171 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100172 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100173 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200174 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200175 .pool_low_ratio = 20,
176 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200177 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200178#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100179 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200180#endif
William Lallemandf3747832012-11-09 12:33:10 +0100181 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100182#ifdef DEFAULT_IDLE_TIMER
183 .idle_timer = DEFAULT_IDLE_TIMER,
184#else
185 .idle_timer = 1000, /* 1 second */
186#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200187 },
Emeric Brun76d88952012-10-05 15:47:31 +0200188#ifdef USE_OPENSSL
189#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200190 .maxsslconn = DEFAULT_MAXSSLCONN,
191#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200192#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193 /* others NULL OK */
194};
195
196/*********************************************************************/
197
198int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100199int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200200int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100201int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100202int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100203int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204
205/* Here we store informations about the pids of the processes we may pause
206 * or kill. We will send them a signal every 10 ms until we can bind to all
207 * our ports. With 200 retries, that's about 2 seconds.
208 */
209#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210static int *oldpids = NULL;
211static int oldpids_sig; /* use USR1 or TERM */
212
Olivier Houchardf73629d2017-04-05 22:33:04 +0200213/* Path to the unix socket we use to retrieve listener sockets from the old process */
214static const char *old_unixsocket;
215
William Lallemand85b0bd92017-06-01 17:38:53 +0200216static char *cur_unixsocket = NULL;
217
William Lallemandcb11fd22017-06-01 17:38:52 +0200218int atexit_flag = 0;
219
Willy Tarreaubb545b42010-08-25 12:58:59 +0200220int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200221const int zero = 0;
222const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200223const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200224
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100225char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200226char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200227
William Lallemand00417412020-06-05 14:08:41 +0200228static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200229
William Lallemandbc193052018-09-11 10:06:26 +0200230struct list proc_list = LIST_HEAD_INIT(proc_list);
231
232int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100233unsigned int rlim_fd_cur_at_boot = 0;
234unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200235
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100236/* per-boot randomness */
237unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
238
William Lallemand16dd1b32018-11-19 18:46:18 +0100239struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200240
William Lallemandb3f2be32018-09-11 10:06:18 +0200241static void *run_thread_poll_loop(void *data);
242
Willy Tarreauff055502014-04-28 22:27:06 +0200243/* bitfield of a few warnings to emit just once (WARN_*) */
244unsigned int warned = 0;
245
William Lallemande7361152018-10-26 14:47:36 +0200246/* master CLI configuration (-S flag) */
247struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100248
249/* These are strings to be reported in the output of "haproxy -vv". They may
250 * either be constants (in which case must_free must be zero) or dynamically
251 * allocated strings to pass to free() on exit, and in this case must_free
252 * must be non-zero.
253 */
254struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
255struct build_opts_str {
256 struct list list;
257 const char *str;
258 int must_free;
259};
260
Willy Tarreaue6945732016-12-21 19:57:00 +0100261/* These functions are called just after the point where the program exits
262 * after a config validity check, so they are generally suited for resource
263 * allocation and slow initializations that should be skipped during basic
264 * config checks. The functions must return 0 on success, or a combination
265 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
266 * and immediate exit, so the function must have emitted any useful error.
267 */
268struct list post_check_list = LIST_HEAD_INIT(post_check_list);
269struct post_check_fct {
270 struct list list;
271 int (*fct)();
272};
273
Christopher Fauletc1692962019-08-12 09:51:07 +0200274/* These functions are called for each proxy just after the config validity
275 * check. The functions must return 0 on success, or a combination of ERR_*
276 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
277 * exit, so the function must have emitted any useful error.
278 */
279struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
280struct post_proxy_check_fct {
281 struct list list;
282 int (*fct)(struct proxy *);
283};
284
285/* These functions are called for each server just after the config validity
286 * check. The functions must return 0 on success, or a combination of ERR_*
287 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
288 * exit, so the function must have emitted any useful error.
289 */
290struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
291struct post_server_check_fct {
292 struct list list;
293 int (*fct)(struct server *);
294};
295
Willy Tarreau082b6282019-05-22 14:42:12 +0200296/* These functions are called for each thread just after the thread creation
297 * and before running the init functions. They should be used to do per-thread
298 * (re-)allocations that are needed by subsequent functoins. They must return 0
299 * if an error occurred. */
300struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
301struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100302 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200303 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100304};
305
Christopher Faulet415f6112017-07-25 16:52:58 +0200306/* These functions are called for each thread just after the thread creation
307 * and before running the scheduler. They should be used to do per-thread
308 * initializations. They must return 0 if an error occurred. */
309struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
310struct per_thread_init_fct {
311 struct list list;
312 int (*fct)();
313};
314
Willy Tarreau082b6282019-05-22 14:42:12 +0200315/* These functions are called when freeing the global sections at the end of
316 * deinit, after everything is stopped. They don't return anything. They should
317 * not release shared resources that are possibly used by other deinit
318 * functions, only close/release what is private. Use the per_thread_free_list
319 * to release shared resources.
320 */
321struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
322struct post_deinit_fct {
323 struct list list;
324 void (*fct)();
325};
326
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200327/* These functions are called when freeing a proxy during the deinit, after
328 * everything isg stopped. They don't return anything. They should not release
329 * the proxy itself or any shared resources that are possibly used by other
330 * deinit functions, only close/release what is private.
331 */
332struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
333struct proxy_deinit_fct {
334 struct list list;
335 void (*fct)(struct proxy *);
336};
337
338/* These functions are called when freeing a server during the deinit, after
339 * everything isg stopped. They don't return anything. They should not release
340 * the proxy itself or any shared resources that are possibly used by other
341 * deinit functions, only close/release what is private.
342 */
343struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
344struct server_deinit_fct {
345 struct list list;
346 void (*fct)(struct server *);
347};
348
Willy Tarreau082b6282019-05-22 14:42:12 +0200349/* These functions are called when freeing the global sections at the end of
350 * deinit, after the thread deinit functions, to release unneeded memory
351 * allocations. They don't return anything, and they work in best effort mode
352 * as their sole goal is to make valgrind mostly happy.
353 */
354struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
355struct per_thread_free_fct {
356 struct list list;
357 int (*fct)();
358};
359
Christopher Faulet415f6112017-07-25 16:52:58 +0200360/* These functions are called for each thread just after the scheduler loop and
361 * before exiting the thread. They don't return anything and, as for post-deinit
362 * functions, they work in best effort mode as their sole goal is to make
363 * valgrind mostly happy. */
364struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
365struct per_thread_deinit_fct {
366 struct list list;
367 void (*fct)();
368};
369
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370/*********************************************************************/
371/* general purpose functions ***************************************/
372/*********************************************************************/
373
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100374/* used to register some build option strings at boot. Set must_free to
375 * non-zero if the string must be freed upon exit.
376 */
377void hap_register_build_opts(const char *str, int must_free)
378{
379 struct build_opts_str *b;
380
381 b = calloc(1, sizeof(*b));
382 if (!b) {
383 fprintf(stderr, "out of memory\n");
384 exit(1);
385 }
386 b->str = str;
387 b->must_free = must_free;
388 LIST_ADDQ(&build_opts_list, &b->list);
389}
390
Willy Tarreaue6945732016-12-21 19:57:00 +0100391/* used to register some initialization functions to call after the checks. */
392void hap_register_post_check(int (*fct)())
393{
394 struct post_check_fct *b;
395
396 b = calloc(1, sizeof(*b));
397 if (!b) {
398 fprintf(stderr, "out of memory\n");
399 exit(1);
400 }
401 b->fct = fct;
402 LIST_ADDQ(&post_check_list, &b->list);
403}
404
Christopher Fauletc1692962019-08-12 09:51:07 +0200405/* used to register some initialization functions to call for each proxy after
406 * the checks.
407 */
408void hap_register_post_proxy_check(int (*fct)(struct proxy *))
409{
410 struct post_proxy_check_fct *b;
411
412 b = calloc(1, sizeof(*b));
413 if (!b) {
414 fprintf(stderr, "out of memory\n");
415 exit(1);
416 }
417 b->fct = fct;
418 LIST_ADDQ(&post_proxy_check_list, &b->list);
419}
420
421/* used to register some initialization functions to call for each server after
422 * the checks.
423 */
424void hap_register_post_server_check(int (*fct)(struct server *))
425{
426 struct post_server_check_fct *b;
427
428 b = calloc(1, sizeof(*b));
429 if (!b) {
430 fprintf(stderr, "out of memory\n");
431 exit(1);
432 }
433 b->fct = fct;
434 LIST_ADDQ(&post_server_check_list, &b->list);
435}
436
Willy Tarreau05554e62016-12-21 20:46:26 +0100437/* used to register some de-initialization functions to call after everything
438 * has stopped.
439 */
440void hap_register_post_deinit(void (*fct)())
441{
442 struct post_deinit_fct *b;
443
444 b = calloc(1, sizeof(*b));
445 if (!b) {
446 fprintf(stderr, "out of memory\n");
447 exit(1);
448 }
449 b->fct = fct;
450 LIST_ADDQ(&post_deinit_list, &b->list);
451}
452
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200453/* used to register some per proxy de-initialization functions to call after
454 * everything has stopped.
455 */
456void hap_register_proxy_deinit(void (*fct)(struct proxy *))
457{
458 struct proxy_deinit_fct *b;
459
460 b = calloc(1, sizeof(*b));
461 if (!b) {
462 fprintf(stderr, "out of memory\n");
463 exit(1);
464 }
465 b->fct = fct;
466 LIST_ADDQ(&proxy_deinit_list, &b->list);
467}
468
469
470/* used to register some per server de-initialization functions to call after
471 * everything has stopped.
472 */
473void hap_register_server_deinit(void (*fct)(struct server *))
474{
475 struct server_deinit_fct *b;
476
477 b = calloc(1, sizeof(*b));
478 if (!b) {
479 fprintf(stderr, "out of memory\n");
480 exit(1);
481 }
482 b->fct = fct;
483 LIST_ADDQ(&server_deinit_list, &b->list);
484}
485
Willy Tarreau082b6282019-05-22 14:42:12 +0200486/* used to register some allocation functions to call for each thread. */
487void hap_register_per_thread_alloc(int (*fct)())
488{
489 struct per_thread_alloc_fct *b;
490
491 b = calloc(1, sizeof(*b));
492 if (!b) {
493 fprintf(stderr, "out of memory\n");
494 exit(1);
495 }
496 b->fct = fct;
497 LIST_ADDQ(&per_thread_alloc_list, &b->list);
498}
499
Christopher Faulet415f6112017-07-25 16:52:58 +0200500/* used to register some initialization functions to call for each thread. */
501void hap_register_per_thread_init(int (*fct)())
502{
503 struct per_thread_init_fct *b;
504
505 b = calloc(1, sizeof(*b));
506 if (!b) {
507 fprintf(stderr, "out of memory\n");
508 exit(1);
509 }
510 b->fct = fct;
511 LIST_ADDQ(&per_thread_init_list, &b->list);
512}
513
514/* used to register some de-initialization functions to call for each thread. */
515void hap_register_per_thread_deinit(void (*fct)())
516{
517 struct per_thread_deinit_fct *b;
518
519 b = calloc(1, sizeof(*b));
520 if (!b) {
521 fprintf(stderr, "out of memory\n");
522 exit(1);
523 }
524 b->fct = fct;
525 LIST_ADDQ(&per_thread_deinit_list, &b->list);
526}
527
Willy Tarreau082b6282019-05-22 14:42:12 +0200528/* used to register some free functions to call for each thread. */
529void hap_register_per_thread_free(int (*fct)())
530{
531 struct per_thread_free_fct *b;
532
533 b = calloc(1, sizeof(*b));
534 if (!b) {
535 fprintf(stderr, "out of memory\n");
536 exit(1);
537 }
538 b->fct = fct;
539 LIST_ADDQ(&per_thread_free_list, &b->list);
540}
541
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100542static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200544 struct utsname utsname;
545
Willy Tarreau08dd2022019-11-21 18:07:30 +0100546 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
547 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100548
549 if (strlen(PRODUCT_URL_BUGS) > 0) {
550 char base_version[20];
551 int dots = 0;
552 char *del;
553
554 /* only retrieve the base version without distro-specific extensions */
555 for (del = haproxy_version; *del; del++) {
556 if (*del == '.')
557 dots++;
558 else if (*del < '0' || *del > '9')
559 break;
560 }
561
562 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
563 if (dots < 2)
564 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
565 else
566 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
567 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200568
569 if (uname(&utsname) == 0) {
570 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
571 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200572}
573
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100574static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100575{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100576 struct build_opts_str *item;
577
Willy Tarreau7b066db2007-12-02 11:28:59 +0100578 printf("Build options :"
579#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100580 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100581#endif
582#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100583 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100584#endif
585#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100586 "\n CC = " BUILD_CC
587#endif
588#ifdef BUILD_CFLAGS
589 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100590#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100591#ifdef BUILD_OPTIONS
592 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100593#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100594#ifdef BUILD_FEATURES
595 "\n\nFeature list : " BUILD_FEATURES
596#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200597 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100598 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200599 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100600 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200601
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100602 list_for_each_entry(item, &build_opts_list, list) {
603 puts(item->str);
604 }
605
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100606 putchar('\n');
607
Willy Tarreaube5b6852009-10-03 18:57:08 +0200608 list_pollers(stdout);
609 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200610 list_mux_proto(stdout);
611 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100612 list_services(stdout);
613 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100614 list_filters(stdout);
615 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100616}
617
Willy Tarreaubaaee002006-06-26 02:48:02 +0200618/*
619 * This function prints the command line usage and exits
620 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100621static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200622{
623 display_version();
624 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200625 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200627 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100628 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200630 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200632 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200633 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100634#if defined(USE_SYSTEMD)
635 " -Ws master-worker mode with systemd notify support.\n"
636#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200638 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100639 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640 " -m limits the usable amount of memory (in MB)\n"
641 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200642 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200643 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200644#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200645 " -de disables epoll() usage even when available\n"
646#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200647#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200648 " -dk disables kqueue() usage even when available\n"
649#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200650#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000651 " -dv disables event ports usage even when available\n"
652#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200653#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200654 " -dp disables poll() usage even when available\n"
655#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200656#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100657 " -dS disables splice usage (broken on old kernels)\n"
658#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200659#if defined(USE_GETADDRINFO)
660 " -dG disables getaddrinfo() usage\n"
661#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000662#if defined(SO_REUSEPORT)
663 " -dR disables SO_REUSEPORT usage\n"
664#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100665 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100666 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200667 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200668 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200669 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200670 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100672 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200673 exit(1);
674}
675
676
677
678/*********************************************************************/
679/* more specific functions ***************************************/
680/*********************************************************************/
681
William Lallemand73b85e72017-06-01 17:38:51 +0200682/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
683 * pids the signal was correctly delivered to.
684 */
William Lallemande25473c2019-04-01 11:29:56 +0200685int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200686{
687 int p;
688 int ret = 0;
689 for (p = 0; p < nb_oldpids; p++)
690 if (kill(oldpids[p], sig) == 0)
691 ret++;
692 return ret;
693}
694
William Lallemand75ea0a02017-11-15 19:02:58 +0100695/*
William Lallemand73b85e72017-06-01 17:38:51 +0200696 * remove a pid forom the olpid array and decrease nb_oldpids
697 * return 1 pid was found otherwise return 0
698 */
699
700int delete_oldpid(int pid)
701{
702 int i;
703
704 for (i = 0; i < nb_oldpids; i++) {
705 if (oldpids[i] == pid) {
706 oldpids[i] = oldpids[nb_oldpids - 1];
707 oldpids[nb_oldpids - 1] = 0;
708 nb_oldpids--;
709 return 1;
710 }
711 }
712 return 0;
713}
714
William Lallemand85b0bd92017-06-01 17:38:53 +0200715
716static void get_cur_unixsocket()
717{
718 /* if -x was used, try to update the stat socket if not available anymore */
719 if (global.stats_fe) {
720 struct bind_conf *bind_conf;
721
722 /* pass through all stats socket */
723 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
724 struct listener *l;
725
726 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
727
728 if (l->addr.ss_family == AF_UNIX &&
729 (bind_conf->level & ACCESS_FD_LISTENERS)) {
730 const struct sockaddr_un *un;
731
732 un = (struct sockaddr_un *)&l->addr;
733 /* priority to old_unixsocket */
734 if (!cur_unixsocket) {
735 cur_unixsocket = strdup(un->sun_path);
736 } else {
737 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
738 free(cur_unixsocket);
739 cur_unixsocket = strdup(old_unixsocket);
740 return;
741 }
742 }
743 }
744 }
745 }
746 }
747 if (!cur_unixsocket && old_unixsocket)
748 cur_unixsocket = strdup(old_unixsocket);
749}
750
William Lallemand73b85e72017-06-01 17:38:51 +0200751/*
752 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800753 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200754 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100755void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200756{
William Lallemand00417412020-06-05 14:08:41 +0200757 char **next_argv = NULL;
758 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200759 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200760 int i = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200761 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100762 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100763 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200764
765 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100766#if defined(USE_SYSTEMD)
767 if (global.tune.options & GTUNE_USE_SYSTEMD)
768 sd_notify(0, "RELOADING=1");
769#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200770 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
771
William Lallemandbc193052018-09-11 10:06:26 +0200772 mworker_proc_list_to_env(); /* put the children description in the env */
773
William Lallemand7c756a82018-11-26 11:53:40 +0100774 /* during the reload we must ensure that every FDs that can't be
775 * reuse (ie those that are not referenced in the proc_list)
776 * are closed or they will leak. */
777
778 /* close the listeners FD */
779 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200780
781 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
782 /* close the poller FD and the thread waker pipe FD */
783 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
784 ptdf->fct();
785 if (fdtab)
786 deinit_pollers();
787 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200788#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200789 /* close random device FDs */
790 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100791#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100792
Willy Tarreau8dca1952019-03-01 10:21:55 +0100793 /* restore the initial FD limits */
794 limit.rlim_cur = rlim_fd_cur_at_boot;
795 limit.rlim_max = rlim_fd_max_at_boot;
796 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
797 getrlimit(RLIMIT_NOFILE, &limit);
798 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
799 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
800 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
801 }
802
William Lallemand73b85e72017-06-01 17:38:51 +0200803 /* compute length */
William Lallemand00417412020-06-05 14:08:41 +0200804 while (old_argv[old_argc])
805 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200806
William Lallemand85b0bd92017-06-01 17:38:53 +0200807 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand00417412020-06-05 14:08:41 +0200808 next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1, sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200809 if (next_argv == NULL)
810 goto alloc_error;
811
William Lallemand00417412020-06-05 14:08:41 +0200812 /* copy the program name */
813 next_argv[next_argc++] = old_argv[0];
814
815 /* insert the new options just after argv[0] in case we have a -- */
816
William Lallemand73b85e72017-06-01 17:38:51 +0200817 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200818 if (mworker_child_nb() > 0) {
819 struct mworker_proc *child;
820
William Lallemand73b85e72017-06-01 17:38:51 +0200821 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200822
823 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100824 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200825 continue;
William Lallemand00417412020-06-05 14:08:41 +0200826 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200827 goto alloc_error;
828 msg = NULL;
829 }
830 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200831 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200832 if (cur_unixsocket) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200833 next_argv[next_argc++] = "-x";
834 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200835 }
836
William Lallemand00417412020-06-05 14:08:41 +0200837 /* copy the previous options */
838 for (i = 1; i < old_argc; i++)
839 next_argv[next_argc++] = old_argv[i];
840
Christopher Faulet767a84b2017-11-24 16:50:31 +0100841 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200842 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100843 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200844
Christopher Faulet767a84b2017-11-24 16:50:31 +0100845 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand9fc6c972020-06-08 10:01:13 +0200846 free(next_argv);
847 next_argv = NULL;
William Lallemand722d4ca2017-11-15 19:02:55 +0100848 return;
849
William Lallemand73b85e72017-06-01 17:38:51 +0200850alloc_error:
William Lallemand00417412020-06-05 14:08:41 +0200851 free(next_argv);
852 next_argv = NULL;
Joseph Herlant07a08342018-11-15 10:43:05 -0800853 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200854 return;
855}
856
William Lallemandb3f2be32018-09-11 10:06:18 +0200857static void mworker_loop()
858{
859
860#if defined(USE_SYSTEMD)
861 if (global.tune.options & GTUNE_USE_SYSTEMD)
862 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
863#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200864 /* Busy polling makes no sense in the master :-) */
865 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200866
William Lallemandbc193052018-09-11 10:06:26 +0200867 master = 1;
868
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100869 signal_unregister(SIGTTIN);
870 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100871 signal_unregister(SIGUSR1);
872 signal_unregister(SIGHUP);
873 signal_unregister(SIGQUIT);
874
William Lallemandb3f2be32018-09-11 10:06:18 +0200875 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
876 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100877 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
878 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200879 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
880 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
881 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
882 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
883
884 mworker_unblock_signals();
885 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100886 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200887
William Lallemandbc193052018-09-11 10:06:26 +0200888 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
889 some SIGCHLD were lost */
890
William Lallemandb3f2be32018-09-11 10:06:18 +0200891 global.nbthread = 1;
892 relative_pid = 1;
893 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100894 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200895
William Lallemand2672eb92018-12-14 15:52:39 +0100896#ifdef USE_THREAD
897 tid_bit = 1;
898 all_threads_mask = 1;
899#endif
900
William Lallemandb3f2be32018-09-11 10:06:18 +0200901 jobs++; /* this is the "master" job, we want to take care of the
902 signals even if there is no listener so the poll loop don't
903 leave */
904
905 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200906 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200907}
William Lallemandcb11fd22017-06-01 17:38:52 +0200908
909/*
910 * Reexec the process in failure mode, instead of exiting
911 */
912void reexec_on_failure()
913{
914 if (!atexit_flag)
915 return;
916
917 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
918
Christopher Faulet767a84b2017-11-24 16:50:31 +0100919 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200920 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200921}
William Lallemand73b85e72017-06-01 17:38:51 +0200922
923
924/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200925 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
926 * a signal zero to all subscribers. This means that it's as easy as
927 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100929static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930{
931 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200932 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100933 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934}
935
936/*
937 * upon SIGTTOU, we pause everything
938 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100939static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940{
941 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100942 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943}
944
945/*
946 * upon SIGTTIN, let's have a soft stop.
947 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100948static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949{
Willy Tarreaube58c382011-07-24 18:28:10 +0200950 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200951}
952
953/*
954 * this function dumps every server's state when the process receives SIGHUP.
955 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100956static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200957{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100958 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959
Christopher Faulet767a84b2017-11-24 16:50:31 +0100960 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961 while (p) {
962 struct server *s = p->srv;
963
964 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
965 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100966 chunk_printf(&trash,
967 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
968 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200969 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100970 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200971 ha_warning("%s\n", trash.area);
972 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200973 s = s->next;
974 }
975
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200976 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
977 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100978 chunk_printf(&trash,
979 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
980 p->id,
981 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 +0200982 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100983 chunk_printf(&trash,
984 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
985 p->id,
986 (p->srv_bck) ? "is running on backup servers" : "has no server available",
987 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 +0200988 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100989 chunk_printf(&trash,
990 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
991 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
992 p->id, p->srv_act, p->srv_bck,
993 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 +0200994 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200995 ha_warning("%s\n", trash.area);
996 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997
998 p = p->next;
999 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000}
1001
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001002static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001003{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001004 /* dump memory usage then free everything possible */
1005 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +01001006 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001007}
1008
William Lallemande1340412017-12-28 16:09:36 +01001009/*
1010 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
1011 * If <fd> < 0, it opens /dev/null and use it to dup
1012 *
1013 * In the case of chrooting, you have to open /dev/null before the chroot, and
1014 * pass the <fd> to this function
1015 */
1016static void stdio_quiet(int fd)
1017{
1018 if (fd < 0)
1019 fd = open("/dev/null", O_RDWR, 0);
1020
1021 if (fd > -1) {
1022 fclose(stdin);
1023 fclose(stdout);
1024 fclose(stderr);
1025
1026 dup2(fd, 0);
1027 dup2(fd, 1);
1028 dup2(fd, 2);
1029 if (fd > 2)
1030 close(fd);
1031 return;
1032 }
1033
1034 ha_alert("Cannot open /dev/null\n");
1035 exit(EXIT_FAILURE);
1036}
1037
1038
Joseph Herlant03420902018-11-15 10:41:50 -08001039/* This function checks if cfg_cfgfiles contains directories.
1040 * If it finds one, it adds all the files (and only files) it contains
1041 * in cfg_cfgfiles in place of the directory (and removes the directory).
1042 * It adds the files in lexical order.
1043 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001044 * It doesn't add files with name starting with '.'
1045 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001046static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001047{
1048 struct wordlist *wl, *wlb;
1049 char *err = NULL;
1050
1051 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1052 struct stat file_stat;
1053 struct dirent **dir_entries = NULL;
1054 int dir_entries_nb;
1055 int dir_entries_it;
1056
1057 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("Cannot open configuration file/directory %s : %s\n",
1059 wl->s,
1060 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001061 exit(1);
1062 }
1063
1064 if (!S_ISDIR(file_stat.st_mode))
1065 continue;
1066
1067 /* from this point wl->s is a directory */
1068
1069 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1070 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001071 ha_alert("Cannot open configuration directory %s : %s\n",
1072 wl->s,
1073 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001074 exit(1);
1075 }
1076
1077 /* for each element in the directory wl->s */
1078 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1079 struct dirent *dir_entry = dir_entries[dir_entries_it];
1080 char *filename = NULL;
1081 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1082
1083 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001084 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001085 */
1086 if (dir_entry->d_name[0] == '.' ||
1087 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1088 goto next_dir_entry;
1089
1090 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001091 ha_alert("Cannot load configuration files %s : out of memory.\n",
1092 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001093 exit(1);
1094 }
1095
1096 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001097 ha_alert("Cannot open configuration file %s : %s\n",
1098 wl->s,
1099 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001100 exit(1);
1101 }
1102
1103 /* don't add anything else than regular file in cfg_cfgfiles
1104 * this way we avoid loops
1105 */
1106 if (!S_ISREG(file_stat.st_mode))
1107 goto next_dir_entry;
1108
1109 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001110 ha_alert("Cannot load configuration files %s : %s\n",
1111 filename,
1112 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001113 exit(1);
1114 }
1115
1116next_dir_entry:
1117 free(filename);
1118 free(dir_entry);
1119 }
1120
1121 free(dir_entries);
1122
1123 /* remove the current directory (wl) from cfg_cfgfiles */
1124 free(wl->s);
1125 LIST_DEL(&wl->list);
1126 free(wl);
1127 }
1128
1129 free(err);
1130}
1131
Olivier Houchardf73629d2017-04-05 22:33:04 +02001132static int get_old_sockets(const char *unixsocket)
1133{
1134 char *cmsgbuf = NULL, *tmpbuf = NULL;
1135 int *tmpfd = NULL;
1136 struct sockaddr_un addr;
1137 struct cmsghdr *cmsg;
1138 struct msghdr msghdr;
1139 struct iovec iov;
1140 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001141 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001142 int sock = -1;
1143 int ret = -1;
1144 int ret2 = -1;
1145 int fd_nb;
1146 int got_fd = 0;
1147 int i = 0;
1148 size_t maxoff = 0, curoff = 0;
1149
1150 memset(&msghdr, 0, sizeof(msghdr));
1151 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1152 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001153 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001154 goto out;
1155 }
1156 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1157 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_warning("Failed to connect to the old process socket '%s'\n",
1159 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001160 goto out;
1161 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001162 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001163 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1164 addr.sun_family = PF_UNIX;
1165 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1166 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001167 ha_warning("Failed to connect to the old process socket '%s'\n",
1168 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001169 goto out;
1170 }
Olivier Houchard54740872017-04-06 14:45:14 +02001171 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001172 iov.iov_base = &fd_nb;
1173 iov.iov_len = sizeof(fd_nb);
1174 msghdr.msg_iov = &iov;
1175 msghdr.msg_iovlen = 1;
1176 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1177 /* First, get the number of file descriptors to be received */
1178 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001179 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001180 goto out;
1181 }
1182 if (fd_nb == 0) {
1183 ret = 0;
1184 goto out;
1185 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001186 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001187 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001188 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001189 goto out;
1190 }
1191 tmpfd = malloc(fd_nb * sizeof(int));
1192 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001193 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001194 goto out;
1195 }
1196 msghdr.msg_control = cmsgbuf;
1197 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001198 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001199 do {
1200 int ret3;
1201
1202 iov.iov_base = tmpbuf + curoff;
1203 ret = recvmsg(sock, &msghdr, 0);
1204 if (ret == -1 && errno == EINTR)
1205 continue;
1206 if (ret <= 0)
1207 break;
1208 /* Send an ack to let the sender know we got the sockets
1209 * and it can send some more
1210 */
1211 do {
1212 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1213 } while (ret3 == -1 && errno == EINTR);
1214 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1215 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1216 if (cmsg->cmsg_level == SOL_SOCKET &&
1217 cmsg->cmsg_type == SCM_RIGHTS) {
1218 size_t totlen = cmsg->cmsg_len -
1219 CMSG_LEN(0);
1220 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001221 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001222 goto out;
1223 }
1224 /*
1225 * Be paranoid and use memcpy() to avoid any
1226 * potential alignement issue.
1227 */
1228 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1229 got_fd += totlen / sizeof(int);
1230 }
1231 }
1232 curoff += ret;
1233 } while (got_fd < fd_nb);
1234
1235 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001236 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1237 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001238 goto out;
1239 }
1240 maxoff = curoff;
1241 curoff = 0;
1242 for (i = 0; i < got_fd; i++) {
1243 int fd = tmpfd[i];
1244 socklen_t socklen;
1245 int len;
1246
1247 xfer_sock = calloc(1, sizeof(*xfer_sock));
1248 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001249 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001250 break;
1251 }
1252 xfer_sock->fd = -1;
1253
1254 socklen = sizeof(xfer_sock->addr);
1255 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001257 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001258 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001259 continue;
1260 }
1261 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001262 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001263 goto out;
1264 }
1265 len = tmpbuf[curoff++];
1266 if (len > 0) {
1267 /* We have a namespace */
1268 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001269 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001270 goto out;
1271 }
1272 xfer_sock->namespace = malloc(len + 1);
1273 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001274 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001275 goto out;
1276 }
1277 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1278 xfer_sock->namespace[len] = 0;
1279 curoff += len;
1280 }
1281 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001282 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001283 goto out;
1284 }
1285 len = tmpbuf[curoff++];
1286 if (len > 0) {
1287 /* We have an interface */
1288 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001289 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001290 goto out;
1291 }
1292 xfer_sock->iface = malloc(len + 1);
1293 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001294 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001295 goto out;
1296 }
1297 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001298 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001299 curoff += len;
1300 }
1301 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001302 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001303 goto out;
1304 }
1305 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1306 sizeof(xfer_sock->options));
1307 curoff += sizeof(xfer_sock->options);
1308
1309 xfer_sock->fd = fd;
1310 if (xfer_sock_list)
1311 xfer_sock_list->prev = xfer_sock;
1312 xfer_sock->next = xfer_sock_list;
1313 xfer_sock->prev = NULL;
1314 xfer_sock_list = xfer_sock;
1315 xfer_sock = NULL;
1316 }
1317
1318 ret2 = 0;
1319out:
1320 /* If we failed midway make sure to close the remaining
1321 * file descriptors
1322 */
1323 if (tmpfd != NULL && i < got_fd) {
1324 for (; i < got_fd; i++) {
1325 close(tmpfd[i]);
1326 }
1327 }
1328 free(tmpbuf);
1329 free(tmpfd);
1330 free(cmsgbuf);
1331 if (sock != -1)
1332 close(sock);
1333 if (xfer_sock) {
1334 free(xfer_sock->namespace);
1335 free(xfer_sock->iface);
1336 if (xfer_sock->fd != -1)
1337 close(xfer_sock->fd);
1338 free(xfer_sock);
1339 }
1340 return (ret2);
1341}
1342
Willy Tarreaubaaee002006-06-26 02:48:02 +02001343/*
William Lallemand73b85e72017-06-01 17:38:51 +02001344 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +02001345 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +02001346 * Return an allocated copy of argv
1347 */
1348
1349static char **copy_argv(int argc, char **argv)
1350{
William Lallemanddf6c5a82020-06-04 17:40:23 +02001351 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001352
1353 newargv = calloc(argc + 2, sizeof(char *));
1354 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001355 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001356 return NULL;
1357 }
William Lallemanddf6c5a82020-06-04 17:40:23 +02001358 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001359
William Lallemanddf6c5a82020-06-04 17:40:23 +02001360 /* first copy argv[0] */
1361 *newargv++ = *argv++;
1362 argc--;
1363
1364 while (argc > 0) {
1365 if (**argv != '-') {
1366 /* non options are copied but will fail in the argument parser */
1367 *newargv++ = *argv++;
1368 argc--;
1369
1370 } else {
1371 char *flag;
1372
1373 flag = *argv + 1;
1374
1375 if (flag[0] == '-' && flag[1] == 0) {
1376 /* "--\0" copy every arguments till the end of argv */
1377 *newargv++ = *argv++;
1378 argc--;
1379
1380 while (argc > 0) {
1381 *newargv++ = *argv++;
1382 argc--;
1383 }
1384 } else {
1385 switch (*flag) {
1386 case 's':
1387 /* -sf / -st and their parameters are ignored */
1388 if (flag[1] == 'f' || flag[1] == 't') {
1389 argc--;
1390 argv++;
1391 /* The list can't contain a negative value since the only
1392 way to know the end of this list is by looking for the
1393 next option or the end of the options */
1394 while (argc > 0 && argv[0][0] != '-') {
1395 argc--;
1396 argv++;
1397 }
1398 }
1399 break;
1400
1401 case 'x':
1402 /* this option and its parameter are ignored */
1403 argc--;
1404 argv++;
1405 if (argc > 0) {
1406 argc--;
1407 argv++;
1408 }
1409 break;
1410
1411 case 'C':
1412 case 'n':
1413 case 'm':
1414 case 'N':
1415 case 'L':
1416 case 'f':
1417 case 'p':
1418 case 'S':
1419 /* these options have only 1 parameter which must be copied and can start with a '-' */
1420 *newargv++ = *argv++;
1421 argc--;
1422 if (argc == 0)
1423 goto error;
1424 *newargv++ = *argv++;
1425 argc--;
1426 break;
1427 default:
1428 /* for other options just copy them without parameters, this is also done
1429 * for options like "--foo", but this will fail in the argument parser.
1430 * */
1431 *newargv++ = *argv++;
1432 argc--;
1433 break;
1434 }
William Lallemand73b85e72017-06-01 17:38:51 +02001435 }
1436 }
William Lallemand73b85e72017-06-01 17:38:51 +02001437 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001438
William Lallemanddf6c5a82020-06-04 17:40:23 +02001439 return retargv;
1440
1441error:
1442 free(retargv);
1443 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +02001444}
1445
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001446
1447/* Performs basic random seed initialization. The main issue with this is that
1448 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1449 * which means that there will only be 4 billion possible random sequences once
1450 * srandom() is called, regardless of the internal state. Not calling it is
1451 * even worse as we'll always produce the same randoms sequences. What we do
1452 * here is to create an initial sequence from various entropy sources, hash it
1453 * using SHA1 and keep the resulting 160 bits available globally.
1454 *
1455 * We initialize the current process with the first 32 bits before starting the
1456 * polling loop, where all this will be changed to have process specific and
1457 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001458 *
1459 * Before starting threads, it's still possible to call random() as srandom()
1460 * is initialized from this, but after threads and/or processes are started,
1461 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001462 */
1463static void ha_random_boot(char *const *argv)
1464{
1465 unsigned char message[256];
1466 unsigned char *m = message;
1467 struct timeval tv;
1468 blk_SHA_CTX ctx;
1469 unsigned long l;
1470 int fd;
1471 int i;
1472
1473 /* start with current time as pseudo-random seed */
1474 gettimeofday(&tv, NULL);
1475 write_u32(m, tv.tv_sec); m += 4;
1476 write_u32(m, tv.tv_usec); m += 4;
1477
1478 /* PID and PPID add some OS-based randomness */
1479 write_u16(m, getpid()); m += 2;
1480 write_u16(m, getppid()); m += 2;
1481
1482 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1483 fd = open("/dev/urandom", O_RDONLY);
1484 if (fd >= 0) {
1485 i = read(fd, m, 20);
1486 if (i > 0)
1487 m += i;
1488 close(fd);
1489 }
1490
1491 /* take up to 160 bits bytes from openssl (non-blocking) */
1492#ifdef USE_OPENSSL
1493 if (RAND_bytes(m, 20) == 1)
1494 m += 20;
1495#endif
1496
1497 /* take 160 bits from existing random in case it was already initialized */
1498 for (i = 0; i < 5; i++) {
1499 write_u32(m, random());
1500 m += 4;
1501 }
1502
1503 /* stack address (benefit form operating system's ASLR) */
1504 l = (unsigned long)&m;
1505 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1506
1507 /* argv address (benefit form operating system's ASLR) */
1508 l = (unsigned long)&argv;
1509 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1510
1511 /* use tv_usec again after all the operations above */
1512 gettimeofday(&tv, NULL);
1513 write_u32(m, tv.tv_usec); m += 4;
1514
1515 /*
1516 * At this point, ~84-92 bytes have been used
1517 */
1518
1519 /* finish with the hostname */
1520 strncpy((char *)m, hostname, message + sizeof(message) - m);
1521 m += strlen(hostname);
1522
1523 /* total message length */
1524 l = m - message;
1525
1526 memset(&ctx, 0, sizeof(ctx));
1527 blk_SHA1_Init(&ctx);
1528 blk_SHA1_Update(&ctx, message, l);
1529 blk_SHA1_Final(boot_seed, &ctx);
1530
1531 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001532 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001533}
1534
Willy Tarreau5a023f02019-03-01 14:19:31 +01001535/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1536 * setting, and returns it. It may return -1 meaning "unlimited" if some
1537 * unlimited proxies have been found and the global.maxconn value is not yet
1538 * set. It may also return a value greater than maxconn if it's not yet set.
1539 * Note that a value of zero means there is no need for pipes. -1 is never
1540 * returned if global.maxconn is valid.
1541 */
1542static int compute_ideal_maxpipes()
1543{
1544 struct proxy *cur;
1545 int nbfe = 0, nbbe = 0;
1546 int unlimited = 0;
1547 int pipes;
1548 int max;
1549
1550 for (cur = proxies_list; cur; cur = cur->next) {
1551 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1552 if (cur->cap & PR_CAP_FE) {
1553 max = cur->maxconn;
1554 nbfe += max;
1555 if (!max) {
1556 unlimited = 1;
1557 break;
1558 }
1559 }
1560 if (cur->cap & PR_CAP_BE) {
1561 max = cur->fullconn ? cur->fullconn : global.maxconn;
1562 nbbe += max;
1563 if (!max) {
1564 unlimited = 1;
1565 break;
1566 }
1567 }
1568 }
1569 }
1570
1571 pipes = MAX(nbfe, nbbe);
1572 if (global.maxconn) {
1573 if (pipes > global.maxconn || unlimited)
1574 pipes = global.maxconn;
1575 } else if (unlimited) {
1576 pipes = -1;
1577 }
1578
1579 return pipes >= 4 ? pipes / 4 : pipes;
1580}
1581
Willy Tarreauac350932019-03-01 15:43:14 +01001582/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1583 * rlimits and computes an ideal maxconn. It's meant to be called only when
1584 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001585 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1586 * default 100) is returned as it is expected that it will even run on tight
1587 * environments, and will maintain compatibility with previous packages that
1588 * used to rely on this value as the default one. The system will emit a
1589 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001590 */
1591static int compute_ideal_maxconn()
1592{
1593 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1594 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1595 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001596 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001597 int maxconn;
1598
1599 /* we have to take into account these elements :
1600 * - number of engine_fds, which inflates the number of FD needed per
1601 * connection by this number.
1602 * - number of pipes per connection on average : for the unlimited
1603 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1604 * fixed value of 2*pipes.
1605 * - two FDs per connection
1606 */
1607
1608 /* subtract listeners and checks */
1609 remain -= global.maxsock;
1610
Willy Tarreau3f200852019-03-14 19:13:17 +01001611 /* one epoll_fd/kqueue_fd per thread */
1612 remain -= global.nbthread;
1613
1614 /* one wake-up pipe (2 fd) per thread */
1615 remain -= 2 * global.nbthread;
1616
Willy Tarreauac350932019-03-01 15:43:14 +01001617 /* Fixed pipes values : we only subtract them if they're not larger
1618 * than the remaining FDs because pipes are optional.
1619 */
1620 if (pipes >= 0 && pipes * 2 < remain)
1621 remain -= pipes * 2;
1622
1623 if (pipes < 0) {
1624 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1625 * = maxconn * (2 + 0.5 + engine_fds)
1626 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1627 */
1628 maxconn = 2 * remain / (5 + 2 * engine_fds);
1629 } else {
1630 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1631 * = maxconn * (2 + engine_fds)
1632 */
1633 maxconn = remain / (2 + engine_fds);
1634 }
1635
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001636 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001637}
1638
Willy Tarreaua409f302020-03-10 17:08:53 +01001639/* computes the estimated maxsock value for the given maxconn based on the
1640 * possibly set global.maxpipes and existing partial global.maxsock. It may
1641 * temporarily change global.maxconn for the time needed to propagate the
1642 * computations, and will reset it.
1643 */
1644static int compute_ideal_maxsock(int maxconn)
1645{
1646 int maxpipes = global.maxpipes;
1647 int maxsock = global.maxsock;
1648
1649
1650 if (!maxpipes) {
1651 int old_maxconn = global.maxconn;
1652
1653 global.maxconn = maxconn;
1654 maxpipes = compute_ideal_maxpipes();
1655 global.maxconn = old_maxconn;
1656 }
1657
1658 maxsock += maxconn * 2; /* each connection needs two sockets */
1659 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1660 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1661 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1662
1663 /* compute fd used by async engines */
1664 if (global.ssl_used_async_engines) {
1665 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1666
1667 maxsock += maxconn * sides * global.ssl_used_async_engines;
1668 }
1669 return maxsock;
1670}
1671
Willy Tarreau304e17e2020-03-10 17:54:54 +01001672/* Tests if it is possible to set the current process' RLIMIT_NOFILE to
1673 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1674 * value is accepted, non-zero otherwise. This is used to determine if an
1675 * automatic limit may be applied or not. When it is not, the caller knows that
1676 * the highest we can do is the rlim_max at boot. In case of error, we return
1677 * that the setting is possible, so that we defer the error processing to the
1678 * final stage in charge of enforcing this.
1679 */
1680static int check_if_maxsock_permitted(int maxsock)
1681{
1682 struct rlimit orig_limit, test_limit;
1683 int ret;
1684
1685 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1686 return 1;
1687
1688 /* don't go further if we can't even set to what we have */
1689 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1690 return 1;
1691
1692 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1693 test_limit.rlim_cur = test_limit.rlim_max;
1694 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1695
1696 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1697 return 1;
1698
1699 return ret == 0;
1700}
1701
1702
William Lallemand73b85e72017-06-01 17:38:51 +02001703/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001704 * This function initializes all the necessary variables. It only returns
1705 * if everything is OK. If something fails, it exits.
1706 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001707static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001708{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001709 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001710 char *tmp;
1711 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001712 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001713 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001714 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001715 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001716 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001717 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001718 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001719 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001720
Christopher Faulete3a5e352017-10-24 13:53:54 +02001721 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001722 old_argv = copy_argv(argc, argv);
1723 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001724 ha_alert("failed to copy argv.\n");
1725 exit(1);
1726 }
William Lallemand73b85e72017-06-01 17:38:51 +02001727
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001728 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001729 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001730 exit(1);
1731 }
David du Colombier7af46052012-05-16 14:16:48 +02001732
Emeric Brun2b920a12010-09-23 18:30:22 +02001733 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1734 * the string in case of truncation, and at least FreeBSD appears not to do
1735 * it.
1736 */
1737 memset(hostname, 0, sizeof(hostname));
1738 gethostname(hostname, sizeof(hostname) - 1);
1739 memset(localpeer, 0, sizeof(localpeer));
1740 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001741 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001742
William Lallemand24c928c2020-01-14 17:58:18 +01001743 /* we were in mworker mode, we should restart in mworker mode */
1744 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1745 global.mode |= MODE_MWORKER;
1746
Willy Tarreaubaaee002006-06-26 02:48:02 +02001747 /*
1748 * Initialize the previously static variables.
1749 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001750
Willy Tarreau173d9952018-01-26 21:48:23 +01001751 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001752 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001753
Willy Tarreaubaaee002006-06-26 02:48:02 +02001754
1755#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001756 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001757#endif
1758
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001759 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001760 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001761 start_date = now;
1762
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001763 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001764
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001765 if (init_acl() != 0)
1766 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001767
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001768 /* Initialise lua. */
1769 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001770
Christopher Fauletff2613e2016-11-09 11:36:17 +01001771 /* Initialize process vars */
1772 vars_init(&global.vars, SCOPE_PROC);
1773
Willy Tarreau43b78992009-01-25 15:42:27 +01001774 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001775#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001776 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001777#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001778#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001779 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001780#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001781#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001782 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001783#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001784#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001785 global.tune.options |= GTUNE_USE_EVPORTS;
1786#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001787#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001788 global.tune.options |= GTUNE_USE_SPLICE;
1789#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001790#if defined(USE_GETADDRINFO)
1791 global.tune.options |= GTUNE_USE_GAI;
1792#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001793#if defined(SO_REUSEPORT)
1794 global.tune.options |= GTUNE_USE_REUSEPORT;
1795#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001796
1797 pid = getpid();
1798 progname = *argv;
1799 while ((tmp = strchr(progname, '/')) != NULL)
1800 progname = tmp + 1;
1801
Kevinm48936af2010-12-22 16:08:21 +00001802 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001803 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001804
Willy Tarreaubaaee002006-06-26 02:48:02 +02001805 argc--; argv++;
1806 while (argc > 0) {
1807 char *flag;
1808
1809 if (**argv == '-') {
1810 flag = *argv+1;
1811
1812 /* 1 arg */
1813 if (*flag == 'v') {
1814 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001815 if (flag[1] == 'v') /* -vv */
1816 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001817 exit(0);
1818 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001819#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001820 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001821 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001822#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001823#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001824 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001825 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001826#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001827#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001828 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001829 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001830#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001831#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001832 else if (*flag == 'd' && flag[1] == 'v')
1833 global.tune.options &= ~GTUNE_USE_EVPORTS;
1834#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001835#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001836 else if (*flag == 'd' && flag[1] == 'S')
1837 global.tune.options &= ~GTUNE_USE_SPLICE;
1838#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001839#if defined(USE_GETADDRINFO)
1840 else if (*flag == 'd' && flag[1] == 'G')
1841 global.tune.options &= ~GTUNE_USE_GAI;
1842#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001843#if defined(SO_REUSEPORT)
1844 else if (*flag == 'd' && flag[1] == 'R')
1845 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1846#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001847 else if (*flag == 'd' && flag[1] == 'V')
1848 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849 else if (*flag == 'V')
1850 arg_mode |= MODE_VERBOSE;
1851 else if (*flag == 'd' && flag[1] == 'b')
1852 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001853 else if (*flag == 'd' && flag[1] == 'W')
1854 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001855 else if (*flag == 'd' && flag[1] == 'M')
1856 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001857 else if (*flag == 'd' && flag[1] == 'r')
1858 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001859 else if (*flag == 'd')
1860 arg_mode |= MODE_DEBUG;
1861 else if (*flag == 'c')
1862 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001863 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001864 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001865 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001866 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001867#if defined(USE_SYSTEMD)
1868 global.tune.options |= GTUNE_USE_SYSTEMD;
1869#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001870 ha_alert("master-worker mode with systemd support (-Ws) requested, but not compiled. Use master-worker mode (-W) if you are not using Type=notify in your unit file or recompile with USE_SYSTEMD=1.\n\n");
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001871 usage(progname);
1872#endif
1873 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001874 else if (*flag == 'W')
1875 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001876 else if (*flag == 'q')
1877 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001878 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001879 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001880 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001881 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001882 }
William Lallemand4fc09692017-06-19 16:37:19 +02001883 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001884 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001885 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001886
Olivier Houchardf73629d2017-04-05 22:33:04 +02001887 argv++;
1888 argc--;
1889 }
William Lallemande7361152018-10-26 14:47:36 +02001890 else if (*flag == 'S') {
1891 struct wordlist *c;
1892
William Lallemanda6b32492020-06-04 23:49:20 +02001893 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001894 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1895 usage(progname);
1896 }
1897 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1898 ha_alert("Cannot allocate memory\n");
1899 exit(EXIT_FAILURE);
1900 }
1901 LIST_ADD(&mworker_cli_conf, &c->list);
1902
1903 argv++;
1904 argc--;
1905 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001906 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1907 /* list of pids to finish ('f') or terminate ('t') */
1908
1909 if (flag[1] == 'f')
1910 oldpids_sig = SIGUSR1; /* finish then exit */
1911 else
1912 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001913 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001914 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001915 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1916 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001917 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001918 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001919 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001920 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001921 errno = 0;
1922 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1923 if (errno) {
1924 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1925 flag,
1926 *argv, strerror(errno));
1927 exit(1);
1928 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001929 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001930 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001931 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1932 flag, endptr);
1933 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001934 }
Chris Lane236062f2018-02-05 23:15:44 +00001935 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001936 if (oldpids[nb_oldpids] <= 0)
1937 usage(progname);
1938 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001939 }
1940 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001941 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1942 /* now that's a cfgfile list */
1943 argv++; argc--;
1944 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001945 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001946 ha_alert("Cannot load configuration file/directory %s : %s\n",
1947 *argv,
1948 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001949 exit(1);
1950 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001951 argv++; argc--;
1952 }
1953 break;
1954 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001955 else { /* >=2 args */
1956 argv++; argc--;
1957 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001958 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001959
1960 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001961 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001962 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001963 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001964 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001965 case 'L' :
1966 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1967 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1968 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001969 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001970 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001971 ha_alert("Cannot load configuration file/directory %s : %s\n",
1972 *argv,
1973 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001974 exit(1);
1975 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001976 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001977 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001978 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001979 }
1980 }
1981 }
1982 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001983 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001984 argv++; argc--;
1985 }
1986
Christopher Faulete3a5e352017-10-24 13:53:54 +02001987 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001988 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989
William Lallemand944e6192018-11-21 15:48:31 +01001990 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001991 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001992 global.mode |= MODE_MWORKER_WAIT;
1993 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001994 }
1995
1996 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1997 atexit_flag = 1;
1998 atexit(reexec_on_failure);
1999 }
2000
Willy Tarreau576132e2011-09-10 19:26:56 +02002001 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002002 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02002003 exit(1);
2004 }
2005
Willy Tarreaubaaee002006-06-26 02:48:02 +02002006 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002007
2008 init_default_instance();
2009
William Lallemand944e6192018-11-21 15:48:31 +01002010 /* in wait mode, we don't try to read the configuration files */
2011 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02002012 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01002013
William Lallemand944e6192018-11-21 15:48:31 +01002014 /* handle cfgfiles that are actually directories */
2015 cfgfiles_expand_directories();
2016
2017 if (LIST_ISEMPTY(&cfg_cfgfiles))
2018 usage(progname);
2019
2020
2021 list_for_each_entry(wl, &cfg_cfgfiles, list) {
2022 int ret;
2023
William Lallemand7b302d82019-05-20 11:15:37 +02002024 if (trash->data)
2025 chunk_appendf(trash, ";");
2026
2027 chunk_appendf(trash, "%s", wl->s);
2028
William Lallemand944e6192018-11-21 15:48:31 +01002029 ret = readcfgfile(wl->s);
2030 if (ret == -1) {
2031 ha_alert("Could not open configuration file %s : %s\n",
2032 wl->s, strerror(errno));
2033 exit(1);
2034 }
2035 if (ret & (ERR_ABORT|ERR_FATAL))
2036 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
2037 err_code |= ret;
2038 if (err_code & ERR_ABORT)
2039 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01002040 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002041
William Lallemand944e6192018-11-21 15:48:31 +01002042 /* do not try to resolve arguments nor to spot inconsistencies when
2043 * the configuration contains fatal errors caused by files not found
2044 * or failed memory allocations.
2045 */
2046 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2047 ha_alert("Fatal errors found in configuration.\n");
2048 exit(1);
2049 }
William Lallemand7b302d82019-05-20 11:15:37 +02002050 if (trash->data)
2051 setenv("HAPROXY_CFGFILES", trash->area, 1);
2052
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02002053 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002054 if (global.mode & MODE_MWORKER) {
2055 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01002056 struct mworker_proc *tmproc;
2057
William Lallemand482f9a92019-04-12 16:15:00 +02002058 setenv("HAPROXY_MWORKER", "1", 1);
2059
William Lallemand16dd1b32018-11-19 18:46:18 +01002060 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
2061
William Lallemandf3a86832019-04-01 11:29:58 +02002062 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01002063 if (!tmproc) {
2064 ha_alert("Cannot allocate process structures.\n");
2065 exit(EXIT_FAILURE);
2066 }
William Lallemand8f7069a2019-04-12 16:09:23 +02002067 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01002068 tmproc->reloads = 0;
2069 tmproc->relative_pid = 0;
2070 tmproc->pid = pid;
2071 tmproc->timestamp = start_date.tv_sec;
2072 tmproc->ipc_fd[0] = -1;
2073 tmproc->ipc_fd[1] = -1;
2074
2075 proc_self = tmproc;
2076
2077 LIST_ADDQ(&proc_list, &tmproc->list);
2078 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002079
2080 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002081
William Lallemandf3a86832019-04-01 11:29:58 +02002082 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02002083 if (!tmproc) {
2084 ha_alert("Cannot allocate process structures.\n");
2085 exit(EXIT_FAILURE);
2086 }
2087
William Lallemand8f7069a2019-04-12 16:09:23 +02002088 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02002089 tmproc->pid = -1;
2090 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01002091 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002092 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01002093 tmproc->ipc_fd[0] = -1;
2094 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002095
2096 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
2097 exit(EXIT_FAILURE);
2098 }
2099
2100 LIST_ADDQ(&proc_list, &tmproc->list);
2101 }
William Lallemand944e6192018-11-21 15:48:31 +01002102 }
2103 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
2104 struct wordlist *it, *c;
2105
William Lallemand1b663612018-10-26 14:47:33 +02002106 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02002107
William Lallemande7361152018-10-26 14:47:36 +02002108
William Lallemand550db6d2018-11-06 17:37:12 +01002109 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02002110
William Lallemand550db6d2018-11-06 17:37:12 +01002111 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02002112 ha_alert("Can't create the master's CLI.\n");
2113 exit(EXIT_FAILURE);
2114 }
William Lallemande7361152018-10-26 14:47:36 +02002115
William Lallemand550db6d2018-11-06 17:37:12 +01002116 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
2117
2118 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2119 ha_alert("Can't create the master's CLI.\n");
2120 exit(EXIT_FAILURE);
2121 }
2122 LIST_DEL(&c->list);
2123 free(c->s);
2124 free(c);
2125 }
2126 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002127 }
2128
Willy Tarreaubb925012009-07-23 13:36:36 +02002129 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002130 for (px = proxies_list; px; px = px->next) {
2131 struct server *srv;
2132 struct post_proxy_check_fct *ppcf;
2133 struct post_server_check_fct *pscf;
2134
2135 list_for_each_entry(pscf, &post_server_check_list, list) {
2136 for (srv = px->srv; srv; srv = srv->next)
2137 err_code |= pscf->fct(srv);
2138 }
2139 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2140 err_code |= ppcf->fct(px);
2141 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002142 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002143 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002144 exit(1);
2145 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002146
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002147 err_code |= pattern_finalize_config();
2148 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2149 ha_alert("Failed to finalize pattern config.\n");
2150 exit(1);
2151 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002152
Willy Tarreau70060452015-12-14 12:46:07 +01002153 /* recompute the amount of per-process memory depending on nbproc and
2154 * the shared SSL cache size (allowed to exist in all processes).
2155 */
2156 if (global.rlimit_memmax_all) {
2157#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2158 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2159
2160 global.rlimit_memmax =
2161 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2162 ssl_cache_bytes) / global.nbproc +
2163 ssl_cache_bytes + 1048575LL) / 1048576LL;
2164#else
2165 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2166#endif
2167 }
2168
Willy Tarreaue5733232019-05-22 19:24:06 +02002169#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002170 err_code |= netns_init();
2171 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002172 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002173 exit(1);
2174 }
2175#endif
2176
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002177 /* Apply server states */
2178 apply_server_state();
2179
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002180 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002181 srv_compute_all_admin_states(px);
2182
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002183 /* Apply servers' configured address */
2184 err_code |= srv_init_addr();
2185 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002187 exit(1);
2188 }
2189
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002190 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
2191 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
2192 exit(1);
2193 }
2194
Willy Tarreaubaaee002006-06-26 02:48:02 +02002195 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002196 struct peers *pr;
2197 struct proxy *px;
2198
Willy Tarreaubebd2122020-04-15 16:06:11 +02002199 if (warned & WARN_ANY)
2200 qfprintf(stdout, "Warnings were found.\n");
2201
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002202 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002203 if (pr->peers_fe)
2204 break;
2205
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002206 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002207 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002208 break;
2209
2210 if (pr || px) {
2211 /* At least one peer or one listener has been found */
2212 qfprintf(stdout, "Configuration file is valid\n");
2213 exit(0);
2214 }
2215 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2216 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002217 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002218
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002219 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002220 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002221
Willy Tarreaue6945732016-12-21 19:57:00 +01002222 list_for_each_entry(pcf, &post_check_list, list) {
2223 err_code |= pcf->fct();
2224 if (err_code & (ERR_ABORT|ERR_FATAL))
2225 exit(1);
2226 }
2227
Willy Tarreaubaaee002006-06-26 02:48:02 +02002228 if (cfg_maxconn > 0)
2229 global.maxconn = cfg_maxconn;
2230
Willy Tarreau8d687d82019-03-01 09:39:42 +01002231 if (global.stats_fe)
2232 global.maxsock += global.stats_fe->maxconn;
2233
2234 if (cfg_peers) {
2235 /* peers also need to bypass global maxconn */
2236 struct peers *p = cfg_peers;
2237
2238 for (p = cfg_peers; p; p = p->next)
2239 if (p->peers_fe)
2240 global.maxsock += p->peers_fe->maxconn;
2241 }
2242
Willy Tarreaubaaee002006-06-26 02:48:02 +02002243 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002244 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002245 global.pidfile = strdup(cfg_pidfile);
2246 }
2247
Willy Tarreaud0256482015-01-15 21:45:22 +01002248 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002249 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2250 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2251 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2252 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002253 *
2254 * If memmax is set, then it depends on which values are set. If
2255 * maxsslconn is set, we use memmax to determine how many cleartext
2256 * connections may be added, and set maxconn to the sum of the two.
2257 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2258 * the remaining amount of memory between memmax and the cleartext
2259 * connections. If neither are set, then it is considered that all
2260 * connections are SSL-capable, and maxconn is computed based on this,
2261 * then maxsslconn accordingly. We need to know if SSL is used on the
2262 * frontends, backends, or both, because when it's used on both sides,
2263 * we need twice the value for maxsslconn, but we only count the
2264 * handshake once since it is not performed on the two sides at the
2265 * same time (frontend-side is terminated before backend-side begins).
2266 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002267 * ssl_handshake_cost during its initialization. In any case, if
2268 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2269 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002270 */
Willy Tarreauac350932019-03-01 15:43:14 +01002271 ideal_maxconn = compute_ideal_maxconn();
2272
Willy Tarreaud0256482015-01-15 21:45:22 +01002273 if (!global.rlimit_memmax) {
2274 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002275 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002276 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2277 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2278 }
2279 }
2280#ifdef USE_OPENSSL
2281 else if (!global.maxconn && !global.maxsslconn &&
2282 (global.ssl_used_frontend || global.ssl_used_backend)) {
2283 /* memmax is set, compute everything automatically. Here we want
2284 * to ensure that all SSL connections will be served. We take
2285 * care of the number of sides where SSL is used, and consider
2286 * the worst case : SSL used on both sides and doing a handshake
2287 * simultaneously. Note that we can't have more than maxconn
2288 * handshakes at a time by definition, so for the worst case of
2289 * two SSL conns per connection, we count a single handshake.
2290 */
2291 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2292 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002293 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002294
2295 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2296 mem -= global.maxzlibmem;
2297 mem = mem * MEM_USABLE_RATIO;
2298
Willy Tarreau304e17e2020-03-10 17:54:54 +01002299 /* Principle: we test once to set maxconn according to the free
2300 * memory. If it results in values the system rejects, we try a
2301 * second time by respecting rlim_fd_max. If it fails again, we
2302 * go back to the initial value and will let the final code
2303 * dealing with rlimit report the error. That's up to 3 attempts.
2304 */
2305 do {
2306 global.maxconn = mem /
2307 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
2308 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2309 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01002310
Willy Tarreau304e17e2020-03-10 17:54:54 +01002311 if (retried == 1)
2312 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2313 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002314#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002315 if (global.maxconn > SYSTEM_MAXCONN)
2316 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002317#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01002318 global.maxsslconn = sides * global.maxconn;
2319
2320 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2321 break;
2322 } while (retried++ < 2);
2323
Willy Tarreaud0256482015-01-15 21:45:22 +01002324 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2325 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2326 global.maxconn, global.maxsslconn);
2327 }
2328 else if (!global.maxsslconn &&
2329 (global.ssl_used_frontend || global.ssl_used_backend)) {
2330 /* memmax and maxconn are known, compute maxsslconn automatically.
2331 * maxsslconn being forced, we don't know how many of it will be
2332 * on each side if both sides are being used. The worst case is
2333 * when all connections use only one SSL instance because
2334 * handshakes may be on two sides at the same time.
2335 */
2336 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2337 int64_t mem = global.rlimit_memmax * 1048576ULL;
2338 int64_t sslmem;
2339
2340 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2341 mem -= global.maxzlibmem;
2342 mem = mem * MEM_USABLE_RATIO;
2343
Willy Tarreau87b09662015-04-03 00:22:06 +02002344 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002345 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2346 global.maxsslconn = round_2dig(global.maxsslconn);
2347
2348 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002349 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2350 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2351 "without SSL is %d, but %d was found and SSL is in use.\n",
2352 global.rlimit_memmax,
2353 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2354 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002355 exit(1);
2356 }
2357
2358 if (global.maxsslconn > sides * global.maxconn)
2359 global.maxsslconn = sides * global.maxconn;
2360
2361 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2362 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2363 }
2364#endif
2365 else if (!global.maxconn) {
2366 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2367 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2368 int64_t mem = global.rlimit_memmax * 1048576ULL;
2369 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002370 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002371
2372 if (global.ssl_used_frontend || global.ssl_used_backend)
2373 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2374
2375 mem -= global.maxzlibmem;
2376 mem = mem * MEM_USABLE_RATIO;
2377
2378 clearmem = mem;
2379 if (sides)
2380 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2381
Willy Tarreau304e17e2020-03-10 17:54:54 +01002382 /* Principle: we test once to set maxconn according to the free
2383 * memory. If it results in values the system rejects, we try a
2384 * second time by respecting rlim_fd_max. If it fails again, we
2385 * go back to the initial value and will let the final code
2386 * dealing with rlimit report the error. That's up to 3 attempts.
2387 */
2388 do {
2389 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
2390 if (retried == 1)
2391 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2392 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002393#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002394 if (global.maxconn > SYSTEM_MAXCONN)
2395 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002396#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002397
Willy Tarreau304e17e2020-03-10 17:54:54 +01002398 if (clearmem <= 0 || !global.maxconn) {
2399 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2400 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2401 "is %d, but %d was found.\n",
2402 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01002404 global.maxsslconn);
2405 exit(1);
2406 }
2407
2408 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2409 break;
2410 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01002411
2412 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2413 if (sides && global.maxsslconn > sides * global.maxconn) {
2414 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2415 "to be limited to %d. Better reduce global.maxsslconn to get more "
2416 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2417 }
2418 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2419 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002420 }
2421
Willy Tarreaua409f302020-03-10 17:08:53 +01002422 global.maxsock = compute_ideal_maxsock(global.maxconn);
2423 global.hardmaxconn = global.maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002424
Olivier Houchard88698d92019-04-16 19:07:22 +02002425 /* update connection pool thresholds */
2426 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2427 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2428
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002429 proxy_adjust_all_maxconn();
2430
Willy Tarreau1db37712007-06-03 17:16:49 +02002431 if (global.tune.maxpollevents <= 0)
2432 global.tune.maxpollevents = MAX_POLL_EVENTS;
2433
Olivier Houchard1599b802018-05-24 18:59:04 +02002434 if (global.tune.runqueue_depth <= 0)
2435 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2436
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002437 if (global.tune.recv_enough == 0)
2438 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2439
Willy Tarreau27a674e2009-08-17 07:23:33 +02002440 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2441 global.tune.maxrewrite = global.tune.bufsize / 2;
2442
Willy Tarreaubaaee002006-06-26 02:48:02 +02002443 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2444 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002445 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002446 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2447 }
2448
William Lallemand095ba4c2017-06-01 17:38:50 +02002449 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002450 /* command line daemon mode inhibits foreground and debug modes mode */
2451 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002452 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002453 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002454
2455 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002456
William Lallemand095ba4c2017-06-01 17:38:50 +02002457 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002458 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002459 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002460 }
2461
William Lallemand095ba4c2017-06-01 17:38:50 +02002462 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002463 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002464 ha_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 +02002465 global.nbproc = 1;
2466 }
2467
2468 if (global.nbproc < 1)
2469 global.nbproc = 1;
2470
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002471 if (global.nbthread < 1)
2472 global.nbthread = 1;
2473
Christopher Faulet3ef26392017-08-29 16:46:57 +02002474 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002475 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002476 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002477 exit(1);
2478 }
2479
Christopher Faulet96d44832017-11-14 22:02:30 +01002480 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002481 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002482 exit(1);
2483 }
2484
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002485 /*
2486 * Note: we could register external pollers here.
2487 * Built-in pollers have been registered before main().
2488 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002489
Willy Tarreau43b78992009-01-25 15:42:27 +01002490 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002491 disable_poller("kqueue");
2492
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002493 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2494 disable_poller("evports");
2495
Willy Tarreau43b78992009-01-25 15:42:27 +01002496 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002497 disable_poller("epoll");
2498
Willy Tarreau43b78992009-01-25 15:42:27 +01002499 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002500 disable_poller("poll");
2501
Willy Tarreau43b78992009-01-25 15:42:27 +01002502 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002503 disable_poller("select");
2504
2505 /* Note: we could disable any poller by name here */
2506
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002507 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002508 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002509 fprintf(stderr, "\n");
2510 list_filters(stderr);
2511 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002512
Willy Tarreau4f60f162007-04-08 16:39:58 +02002513 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002514 ha_alert("No polling mechanism available.\n"
2515 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2516 " is too low on this platform to support maxconn and the number of listeners\n"
2517 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2518 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2519 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2520 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2521 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2522 " check build settings using 'haproxy -vv'.\n\n",
2523 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002524 exit(1);
2525 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002526 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2527 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002528 }
2529
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002530 if (!global.node)
2531 global.node = strdup(hostname);
2532
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002533 if (!hlua_post_init())
2534 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002535
Maxime de Roucy0f503922016-05-13 23:52:55 +02002536 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002537}
2538
Simon Horman6fb82592011-07-15 13:14:11 +09002539static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002540{
Simon Hormanac821422011-07-15 13:14:09 +09002541 struct acl_term_suite *suite, *suiteb;
2542 struct acl_term *term, *termb;
2543
Simon Horman6fb82592011-07-15 13:14:11 +09002544 if (!cond)
2545 return;
2546
2547 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2548 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2549 LIST_DEL(&term->list);
2550 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002551 }
Simon Horman6fb82592011-07-15 13:14:11 +09002552 LIST_DEL(&suite->list);
2553 free(suite);
2554 }
2555
2556 free(cond);
2557}
2558
Christopher Fauletcb550132019-12-17 11:25:46 +01002559static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002560{
Christopher Fauletcb550132019-12-17 11:25:46 +01002561 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002562
Christopher Fauletcb550132019-12-17 11:25:46 +01002563 list_for_each_entry_safe(rule, ruleb, rules, list) {
2564 LIST_DEL(&rule->list);
2565 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002566 if (rule->release_ptr)
2567 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002568 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002569 }
2570}
2571
Simon Horman6fb82592011-07-15 13:14:11 +09002572static void deinit_stick_rules(struct list *rules)
2573{
2574 struct sticking_rule *rule, *ruleb;
2575
2576 list_for_each_entry_safe(rule, ruleb, rules, list) {
2577 LIST_DEL(&rule->list);
2578 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002579 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002580 free(rule);
2581 }
2582}
2583
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002584void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002585{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002586 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002587 struct cap_hdr *h,*h_next;
2588 struct server *s,*s_next;
2589 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002590 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002591 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002592 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002593 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002594 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002595 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002596 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002597 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002598 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002599 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002600 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002601 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002602 struct proxy_deinit_fct *pxdf;
2603 struct server_deinit_fct *srvdf;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002604
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002605 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002606 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002607 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002608 free(p->id);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002609 free(p->cookie_name);
2610 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002611 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002612 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002613 free(p->capture_name);
2614 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002615 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002616 if (p->conf.logformat_string != default_http_log_format &&
2617 p->conf.logformat_string != default_tcp_log_format &&
2618 p->conf.logformat_string != clf_http_log_format)
2619 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002620
Willy Tarreau62a61232013-04-12 18:13:46 +02002621 free(p->conf.lfs_file);
2622 free(p->conf.uniqueid_format_string);
2623 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002624 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2625 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002626
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002627 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2628 free(p->conf.logformat_sd_string);
2629 free(p->conf.lfsd_file);
2630
Willy Tarreaub80c2302007-11-30 20:51:32 +01002631 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2632 LIST_DEL(&cond->list);
2633 prune_acl_cond(cond);
2634 free(cond);
2635 }
2636
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002637 /* build a list of unique uri_auths */
2638 if (!ua)
2639 ua = p->uri_auth;
2640 else {
2641 /* check if p->uri_auth is unique */
2642 for (uap = ua; uap; uap=uap->next)
2643 if (uap == p->uri_auth)
2644 break;
2645
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002646 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002647 /* add it, if it is */
2648 p->uri_auth->next = ua;
2649 ua = p->uri_auth;
2650 }
2651 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002652
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002653 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2654 LIST_DEL(&acl->list);
2655 prune_acl(acl);
2656 free(acl);
2657 }
2658
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002659 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2660 LIST_DEL(&srule->list);
2661 prune_acl_cond(srule->cond);
2662 free(srule->cond);
2663 free(srule);
2664 }
2665
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002666 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2667 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002668 if (rule->cond) {
2669 prune_acl_cond(rule->cond);
2670 free(rule->cond);
2671 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002672 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002673 free(rule);
2674 }
2675
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002676 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2677 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002678 if (rdr->cond) {
2679 prune_acl_cond(rdr->cond);
2680 free(rdr->cond);
2681 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002682 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002683 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2684 LIST_DEL(&lf->list);
2685 free(lf);
2686 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002687 free(rdr);
2688 }
2689
William Lallemand0f99e342011-10-12 17:50:54 +02002690 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2691 LIST_DEL(&log->list);
2692 free(log);
2693 }
2694
William Lallemand723b73a2012-02-08 16:37:49 +01002695 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2696 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002697 release_sample_expr(lf->expr);
2698 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002699 free(lf);
2700 }
2701
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002702 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2703 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002704 release_sample_expr(lf->expr);
2705 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002706 free(lf);
2707 }
2708
Christopher Fauletcb550132019-12-17 11:25:46 +01002709 deinit_act_rules(&p->tcp_req.inspect_rules);
2710 deinit_act_rules(&p->tcp_rep.inspect_rules);
2711 deinit_act_rules(&p->tcp_req.l4_rules);
2712 deinit_act_rules(&p->tcp_req.l5_rules);
2713 deinit_act_rules(&p->http_req_rules);
2714 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002715 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002716
Simon Horman6fb82592011-07-15 13:14:11 +09002717 deinit_stick_rules(&p->storersp_rules);
2718 deinit_stick_rules(&p->sticking_rules);
2719
Willy Tarreaubaaee002006-06-26 02:48:02 +02002720 h = p->req_cap;
2721 while (h) {
2722 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002723 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002724 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002725 free(h);
2726 h = h_next;
2727 }/* end while(h) */
2728
2729 h = p->rsp_cap;
2730 while (h) {
2731 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002732 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002733 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002734 free(h);
2735 h = h_next;
2736 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002737
Willy Tarreaubaaee002006-06-26 02:48:02 +02002738 s = p->srv;
2739 while (s) {
2740 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002741
Dragan Dosen026ef572019-04-30 00:56:20 +02002742
Willy Tarreauf6562792019-05-07 19:05:35 +02002743 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002744
Willy Tarreaua534fea2008-08-03 12:19:50 +02002745 free(s->id);
2746 free(s->cookie);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002747 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002748 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002749 free(s->idle_conns);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002750 free(s->safe_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002751 free(s->available_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002752 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002753
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002754 if (s->use_ssl == 1 || s->check.use_ssl == 1 || (s->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002755 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2756 xprt_get(XPRT_SSL)->destroy_srv(s);
2757 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002758 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002759
2760 list_for_each_entry(srvdf, &server_deinit_list, list)
2761 srvdf->fct(s);
2762
Willy Tarreaubaaee002006-06-26 02:48:02 +02002763 free(s);
2764 s = s_next;
2765 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002766
Willy Tarreau4348fad2012-09-20 16:48:07 +02002767 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002768 /*
2769 * Zombie proxy, the listener just pretend to be up
2770 * because they still hold an opened fd.
2771 * Close it and give the listener its real state.
2772 */
2773 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2774 close(l->fd);
2775 l->state = LI_INIT;
2776 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002777 unbind_listener(l);
2778 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002779 LIST_DEL(&l->by_fe);
2780 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002781 free(l->name);
2782 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002783 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002784 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002785
Willy Tarreau4348fad2012-09-20 16:48:07 +02002786 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002787 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002788 if (bind_conf->xprt->destroy_bind_conf)
2789 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002790 free(bind_conf->file);
2791 free(bind_conf->arg);
2792 LIST_DEL(&bind_conf->by_fe);
2793 free(bind_conf);
2794 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002795
Christopher Fauletd7c91962015-04-30 11:48:27 +02002796 flt_deinit(p);
2797
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002798 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2799 pxdf->fct(p);
2800
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002801 free(p->desc);
2802 free(p->fwdfor_hdr_name);
2803
Olivier Houchard3f795f72019-04-17 22:51:06 +02002804 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002805
Willy Tarreaubafbe012017-11-24 17:34:44 +01002806 pool_destroy(p->req_cap_pool);
2807 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002808 if (p->table)
2809 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002810
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002811 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002812 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002813 HA_SPIN_DESTROY(&p0->lbprm.lock);
2814 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002815 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002816 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002817
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002818 while (ua) {
2819 uap = ua;
2820 ua = ua->next;
2821
Willy Tarreaua534fea2008-08-03 12:19:50 +02002822 free(uap->uri_prefix);
2823 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002824 free(uap->node);
2825 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002826
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002827 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002828 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002829
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002830 free(uap);
2831 }
2832
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002833 userlist_free(userlist);
2834
David Carlier834cb2e2015-09-25 12:02:25 +01002835 cfg_unregister_sections();
2836
Christopher Faulet0132d062017-07-26 15:33:35 +02002837 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002838
Willy Tarreaudd815982007-10-16 12:25:14 +02002839 protocol_unbind_all();
2840
Willy Tarreau05554e62016-12-21 20:46:26 +01002841 list_for_each_entry(pdf, &post_deinit_list, list)
2842 pdf->fct();
2843
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002844 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002845 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002846 free(global.chroot); global.chroot = NULL;
2847 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002848 free(global.node); global.node = NULL;
2849 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002850 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002851 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002852 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002853
William Lallemand0f99e342011-10-12 17:50:54 +02002854 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2855 LIST_DEL(&log->list);
2856 free(log);
2857 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002858 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002859 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002860 LIST_DEL(&wl->list);
2861 free(wl);
2862 }
2863
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002864 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2865 if (bol->must_free)
2866 free((void *)bol->str);
2867 LIST_DEL(&bol->list);
2868 free(bol);
2869 }
2870
Christopher Fauletff2613e2016-11-09 11:36:17 +01002871 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002872 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002873 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002874} /* end deinit() */
2875
William Lallemand72160322018-11-06 17:37:16 +01002876
Willy Tarreau918ff602011-07-25 16:33:49 +02002877/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002878void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002879{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002880 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002881
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002882 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002883 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002884 wake_expired_tasks();
2885
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002886 /* Process a few tasks */
2887 process_runnable_tasks();
2888
William Lallemand1aab50b2018-06-07 09:46:01 +02002889 /* check if we caught some signals and process them in the
2890 first thread */
2891 if (tid == 0)
2892 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002893
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002894 /* also stop if we failed to cleanly stop all tasks */
2895 if (killed > 1)
2896 break;
2897
Willy Tarreau10146c92015-04-13 20:44:19 +02002898 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002899 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002900 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002901 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002902 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002903 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002904 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002905 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2906 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002907 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002908 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002909 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002910 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002911 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002912 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002913
Willy Tarreau4f46a352020-03-23 09:27:28 +01002914 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002915 int i;
2916
2917 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002918 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2919 /* notify all threads that stopping was just set */
2920 for (i = 0; i < global.nbthread; i++)
2921 if ((all_threads_mask >> i) & 1)
2922 wake_thread(i);
2923 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002924 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002925
2926 /* stop when there's nothing left to do */
2927 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002928 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
2929 /* wake all threads waiting on jobs==0 */
2930 for (i = 0; i < global.nbthread; i++)
2931 if (((all_threads_mask & ~tid_bit) >> i) & 1)
2932 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01002933 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002934 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002935 }
2936
Willy Tarreauc49ba522019-12-11 08:12:23 +01002937 /* If we have to sleep, measure how long */
2938 next = wake ? TICK_ETERNITY : next_timer_expiry();
2939
Willy Tarreau58b458d2008-06-29 22:40:23 +02002940 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002941 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002942
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002943 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002944 }
2945}
2946
Christopher Faulet1d17c102017-08-29 15:38:48 +02002947static void *run_thread_poll_loop(void *data)
2948{
Willy Tarreau082b6282019-05-22 14:42:12 +02002949 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002950 struct per_thread_init_fct *ptif;
2951 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002952 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002953 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02002954 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2955 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002956
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002957 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002958 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002959
Willy Tarreauf6178242019-05-21 19:46:58 +02002960#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002961#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002962 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002963#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002964 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002965#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002966#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002967 /* Now, initialize one thread init at a time. This is better since
2968 * some init code is a bit tricky and may release global resources
2969 * after reallocating them locally. This will also ensure there is
2970 * no race on file descriptors allocation.
2971 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002972#ifdef USE_THREAD
2973 pthread_mutex_lock(&init_mutex);
2974#endif
2975 /* The first thread must set the number of threads left */
2976 if (!init_left)
2977 init_left = global.nbthread;
2978 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002979
Christopher Faulet1d17c102017-08-29 15:38:48 +02002980 tv_update_date(-1,-1);
2981
Willy Tarreau082b6282019-05-22 14:42:12 +02002982 /* per-thread alloc calls performed here are not allowed to snoop on
2983 * other threads, so they are free to initialize at their own rhythm
2984 * as long as they act as if they were alone. None of them may rely
2985 * on resources initialized by the other ones.
2986 */
2987 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2988 if (!ptaf->fct()) {
2989 ha_alert("failed to allocate resources for thread %u.\n", tid);
2990 exit(1);
2991 }
2992 }
2993
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002994 /* per-thread init calls performed here are not allowed to snoop on
2995 * other threads, so they are free to initialize at their own rhythm
2996 * as long as they act as if they were alone.
2997 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002998 list_for_each_entry(ptif, &per_thread_init_list, list) {
2999 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003000 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003001 exit(1);
3002 }
3003 }
3004
Willy Tarreau71092822019-06-10 09:51:04 +02003005 /* enabling protocols will result in fd_insert() calls to be performed,
3006 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02003007 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02003008 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003009 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02003010 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003011
Willy Tarreau34a150c2019-06-11 09:16:41 +02003012#ifdef USE_THREAD
3013 pthread_cond_broadcast(&init_cond);
3014 pthread_mutex_unlock(&init_mutex);
3015
3016 /* now wait for other threads to finish starting */
3017 pthread_mutex_lock(&init_mutex);
3018 while (init_left)
3019 pthread_cond_wait(&init_cond, &init_mutex);
3020 pthread_mutex_unlock(&init_mutex);
3021#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003022
Willy Tarreaua45a8b52019-12-06 16:31:45 +01003023#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
3024 /* Let's refrain from using setuid executables. This way the impact of
3025 * an eventual vulnerability in a library remains limited. It may
3026 * impact external checks but who cares about them anyway ? In the
3027 * worst case it's possible to disable the option. Obviously we do this
3028 * in workers only. We can't hard-fail on this one as it really is
3029 * implementation dependent though we're interested in feedback, hence
3030 * the warning.
3031 */
3032 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
3033 static int warn_fail;
3034 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3035 ha_warning("Failed to disable setuid, please report to developers with detailed "
3036 "information about your operating system. You can silence this warning "
3037 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
3038 }
3039 }
3040#endif
3041
Willy Tarreaud96f1122019-12-03 07:07:36 +01003042#if defined(RLIMIT_NPROC)
3043 /* all threads have started, it's now time to prevent any new thread
3044 * or process from starting. Obviously we do this in workers only. We
3045 * can't hard-fail on this one as it really is implementation dependent
3046 * though we're interested in feedback, hence the warning.
3047 */
3048 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
3049 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
3050 static int warn_fail;
3051
3052 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3053 ha_warning("Failed to disable forks, please report to developers with detailed "
3054 "information about your operating system. You can silence this warning "
3055 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
3056 }
3057 }
3058#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003059 run_poll_loop();
3060
3061 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
3062 ptdf->fct();
3063
Willy Tarreau082b6282019-05-22 14:42:12 +02003064 list_for_each_entry(ptff, &per_thread_free_list, list)
3065 ptff->fct();
3066
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003067#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01003068 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003069 if (tid > 0)
3070 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003071#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003072 return NULL;
3073}
Christopher Faulet1d17c102017-08-29 15:38:48 +02003074
William Dauchyf9af9d72019-11-17 15:47:16 +01003075/* set uid/gid depending on global settings */
3076static void set_identity(const char *program_name)
3077{
3078 if (global.gid) {
3079 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
3080 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3081 " without 'uid'/'user' is generally useless.\n", program_name);
3082
3083 if (setgid(global.gid) == -1) {
3084 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
3085 protocol_unbind_all();
3086 exit(1);
3087 }
3088 }
3089
3090 if (global.uid && setuid(global.uid) == -1) {
3091 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
3092 protocol_unbind_all();
3093 exit(1);
3094 }
3095}
3096
Willy Tarreaubaaee002006-06-26 02:48:02 +02003097int main(int argc, char **argv)
3098{
3099 int err, retry;
3100 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02003101 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02003102 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003103
Olivier Houchard5fa300d2018-02-03 15:15:21 +01003104 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01003105
Willy Tarreauff9c9142019-02-07 10:39:36 +01003106 /* this can only safely be done here, though it's optimized away by
3107 * the compiler.
3108 */
3109 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
3110 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
3111 "HAProxy was built with value %d, please fix it and rebuild.\n",
3112 LONGBITS, MAX_PROCS);
3113 exit(1);
3114 }
3115
Willy Tarreaubf696402019-03-01 10:09:28 +01003116 /* take a copy of initial limits before we possibly change them */
3117 getrlimit(RLIMIT_NOFILE, &limit);
3118 rlim_fd_cur_at_boot = limit.rlim_cur;
3119 rlim_fd_max_at_boot = limit.rlim_max;
3120
Willy Tarreau5794fb02018-11-25 18:43:29 +01003121 /* process all initcalls in order of potential dependency */
3122 RUN_INITCALLS(STG_PREPARE);
3123 RUN_INITCALLS(STG_LOCK);
3124 RUN_INITCALLS(STG_ALLOC);
3125 RUN_INITCALLS(STG_POOL);
3126 RUN_INITCALLS(STG_REGISTER);
3127 RUN_INITCALLS(STG_INIT);
3128
Emeric Bruncf20bf12010-10-22 16:06:11 +02003129 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003130 signal_register_fct(SIGQUIT, dump, SIGQUIT);
3131 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
3132 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02003133 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003134
Willy Tarreaue437c442010-03-17 18:02:46 +01003135 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
3136 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
3137 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003138 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003139 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003140
Willy Tarreaudc23a922011-02-16 11:10:36 +01003141 /* ulimits */
3142 if (!global.rlimit_nofile)
3143 global.rlimit_nofile = global.maxsock;
3144
3145 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01003146 limit.rlim_cur = global.rlimit_nofile;
3147 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
3148
Willy Tarreaudc23a922011-02-16 11:10:36 +01003149 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02003150 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01003151 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3152 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
3153 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3154 if (!(global.mode & MODE_MWORKER))
3155 exit(1);
3156 }
3157 else {
3158 /* try to set it to the max possible at least */
3159 limit.rlim_cur = limit.rlim_max;
3160 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3161 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003162
William Dauchy0fec3ab2019-10-27 20:08:11 +01003163 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
3164 "This will fail in >= v2.3\n",
3165 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3166 global.rlimit_nofile = limit.rlim_cur;
3167 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003168 }
3169 }
3170
3171 if (global.rlimit_memmax) {
3172 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003173 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003174#ifdef RLIMIT_AS
3175 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003176 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3177 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3178 argv[0], global.rlimit_memmax);
3179 if (!(global.mode & MODE_MWORKER))
3180 exit(1);
3181 }
3182 else
3183 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
3184 "This will fail in >= v2.3\n",
3185 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003186 }
3187#else
3188 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003189 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3190 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3191 argv[0], global.rlimit_memmax);
3192 if (!(global.mode & MODE_MWORKER))
3193 exit(1);
3194 }
3195 else
3196 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.",
3197 "This will fail in >= v2.3\n",
3198 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003199 }
3200#endif
3201 }
3202
Olivier Houchardf73629d2017-04-05 22:33:04 +02003203 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003204 if (strcmp("/dev/null", old_unixsocket) != 0) {
3205 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003206 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003207 if (!(global.mode & MODE_MWORKER))
3208 exit(1);
3209 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003210 }
3211 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003212 get_cur_unixsocket();
3213
Willy Tarreaubaaee002006-06-26 02:48:02 +02003214 /* We will loop at most 100 times with 10 ms delay each time.
3215 * That's at most 1 second. We only send a signal to old pids
3216 * if we cannot grab at least one port.
3217 */
3218 retry = MAX_START_RETRIES;
3219 err = ERR_NONE;
3220 while (retry >= 0) {
3221 struct timeval w;
3222 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003223 /* exit the loop on no error or fatal error */
3224 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003225 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003226 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003227 break;
3228
3229 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3230 * listening sockets. So on those platforms, it would be wiser to
3231 * simply send SIGUSR1, which will not be undoable.
3232 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003233 if (tell_old_pids(SIGTTOU) == 0) {
3234 /* no need to wait if we can't contact old pids */
3235 retry = 0;
3236 continue;
3237 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003238 /* give some time to old processes to stop listening */
3239 w.tv_sec = 0;
3240 w.tv_usec = 10*1000;
3241 select(0, NULL, NULL, NULL, &w);
3242 retry--;
3243 }
3244
3245 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003246 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003247 if (retry != MAX_START_RETRIES && nb_oldpids) {
3248 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003249 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003250 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003251 exit(1);
3252 }
3253
William Lallemand944e6192018-11-21 15:48:31 +01003254 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003255 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003256 /* Note: we don't have to send anything to the old pids because we
3257 * never stopped them. */
3258 exit(1);
3259 }
3260
Emeric Bruncf20bf12010-10-22 16:06:11 +02003261 err = protocol_bind_all(errmsg, sizeof(errmsg));
3262 if ((err & ~ERR_WARN) != ERR_NONE) {
3263 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003264 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003265
Christopher Faulet767a84b2017-11-24 16:50:31 +01003266 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003267 protocol_unbind_all(); /* cleanup everything we can */
3268 if (nb_oldpids)
3269 tell_old_pids(SIGTTIN);
3270 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003271 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003272 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003273 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003274 /* Ok, all listener should now be bound, close any leftover sockets
3275 * the previous process gave us, we don't need them anymore
3276 */
3277 while (xfer_sock_list != NULL) {
3278 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3279 close(xfer_sock_list->fd);
3280 free(xfer_sock_list->iface);
3281 free(xfer_sock_list->namespace);
3282 free(xfer_sock_list);
3283 xfer_sock_list = tmpxfer;
3284 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003285
Willy Tarreaubaaee002006-06-26 02:48:02 +02003286 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003287 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3288 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003289
Willy Tarreaubaaee002006-06-26 02:48:02 +02003290 /* MODE_QUIET can inhibit alerts and warnings below this line */
3291
PiBa-NL149a81a2017-12-25 21:03:31 +01003292 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3293 /* either stdin/out/err are already closed or should stay as they are. */
3294 if ((global.mode & MODE_DAEMON)) {
3295 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3296 global.mode &= ~MODE_VERBOSE;
3297 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3298 }
3299 } else {
3300 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3301 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003302 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003303 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003304 }
3305
3306 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003307 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003308 unlink(global.pidfile);
3309 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3310 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003311 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003312 if (nb_oldpids)
3313 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003314 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003315 exit(1);
3316 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003317 }
3318
Willy Tarreaub38651a2007-03-24 17:24:39 +01003319 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003320 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3321 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003322 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003323 exit(1);
3324 }
3325
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003326 /* If the user is not root, we'll still let him try the configuration
3327 * but we inform him that unexpected behaviour may occur.
3328 */
3329 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003330 ha_warning("[%s.main()] Some options which require full privileges"
3331 " might not work well.\n"
3332 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003333
William Lallemand095ba4c2017-06-01 17:38:50 +02003334 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3335
3336 /* chroot if needed */
3337 if (global.chroot != NULL) {
3338 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003339 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003340 if (nb_oldpids)
3341 tell_old_pids(SIGTTIN);
3342 protocol_unbind_all();
3343 exit(1);
3344 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003345 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003346 }
3347
William Lallemand944e6192018-11-21 15:48:31 +01003348 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003349 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003350
William Lallemand27edc4b2019-05-07 17:49:33 +02003351 /* send a SIGTERM to workers who have a too high reloads number */
3352 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3353 mworker_kill_max_reloads(SIGTERM);
3354
William Lallemand8a361b52017-06-20 11:20:33 +02003355 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3356 nb_oldpids = 0;
3357 free(oldpids);
3358 oldpids = NULL;
3359 }
3360
3361
Willy Tarreaubaaee002006-06-26 02:48:02 +02003362 /* Note that any error at this stage will be fatal because we will not
3363 * be able to restart the old pids.
3364 */
3365
William Dauchyf9af9d72019-11-17 15:47:16 +01003366 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3367 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003368
Willy Tarreaubaaee002006-06-26 02:48:02 +02003369 /* check ulimits */
3370 limit.rlim_cur = limit.rlim_max = 0;
3371 getrlimit(RLIMIT_NOFILE, &limit);
3372 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003373 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3374 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3375 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3376 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3377 global.maxsock);
3378 if (!(global.mode & MODE_MWORKER))
3379 exit(1);
3380 }
3381 else
3382 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3383 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3384 "This will fail in >= v2.3\n",
3385 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3386 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003387 }
3388
William Lallemand944e6192018-11-21 15:48:31 +01003389 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003390 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003391 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003392 int ret = 0;
3393 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003394 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003395
William Lallemand095ba4c2017-06-01 17:38:50 +02003396 /*
3397 * if daemon + mworker: must fork here to let a master
3398 * process live in background before forking children
3399 */
William Lallemand73b85e72017-06-01 17:38:51 +02003400
3401 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3402 && (global.mode & MODE_MWORKER)
3403 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003404 ret = fork();
3405 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003406 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003407 protocol_unbind_all();
3408 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003409 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003410 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003411 } else /* change the process group ID in the child (master process) */
3412 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003413 }
William Lallemande20b6a62017-06-01 17:38:55 +02003414
William Lallemande20b6a62017-06-01 17:38:55 +02003415
William Lallemanddeed7802017-11-06 11:00:04 +01003416 /* if in master-worker mode, write the PID of the father */
3417 if (global.mode & MODE_MWORKER) {
3418 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003419 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003420 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003421 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003422 }
3423
Willy Tarreaubaaee002006-06-26 02:48:02 +02003424 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003425 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003426 if (global.mode & MODE_MWORKER)
3427 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003428 for (proc = 0; proc < global.nbproc; proc++) {
3429 ret = fork();
3430 if (ret < 0) {
3431 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3432 protocol_unbind_all();
3433 exit(1); /* there has been an error */
3434 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003435 else if (ret == 0) { /* child breaks here */
3436 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003437 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003438 }
William Lallemand944e6192018-11-21 15:48:31 +01003439 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3440 char pidstr[100];
3441 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003442 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01003443 }
3444 if (global.mode & MODE_MWORKER) {
3445 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003446
William Lallemand220567e2018-11-21 18:04:53 +01003447 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003448 /* find the right mworker_proc */
3449 list_for_each_entry(child, &proc_list, list) {
3450 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003451 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003452 child->timestamp = now.tv_sec;
3453 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003454 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003455 break;
3456 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003457 }
3458 }
William Lallemandbc193052018-09-11 10:06:26 +02003459
William Lallemand944e6192018-11-21 15:48:31 +01003460 relative_pid++; /* each child will get a different one */
3461 pid_bit <<= 1;
3462 }
3463 } else {
3464 /* wait mode */
3465 global.nbproc = 1;
3466 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003467 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003468
3469#ifdef USE_CPU_AFFINITY
3470 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003471 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003472 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003473#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003474 {
3475 cpuset_t cpuset;
3476 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003477 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003478
3479 CPU_ZERO(&cpuset);
3480 while ((i = ffsl(cpu_map)) > 0) {
3481 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003482 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003483 }
3484 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3485 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003486#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003487 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003488#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003489#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003490 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003491 if (pidfd >= 0) {
3492 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3493 close(pidfd);
3494 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003495
3496 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003497 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003498
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003499 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003500 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003501
3502 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3503 (global.mode & MODE_DAEMON)) {
3504 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003505 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3506 stdio_quiet(-1);
3507
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003508 global.mode &= ~MODE_VERBOSE;
3509 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003510 }
3511
William Lallemandb3f2be32018-09-11 10:06:18 +02003512 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003513 /* should never get there */
3514 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003515 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003516#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003517 ssl_free_dh();
3518#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003519 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003520 }
3521
William Lallemandcb11fd22017-06-01 17:38:52 +02003522 /* child must never use the atexit function */
3523 atexit_flag = 0;
3524
William Lallemandbc193052018-09-11 10:06:26 +02003525 /* close useless master sockets */
3526 if (global.mode & MODE_MWORKER) {
3527 struct mworker_proc *child, *it;
3528 master = 0;
3529
William Lallemand309dc9a2018-10-26 14:47:45 +02003530 mworker_cli_proxy_stop();
3531
William Lallemandbc193052018-09-11 10:06:26 +02003532 /* free proc struct of other processes */
3533 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003534 /* close the FD of the master side for all
3535 * workers, we don't need to close the worker
3536 * side of other workers since it's done with
3537 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003538 if (child->ipc_fd[0] >= 0)
3539 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003540 if (child->relative_pid == relative_pid &&
3541 child->reloads == 0) {
3542 /* keep this struct if this is our pid */
3543 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003544 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003545 }
William Lallemandbc193052018-09-11 10:06:26 +02003546 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003547 mworker_free_child(child);
3548 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003549 }
3550 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003551
William Lallemande1340412017-12-28 16:09:36 +01003552 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3553 devnullfd = open("/dev/null", O_RDWR, 0);
3554 if (devnullfd < 0) {
3555 ha_alert("Cannot open /dev/null\n");
3556 exit(EXIT_FAILURE);
3557 }
3558 }
3559
William Lallemand095ba4c2017-06-01 17:38:50 +02003560 /* Must chroot and setgid/setuid in the children */
3561 /* chroot if needed */
3562 if (global.chroot != NULL) {
3563 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003564 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003565 if (nb_oldpids)
3566 tell_old_pids(SIGTTIN);
3567 protocol_unbind_all();
3568 exit(1);
3569 }
3570 }
3571
3572 free(global.chroot);
3573 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003574 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003575
William Lallemand7f80eb22017-05-26 18:19:55 +02003576 /* pass through every cli socket, and check if it's bound to
3577 * the current process and if it exposes listeners sockets.
3578 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3579 * */
3580
3581 if (global.stats_fe) {
3582 struct bind_conf *bind_conf;
3583
3584 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3585 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3586 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3587 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3588 break;
3589 }
3590 }
3591 }
3592 }
3593
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003594 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003595 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003596 while (px != NULL) {
3597 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003598 if (!(px->bind_proc & (1UL << proc))) {
3599 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3600 zombify_proxy(px);
3601 else
3602 stop_proxy(px);
3603 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003604 }
3605 px = px->next;
3606 }
3607
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003608 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003609 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003610 if (!curpeers->peers_fe)
3611 continue;
3612
3613 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3614 continue;
3615
3616 stop_proxy(curpeers->peers_fe);
3617 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003618 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003619 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003620 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003621 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003622 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003623 curpeers->peers_fe = NULL;
3624 }
3625
William Lallemand2e8fad92018-11-13 16:18:23 +01003626 /*
3627 * This is only done in daemon mode because we might want the
3628 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3629 * we should now close the 3 first FDs to ensure that we can
3630 * detach from the TTY. We MUST NOT do it in other cases since
3631 * it would have already be done, and 0-2 would have been
3632 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003633 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003634 if ((global.mode & MODE_DAEMON) &&
3635 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003636 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003637 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003638 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003639 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3640 }
3641 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003642 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3643 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003644 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003645 }
3646
William Dauchye039f262019-11-17 15:47:15 +01003647 /* try our best to re-enable core dumps depending on system capabilities.
3648 * What is addressed here :
3649 * - remove file size limits
3650 * - remove core size limits
3651 * - mark the process dumpable again if it lost it due to user/group
3652 */
3653 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3654 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3655
3656#if defined(RLIMIT_FSIZE)
3657 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3658 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3659 ha_alert("[%s.main()] Failed to set the raise the maximum "
3660 "file size.\n", argv[0]);
3661 if (!(global.mode & MODE_MWORKER))
3662 exit(1);
3663 }
3664 else
3665 ha_warning("[%s.main()] Failed to set the raise the maximum "
3666 "file size. This will fail in >= v2.3\n", argv[0]);
3667 }
3668#endif
3669
3670#if defined(RLIMIT_CORE)
3671 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3672 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3673 ha_alert("[%s.main()] Failed to set the raise the core "
3674 "dump size.\n", argv[0]);
3675 if (!(global.mode & MODE_MWORKER))
3676 exit(1);
3677 }
3678 else
3679 ha_warning("[%s.main()] Failed to set the raise the core "
3680 "dump size. This will fail in >= v2.3\n", argv[0]);
3681 }
3682#endif
3683
3684#if defined(USE_PRCTL)
3685 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3686 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3687 "no core will be dumped.\n", argv[0]);
3688#endif
3689 }
3690
Christopher Faulete3a5e352017-10-24 13:53:54 +02003691 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003692 /*
3693 * That's it : the central polling loop. Run until we stop.
3694 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003695#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003696 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003697 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003698 int i;
3699
William Lallemand1aab50b2018-06-07 09:46:01 +02003700 /* ensure the signals will be blocked in every thread */
3701 sigfillset(&blocked_sig);
3702 sigdelset(&blocked_sig, SIGPROF);
3703 sigdelset(&blocked_sig, SIGBUS);
3704 sigdelset(&blocked_sig, SIGFPE);
3705 sigdelset(&blocked_sig, SIGILL);
3706 sigdelset(&blocked_sig, SIGSEGV);
3707 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3708
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003709 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003710 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003711 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003712 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003713
Christopher Faulet62519022017-10-16 15:49:32 +02003714#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003715 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003716 if (global.cpu_map.proc_t1[relative_pid-1])
3717 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3718
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003719 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003720 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003721 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003722
Willy Tarreau421f02e2018-01-20 18:19:22 +01003723 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003724 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003725#if defined(__APPLE__)
3726 int j;
3727 unsigned long cpu_map = global.cpu_map.thread[i];
3728
3729 while ((j = ffsl(cpu_map)) > 0) {
3730 thread_affinity_policy_data_t cpu_set = { j - 1 };
3731 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3732 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3733 cpu_map &= ~(1UL << (j - 1));
3734 }
3735#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003736#if defined(__FreeBSD__) || defined(__NetBSD__)
3737 cpuset_t cpuset;
3738#else
3739 cpu_set_t cpuset;
3740#endif
3741 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003742 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003743
3744 CPU_ZERO(&cpuset);
3745
3746 while ((j = ffsl(cpu_map)) > 0) {
3747 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003748 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003749 }
David Carliera92c5ce2019-09-13 05:03:12 +01003750 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003751 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003752#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003753 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003754 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003755#endif /* !USE_CPU_AFFINITY */
3756
William Lallemand1aab50b2018-06-07 09:46:01 +02003757 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003758 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003759
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003760 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003761 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003762
3763 /* Wait the end of other threads */
3764 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003765 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003766
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003767#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3768 show_lock_stats();
3769#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003770 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003771#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003772 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003773 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003774#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003775
3776 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003777 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003778
Willy Tarreaubaaee002006-06-26 02:48:02 +02003779 exit(0);
3780}
3781
Willy Tarreaubb1b63c2020-04-15 17:00:03 +02003782#if defined(__clang_version__)
3783REGISTER_BUILD_OPTS("Built with clang compiler version " __clang_version__);
3784#elif defined(__VERSION__)
3785REGISTER_BUILD_OPTS("Built with gcc compiler version " __VERSION__);
3786#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003787
3788/*
3789 * Local variables:
3790 * c-indent-level: 8
3791 * c-basic-offset: 8
3792 * End:
3793 */