blob: e3b140b892912aba2d2c96aedca055e418705353 [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 Tarreaudcc048a2020-06-04 19:11:43 +020081#include <haproxy/acl.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020082#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020083#include <haproxy/api.h>
Willy Tarreau6c3a6812020-03-06 18:57:15 +010084#include <import/sha1.h>
85
Willy Tarreau8d366972020-05-27 16:10:29 +020086#include <haproxy/base64.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020087#include <common/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020088#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020089#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020090#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020091#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020092#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020093#include <haproxy/errors.h>
Willy Tarreau86416052020-06-04 09:20:54 +020094#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020095#include <haproxy/http_rules.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020096#include <haproxy/pool.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020097#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020098#include <haproxy/listener.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020099#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +0200100#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +0200101#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +0200102#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200103#include <haproxy/pattern.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +0200104#include <haproxy/peers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +0200105#include <haproxy/sample.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200106#include <haproxy/regex.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +0200107#include <haproxy/session.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +0200108#include <haproxy/signal.h>
Willy Tarreau209108d2020-06-04 20:30:20 +0200109#include <haproxy/ssl_sock.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +0200110#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +0200111#include <haproxy/time.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +0200112#include <haproxy/uri_auth-t.h>
Willy Tarreaud6788052020-05-27 15:59:00 +0200113#include <haproxy/version.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +0200114#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200115#include <haproxy/thread.h>
Willy Tarreaua1718922020-06-04 16:25:31 +0200116#include <haproxy/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117
Willy Tarreau278161c2020-06-04 11:18:28 +0200118#include <haproxy/capture-t.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200119#include <types/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +0200120#include <haproxy/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121
Willy Tarreaua04ded52020-06-02 10:29:48 +0200122#include <haproxy/activity.h>
Willy Tarreauaa74c4e2020-06-04 10:19:23 +0200123#include <haproxy/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +0200125#include <proto/channel.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +0200126#include <haproxy/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200127#include <proto/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128#include <proto/log.h>
Willy Tarreau2dd7c352020-06-03 15:26:55 +0200129#include <haproxy/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200130#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131#include <proto/proxy.h>
132#include <proto/queue.h>
133#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200134#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100136/* array of init calls for older platforms */
137DECLARE_INIT_STAGES;
138
Willy Tarreau477ecd82010-01-03 21:12:30 +0100139/* list of config files */
140static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100142int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100143unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100144unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100146volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100147volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100148
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149/* global options */
150struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100151 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100152 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100153 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200154 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200155 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100156 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100157 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100158 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200159 .unix_bind = {
160 .ux = {
161 .uid = -1,
162 .gid = -1,
163 .mode = 0,
164 }
165 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200166 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100167 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100168 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100169 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100170 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100171 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200172 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200173 .pool_low_ratio = 20,
174 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200175 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200176#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100177 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200178#endif
William Lallemandf3747832012-11-09 12:33:10 +0100179 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100180#ifdef DEFAULT_IDLE_TIMER
181 .idle_timer = DEFAULT_IDLE_TIMER,
182#else
183 .idle_timer = 1000, /* 1 second */
184#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200185 },
Emeric Brun76d88952012-10-05 15:47:31 +0200186#ifdef USE_OPENSSL
187#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200188 .maxsslconn = DEFAULT_MAXSSLCONN,
189#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200190#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200191 /* others NULL OK */
192};
193
194/*********************************************************************/
195
196int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100197int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200198int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100199int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100200int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100201int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202
203/* Here we store informations about the pids of the processes we may pause
204 * or kill. We will send them a signal every 10 ms until we can bind to all
205 * our ports. With 200 retries, that's about 2 seconds.
206 */
207#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208static int *oldpids = NULL;
209static int oldpids_sig; /* use USR1 or TERM */
210
Olivier Houchardf73629d2017-04-05 22:33:04 +0200211/* Path to the unix socket we use to retrieve listener sockets from the old process */
212static const char *old_unixsocket;
213
William Lallemand85b0bd92017-06-01 17:38:53 +0200214static char *cur_unixsocket = NULL;
215
William Lallemandcb11fd22017-06-01 17:38:52 +0200216int atexit_flag = 0;
217
Willy Tarreaubb545b42010-08-25 12:58:59 +0200218int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219const int zero = 0;
220const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200221const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100223char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200224char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200225
William Lallemand00417412020-06-05 14:08:41 +0200226static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200227
William Lallemandbc193052018-09-11 10:06:26 +0200228struct list proc_list = LIST_HEAD_INIT(proc_list);
229
230int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100231unsigned int rlim_fd_cur_at_boot = 0;
232unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200233
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100234/* per-boot randomness */
235unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
236
William Lallemand16dd1b32018-11-19 18:46:18 +0100237struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200238
William Lallemandb3f2be32018-09-11 10:06:18 +0200239static void *run_thread_poll_loop(void *data);
240
Willy Tarreauff055502014-04-28 22:27:06 +0200241/* bitfield of a few warnings to emit just once (WARN_*) */
242unsigned int warned = 0;
243
William Lallemande7361152018-10-26 14:47:36 +0200244/* master CLI configuration (-S flag) */
245struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100246
247/* These are strings to be reported in the output of "haproxy -vv". They may
248 * either be constants (in which case must_free must be zero) or dynamically
249 * allocated strings to pass to free() on exit, and in this case must_free
250 * must be non-zero.
251 */
252struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
253struct build_opts_str {
254 struct list list;
255 const char *str;
256 int must_free;
257};
258
Willy Tarreaue6945732016-12-21 19:57:00 +0100259/* These functions are called just after the point where the program exits
260 * after a config validity check, so they are generally suited for resource
261 * allocation and slow initializations that should be skipped during basic
262 * config checks. The functions must return 0 on success, or a combination
263 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
264 * and immediate exit, so the function must have emitted any useful error.
265 */
266struct list post_check_list = LIST_HEAD_INIT(post_check_list);
267struct post_check_fct {
268 struct list list;
269 int (*fct)();
270};
271
Christopher Fauletc1692962019-08-12 09:51:07 +0200272/* These functions are called for each proxy just after the config validity
273 * check. The functions must return 0 on success, or a combination of ERR_*
274 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
275 * exit, so the function must have emitted any useful error.
276 */
277struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
278struct post_proxy_check_fct {
279 struct list list;
280 int (*fct)(struct proxy *);
281};
282
283/* These functions are called for each server just after the config validity
284 * check. The functions must return 0 on success, or a combination of ERR_*
285 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
286 * exit, so the function must have emitted any useful error.
287 */
288struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
289struct post_server_check_fct {
290 struct list list;
291 int (*fct)(struct server *);
292};
293
Willy Tarreau082b6282019-05-22 14:42:12 +0200294/* These functions are called for each thread just after the thread creation
295 * and before running the init functions. They should be used to do per-thread
296 * (re-)allocations that are needed by subsequent functoins. They must return 0
297 * if an error occurred. */
298struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
299struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100300 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200301 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100302};
303
Christopher Faulet415f6112017-07-25 16:52:58 +0200304/* These functions are called for each thread just after the thread creation
305 * and before running the scheduler. They should be used to do per-thread
306 * initializations. They must return 0 if an error occurred. */
307struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
308struct per_thread_init_fct {
309 struct list list;
310 int (*fct)();
311};
312
Willy Tarreau082b6282019-05-22 14:42:12 +0200313/* These functions are called when freeing the global sections at the end of
314 * deinit, after everything is stopped. They don't return anything. They should
315 * not release shared resources that are possibly used by other deinit
316 * functions, only close/release what is private. Use the per_thread_free_list
317 * to release shared resources.
318 */
319struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
320struct post_deinit_fct {
321 struct list list;
322 void (*fct)();
323};
324
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200325/* These functions are called when freeing a proxy during the deinit, after
326 * everything isg stopped. They don't return anything. They should not release
327 * the proxy itself or any shared resources that are possibly used by other
328 * deinit functions, only close/release what is private.
329 */
330struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
331struct proxy_deinit_fct {
332 struct list list;
333 void (*fct)(struct proxy *);
334};
335
336/* These functions are called when freeing a server during the deinit, after
337 * everything isg stopped. They don't return anything. They should not release
338 * the proxy itself or any shared resources that are possibly used by other
339 * deinit functions, only close/release what is private.
340 */
341struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
342struct server_deinit_fct {
343 struct list list;
344 void (*fct)(struct server *);
345};
346
Willy Tarreau082b6282019-05-22 14:42:12 +0200347/* These functions are called when freeing the global sections at the end of
348 * deinit, after the thread deinit functions, to release unneeded memory
349 * allocations. They don't return anything, and they work in best effort mode
350 * as their sole goal is to make valgrind mostly happy.
351 */
352struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
353struct per_thread_free_fct {
354 struct list list;
355 int (*fct)();
356};
357
Christopher Faulet415f6112017-07-25 16:52:58 +0200358/* These functions are called for each thread just after the scheduler loop and
359 * before exiting the thread. They don't return anything and, as for post-deinit
360 * functions, they work in best effort mode as their sole goal is to make
361 * valgrind mostly happy. */
362struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
363struct per_thread_deinit_fct {
364 struct list list;
365 void (*fct)();
366};
367
Willy Tarreaubaaee002006-06-26 02:48:02 +0200368/*********************************************************************/
369/* general purpose functions ***************************************/
370/*********************************************************************/
371
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100372/* used to register some build option strings at boot. Set must_free to
373 * non-zero if the string must be freed upon exit.
374 */
375void hap_register_build_opts(const char *str, int must_free)
376{
377 struct build_opts_str *b;
378
379 b = calloc(1, sizeof(*b));
380 if (!b) {
381 fprintf(stderr, "out of memory\n");
382 exit(1);
383 }
384 b->str = str;
385 b->must_free = must_free;
386 LIST_ADDQ(&build_opts_list, &b->list);
387}
388
Willy Tarreaue6945732016-12-21 19:57:00 +0100389/* used to register some initialization functions to call after the checks. */
390void hap_register_post_check(int (*fct)())
391{
392 struct post_check_fct *b;
393
394 b = calloc(1, sizeof(*b));
395 if (!b) {
396 fprintf(stderr, "out of memory\n");
397 exit(1);
398 }
399 b->fct = fct;
400 LIST_ADDQ(&post_check_list, &b->list);
401}
402
Christopher Fauletc1692962019-08-12 09:51:07 +0200403/* used to register some initialization functions to call for each proxy after
404 * the checks.
405 */
406void hap_register_post_proxy_check(int (*fct)(struct proxy *))
407{
408 struct post_proxy_check_fct *b;
409
410 b = calloc(1, sizeof(*b));
411 if (!b) {
412 fprintf(stderr, "out of memory\n");
413 exit(1);
414 }
415 b->fct = fct;
416 LIST_ADDQ(&post_proxy_check_list, &b->list);
417}
418
419/* used to register some initialization functions to call for each server after
420 * the checks.
421 */
422void hap_register_post_server_check(int (*fct)(struct server *))
423{
424 struct post_server_check_fct *b;
425
426 b = calloc(1, sizeof(*b));
427 if (!b) {
428 fprintf(stderr, "out of memory\n");
429 exit(1);
430 }
431 b->fct = fct;
432 LIST_ADDQ(&post_server_check_list, &b->list);
433}
434
Willy Tarreau05554e62016-12-21 20:46:26 +0100435/* used to register some de-initialization functions to call after everything
436 * has stopped.
437 */
438void hap_register_post_deinit(void (*fct)())
439{
440 struct post_deinit_fct *b;
441
442 b = calloc(1, sizeof(*b));
443 if (!b) {
444 fprintf(stderr, "out of memory\n");
445 exit(1);
446 }
447 b->fct = fct;
448 LIST_ADDQ(&post_deinit_list, &b->list);
449}
450
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200451/* used to register some per proxy de-initialization functions to call after
452 * everything has stopped.
453 */
454void hap_register_proxy_deinit(void (*fct)(struct proxy *))
455{
456 struct proxy_deinit_fct *b;
457
458 b = calloc(1, sizeof(*b));
459 if (!b) {
460 fprintf(stderr, "out of memory\n");
461 exit(1);
462 }
463 b->fct = fct;
464 LIST_ADDQ(&proxy_deinit_list, &b->list);
465}
466
467
468/* used to register some per server de-initialization functions to call after
469 * everything has stopped.
470 */
471void hap_register_server_deinit(void (*fct)(struct server *))
472{
473 struct server_deinit_fct *b;
474
475 b = calloc(1, sizeof(*b));
476 if (!b) {
477 fprintf(stderr, "out of memory\n");
478 exit(1);
479 }
480 b->fct = fct;
481 LIST_ADDQ(&server_deinit_list, &b->list);
482}
483
Willy Tarreau082b6282019-05-22 14:42:12 +0200484/* used to register some allocation functions to call for each thread. */
485void hap_register_per_thread_alloc(int (*fct)())
486{
487 struct per_thread_alloc_fct *b;
488
489 b = calloc(1, sizeof(*b));
490 if (!b) {
491 fprintf(stderr, "out of memory\n");
492 exit(1);
493 }
494 b->fct = fct;
495 LIST_ADDQ(&per_thread_alloc_list, &b->list);
496}
497
Christopher Faulet415f6112017-07-25 16:52:58 +0200498/* used to register some initialization functions to call for each thread. */
499void hap_register_per_thread_init(int (*fct)())
500{
501 struct per_thread_init_fct *b;
502
503 b = calloc(1, sizeof(*b));
504 if (!b) {
505 fprintf(stderr, "out of memory\n");
506 exit(1);
507 }
508 b->fct = fct;
509 LIST_ADDQ(&per_thread_init_list, &b->list);
510}
511
512/* used to register some de-initialization functions to call for each thread. */
513void hap_register_per_thread_deinit(void (*fct)())
514{
515 struct per_thread_deinit_fct *b;
516
517 b = calloc(1, sizeof(*b));
518 if (!b) {
519 fprintf(stderr, "out of memory\n");
520 exit(1);
521 }
522 b->fct = fct;
523 LIST_ADDQ(&per_thread_deinit_list, &b->list);
524}
525
Willy Tarreau082b6282019-05-22 14:42:12 +0200526/* used to register some free functions to call for each thread. */
527void hap_register_per_thread_free(int (*fct)())
528{
529 struct per_thread_free_fct *b;
530
531 b = calloc(1, sizeof(*b));
532 if (!b) {
533 fprintf(stderr, "out of memory\n");
534 exit(1);
535 }
536 b->fct = fct;
537 LIST_ADDQ(&per_thread_free_list, &b->list);
538}
539
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100540static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200542 struct utsname utsname;
543
Willy Tarreau08dd2022019-11-21 18:07:30 +0100544 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
545 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100546
547 if (strlen(PRODUCT_URL_BUGS) > 0) {
548 char base_version[20];
549 int dots = 0;
550 char *del;
551
552 /* only retrieve the base version without distro-specific extensions */
553 for (del = haproxy_version; *del; del++) {
554 if (*del == '.')
555 dots++;
556 else if (*del < '0' || *del > '9')
557 break;
558 }
559
560 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
561 if (dots < 2)
562 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
563 else
564 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
565 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200566
567 if (uname(&utsname) == 0) {
568 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
569 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200570}
571
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100572static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100573{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100574 struct build_opts_str *item;
575
Willy Tarreau7b066db2007-12-02 11:28:59 +0100576 printf("Build options :"
577#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100578 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100579#endif
580#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100581 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100582#endif
583#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100584 "\n CC = " BUILD_CC
585#endif
586#ifdef BUILD_CFLAGS
587 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100588#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100589#ifdef BUILD_OPTIONS
590 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100591#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100592#ifdef BUILD_FEATURES
593 "\n\nFeature list : " BUILD_FEATURES
594#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200595 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100596 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200597 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100598 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200599
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100600 list_for_each_entry(item, &build_opts_list, list) {
601 puts(item->str);
602 }
603
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100604 putchar('\n');
605
Willy Tarreaube5b6852009-10-03 18:57:08 +0200606 list_pollers(stdout);
607 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200608 list_mux_proto(stdout);
609 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100610 list_services(stdout);
611 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100612 list_filters(stdout);
613 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100614}
615
Willy Tarreaubaaee002006-06-26 02:48:02 +0200616/*
617 * This function prints the command line usage and exits
618 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100619static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200620{
621 display_version();
622 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200623 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200625 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100626 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200628 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200630 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200631 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100632#if defined(USE_SYSTEMD)
633 " -Ws master-worker mode with systemd notify support.\n"
634#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200635 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200636 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100637 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200638 " -m limits the usable amount of memory (in MB)\n"
639 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200640 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200641 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200642#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200643 " -de disables epoll() usage even when available\n"
644#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200645#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200646 " -dk disables kqueue() usage even when available\n"
647#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200648#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000649 " -dv disables event ports usage even when available\n"
650#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200651#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200652 " -dp disables poll() usage even when available\n"
653#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200654#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100655 " -dS disables splice usage (broken on old kernels)\n"
656#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200657#if defined(USE_GETADDRINFO)
658 " -dG disables getaddrinfo() usage\n"
659#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000660#if defined(SO_REUSEPORT)
661 " -dR disables SO_REUSEPORT usage\n"
662#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100663 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100664 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200665 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200666 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200667 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200668 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200669 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100670 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671 exit(1);
672}
673
674
675
676/*********************************************************************/
677/* more specific functions ***************************************/
678/*********************************************************************/
679
William Lallemand73b85e72017-06-01 17:38:51 +0200680/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
681 * pids the signal was correctly delivered to.
682 */
William Lallemande25473c2019-04-01 11:29:56 +0200683int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200684{
685 int p;
686 int ret = 0;
687 for (p = 0; p < nb_oldpids; p++)
688 if (kill(oldpids[p], sig) == 0)
689 ret++;
690 return ret;
691}
692
William Lallemand75ea0a02017-11-15 19:02:58 +0100693/*
William Lallemand73b85e72017-06-01 17:38:51 +0200694 * remove a pid forom the olpid array and decrease nb_oldpids
695 * return 1 pid was found otherwise return 0
696 */
697
698int delete_oldpid(int pid)
699{
700 int i;
701
702 for (i = 0; i < nb_oldpids; i++) {
703 if (oldpids[i] == pid) {
704 oldpids[i] = oldpids[nb_oldpids - 1];
705 oldpids[nb_oldpids - 1] = 0;
706 nb_oldpids--;
707 return 1;
708 }
709 }
710 return 0;
711}
712
William Lallemand85b0bd92017-06-01 17:38:53 +0200713
714static void get_cur_unixsocket()
715{
716 /* if -x was used, try to update the stat socket if not available anymore */
717 if (global.stats_fe) {
718 struct bind_conf *bind_conf;
719
720 /* pass through all stats socket */
721 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
722 struct listener *l;
723
724 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
725
726 if (l->addr.ss_family == AF_UNIX &&
727 (bind_conf->level & ACCESS_FD_LISTENERS)) {
728 const struct sockaddr_un *un;
729
730 un = (struct sockaddr_un *)&l->addr;
731 /* priority to old_unixsocket */
732 if (!cur_unixsocket) {
733 cur_unixsocket = strdup(un->sun_path);
734 } else {
735 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
736 free(cur_unixsocket);
737 cur_unixsocket = strdup(old_unixsocket);
738 return;
739 }
740 }
741 }
742 }
743 }
744 }
745 if (!cur_unixsocket && old_unixsocket)
746 cur_unixsocket = strdup(old_unixsocket);
747}
748
William Lallemand73b85e72017-06-01 17:38:51 +0200749/*
750 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800751 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200752 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100753void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200754{
William Lallemand00417412020-06-05 14:08:41 +0200755 char **next_argv = NULL;
756 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200757 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200758 int i = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200759 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100760 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100761 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200762
763 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100764#if defined(USE_SYSTEMD)
765 if (global.tune.options & GTUNE_USE_SYSTEMD)
766 sd_notify(0, "RELOADING=1");
767#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200768 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
769
William Lallemandbc193052018-09-11 10:06:26 +0200770 mworker_proc_list_to_env(); /* put the children description in the env */
771
William Lallemand7c756a82018-11-26 11:53:40 +0100772 /* during the reload we must ensure that every FDs that can't be
773 * reuse (ie those that are not referenced in the proc_list)
774 * are closed or they will leak. */
775
776 /* close the listeners FD */
777 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200778
779 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
780 /* close the poller FD and the thread waker pipe FD */
781 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
782 ptdf->fct();
783 if (fdtab)
784 deinit_pollers();
785 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200786#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200787 /* close random device FDs */
788 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100789#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100790
Willy Tarreau8dca1952019-03-01 10:21:55 +0100791 /* restore the initial FD limits */
792 limit.rlim_cur = rlim_fd_cur_at_boot;
793 limit.rlim_max = rlim_fd_max_at_boot;
794 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
795 getrlimit(RLIMIT_NOFILE, &limit);
796 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
797 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
798 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
799 }
800
William Lallemand73b85e72017-06-01 17:38:51 +0200801 /* compute length */
William Lallemand00417412020-06-05 14:08:41 +0200802 while (old_argv[old_argc])
803 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200804
William Lallemand85b0bd92017-06-01 17:38:53 +0200805 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand00417412020-06-05 14:08:41 +0200806 next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1, sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200807 if (next_argv == NULL)
808 goto alloc_error;
809
William Lallemand00417412020-06-05 14:08:41 +0200810 /* copy the program name */
811 next_argv[next_argc++] = old_argv[0];
812
813 /* insert the new options just after argv[0] in case we have a -- */
814
William Lallemand73b85e72017-06-01 17:38:51 +0200815 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200816 if (mworker_child_nb() > 0) {
817 struct mworker_proc *child;
818
William Lallemand73b85e72017-06-01 17:38:51 +0200819 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200820
821 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100822 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200823 continue;
William Lallemand00417412020-06-05 14:08:41 +0200824 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200825 goto alloc_error;
826 msg = NULL;
827 }
828 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200829 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200830 if (cur_unixsocket) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200831 next_argv[next_argc++] = "-x";
832 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200833 }
834
William Lallemand00417412020-06-05 14:08:41 +0200835 /* copy the previous options */
836 for (i = 1; i < old_argc; i++)
837 next_argv[next_argc++] = old_argv[i];
838
Christopher Faulet767a84b2017-11-24 16:50:31 +0100839 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200840 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100841 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200842
Christopher Faulet767a84b2017-11-24 16:50:31 +0100843 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand9fc6c972020-06-08 10:01:13 +0200844 free(next_argv);
845 next_argv = NULL;
William Lallemand722d4ca2017-11-15 19:02:55 +0100846 return;
847
William Lallemand73b85e72017-06-01 17:38:51 +0200848alloc_error:
William Lallemand00417412020-06-05 14:08:41 +0200849 free(next_argv);
850 next_argv = NULL;
Joseph Herlant07a08342018-11-15 10:43:05 -0800851 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200852 return;
853}
854
William Lallemandb3f2be32018-09-11 10:06:18 +0200855static void mworker_loop()
856{
857
858#if defined(USE_SYSTEMD)
859 if (global.tune.options & GTUNE_USE_SYSTEMD)
860 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
861#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200862 /* Busy polling makes no sense in the master :-) */
863 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200864
William Lallemandbc193052018-09-11 10:06:26 +0200865 master = 1;
866
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100867 signal_unregister(SIGTTIN);
868 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100869 signal_unregister(SIGUSR1);
870 signal_unregister(SIGHUP);
871 signal_unregister(SIGQUIT);
872
William Lallemandb3f2be32018-09-11 10:06:18 +0200873 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
874 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100875 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
876 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200877 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
878 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
879 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
880 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
881
882 mworker_unblock_signals();
883 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100884 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200885
William Lallemandbc193052018-09-11 10:06:26 +0200886 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
887 some SIGCHLD were lost */
888
William Lallemandb3f2be32018-09-11 10:06:18 +0200889 global.nbthread = 1;
890 relative_pid = 1;
891 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100892 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200893
William Lallemand2672eb92018-12-14 15:52:39 +0100894#ifdef USE_THREAD
895 tid_bit = 1;
896 all_threads_mask = 1;
897#endif
898
William Lallemandb3f2be32018-09-11 10:06:18 +0200899 jobs++; /* this is the "master" job, we want to take care of the
900 signals even if there is no listener so the poll loop don't
901 leave */
902
903 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200904 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200905}
William Lallemandcb11fd22017-06-01 17:38:52 +0200906
907/*
908 * Reexec the process in failure mode, instead of exiting
909 */
910void reexec_on_failure()
911{
912 if (!atexit_flag)
913 return;
914
915 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
916
Christopher Faulet767a84b2017-11-24 16:50:31 +0100917 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200918 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200919}
William Lallemand73b85e72017-06-01 17:38:51 +0200920
921
922/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200923 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
924 * a signal zero to all subscribers. This means that it's as easy as
925 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100927static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928{
929 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200930 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100931 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932}
933
934/*
935 * upon SIGTTOU, we pause everything
936 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100937static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200938{
939 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100940 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941}
942
943/*
944 * upon SIGTTIN, let's have a soft stop.
945 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100946static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200947{
Willy Tarreaube58c382011-07-24 18:28:10 +0200948 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949}
950
951/*
952 * this function dumps every server's state when the process receives SIGHUP.
953 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100954static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200955{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100956 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200957
Christopher Faulet767a84b2017-11-24 16:50:31 +0100958 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959 while (p) {
960 struct server *s = p->srv;
961
962 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
963 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100964 chunk_printf(&trash,
965 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
966 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200967 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100968 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200969 ha_warning("%s\n", trash.area);
970 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200971 s = s->next;
972 }
973
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200974 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
975 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100976 chunk_printf(&trash,
977 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
978 p->id,
979 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 +0200980 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100981 chunk_printf(&trash,
982 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
983 p->id,
984 (p->srv_bck) ? "is running on backup servers" : "has no server available",
985 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 +0200986 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100987 chunk_printf(&trash,
988 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
989 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
990 p->id, p->srv_act, p->srv_bck,
991 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 +0200992 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200993 ha_warning("%s\n", trash.area);
994 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200995
996 p = p->next;
997 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200998}
999
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001000static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001001{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001002 /* dump memory usage then free everything possible */
1003 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +01001004 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001005}
1006
William Lallemande1340412017-12-28 16:09:36 +01001007/*
1008 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
1009 * If <fd> < 0, it opens /dev/null and use it to dup
1010 *
1011 * In the case of chrooting, you have to open /dev/null before the chroot, and
1012 * pass the <fd> to this function
1013 */
1014static void stdio_quiet(int fd)
1015{
1016 if (fd < 0)
1017 fd = open("/dev/null", O_RDWR, 0);
1018
1019 if (fd > -1) {
1020 fclose(stdin);
1021 fclose(stdout);
1022 fclose(stderr);
1023
1024 dup2(fd, 0);
1025 dup2(fd, 1);
1026 dup2(fd, 2);
1027 if (fd > 2)
1028 close(fd);
1029 return;
1030 }
1031
1032 ha_alert("Cannot open /dev/null\n");
1033 exit(EXIT_FAILURE);
1034}
1035
1036
Joseph Herlant03420902018-11-15 10:41:50 -08001037/* This function checks if cfg_cfgfiles contains directories.
1038 * If it finds one, it adds all the files (and only files) it contains
1039 * in cfg_cfgfiles in place of the directory (and removes the directory).
1040 * It adds the files in lexical order.
1041 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001042 * It doesn't add files with name starting with '.'
1043 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001044static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001045{
1046 struct wordlist *wl, *wlb;
1047 char *err = NULL;
1048
1049 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1050 struct stat file_stat;
1051 struct dirent **dir_entries = NULL;
1052 int dir_entries_nb;
1053 int dir_entries_it;
1054
1055 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001056 ha_alert("Cannot open configuration file/directory %s : %s\n",
1057 wl->s,
1058 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001059 exit(1);
1060 }
1061
1062 if (!S_ISDIR(file_stat.st_mode))
1063 continue;
1064
1065 /* from this point wl->s is a directory */
1066
1067 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1068 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001069 ha_alert("Cannot open configuration directory %s : %s\n",
1070 wl->s,
1071 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001072 exit(1);
1073 }
1074
1075 /* for each element in the directory wl->s */
1076 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1077 struct dirent *dir_entry = dir_entries[dir_entries_it];
1078 char *filename = NULL;
1079 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1080
1081 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001082 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001083 */
1084 if (dir_entry->d_name[0] == '.' ||
1085 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1086 goto next_dir_entry;
1087
1088 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001089 ha_alert("Cannot load configuration files %s : out of memory.\n",
1090 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001091 exit(1);
1092 }
1093
1094 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001095 ha_alert("Cannot open configuration file %s : %s\n",
1096 wl->s,
1097 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001098 exit(1);
1099 }
1100
1101 /* don't add anything else than regular file in cfg_cfgfiles
1102 * this way we avoid loops
1103 */
1104 if (!S_ISREG(file_stat.st_mode))
1105 goto next_dir_entry;
1106
1107 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001108 ha_alert("Cannot load configuration files %s : %s\n",
1109 filename,
1110 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001111 exit(1);
1112 }
1113
1114next_dir_entry:
1115 free(filename);
1116 free(dir_entry);
1117 }
1118
1119 free(dir_entries);
1120
1121 /* remove the current directory (wl) from cfg_cfgfiles */
1122 free(wl->s);
1123 LIST_DEL(&wl->list);
1124 free(wl);
1125 }
1126
1127 free(err);
1128}
1129
Olivier Houchardf73629d2017-04-05 22:33:04 +02001130static int get_old_sockets(const char *unixsocket)
1131{
1132 char *cmsgbuf = NULL, *tmpbuf = NULL;
1133 int *tmpfd = NULL;
1134 struct sockaddr_un addr;
1135 struct cmsghdr *cmsg;
1136 struct msghdr msghdr;
1137 struct iovec iov;
1138 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001139 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001140 int sock = -1;
1141 int ret = -1;
1142 int ret2 = -1;
1143 int fd_nb;
1144 int got_fd = 0;
1145 int i = 0;
1146 size_t maxoff = 0, curoff = 0;
1147
1148 memset(&msghdr, 0, sizeof(msghdr));
1149 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1150 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001151 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001152 goto out;
1153 }
1154 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1155 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_warning("Failed to connect to the old process socket '%s'\n",
1157 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001158 goto out;
1159 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001160 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001161 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1162 addr.sun_family = PF_UNIX;
1163 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1164 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001165 ha_warning("Failed to connect to the old process socket '%s'\n",
1166 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001167 goto out;
1168 }
Olivier Houchard54740872017-04-06 14:45:14 +02001169 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001170 iov.iov_base = &fd_nb;
1171 iov.iov_len = sizeof(fd_nb);
1172 msghdr.msg_iov = &iov;
1173 msghdr.msg_iovlen = 1;
1174 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1175 /* First, get the number of file descriptors to be received */
1176 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001178 goto out;
1179 }
1180 if (fd_nb == 0) {
1181 ret = 0;
1182 goto out;
1183 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001184 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001185 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001187 goto out;
1188 }
1189 tmpfd = malloc(fd_nb * sizeof(int));
1190 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001191 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001192 goto out;
1193 }
1194 msghdr.msg_control = cmsgbuf;
1195 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001196 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001197 do {
1198 int ret3;
1199
1200 iov.iov_base = tmpbuf + curoff;
1201 ret = recvmsg(sock, &msghdr, 0);
1202 if (ret == -1 && errno == EINTR)
1203 continue;
1204 if (ret <= 0)
1205 break;
1206 /* Send an ack to let the sender know we got the sockets
1207 * and it can send some more
1208 */
1209 do {
1210 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1211 } while (ret3 == -1 && errno == EINTR);
1212 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1213 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1214 if (cmsg->cmsg_level == SOL_SOCKET &&
1215 cmsg->cmsg_type == SCM_RIGHTS) {
1216 size_t totlen = cmsg->cmsg_len -
1217 CMSG_LEN(0);
1218 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001219 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001220 goto out;
1221 }
1222 /*
1223 * Be paranoid and use memcpy() to avoid any
1224 * potential alignement issue.
1225 */
1226 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1227 got_fd += totlen / sizeof(int);
1228 }
1229 }
1230 curoff += ret;
1231 } while (got_fd < fd_nb);
1232
1233 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001234 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1235 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001236 goto out;
1237 }
1238 maxoff = curoff;
1239 curoff = 0;
1240 for (i = 0; i < got_fd; i++) {
1241 int fd = tmpfd[i];
1242 socklen_t socklen;
1243 int len;
1244
1245 xfer_sock = calloc(1, sizeof(*xfer_sock));
1246 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001247 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001248 break;
1249 }
1250 xfer_sock->fd = -1;
1251
1252 socklen = sizeof(xfer_sock->addr);
1253 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001254 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001255 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001256 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001257 continue;
1258 }
1259 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001260 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001261 goto out;
1262 }
1263 len = tmpbuf[curoff++];
1264 if (len > 0) {
1265 /* We have a namespace */
1266 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001267 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001268 goto out;
1269 }
1270 xfer_sock->namespace = malloc(len + 1);
1271 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001272 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001273 goto out;
1274 }
1275 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1276 xfer_sock->namespace[len] = 0;
1277 curoff += len;
1278 }
1279 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001281 goto out;
1282 }
1283 len = tmpbuf[curoff++];
1284 if (len > 0) {
1285 /* We have an interface */
1286 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001287 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001288 goto out;
1289 }
1290 xfer_sock->iface = malloc(len + 1);
1291 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001293 goto out;
1294 }
1295 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001296 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001297 curoff += len;
1298 }
1299 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001300 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001301 goto out;
1302 }
1303 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1304 sizeof(xfer_sock->options));
1305 curoff += sizeof(xfer_sock->options);
1306
1307 xfer_sock->fd = fd;
1308 if (xfer_sock_list)
1309 xfer_sock_list->prev = xfer_sock;
1310 xfer_sock->next = xfer_sock_list;
1311 xfer_sock->prev = NULL;
1312 xfer_sock_list = xfer_sock;
1313 xfer_sock = NULL;
1314 }
1315
1316 ret2 = 0;
1317out:
1318 /* If we failed midway make sure to close the remaining
1319 * file descriptors
1320 */
1321 if (tmpfd != NULL && i < got_fd) {
1322 for (; i < got_fd; i++) {
1323 close(tmpfd[i]);
1324 }
1325 }
1326 free(tmpbuf);
1327 free(tmpfd);
1328 free(cmsgbuf);
1329 if (sock != -1)
1330 close(sock);
1331 if (xfer_sock) {
1332 free(xfer_sock->namespace);
1333 free(xfer_sock->iface);
1334 if (xfer_sock->fd != -1)
1335 close(xfer_sock->fd);
1336 free(xfer_sock);
1337 }
1338 return (ret2);
1339}
1340
Willy Tarreaubaaee002006-06-26 02:48:02 +02001341/*
William Lallemand73b85e72017-06-01 17:38:51 +02001342 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +02001343 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +02001344 * Return an allocated copy of argv
1345 */
1346
1347static char **copy_argv(int argc, char **argv)
1348{
William Lallemanddf6c5a82020-06-04 17:40:23 +02001349 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001350
1351 newargv = calloc(argc + 2, sizeof(char *));
1352 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001353 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001354 return NULL;
1355 }
William Lallemanddf6c5a82020-06-04 17:40:23 +02001356 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001357
William Lallemanddf6c5a82020-06-04 17:40:23 +02001358 /* first copy argv[0] */
1359 *newargv++ = *argv++;
1360 argc--;
1361
1362 while (argc > 0) {
1363 if (**argv != '-') {
1364 /* non options are copied but will fail in the argument parser */
1365 *newargv++ = *argv++;
1366 argc--;
1367
1368 } else {
1369 char *flag;
1370
1371 flag = *argv + 1;
1372
1373 if (flag[0] == '-' && flag[1] == 0) {
1374 /* "--\0" copy every arguments till the end of argv */
1375 *newargv++ = *argv++;
1376 argc--;
1377
1378 while (argc > 0) {
1379 *newargv++ = *argv++;
1380 argc--;
1381 }
1382 } else {
1383 switch (*flag) {
1384 case 's':
1385 /* -sf / -st and their parameters are ignored */
1386 if (flag[1] == 'f' || flag[1] == 't') {
1387 argc--;
1388 argv++;
1389 /* The list can't contain a negative value since the only
1390 way to know the end of this list is by looking for the
1391 next option or the end of the options */
1392 while (argc > 0 && argv[0][0] != '-') {
1393 argc--;
1394 argv++;
1395 }
1396 }
1397 break;
1398
1399 case 'x':
1400 /* this option and its parameter are ignored */
1401 argc--;
1402 argv++;
1403 if (argc > 0) {
1404 argc--;
1405 argv++;
1406 }
1407 break;
1408
1409 case 'C':
1410 case 'n':
1411 case 'm':
1412 case 'N':
1413 case 'L':
1414 case 'f':
1415 case 'p':
1416 case 'S':
1417 /* these options have only 1 parameter which must be copied and can start with a '-' */
1418 *newargv++ = *argv++;
1419 argc--;
1420 if (argc == 0)
1421 goto error;
1422 *newargv++ = *argv++;
1423 argc--;
1424 break;
1425 default:
1426 /* for other options just copy them without parameters, this is also done
1427 * for options like "--foo", but this will fail in the argument parser.
1428 * */
1429 *newargv++ = *argv++;
1430 argc--;
1431 break;
1432 }
William Lallemand73b85e72017-06-01 17:38:51 +02001433 }
1434 }
William Lallemand73b85e72017-06-01 17:38:51 +02001435 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001436
William Lallemanddf6c5a82020-06-04 17:40:23 +02001437 return retargv;
1438
1439error:
1440 free(retargv);
1441 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +02001442}
1443
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001444
1445/* Performs basic random seed initialization. The main issue with this is that
1446 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1447 * which means that there will only be 4 billion possible random sequences once
1448 * srandom() is called, regardless of the internal state. Not calling it is
1449 * even worse as we'll always produce the same randoms sequences. What we do
1450 * here is to create an initial sequence from various entropy sources, hash it
1451 * using SHA1 and keep the resulting 160 bits available globally.
1452 *
1453 * We initialize the current process with the first 32 bits before starting the
1454 * polling loop, where all this will be changed to have process specific and
1455 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001456 *
1457 * Before starting threads, it's still possible to call random() as srandom()
1458 * is initialized from this, but after threads and/or processes are started,
1459 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001460 */
1461static void ha_random_boot(char *const *argv)
1462{
1463 unsigned char message[256];
1464 unsigned char *m = message;
1465 struct timeval tv;
1466 blk_SHA_CTX ctx;
1467 unsigned long l;
1468 int fd;
1469 int i;
1470
1471 /* start with current time as pseudo-random seed */
1472 gettimeofday(&tv, NULL);
1473 write_u32(m, tv.tv_sec); m += 4;
1474 write_u32(m, tv.tv_usec); m += 4;
1475
1476 /* PID and PPID add some OS-based randomness */
1477 write_u16(m, getpid()); m += 2;
1478 write_u16(m, getppid()); m += 2;
1479
1480 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1481 fd = open("/dev/urandom", O_RDONLY);
1482 if (fd >= 0) {
1483 i = read(fd, m, 20);
1484 if (i > 0)
1485 m += i;
1486 close(fd);
1487 }
1488
1489 /* take up to 160 bits bytes from openssl (non-blocking) */
1490#ifdef USE_OPENSSL
1491 if (RAND_bytes(m, 20) == 1)
1492 m += 20;
1493#endif
1494
1495 /* take 160 bits from existing random in case it was already initialized */
1496 for (i = 0; i < 5; i++) {
1497 write_u32(m, random());
1498 m += 4;
1499 }
1500
1501 /* stack address (benefit form operating system's ASLR) */
1502 l = (unsigned long)&m;
1503 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1504
1505 /* argv address (benefit form operating system's ASLR) */
1506 l = (unsigned long)&argv;
1507 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1508
1509 /* use tv_usec again after all the operations above */
1510 gettimeofday(&tv, NULL);
1511 write_u32(m, tv.tv_usec); m += 4;
1512
1513 /*
1514 * At this point, ~84-92 bytes have been used
1515 */
1516
1517 /* finish with the hostname */
1518 strncpy((char *)m, hostname, message + sizeof(message) - m);
1519 m += strlen(hostname);
1520
1521 /* total message length */
1522 l = m - message;
1523
1524 memset(&ctx, 0, sizeof(ctx));
1525 blk_SHA1_Init(&ctx);
1526 blk_SHA1_Update(&ctx, message, l);
1527 blk_SHA1_Final(boot_seed, &ctx);
1528
1529 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001530 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001531}
1532
Willy Tarreau5a023f02019-03-01 14:19:31 +01001533/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1534 * setting, and returns it. It may return -1 meaning "unlimited" if some
1535 * unlimited proxies have been found and the global.maxconn value is not yet
1536 * set. It may also return a value greater than maxconn if it's not yet set.
1537 * Note that a value of zero means there is no need for pipes. -1 is never
1538 * returned if global.maxconn is valid.
1539 */
1540static int compute_ideal_maxpipes()
1541{
1542 struct proxy *cur;
1543 int nbfe = 0, nbbe = 0;
1544 int unlimited = 0;
1545 int pipes;
1546 int max;
1547
1548 for (cur = proxies_list; cur; cur = cur->next) {
1549 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1550 if (cur->cap & PR_CAP_FE) {
1551 max = cur->maxconn;
1552 nbfe += max;
1553 if (!max) {
1554 unlimited = 1;
1555 break;
1556 }
1557 }
1558 if (cur->cap & PR_CAP_BE) {
1559 max = cur->fullconn ? cur->fullconn : global.maxconn;
1560 nbbe += max;
1561 if (!max) {
1562 unlimited = 1;
1563 break;
1564 }
1565 }
1566 }
1567 }
1568
1569 pipes = MAX(nbfe, nbbe);
1570 if (global.maxconn) {
1571 if (pipes > global.maxconn || unlimited)
1572 pipes = global.maxconn;
1573 } else if (unlimited) {
1574 pipes = -1;
1575 }
1576
1577 return pipes >= 4 ? pipes / 4 : pipes;
1578}
1579
Willy Tarreauac350932019-03-01 15:43:14 +01001580/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1581 * rlimits and computes an ideal maxconn. It's meant to be called only when
1582 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001583 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1584 * default 100) is returned as it is expected that it will even run on tight
1585 * environments, and will maintain compatibility with previous packages that
1586 * used to rely on this value as the default one. The system will emit a
1587 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001588 */
1589static int compute_ideal_maxconn()
1590{
1591 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1592 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1593 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001594 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001595 int maxconn;
1596
1597 /* we have to take into account these elements :
1598 * - number of engine_fds, which inflates the number of FD needed per
1599 * connection by this number.
1600 * - number of pipes per connection on average : for the unlimited
1601 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1602 * fixed value of 2*pipes.
1603 * - two FDs per connection
1604 */
1605
1606 /* subtract listeners and checks */
1607 remain -= global.maxsock;
1608
Willy Tarreau3f200852019-03-14 19:13:17 +01001609 /* one epoll_fd/kqueue_fd per thread */
1610 remain -= global.nbthread;
1611
1612 /* one wake-up pipe (2 fd) per thread */
1613 remain -= 2 * global.nbthread;
1614
Willy Tarreauac350932019-03-01 15:43:14 +01001615 /* Fixed pipes values : we only subtract them if they're not larger
1616 * than the remaining FDs because pipes are optional.
1617 */
1618 if (pipes >= 0 && pipes * 2 < remain)
1619 remain -= pipes * 2;
1620
1621 if (pipes < 0) {
1622 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1623 * = maxconn * (2 + 0.5 + engine_fds)
1624 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1625 */
1626 maxconn = 2 * remain / (5 + 2 * engine_fds);
1627 } else {
1628 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1629 * = maxconn * (2 + engine_fds)
1630 */
1631 maxconn = remain / (2 + engine_fds);
1632 }
1633
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001634 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001635}
1636
Willy Tarreaua409f302020-03-10 17:08:53 +01001637/* computes the estimated maxsock value for the given maxconn based on the
1638 * possibly set global.maxpipes and existing partial global.maxsock. It may
1639 * temporarily change global.maxconn for the time needed to propagate the
1640 * computations, and will reset it.
1641 */
1642static int compute_ideal_maxsock(int maxconn)
1643{
1644 int maxpipes = global.maxpipes;
1645 int maxsock = global.maxsock;
1646
1647
1648 if (!maxpipes) {
1649 int old_maxconn = global.maxconn;
1650
1651 global.maxconn = maxconn;
1652 maxpipes = compute_ideal_maxpipes();
1653 global.maxconn = old_maxconn;
1654 }
1655
1656 maxsock += maxconn * 2; /* each connection needs two sockets */
1657 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1658 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1659 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1660
1661 /* compute fd used by async engines */
1662 if (global.ssl_used_async_engines) {
1663 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1664
1665 maxsock += maxconn * sides * global.ssl_used_async_engines;
1666 }
1667 return maxsock;
1668}
1669
Willy Tarreau304e17e2020-03-10 17:54:54 +01001670/* Tests if it is possible to set the current process' RLIMIT_NOFILE to
1671 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1672 * value is accepted, non-zero otherwise. This is used to determine if an
1673 * automatic limit may be applied or not. When it is not, the caller knows that
1674 * the highest we can do is the rlim_max at boot. In case of error, we return
1675 * that the setting is possible, so that we defer the error processing to the
1676 * final stage in charge of enforcing this.
1677 */
1678static int check_if_maxsock_permitted(int maxsock)
1679{
1680 struct rlimit orig_limit, test_limit;
1681 int ret;
1682
1683 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1684 return 1;
1685
1686 /* don't go further if we can't even set to what we have */
1687 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1688 return 1;
1689
1690 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1691 test_limit.rlim_cur = test_limit.rlim_max;
1692 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1693
1694 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1695 return 1;
1696
1697 return ret == 0;
1698}
1699
1700
William Lallemand73b85e72017-06-01 17:38:51 +02001701/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001702 * This function initializes all the necessary variables. It only returns
1703 * if everything is OK. If something fails, it exits.
1704 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001705static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001707 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001708 char *tmp;
1709 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001710 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001711 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001712 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001713 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001714 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001715 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001716 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001717 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718
Christopher Faulete3a5e352017-10-24 13:53:54 +02001719 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001720 old_argv = copy_argv(argc, argv);
1721 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001722 ha_alert("failed to copy argv.\n");
1723 exit(1);
1724 }
William Lallemand73b85e72017-06-01 17:38:51 +02001725
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001726 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001727 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001728 exit(1);
1729 }
David du Colombier7af46052012-05-16 14:16:48 +02001730
Emeric Brun2b920a12010-09-23 18:30:22 +02001731 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1732 * the string in case of truncation, and at least FreeBSD appears not to do
1733 * it.
1734 */
1735 memset(hostname, 0, sizeof(hostname));
1736 gethostname(hostname, sizeof(hostname) - 1);
1737 memset(localpeer, 0, sizeof(localpeer));
1738 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001739 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001740
William Lallemand24c928c2020-01-14 17:58:18 +01001741 /* we were in mworker mode, we should restart in mworker mode */
1742 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1743 global.mode |= MODE_MWORKER;
1744
Willy Tarreaubaaee002006-06-26 02:48:02 +02001745 /*
1746 * Initialize the previously static variables.
1747 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001748
Willy Tarreau173d9952018-01-26 21:48:23 +01001749 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001750 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001751
Willy Tarreaubaaee002006-06-26 02:48:02 +02001752
1753#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001754 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001755#endif
1756
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001757 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001758 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001759 start_date = now;
1760
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001761 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001762
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001763 if (init_acl() != 0)
1764 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001765
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001766 /* Initialise lua. */
1767 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001768
Christopher Fauletff2613e2016-11-09 11:36:17 +01001769 /* Initialize process vars */
1770 vars_init(&global.vars, SCOPE_PROC);
1771
Willy Tarreau43b78992009-01-25 15:42:27 +01001772 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001773#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001774 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001775#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001776#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001777 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001778#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001779#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001780 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001781#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001782#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001783 global.tune.options |= GTUNE_USE_EVPORTS;
1784#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001785#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001786 global.tune.options |= GTUNE_USE_SPLICE;
1787#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001788#if defined(USE_GETADDRINFO)
1789 global.tune.options |= GTUNE_USE_GAI;
1790#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001791#if defined(SO_REUSEPORT)
1792 global.tune.options |= GTUNE_USE_REUSEPORT;
1793#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001794
1795 pid = getpid();
1796 progname = *argv;
1797 while ((tmp = strchr(progname, '/')) != NULL)
1798 progname = tmp + 1;
1799
Kevinm48936af2010-12-22 16:08:21 +00001800 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001801 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001802
Willy Tarreaubaaee002006-06-26 02:48:02 +02001803 argc--; argv++;
1804 while (argc > 0) {
1805 char *flag;
1806
1807 if (**argv == '-') {
1808 flag = *argv+1;
1809
1810 /* 1 arg */
1811 if (*flag == 'v') {
1812 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001813 if (flag[1] == 'v') /* -vv */
1814 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001815 exit(0);
1816 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001817#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001818 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001819 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001820#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001821#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001822 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001823 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001824#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001825#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001826 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001827 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001828#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001829#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001830 else if (*flag == 'd' && flag[1] == 'v')
1831 global.tune.options &= ~GTUNE_USE_EVPORTS;
1832#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001833#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001834 else if (*flag == 'd' && flag[1] == 'S')
1835 global.tune.options &= ~GTUNE_USE_SPLICE;
1836#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001837#if defined(USE_GETADDRINFO)
1838 else if (*flag == 'd' && flag[1] == 'G')
1839 global.tune.options &= ~GTUNE_USE_GAI;
1840#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001841#if defined(SO_REUSEPORT)
1842 else if (*flag == 'd' && flag[1] == 'R')
1843 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1844#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001845 else if (*flag == 'd' && flag[1] == 'V')
1846 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 else if (*flag == 'V')
1848 arg_mode |= MODE_VERBOSE;
1849 else if (*flag == 'd' && flag[1] == 'b')
1850 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001851 else if (*flag == 'd' && flag[1] == 'W')
1852 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001853 else if (*flag == 'd' && flag[1] == 'M')
1854 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001855 else if (*flag == 'd' && flag[1] == 'r')
1856 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001857 else if (*flag == 'd')
1858 arg_mode |= MODE_DEBUG;
1859 else if (*flag == 'c')
1860 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001861 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001862 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001863 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001864 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001865#if defined(USE_SYSTEMD)
1866 global.tune.options |= GTUNE_USE_SYSTEMD;
1867#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001868 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 +01001869 usage(progname);
1870#endif
1871 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001872 else if (*flag == 'W')
1873 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 else if (*flag == 'q')
1875 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001876 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001877 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001878 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001879 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001880 }
William Lallemand4fc09692017-06-19 16:37:19 +02001881 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001882 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001883 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001884
Olivier Houchardf73629d2017-04-05 22:33:04 +02001885 argv++;
1886 argc--;
1887 }
William Lallemande7361152018-10-26 14:47:36 +02001888 else if (*flag == 'S') {
1889 struct wordlist *c;
1890
William Lallemanda6b32492020-06-04 23:49:20 +02001891 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001892 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1893 usage(progname);
1894 }
1895 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1896 ha_alert("Cannot allocate memory\n");
1897 exit(EXIT_FAILURE);
1898 }
1899 LIST_ADD(&mworker_cli_conf, &c->list);
1900
1901 argv++;
1902 argc--;
1903 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1905 /* list of pids to finish ('f') or terminate ('t') */
1906
1907 if (flag[1] == 'f')
1908 oldpids_sig = SIGUSR1; /* finish then exit */
1909 else
1910 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001911 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001912 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001913 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1914 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001915 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001916 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001917 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001918 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001919 errno = 0;
1920 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1921 if (errno) {
1922 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1923 flag,
1924 *argv, strerror(errno));
1925 exit(1);
1926 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001927 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001928 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001929 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1930 flag, endptr);
1931 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001932 }
Chris Lane236062f2018-02-05 23:15:44 +00001933 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001934 if (oldpids[nb_oldpids] <= 0)
1935 usage(progname);
1936 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001937 }
1938 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001939 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1940 /* now that's a cfgfile list */
1941 argv++; argc--;
1942 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001943 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("Cannot load configuration file/directory %s : %s\n",
1945 *argv,
1946 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001947 exit(1);
1948 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001949 argv++; argc--;
1950 }
1951 break;
1952 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001953 else { /* >=2 args */
1954 argv++; argc--;
1955 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001956 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001957
1958 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001959 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001960 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001961 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001962 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001963 case 'L' :
1964 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1965 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1966 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001967 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001968 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001969 ha_alert("Cannot load configuration file/directory %s : %s\n",
1970 *argv,
1971 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001972 exit(1);
1973 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001974 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001975 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001976 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001977 }
1978 }
1979 }
1980 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001981 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001982 argv++; argc--;
1983 }
1984
Christopher Faulete3a5e352017-10-24 13:53:54 +02001985 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001986 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001987
William Lallemand944e6192018-11-21 15:48:31 +01001988 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001989 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001990 global.mode |= MODE_MWORKER_WAIT;
1991 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001992 }
1993
1994 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1995 atexit_flag = 1;
1996 atexit(reexec_on_failure);
1997 }
1998
Willy Tarreau576132e2011-09-10 19:26:56 +02001999 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002000 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02002001 exit(1);
2002 }
2003
Willy Tarreaubaaee002006-06-26 02:48:02 +02002004 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002005
2006 init_default_instance();
2007
William Lallemand944e6192018-11-21 15:48:31 +01002008 /* in wait mode, we don't try to read the configuration files */
2009 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02002010 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01002011
William Lallemand944e6192018-11-21 15:48:31 +01002012 /* handle cfgfiles that are actually directories */
2013 cfgfiles_expand_directories();
2014
2015 if (LIST_ISEMPTY(&cfg_cfgfiles))
2016 usage(progname);
2017
2018
2019 list_for_each_entry(wl, &cfg_cfgfiles, list) {
2020 int ret;
2021
William Lallemand7b302d82019-05-20 11:15:37 +02002022 if (trash->data)
2023 chunk_appendf(trash, ";");
2024
2025 chunk_appendf(trash, "%s", wl->s);
2026
William Lallemand944e6192018-11-21 15:48:31 +01002027 ret = readcfgfile(wl->s);
2028 if (ret == -1) {
2029 ha_alert("Could not open configuration file %s : %s\n",
2030 wl->s, strerror(errno));
2031 exit(1);
2032 }
2033 if (ret & (ERR_ABORT|ERR_FATAL))
2034 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
2035 err_code |= ret;
2036 if (err_code & ERR_ABORT)
2037 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01002038 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002039
William Lallemand944e6192018-11-21 15:48:31 +01002040 /* do not try to resolve arguments nor to spot inconsistencies when
2041 * the configuration contains fatal errors caused by files not found
2042 * or failed memory allocations.
2043 */
2044 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2045 ha_alert("Fatal errors found in configuration.\n");
2046 exit(1);
2047 }
William Lallemand7b302d82019-05-20 11:15:37 +02002048 if (trash->data)
2049 setenv("HAPROXY_CFGFILES", trash->area, 1);
2050
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02002051 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002052 if (global.mode & MODE_MWORKER) {
2053 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01002054 struct mworker_proc *tmproc;
2055
William Lallemand482f9a92019-04-12 16:15:00 +02002056 setenv("HAPROXY_MWORKER", "1", 1);
2057
William Lallemand16dd1b32018-11-19 18:46:18 +01002058 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
2059
William Lallemandf3a86832019-04-01 11:29:58 +02002060 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01002061 if (!tmproc) {
2062 ha_alert("Cannot allocate process structures.\n");
2063 exit(EXIT_FAILURE);
2064 }
William Lallemand8f7069a2019-04-12 16:09:23 +02002065 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01002066 tmproc->reloads = 0;
2067 tmproc->relative_pid = 0;
2068 tmproc->pid = pid;
2069 tmproc->timestamp = start_date.tv_sec;
2070 tmproc->ipc_fd[0] = -1;
2071 tmproc->ipc_fd[1] = -1;
2072
2073 proc_self = tmproc;
2074
2075 LIST_ADDQ(&proc_list, &tmproc->list);
2076 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002077
2078 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002079
William Lallemandf3a86832019-04-01 11:29:58 +02002080 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02002081 if (!tmproc) {
2082 ha_alert("Cannot allocate process structures.\n");
2083 exit(EXIT_FAILURE);
2084 }
2085
William Lallemand8f7069a2019-04-12 16:09:23 +02002086 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02002087 tmproc->pid = -1;
2088 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01002089 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002090 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01002091 tmproc->ipc_fd[0] = -1;
2092 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002093
2094 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
2095 exit(EXIT_FAILURE);
2096 }
2097
2098 LIST_ADDQ(&proc_list, &tmproc->list);
2099 }
William Lallemand944e6192018-11-21 15:48:31 +01002100 }
2101 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
2102 struct wordlist *it, *c;
2103
William Lallemand1b663612018-10-26 14:47:33 +02002104 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02002105
William Lallemande7361152018-10-26 14:47:36 +02002106
William Lallemand550db6d2018-11-06 17:37:12 +01002107 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02002108
William Lallemand550db6d2018-11-06 17:37:12 +01002109 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02002110 ha_alert("Can't create the master's CLI.\n");
2111 exit(EXIT_FAILURE);
2112 }
William Lallemande7361152018-10-26 14:47:36 +02002113
William Lallemand550db6d2018-11-06 17:37:12 +01002114 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
2115
2116 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2117 ha_alert("Can't create the master's CLI.\n");
2118 exit(EXIT_FAILURE);
2119 }
2120 LIST_DEL(&c->list);
2121 free(c->s);
2122 free(c);
2123 }
2124 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002125 }
2126
Willy Tarreaubb925012009-07-23 13:36:36 +02002127 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002128 for (px = proxies_list; px; px = px->next) {
2129 struct server *srv;
2130 struct post_proxy_check_fct *ppcf;
2131 struct post_server_check_fct *pscf;
2132
2133 list_for_each_entry(pscf, &post_server_check_list, list) {
2134 for (srv = px->srv; srv; srv = srv->next)
2135 err_code |= pscf->fct(srv);
2136 }
2137 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2138 err_code |= ppcf->fct(px);
2139 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002140 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002141 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002142 exit(1);
2143 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002144
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002145 err_code |= pattern_finalize_config();
2146 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2147 ha_alert("Failed to finalize pattern config.\n");
2148 exit(1);
2149 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002150
Willy Tarreau70060452015-12-14 12:46:07 +01002151 /* recompute the amount of per-process memory depending on nbproc and
2152 * the shared SSL cache size (allowed to exist in all processes).
2153 */
2154 if (global.rlimit_memmax_all) {
2155#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2156 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2157
2158 global.rlimit_memmax =
2159 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2160 ssl_cache_bytes) / global.nbproc +
2161 ssl_cache_bytes + 1048575LL) / 1048576LL;
2162#else
2163 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2164#endif
2165 }
2166
Willy Tarreaue5733232019-05-22 19:24:06 +02002167#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002168 err_code |= netns_init();
2169 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002170 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002171 exit(1);
2172 }
2173#endif
2174
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002175 /* Apply server states */
2176 apply_server_state();
2177
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002178 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002179 srv_compute_all_admin_states(px);
2180
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002181 /* Apply servers' configured address */
2182 err_code |= srv_init_addr();
2183 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002184 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002185 exit(1);
2186 }
2187
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002188 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
2189 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
2190 exit(1);
2191 }
2192
Willy Tarreaubaaee002006-06-26 02:48:02 +02002193 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002194 struct peers *pr;
2195 struct proxy *px;
2196
Willy Tarreaubebd2122020-04-15 16:06:11 +02002197 if (warned & WARN_ANY)
2198 qfprintf(stdout, "Warnings were found.\n");
2199
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002200 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002201 if (pr->peers_fe)
2202 break;
2203
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002204 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002205 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002206 break;
2207
2208 if (pr || px) {
2209 /* At least one peer or one listener has been found */
2210 qfprintf(stdout, "Configuration file is valid\n");
2211 exit(0);
2212 }
2213 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2214 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002215 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002216
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002217 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002218 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002219
Willy Tarreaue6945732016-12-21 19:57:00 +01002220 list_for_each_entry(pcf, &post_check_list, list) {
2221 err_code |= pcf->fct();
2222 if (err_code & (ERR_ABORT|ERR_FATAL))
2223 exit(1);
2224 }
2225
Willy Tarreaubaaee002006-06-26 02:48:02 +02002226 if (cfg_maxconn > 0)
2227 global.maxconn = cfg_maxconn;
2228
Willy Tarreau8d687d82019-03-01 09:39:42 +01002229 if (global.stats_fe)
2230 global.maxsock += global.stats_fe->maxconn;
2231
2232 if (cfg_peers) {
2233 /* peers also need to bypass global maxconn */
2234 struct peers *p = cfg_peers;
2235
2236 for (p = cfg_peers; p; p = p->next)
2237 if (p->peers_fe)
2238 global.maxsock += p->peers_fe->maxconn;
2239 }
2240
Willy Tarreaubaaee002006-06-26 02:48:02 +02002241 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002242 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002243 global.pidfile = strdup(cfg_pidfile);
2244 }
2245
Willy Tarreaud0256482015-01-15 21:45:22 +01002246 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002247 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2248 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2249 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2250 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002251 *
2252 * If memmax is set, then it depends on which values are set. If
2253 * maxsslconn is set, we use memmax to determine how many cleartext
2254 * connections may be added, and set maxconn to the sum of the two.
2255 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2256 * the remaining amount of memory between memmax and the cleartext
2257 * connections. If neither are set, then it is considered that all
2258 * connections are SSL-capable, and maxconn is computed based on this,
2259 * then maxsslconn accordingly. We need to know if SSL is used on the
2260 * frontends, backends, or both, because when it's used on both sides,
2261 * we need twice the value for maxsslconn, but we only count the
2262 * handshake once since it is not performed on the two sides at the
2263 * same time (frontend-side is terminated before backend-side begins).
2264 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002265 * ssl_handshake_cost during its initialization. In any case, if
2266 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2267 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002268 */
Willy Tarreauac350932019-03-01 15:43:14 +01002269 ideal_maxconn = compute_ideal_maxconn();
2270
Willy Tarreaud0256482015-01-15 21:45:22 +01002271 if (!global.rlimit_memmax) {
2272 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002273 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002274 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2275 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2276 }
2277 }
2278#ifdef USE_OPENSSL
2279 else if (!global.maxconn && !global.maxsslconn &&
2280 (global.ssl_used_frontend || global.ssl_used_backend)) {
2281 /* memmax is set, compute everything automatically. Here we want
2282 * to ensure that all SSL connections will be served. We take
2283 * care of the number of sides where SSL is used, and consider
2284 * the worst case : SSL used on both sides and doing a handshake
2285 * simultaneously. Note that we can't have more than maxconn
2286 * handshakes at a time by definition, so for the worst case of
2287 * two SSL conns per connection, we count a single handshake.
2288 */
2289 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2290 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002291 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002292
2293 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2294 mem -= global.maxzlibmem;
2295 mem = mem * MEM_USABLE_RATIO;
2296
Willy Tarreau304e17e2020-03-10 17:54:54 +01002297 /* Principle: we test once to set maxconn according to the free
2298 * memory. If it results in values the system rejects, we try a
2299 * second time by respecting rlim_fd_max. If it fails again, we
2300 * go back to the initial value and will let the final code
2301 * dealing with rlimit report the error. That's up to 3 attempts.
2302 */
2303 do {
2304 global.maxconn = mem /
2305 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
2306 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2307 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01002308
Willy Tarreau304e17e2020-03-10 17:54:54 +01002309 if (retried == 1)
2310 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2311 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002312#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002313 if (global.maxconn > SYSTEM_MAXCONN)
2314 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002315#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01002316 global.maxsslconn = sides * global.maxconn;
2317
2318 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2319 break;
2320 } while (retried++ < 2);
2321
Willy Tarreaud0256482015-01-15 21:45:22 +01002322 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2323 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2324 global.maxconn, global.maxsslconn);
2325 }
2326 else if (!global.maxsslconn &&
2327 (global.ssl_used_frontend || global.ssl_used_backend)) {
2328 /* memmax and maxconn are known, compute maxsslconn automatically.
2329 * maxsslconn being forced, we don't know how many of it will be
2330 * on each side if both sides are being used. The worst case is
2331 * when all connections use only one SSL instance because
2332 * handshakes may be on two sides at the same time.
2333 */
2334 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2335 int64_t mem = global.rlimit_memmax * 1048576ULL;
2336 int64_t sslmem;
2337
2338 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2339 mem -= global.maxzlibmem;
2340 mem = mem * MEM_USABLE_RATIO;
2341
Willy Tarreau87b09662015-04-03 00:22:06 +02002342 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002343 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2344 global.maxsslconn = round_2dig(global.maxsslconn);
2345
2346 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002347 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2348 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2349 "without SSL is %d, but %d was found and SSL is in use.\n",
2350 global.rlimit_memmax,
2351 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2352 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002353 exit(1);
2354 }
2355
2356 if (global.maxsslconn > sides * global.maxconn)
2357 global.maxsslconn = sides * global.maxconn;
2358
2359 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2360 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2361 }
2362#endif
2363 else if (!global.maxconn) {
2364 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2365 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2366 int64_t mem = global.rlimit_memmax * 1048576ULL;
2367 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002368 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002369
2370 if (global.ssl_used_frontend || global.ssl_used_backend)
2371 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2372
2373 mem -= global.maxzlibmem;
2374 mem = mem * MEM_USABLE_RATIO;
2375
2376 clearmem = mem;
2377 if (sides)
2378 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2379
Willy Tarreau304e17e2020-03-10 17:54:54 +01002380 /* Principle: we test once to set maxconn according to the free
2381 * memory. If it results in values the system rejects, we try a
2382 * second time by respecting rlim_fd_max. If it fails again, we
2383 * go back to the initial value and will let the final code
2384 * dealing with rlimit report the error. That's up to 3 attempts.
2385 */
2386 do {
2387 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
2388 if (retried == 1)
2389 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2390 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002391#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002392 if (global.maxconn > SYSTEM_MAXCONN)
2393 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002394#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002395
Willy Tarreau304e17e2020-03-10 17:54:54 +01002396 if (clearmem <= 0 || !global.maxconn) {
2397 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2398 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2399 "is %d, but %d was found.\n",
2400 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01002401 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01002402 global.maxsslconn);
2403 exit(1);
2404 }
2405
2406 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2407 break;
2408 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01002409
2410 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2411 if (sides && global.maxsslconn > sides * global.maxconn) {
2412 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2413 "to be limited to %d. Better reduce global.maxsslconn to get more "
2414 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2415 }
2416 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2417 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002418 }
2419
Willy Tarreaua409f302020-03-10 17:08:53 +01002420 global.maxsock = compute_ideal_maxsock(global.maxconn);
2421 global.hardmaxconn = global.maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002422
Olivier Houchard88698d92019-04-16 19:07:22 +02002423 /* update connection pool thresholds */
2424 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2425 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2426
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002427 proxy_adjust_all_maxconn();
2428
Willy Tarreau1db37712007-06-03 17:16:49 +02002429 if (global.tune.maxpollevents <= 0)
2430 global.tune.maxpollevents = MAX_POLL_EVENTS;
2431
Olivier Houchard1599b802018-05-24 18:59:04 +02002432 if (global.tune.runqueue_depth <= 0)
2433 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2434
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002435 if (global.tune.recv_enough == 0)
2436 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2437
Willy Tarreau27a674e2009-08-17 07:23:33 +02002438 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2439 global.tune.maxrewrite = global.tune.bufsize / 2;
2440
Willy Tarreaubaaee002006-06-26 02:48:02 +02002441 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2442 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002443 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002444 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2445 }
2446
William Lallemand095ba4c2017-06-01 17:38:50 +02002447 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002448 /* command line daemon mode inhibits foreground and debug modes mode */
2449 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002450 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002451 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002452
2453 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454
William Lallemand095ba4c2017-06-01 17:38:50 +02002455 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002456 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002457 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002458 }
2459
William Lallemand095ba4c2017-06-01 17:38:50 +02002460 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002461 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002462 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 +02002463 global.nbproc = 1;
2464 }
2465
2466 if (global.nbproc < 1)
2467 global.nbproc = 1;
2468
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002469 if (global.nbthread < 1)
2470 global.nbthread = 1;
2471
Christopher Faulet3ef26392017-08-29 16:46:57 +02002472 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002473 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002474 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002475 exit(1);
2476 }
2477
Christopher Faulet96d44832017-11-14 22:02:30 +01002478 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002479 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002480 exit(1);
2481 }
2482
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002483 /*
2484 * Note: we could register external pollers here.
2485 * Built-in pollers have been registered before main().
2486 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002487
Willy Tarreau43b78992009-01-25 15:42:27 +01002488 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002489 disable_poller("kqueue");
2490
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002491 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2492 disable_poller("evports");
2493
Willy Tarreau43b78992009-01-25 15:42:27 +01002494 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002495 disable_poller("epoll");
2496
Willy Tarreau43b78992009-01-25 15:42:27 +01002497 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002498 disable_poller("poll");
2499
Willy Tarreau43b78992009-01-25 15:42:27 +01002500 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002501 disable_poller("select");
2502
2503 /* Note: we could disable any poller by name here */
2504
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002505 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002506 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002507 fprintf(stderr, "\n");
2508 list_filters(stderr);
2509 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002510
Willy Tarreau4f60f162007-04-08 16:39:58 +02002511 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002512 ha_alert("No polling mechanism available.\n"
2513 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2514 " is too low on this platform to support maxconn and the number of listeners\n"
2515 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2516 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2517 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2518 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2519 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2520 " check build settings using 'haproxy -vv'.\n\n",
2521 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002522 exit(1);
2523 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002524 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2525 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002526 }
2527
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002528 if (!global.node)
2529 global.node = strdup(hostname);
2530
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002531 if (!hlua_post_init())
2532 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002533
Maxime de Roucy0f503922016-05-13 23:52:55 +02002534 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002535}
2536
Simon Horman6fb82592011-07-15 13:14:11 +09002537static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002538{
Simon Hormanac821422011-07-15 13:14:09 +09002539 struct acl_term_suite *suite, *suiteb;
2540 struct acl_term *term, *termb;
2541
Simon Horman6fb82592011-07-15 13:14:11 +09002542 if (!cond)
2543 return;
2544
2545 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2546 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2547 LIST_DEL(&term->list);
2548 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002549 }
Simon Horman6fb82592011-07-15 13:14:11 +09002550 LIST_DEL(&suite->list);
2551 free(suite);
2552 }
2553
2554 free(cond);
2555}
2556
Christopher Fauletcb550132019-12-17 11:25:46 +01002557static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002558{
Christopher Fauletcb550132019-12-17 11:25:46 +01002559 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002560
Christopher Fauletcb550132019-12-17 11:25:46 +01002561 list_for_each_entry_safe(rule, ruleb, rules, list) {
2562 LIST_DEL(&rule->list);
2563 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002564 if (rule->release_ptr)
2565 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002566 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002567 }
2568}
2569
Simon Horman6fb82592011-07-15 13:14:11 +09002570static void deinit_stick_rules(struct list *rules)
2571{
2572 struct sticking_rule *rule, *ruleb;
2573
2574 list_for_each_entry_safe(rule, ruleb, rules, list) {
2575 LIST_DEL(&rule->list);
2576 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002577 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002578 free(rule);
2579 }
2580}
2581
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002582void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002583{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002584 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002585 struct cap_hdr *h,*h_next;
2586 struct server *s,*s_next;
2587 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002588 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002589 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002590 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002591 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002592 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002593 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002594 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002595 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002596 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002597 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002598 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002599 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002600 struct proxy_deinit_fct *pxdf;
2601 struct server_deinit_fct *srvdf;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002602
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002603 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002604 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002605 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002606 free(p->id);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002607 free(p->cookie_name);
2608 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002609 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002610 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002611 free(p->capture_name);
2612 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002613 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002614 if (p->conf.logformat_string != default_http_log_format &&
2615 p->conf.logformat_string != default_tcp_log_format &&
2616 p->conf.logformat_string != clf_http_log_format)
2617 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002618
Willy Tarreau62a61232013-04-12 18:13:46 +02002619 free(p->conf.lfs_file);
2620 free(p->conf.uniqueid_format_string);
2621 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002622 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2623 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002624
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002625 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2626 free(p->conf.logformat_sd_string);
2627 free(p->conf.lfsd_file);
2628
Willy Tarreaub80c2302007-11-30 20:51:32 +01002629 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2630 LIST_DEL(&cond->list);
2631 prune_acl_cond(cond);
2632 free(cond);
2633 }
2634
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002635 /* build a list of unique uri_auths */
2636 if (!ua)
2637 ua = p->uri_auth;
2638 else {
2639 /* check if p->uri_auth is unique */
2640 for (uap = ua; uap; uap=uap->next)
2641 if (uap == p->uri_auth)
2642 break;
2643
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002644 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002645 /* add it, if it is */
2646 p->uri_auth->next = ua;
2647 ua = p->uri_auth;
2648 }
2649 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002650
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002651 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2652 LIST_DEL(&acl->list);
2653 prune_acl(acl);
2654 free(acl);
2655 }
2656
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002657 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2658 LIST_DEL(&srule->list);
2659 prune_acl_cond(srule->cond);
2660 free(srule->cond);
2661 free(srule);
2662 }
2663
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002664 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2665 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002666 if (rule->cond) {
2667 prune_acl_cond(rule->cond);
2668 free(rule->cond);
2669 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002670 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002671 free(rule);
2672 }
2673
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002674 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2675 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002676 if (rdr->cond) {
2677 prune_acl_cond(rdr->cond);
2678 free(rdr->cond);
2679 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002680 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002681 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2682 LIST_DEL(&lf->list);
2683 free(lf);
2684 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002685 free(rdr);
2686 }
2687
William Lallemand0f99e342011-10-12 17:50:54 +02002688 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2689 LIST_DEL(&log->list);
2690 free(log);
2691 }
2692
William Lallemand723b73a2012-02-08 16:37:49 +01002693 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2694 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002695 release_sample_expr(lf->expr);
2696 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002697 free(lf);
2698 }
2699
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002700 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2701 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002702 release_sample_expr(lf->expr);
2703 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002704 free(lf);
2705 }
2706
Christopher Fauletcb550132019-12-17 11:25:46 +01002707 deinit_act_rules(&p->tcp_req.inspect_rules);
2708 deinit_act_rules(&p->tcp_rep.inspect_rules);
2709 deinit_act_rules(&p->tcp_req.l4_rules);
2710 deinit_act_rules(&p->tcp_req.l5_rules);
2711 deinit_act_rules(&p->http_req_rules);
2712 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002713 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002714
Simon Horman6fb82592011-07-15 13:14:11 +09002715 deinit_stick_rules(&p->storersp_rules);
2716 deinit_stick_rules(&p->sticking_rules);
2717
Willy Tarreaubaaee002006-06-26 02:48:02 +02002718 h = p->req_cap;
2719 while (h) {
2720 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002721 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002722 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002723 free(h);
2724 h = h_next;
2725 }/* end while(h) */
2726
2727 h = p->rsp_cap;
2728 while (h) {
2729 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002730 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002731 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002732 free(h);
2733 h = h_next;
2734 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002735
Willy Tarreaubaaee002006-06-26 02:48:02 +02002736 s = p->srv;
2737 while (s) {
2738 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002739
Dragan Dosen026ef572019-04-30 00:56:20 +02002740
Willy Tarreauf6562792019-05-07 19:05:35 +02002741 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002742
Willy Tarreaua534fea2008-08-03 12:19:50 +02002743 free(s->id);
2744 free(s->cookie);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002745 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002746 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002747 free(s->idle_conns);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002748 free(s->safe_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002749 free(s->available_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002750 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002751
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002752 if (s->use_ssl == 1 || s->check.use_ssl == 1 || (s->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002753 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2754 xprt_get(XPRT_SSL)->destroy_srv(s);
2755 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002756 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002757
2758 list_for_each_entry(srvdf, &server_deinit_list, list)
2759 srvdf->fct(s);
2760
Willy Tarreaubaaee002006-06-26 02:48:02 +02002761 free(s);
2762 s = s_next;
2763 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002764
Willy Tarreau4348fad2012-09-20 16:48:07 +02002765 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002766 /*
2767 * Zombie proxy, the listener just pretend to be up
2768 * because they still hold an opened fd.
2769 * Close it and give the listener its real state.
2770 */
2771 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2772 close(l->fd);
2773 l->state = LI_INIT;
2774 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002775 unbind_listener(l);
2776 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002777 LIST_DEL(&l->by_fe);
2778 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002779 free(l->name);
2780 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002781 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002782 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002783
Willy Tarreau4348fad2012-09-20 16:48:07 +02002784 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002785 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002786 if (bind_conf->xprt->destroy_bind_conf)
2787 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002788 free(bind_conf->file);
2789 free(bind_conf->arg);
2790 LIST_DEL(&bind_conf->by_fe);
2791 free(bind_conf);
2792 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002793
Christopher Fauletd7c91962015-04-30 11:48:27 +02002794 flt_deinit(p);
2795
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002796 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2797 pxdf->fct(p);
2798
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002799 free(p->desc);
2800 free(p->fwdfor_hdr_name);
2801
Olivier Houchard3f795f72019-04-17 22:51:06 +02002802 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002803
Willy Tarreaubafbe012017-11-24 17:34:44 +01002804 pool_destroy(p->req_cap_pool);
2805 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002806 if (p->table)
2807 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002808
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002809 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002810 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002811 HA_SPIN_DESTROY(&p0->lbprm.lock);
2812 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002813 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002814 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002815
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002816 while (ua) {
2817 uap = ua;
2818 ua = ua->next;
2819
Willy Tarreaua534fea2008-08-03 12:19:50 +02002820 free(uap->uri_prefix);
2821 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002822 free(uap->node);
2823 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002824
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002825 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002826 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002827
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002828 free(uap);
2829 }
2830
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002831 userlist_free(userlist);
2832
David Carlier834cb2e2015-09-25 12:02:25 +01002833 cfg_unregister_sections();
2834
Christopher Faulet0132d062017-07-26 15:33:35 +02002835 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002836
Willy Tarreaudd815982007-10-16 12:25:14 +02002837 protocol_unbind_all();
2838
Willy Tarreau05554e62016-12-21 20:46:26 +01002839 list_for_each_entry(pdf, &post_deinit_list, list)
2840 pdf->fct();
2841
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002842 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002843 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002844 free(global.chroot); global.chroot = NULL;
2845 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002846 free(global.node); global.node = NULL;
2847 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002848 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002849 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002850 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002851
William Lallemand0f99e342011-10-12 17:50:54 +02002852 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2853 LIST_DEL(&log->list);
2854 free(log);
2855 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002856 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002857 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002858 LIST_DEL(&wl->list);
2859 free(wl);
2860 }
2861
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002862 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2863 if (bol->must_free)
2864 free((void *)bol->str);
2865 LIST_DEL(&bol->list);
2866 free(bol);
2867 }
2868
Christopher Fauletff2613e2016-11-09 11:36:17 +01002869 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002870 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002871 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002872} /* end deinit() */
2873
William Lallemand72160322018-11-06 17:37:16 +01002874
Willy Tarreau918ff602011-07-25 16:33:49 +02002875/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002876void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002877{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002878 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002879
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002880 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002881 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002882 wake_expired_tasks();
2883
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002884 /* Process a few tasks */
2885 process_runnable_tasks();
2886
William Lallemand1aab50b2018-06-07 09:46:01 +02002887 /* check if we caught some signals and process them in the
2888 first thread */
2889 if (tid == 0)
2890 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002891
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002892 /* also stop if we failed to cleanly stop all tasks */
2893 if (killed > 1)
2894 break;
2895
Willy Tarreau10146c92015-04-13 20:44:19 +02002896 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002897 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002898 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002899 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002900 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002901 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002902 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002903 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2904 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002905 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002906 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002907 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002908 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002909 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002910 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002911
Willy Tarreau4f46a352020-03-23 09:27:28 +01002912 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002913 int i;
2914
2915 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002916 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2917 /* notify all threads that stopping was just set */
2918 for (i = 0; i < global.nbthread; i++)
2919 if ((all_threads_mask >> i) & 1)
2920 wake_thread(i);
2921 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002922 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002923
2924 /* stop when there's nothing left to do */
2925 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002926 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
2927 /* wake all threads waiting on jobs==0 */
2928 for (i = 0; i < global.nbthread; i++)
2929 if (((all_threads_mask & ~tid_bit) >> i) & 1)
2930 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01002931 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002932 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002933 }
2934
Willy Tarreauc49ba522019-12-11 08:12:23 +01002935 /* If we have to sleep, measure how long */
2936 next = wake ? TICK_ETERNITY : next_timer_expiry();
2937
Willy Tarreau58b458d2008-06-29 22:40:23 +02002938 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002939 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002940
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002941 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002942 }
2943}
2944
Christopher Faulet1d17c102017-08-29 15:38:48 +02002945static void *run_thread_poll_loop(void *data)
2946{
Willy Tarreau082b6282019-05-22 14:42:12 +02002947 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002948 struct per_thread_init_fct *ptif;
2949 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002950 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002951 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02002952 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2953 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002954
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002955 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002956 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002957
Willy Tarreauf6178242019-05-21 19:46:58 +02002958#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002959#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002960 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002961#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002962 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002963#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002964#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002965 /* Now, initialize one thread init at a time. This is better since
2966 * some init code is a bit tricky and may release global resources
2967 * after reallocating them locally. This will also ensure there is
2968 * no race on file descriptors allocation.
2969 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002970#ifdef USE_THREAD
2971 pthread_mutex_lock(&init_mutex);
2972#endif
2973 /* The first thread must set the number of threads left */
2974 if (!init_left)
2975 init_left = global.nbthread;
2976 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002977
Christopher Faulet1d17c102017-08-29 15:38:48 +02002978 tv_update_date(-1,-1);
2979
Willy Tarreau082b6282019-05-22 14:42:12 +02002980 /* per-thread alloc calls performed here are not allowed to snoop on
2981 * other threads, so they are free to initialize at their own rhythm
2982 * as long as they act as if they were alone. None of them may rely
2983 * on resources initialized by the other ones.
2984 */
2985 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2986 if (!ptaf->fct()) {
2987 ha_alert("failed to allocate resources for thread %u.\n", tid);
2988 exit(1);
2989 }
2990 }
2991
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002992 /* per-thread init calls performed here are not allowed to snoop on
2993 * other threads, so they are free to initialize at their own rhythm
2994 * as long as they act as if they were alone.
2995 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002996 list_for_each_entry(ptif, &per_thread_init_list, list) {
2997 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002998 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002999 exit(1);
3000 }
3001 }
3002
Willy Tarreau71092822019-06-10 09:51:04 +02003003 /* enabling protocols will result in fd_insert() calls to be performed,
3004 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02003005 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02003006 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003007 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02003008 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003009
Willy Tarreau34a150c2019-06-11 09:16:41 +02003010#ifdef USE_THREAD
3011 pthread_cond_broadcast(&init_cond);
3012 pthread_mutex_unlock(&init_mutex);
3013
3014 /* now wait for other threads to finish starting */
3015 pthread_mutex_lock(&init_mutex);
3016 while (init_left)
3017 pthread_cond_wait(&init_cond, &init_mutex);
3018 pthread_mutex_unlock(&init_mutex);
3019#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003020
Willy Tarreaua45a8b52019-12-06 16:31:45 +01003021#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
3022 /* Let's refrain from using setuid executables. This way the impact of
3023 * an eventual vulnerability in a library remains limited. It may
3024 * impact external checks but who cares about them anyway ? In the
3025 * worst case it's possible to disable the option. Obviously we do this
3026 * in workers only. We can't hard-fail on this one as it really is
3027 * implementation dependent though we're interested in feedback, hence
3028 * the warning.
3029 */
3030 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
3031 static int warn_fail;
3032 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3033 ha_warning("Failed to disable setuid, please report to developers with detailed "
3034 "information about your operating system. You can silence this warning "
3035 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
3036 }
3037 }
3038#endif
3039
Willy Tarreaud96f1122019-12-03 07:07:36 +01003040#if defined(RLIMIT_NPROC)
3041 /* all threads have started, it's now time to prevent any new thread
3042 * or process from starting. Obviously we do this in workers only. We
3043 * can't hard-fail on this one as it really is implementation dependent
3044 * though we're interested in feedback, hence the warning.
3045 */
3046 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
3047 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
3048 static int warn_fail;
3049
3050 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3051 ha_warning("Failed to disable forks, please report to developers with detailed "
3052 "information about your operating system. You can silence this warning "
3053 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
3054 }
3055 }
3056#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003057 run_poll_loop();
3058
3059 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
3060 ptdf->fct();
3061
Willy Tarreau082b6282019-05-22 14:42:12 +02003062 list_for_each_entry(ptff, &per_thread_free_list, list)
3063 ptff->fct();
3064
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003065#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01003066 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003067 if (tid > 0)
3068 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003069#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003070 return NULL;
3071}
Christopher Faulet1d17c102017-08-29 15:38:48 +02003072
William Dauchyf9af9d72019-11-17 15:47:16 +01003073/* set uid/gid depending on global settings */
3074static void set_identity(const char *program_name)
3075{
3076 if (global.gid) {
3077 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
3078 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3079 " without 'uid'/'user' is generally useless.\n", program_name);
3080
3081 if (setgid(global.gid) == -1) {
3082 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
3083 protocol_unbind_all();
3084 exit(1);
3085 }
3086 }
3087
3088 if (global.uid && setuid(global.uid) == -1) {
3089 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
3090 protocol_unbind_all();
3091 exit(1);
3092 }
3093}
3094
Willy Tarreaubaaee002006-06-26 02:48:02 +02003095int main(int argc, char **argv)
3096{
3097 int err, retry;
3098 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02003099 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02003100 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003101
Olivier Houchard5fa300d2018-02-03 15:15:21 +01003102 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01003103
Willy Tarreauff9c9142019-02-07 10:39:36 +01003104 /* this can only safely be done here, though it's optimized away by
3105 * the compiler.
3106 */
3107 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
3108 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
3109 "HAProxy was built with value %d, please fix it and rebuild.\n",
3110 LONGBITS, MAX_PROCS);
3111 exit(1);
3112 }
3113
Willy Tarreaubf696402019-03-01 10:09:28 +01003114 /* take a copy of initial limits before we possibly change them */
3115 getrlimit(RLIMIT_NOFILE, &limit);
3116 rlim_fd_cur_at_boot = limit.rlim_cur;
3117 rlim_fd_max_at_boot = limit.rlim_max;
3118
Willy Tarreau5794fb02018-11-25 18:43:29 +01003119 /* process all initcalls in order of potential dependency */
3120 RUN_INITCALLS(STG_PREPARE);
3121 RUN_INITCALLS(STG_LOCK);
3122 RUN_INITCALLS(STG_ALLOC);
3123 RUN_INITCALLS(STG_POOL);
3124 RUN_INITCALLS(STG_REGISTER);
3125 RUN_INITCALLS(STG_INIT);
3126
Emeric Bruncf20bf12010-10-22 16:06:11 +02003127 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003128 signal_register_fct(SIGQUIT, dump, SIGQUIT);
3129 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
3130 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02003131 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003132
Willy Tarreaue437c442010-03-17 18:02:46 +01003133 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
3134 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
3135 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003136 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003137 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003138
Willy Tarreaudc23a922011-02-16 11:10:36 +01003139 /* ulimits */
3140 if (!global.rlimit_nofile)
3141 global.rlimit_nofile = global.maxsock;
3142
3143 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01003144 limit.rlim_cur = global.rlimit_nofile;
3145 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
3146
Willy Tarreaudc23a922011-02-16 11:10:36 +01003147 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02003148 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01003149 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3150 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
3151 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3152 if (!(global.mode & MODE_MWORKER))
3153 exit(1);
3154 }
3155 else {
3156 /* try to set it to the max possible at least */
3157 limit.rlim_cur = limit.rlim_max;
3158 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3159 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003160
William Dauchy0fec3ab2019-10-27 20:08:11 +01003161 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
3162 "This will fail in >= v2.3\n",
3163 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3164 global.rlimit_nofile = limit.rlim_cur;
3165 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003166 }
3167 }
3168
3169 if (global.rlimit_memmax) {
3170 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003171 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003172#ifdef RLIMIT_AS
3173 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003174 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3175 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3176 argv[0], global.rlimit_memmax);
3177 if (!(global.mode & MODE_MWORKER))
3178 exit(1);
3179 }
3180 else
3181 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
3182 "This will fail in >= v2.3\n",
3183 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003184 }
3185#else
3186 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003187 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3188 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3189 argv[0], global.rlimit_memmax);
3190 if (!(global.mode & MODE_MWORKER))
3191 exit(1);
3192 }
3193 else
3194 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.",
3195 "This will fail in >= v2.3\n",
3196 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003197 }
3198#endif
3199 }
3200
Olivier Houchardf73629d2017-04-05 22:33:04 +02003201 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003202 if (strcmp("/dev/null", old_unixsocket) != 0) {
3203 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003204 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003205 if (!(global.mode & MODE_MWORKER))
3206 exit(1);
3207 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003208 }
3209 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003210 get_cur_unixsocket();
3211
Willy Tarreaubaaee002006-06-26 02:48:02 +02003212 /* We will loop at most 100 times with 10 ms delay each time.
3213 * That's at most 1 second. We only send a signal to old pids
3214 * if we cannot grab at least one port.
3215 */
3216 retry = MAX_START_RETRIES;
3217 err = ERR_NONE;
3218 while (retry >= 0) {
3219 struct timeval w;
3220 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003221 /* exit the loop on no error or fatal error */
3222 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003223 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003224 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003225 break;
3226
3227 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3228 * listening sockets. So on those platforms, it would be wiser to
3229 * simply send SIGUSR1, which will not be undoable.
3230 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003231 if (tell_old_pids(SIGTTOU) == 0) {
3232 /* no need to wait if we can't contact old pids */
3233 retry = 0;
3234 continue;
3235 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003236 /* give some time to old processes to stop listening */
3237 w.tv_sec = 0;
3238 w.tv_usec = 10*1000;
3239 select(0, NULL, NULL, NULL, &w);
3240 retry--;
3241 }
3242
3243 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003244 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003245 if (retry != MAX_START_RETRIES && nb_oldpids) {
3246 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003247 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003248 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003249 exit(1);
3250 }
3251
William Lallemand944e6192018-11-21 15:48:31 +01003252 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003253 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003254 /* Note: we don't have to send anything to the old pids because we
3255 * never stopped them. */
3256 exit(1);
3257 }
3258
Emeric Bruncf20bf12010-10-22 16:06:11 +02003259 err = protocol_bind_all(errmsg, sizeof(errmsg));
3260 if ((err & ~ERR_WARN) != ERR_NONE) {
3261 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003262 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003263
Christopher Faulet767a84b2017-11-24 16:50:31 +01003264 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003265 protocol_unbind_all(); /* cleanup everything we can */
3266 if (nb_oldpids)
3267 tell_old_pids(SIGTTIN);
3268 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003269 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003270 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003271 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003272 /* Ok, all listener should now be bound, close any leftover sockets
3273 * the previous process gave us, we don't need them anymore
3274 */
3275 while (xfer_sock_list != NULL) {
3276 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3277 close(xfer_sock_list->fd);
3278 free(xfer_sock_list->iface);
3279 free(xfer_sock_list->namespace);
3280 free(xfer_sock_list);
3281 xfer_sock_list = tmpxfer;
3282 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003283
Willy Tarreaubaaee002006-06-26 02:48:02 +02003284 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003285 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3286 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003287
Willy Tarreaubaaee002006-06-26 02:48:02 +02003288 /* MODE_QUIET can inhibit alerts and warnings below this line */
3289
PiBa-NL149a81a2017-12-25 21:03:31 +01003290 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3291 /* either stdin/out/err are already closed or should stay as they are. */
3292 if ((global.mode & MODE_DAEMON)) {
3293 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3294 global.mode &= ~MODE_VERBOSE;
3295 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3296 }
3297 } else {
3298 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3299 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003300 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003301 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003302 }
3303
3304 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003305 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003306 unlink(global.pidfile);
3307 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3308 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003309 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003310 if (nb_oldpids)
3311 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003312 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003313 exit(1);
3314 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003315 }
3316
Willy Tarreaub38651a2007-03-24 17:24:39 +01003317 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003318 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3319 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003320 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003321 exit(1);
3322 }
3323
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003324 /* If the user is not root, we'll still let him try the configuration
3325 * but we inform him that unexpected behaviour may occur.
3326 */
3327 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003328 ha_warning("[%s.main()] Some options which require full privileges"
3329 " might not work well.\n"
3330 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003331
William Lallemand095ba4c2017-06-01 17:38:50 +02003332 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3333
3334 /* chroot if needed */
3335 if (global.chroot != NULL) {
3336 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003337 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003338 if (nb_oldpids)
3339 tell_old_pids(SIGTTIN);
3340 protocol_unbind_all();
3341 exit(1);
3342 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003343 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003344 }
3345
William Lallemand944e6192018-11-21 15:48:31 +01003346 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003347 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003348
William Lallemand27edc4b2019-05-07 17:49:33 +02003349 /* send a SIGTERM to workers who have a too high reloads number */
3350 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3351 mworker_kill_max_reloads(SIGTERM);
3352
William Lallemand8a361b52017-06-20 11:20:33 +02003353 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3354 nb_oldpids = 0;
3355 free(oldpids);
3356 oldpids = NULL;
3357 }
3358
3359
Willy Tarreaubaaee002006-06-26 02:48:02 +02003360 /* Note that any error at this stage will be fatal because we will not
3361 * be able to restart the old pids.
3362 */
3363
William Dauchyf9af9d72019-11-17 15:47:16 +01003364 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3365 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003366
Willy Tarreaubaaee002006-06-26 02:48:02 +02003367 /* check ulimits */
3368 limit.rlim_cur = limit.rlim_max = 0;
3369 getrlimit(RLIMIT_NOFILE, &limit);
3370 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003371 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3372 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3373 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3374 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3375 global.maxsock);
3376 if (!(global.mode & MODE_MWORKER))
3377 exit(1);
3378 }
3379 else
3380 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3381 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3382 "This will fail in >= v2.3\n",
3383 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3384 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003385 }
3386
William Lallemand944e6192018-11-21 15:48:31 +01003387 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003388 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003389 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003390 int ret = 0;
3391 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003392 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003393
William Lallemand095ba4c2017-06-01 17:38:50 +02003394 /*
3395 * if daemon + mworker: must fork here to let a master
3396 * process live in background before forking children
3397 */
William Lallemand73b85e72017-06-01 17:38:51 +02003398
3399 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3400 && (global.mode & MODE_MWORKER)
3401 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003402 ret = fork();
3403 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003404 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003405 protocol_unbind_all();
3406 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003407 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003408 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003409 } else /* change the process group ID in the child (master process) */
3410 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003411 }
William Lallemande20b6a62017-06-01 17:38:55 +02003412
William Lallemande20b6a62017-06-01 17:38:55 +02003413
William Lallemanddeed7802017-11-06 11:00:04 +01003414 /* if in master-worker mode, write the PID of the father */
3415 if (global.mode & MODE_MWORKER) {
3416 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003417 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003418 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003419 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003420 }
3421
Willy Tarreaubaaee002006-06-26 02:48:02 +02003422 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003423 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003424 if (global.mode & MODE_MWORKER)
3425 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003426 for (proc = 0; proc < global.nbproc; proc++) {
3427 ret = fork();
3428 if (ret < 0) {
3429 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3430 protocol_unbind_all();
3431 exit(1); /* there has been an error */
3432 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003433 else if (ret == 0) { /* child breaks here */
3434 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003435 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003436 }
William Lallemand944e6192018-11-21 15:48:31 +01003437 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3438 char pidstr[100];
3439 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003440 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01003441 }
3442 if (global.mode & MODE_MWORKER) {
3443 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003444
William Lallemand220567e2018-11-21 18:04:53 +01003445 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003446 /* find the right mworker_proc */
3447 list_for_each_entry(child, &proc_list, list) {
3448 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003449 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003450 child->timestamp = now.tv_sec;
3451 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003452 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003453 break;
3454 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003455 }
3456 }
William Lallemandbc193052018-09-11 10:06:26 +02003457
William Lallemand944e6192018-11-21 15:48:31 +01003458 relative_pid++; /* each child will get a different one */
3459 pid_bit <<= 1;
3460 }
3461 } else {
3462 /* wait mode */
3463 global.nbproc = 1;
3464 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003465 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003466
3467#ifdef USE_CPU_AFFINITY
3468 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003469 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003470 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003471#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003472 {
3473 cpuset_t cpuset;
3474 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003475 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003476
3477 CPU_ZERO(&cpuset);
3478 while ((i = ffsl(cpu_map)) > 0) {
3479 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003480 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003481 }
3482 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3483 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003484#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003485 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003486#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003487#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003488 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003489 if (pidfd >= 0) {
3490 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3491 close(pidfd);
3492 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003493
3494 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003495 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003496
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003497 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003498 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003499
3500 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3501 (global.mode & MODE_DAEMON)) {
3502 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003503 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3504 stdio_quiet(-1);
3505
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003506 global.mode &= ~MODE_VERBOSE;
3507 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003508 }
3509
William Lallemandb3f2be32018-09-11 10:06:18 +02003510 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003511 /* should never get there */
3512 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003513 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003514#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003515 ssl_free_dh();
3516#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003517 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003518 }
3519
William Lallemandcb11fd22017-06-01 17:38:52 +02003520 /* child must never use the atexit function */
3521 atexit_flag = 0;
3522
William Lallemandbc193052018-09-11 10:06:26 +02003523 /* close useless master sockets */
3524 if (global.mode & MODE_MWORKER) {
3525 struct mworker_proc *child, *it;
3526 master = 0;
3527
William Lallemand309dc9a2018-10-26 14:47:45 +02003528 mworker_cli_proxy_stop();
3529
William Lallemandbc193052018-09-11 10:06:26 +02003530 /* free proc struct of other processes */
3531 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003532 /* close the FD of the master side for all
3533 * workers, we don't need to close the worker
3534 * side of other workers since it's done with
3535 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003536 if (child->ipc_fd[0] >= 0)
3537 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003538 if (child->relative_pid == relative_pid &&
3539 child->reloads == 0) {
3540 /* keep this struct if this is our pid */
3541 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003542 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003543 }
William Lallemandbc193052018-09-11 10:06:26 +02003544 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003545 mworker_free_child(child);
3546 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003547 }
3548 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003549
William Lallemande1340412017-12-28 16:09:36 +01003550 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3551 devnullfd = open("/dev/null", O_RDWR, 0);
3552 if (devnullfd < 0) {
3553 ha_alert("Cannot open /dev/null\n");
3554 exit(EXIT_FAILURE);
3555 }
3556 }
3557
William Lallemand095ba4c2017-06-01 17:38:50 +02003558 /* Must chroot and setgid/setuid in the children */
3559 /* chroot if needed */
3560 if (global.chroot != NULL) {
3561 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003562 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003563 if (nb_oldpids)
3564 tell_old_pids(SIGTTIN);
3565 protocol_unbind_all();
3566 exit(1);
3567 }
3568 }
3569
3570 free(global.chroot);
3571 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003572 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003573
William Lallemand7f80eb22017-05-26 18:19:55 +02003574 /* pass through every cli socket, and check if it's bound to
3575 * the current process and if it exposes listeners sockets.
3576 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3577 * */
3578
3579 if (global.stats_fe) {
3580 struct bind_conf *bind_conf;
3581
3582 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3583 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3584 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3585 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3586 break;
3587 }
3588 }
3589 }
3590 }
3591
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003592 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003593 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003594 while (px != NULL) {
3595 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003596 if (!(px->bind_proc & (1UL << proc))) {
3597 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3598 zombify_proxy(px);
3599 else
3600 stop_proxy(px);
3601 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003602 }
3603 px = px->next;
3604 }
3605
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003606 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003607 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003608 if (!curpeers->peers_fe)
3609 continue;
3610
3611 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3612 continue;
3613
3614 stop_proxy(curpeers->peers_fe);
3615 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003616 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003617 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003618 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003619 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003620 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003621 curpeers->peers_fe = NULL;
3622 }
3623
William Lallemand2e8fad92018-11-13 16:18:23 +01003624 /*
3625 * This is only done in daemon mode because we might want the
3626 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3627 * we should now close the 3 first FDs to ensure that we can
3628 * detach from the TTY. We MUST NOT do it in other cases since
3629 * it would have already be done, and 0-2 would have been
3630 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003631 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003632 if ((global.mode & MODE_DAEMON) &&
3633 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003634 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003635 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003636 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003637 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3638 }
3639 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003640 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3641 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003642 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003643 }
3644
William Dauchye039f262019-11-17 15:47:15 +01003645 /* try our best to re-enable core dumps depending on system capabilities.
3646 * What is addressed here :
3647 * - remove file size limits
3648 * - remove core size limits
3649 * - mark the process dumpable again if it lost it due to user/group
3650 */
3651 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3652 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3653
3654#if defined(RLIMIT_FSIZE)
3655 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3656 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3657 ha_alert("[%s.main()] Failed to set the raise the maximum "
3658 "file size.\n", argv[0]);
3659 if (!(global.mode & MODE_MWORKER))
3660 exit(1);
3661 }
3662 else
3663 ha_warning("[%s.main()] Failed to set the raise the maximum "
3664 "file size. This will fail in >= v2.3\n", argv[0]);
3665 }
3666#endif
3667
3668#if defined(RLIMIT_CORE)
3669 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3670 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3671 ha_alert("[%s.main()] Failed to set the raise the core "
3672 "dump size.\n", argv[0]);
3673 if (!(global.mode & MODE_MWORKER))
3674 exit(1);
3675 }
3676 else
3677 ha_warning("[%s.main()] Failed to set the raise the core "
3678 "dump size. This will fail in >= v2.3\n", argv[0]);
3679 }
3680#endif
3681
3682#if defined(USE_PRCTL)
3683 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3684 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3685 "no core will be dumped.\n", argv[0]);
3686#endif
3687 }
3688
Christopher Faulete3a5e352017-10-24 13:53:54 +02003689 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003690 /*
3691 * That's it : the central polling loop. Run until we stop.
3692 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003693#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003694 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003695 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003696 int i;
3697
William Lallemand1aab50b2018-06-07 09:46:01 +02003698 /* ensure the signals will be blocked in every thread */
3699 sigfillset(&blocked_sig);
3700 sigdelset(&blocked_sig, SIGPROF);
3701 sigdelset(&blocked_sig, SIGBUS);
3702 sigdelset(&blocked_sig, SIGFPE);
3703 sigdelset(&blocked_sig, SIGILL);
3704 sigdelset(&blocked_sig, SIGSEGV);
3705 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3706
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003707 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003708 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003709 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003710 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003711
Christopher Faulet62519022017-10-16 15:49:32 +02003712#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003713 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003714 if (global.cpu_map.proc_t1[relative_pid-1])
3715 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3716
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003717 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003718 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003719 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003720
Willy Tarreau421f02e2018-01-20 18:19:22 +01003721 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003722 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003723#if defined(__APPLE__)
3724 int j;
3725 unsigned long cpu_map = global.cpu_map.thread[i];
3726
3727 while ((j = ffsl(cpu_map)) > 0) {
3728 thread_affinity_policy_data_t cpu_set = { j - 1 };
3729 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3730 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3731 cpu_map &= ~(1UL << (j - 1));
3732 }
3733#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003734#if defined(__FreeBSD__) || defined(__NetBSD__)
3735 cpuset_t cpuset;
3736#else
3737 cpu_set_t cpuset;
3738#endif
3739 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003740 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003741
3742 CPU_ZERO(&cpuset);
3743
3744 while ((j = ffsl(cpu_map)) > 0) {
3745 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003746 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003747 }
David Carliera92c5ce2019-09-13 05:03:12 +01003748 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003749 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003750#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003751 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003752 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003753#endif /* !USE_CPU_AFFINITY */
3754
William Lallemand1aab50b2018-06-07 09:46:01 +02003755 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003756 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003757
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003758 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003759 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003760
3761 /* Wait the end of other threads */
3762 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003763 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003764
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003765#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3766 show_lock_stats();
3767#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003768 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003769#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003770 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003771 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003772#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003773
3774 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003775 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003776
Willy Tarreaubaaee002006-06-26 02:48:02 +02003777 exit(0);
3778}
3779
Willy Tarreaubb1b63c2020-04-15 17:00:03 +02003780#if defined(__clang_version__)
3781REGISTER_BUILD_OPTS("Built with clang compiler version " __clang_version__);
3782#elif defined(__VERSION__)
3783REGISTER_BUILD_OPTS("Built with gcc compiler version " __VERSION__);
3784#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003785
3786/*
3787 * Local variables:
3788 * c-indent-level: 8
3789 * c-basic-offset: 8
3790 * End:
3791 */