blob: bf176df7891217d1e499f05e85dc656077330307 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7b677262017-04-03 09:27:49 +02003 * Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 * Please refer to RFC2068 or RFC2616 for informations about HTTP protocol, and
11 * RFC2965 for informations about cookies usage. More generally, the IETF HTTP
12 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
Olivier Houchardf73629d2017-04-05 22:33:04 +020042#include <net/if.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <netdb.h>
44#include <fcntl.h>
45#include <errno.h>
46#include <signal.h>
47#include <stdarg.h>
48#include <sys/resource.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010049#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <time.h>
51#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010052#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010053#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#include <sched.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020055#ifdef __FreeBSD__
56#include <sys/param.h>
57#include <sys/cpuset.h>
58#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010059#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020060
61#ifdef DEBUG_FULL
62#include <assert.h>
63#endif
64
Willy Tarreau2dd0d472006-06-29 17:53:05 +020065#include <common/base64.h>
66#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020067#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020068#include <common/compat.h>
69#include <common/config.h>
70#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010071#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020072#include <common/memory.h>
73#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010074#include <common/namespace.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020075#include <common/regex.h>
76#include <common/standard.h>
77#include <common/time.h>
78#include <common/uri_auth.h>
79#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
81#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020082#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090084#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020085#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020086
Willy Tarreau0fc45a72007-06-17 00:36:03 +020087#include <proto/acl.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020088#include <proto/applet.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020089#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020090#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020091#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020092#include <proto/channel.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020093#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020094#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020095#include <proto/filters.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020096#include <proto/hdr_idx.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010097#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020098#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020099#include <proto/log.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100100#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200101#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100102#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103#include <proto/proxy.h>
104#include <proto/queue.h>
105#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200106#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200107#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200108#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200110#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100111#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112
Willy Tarreau477ecd82010-01-03 21:12:30 +0100113/* list of config files */
114static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100116int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117
118/* global options */
119struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100120 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100121 .nbproc = 1,
William Lallemand5f232402012-04-05 18:02:55 +0200122 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200123 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100124 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100125 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100126 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200127 .unix_bind = {
128 .ux = {
129 .uid = -1,
130 .gid = -1,
131 .mode = 0,
132 }
133 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200134 .tune = {
135 .bufsize = BUFSIZE,
Willy Tarreau27097842015-09-28 13:53:23 +0200136 .maxrewrite = -1,
Willy Tarreau43961d52010-10-04 20:39:20 +0200137 .chksize = BUFSIZE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100138 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200139 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200140#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100141 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200142#endif
William Lallemandf3747832012-11-09 12:33:10 +0100143 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100144#ifdef DEFAULT_IDLE_TIMER
145 .idle_timer = DEFAULT_IDLE_TIMER,
146#else
147 .idle_timer = 1000, /* 1 second */
148#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200149 },
Emeric Brun76d88952012-10-05 15:47:31 +0200150#ifdef USE_OPENSSL
151#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200152 .maxsslconn = DEFAULT_MAXSSLCONN,
153#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200154#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200155 /* others NULL OK */
156};
157
158/*********************************************************************/
159
160int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100161int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200162int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200163
164/* Here we store informations about the pids of the processes we may pause
165 * or kill. We will send them a signal every 10 ms until we can bind to all
166 * our ports. With 200 retries, that's about 2 seconds.
167 */
168#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169static int *oldpids = NULL;
170static int oldpids_sig; /* use USR1 or TERM */
171
Olivier Houchardf73629d2017-04-05 22:33:04 +0200172/* Path to the unix socket we use to retrieve listener sockets from the old process */
173static const char *old_unixsocket;
174
Willy Tarreaubaaee002006-06-26 02:48:02 +0200175/* this is used to drain data, and as a temporary buffer for sprintf()... */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100176struct chunk trash = { };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177
Willy Tarreau8096de92010-02-26 11:12:27 +0100178/* this buffer is always the same size as standard buffers and is used for
179 * swapping data inside a buffer.
180 */
181char *swap_buffer = NULL;
182
Willy Tarreaubb545b42010-08-25 12:58:59 +0200183int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200184const int zero = 0;
185const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200186const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200187
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100188char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200189char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190
Willy Tarreau89efaed2013-12-13 15:14:55 +0100191/* used from everywhere just to drain results we don't want to read and which
192 * recent versions of gcc increasingly and annoyingly complain about.
193 */
194int shut_your_big_mouth_gcc_int = 0;
195
Willy Tarreau08ceb102011-07-24 22:58:00 +0200196/* list of the temporarily limited listeners because of lack of resource */
197struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200198struct task *global_listener_queue_task;
199static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200
Willy Tarreauff055502014-04-28 22:27:06 +0200201/* bitfield of a few warnings to emit just once (WARN_*) */
202unsigned int warned = 0;
203
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100204
205/* These are strings to be reported in the output of "haproxy -vv". They may
206 * either be constants (in which case must_free must be zero) or dynamically
207 * allocated strings to pass to free() on exit, and in this case must_free
208 * must be non-zero.
209 */
210struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
211struct build_opts_str {
212 struct list list;
213 const char *str;
214 int must_free;
215};
216
Willy Tarreaue6945732016-12-21 19:57:00 +0100217/* These functions are called just after the point where the program exits
218 * after a config validity check, so they are generally suited for resource
219 * allocation and slow initializations that should be skipped during basic
220 * config checks. The functions must return 0 on success, or a combination
221 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
222 * and immediate exit, so the function must have emitted any useful error.
223 */
224struct list post_check_list = LIST_HEAD_INIT(post_check_list);
225struct post_check_fct {
226 struct list list;
227 int (*fct)();
228};
229
Willy Tarreau05554e62016-12-21 20:46:26 +0100230/* These functions are called when freeing the global sections at the end
231 * of deinit, after everything is stopped. They don't return anything, and
232 * they work in best effort mode as their sole goal is to make valgrind
233 * mostly happy.
234 */
235struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
236struct post_deinit_fct {
237 struct list list;
238 void (*fct)();
239};
240
Willy Tarreaubaaee002006-06-26 02:48:02 +0200241/*********************************************************************/
242/* general purpose functions ***************************************/
243/*********************************************************************/
244
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100245/* used to register some build option strings at boot. Set must_free to
246 * non-zero if the string must be freed upon exit.
247 */
248void hap_register_build_opts(const char *str, int must_free)
249{
250 struct build_opts_str *b;
251
252 b = calloc(1, sizeof(*b));
253 if (!b) {
254 fprintf(stderr, "out of memory\n");
255 exit(1);
256 }
257 b->str = str;
258 b->must_free = must_free;
259 LIST_ADDQ(&build_opts_list, &b->list);
260}
261
Willy Tarreaue6945732016-12-21 19:57:00 +0100262/* used to register some initialization functions to call after the checks. */
263void hap_register_post_check(int (*fct)())
264{
265 struct post_check_fct *b;
266
267 b = calloc(1, sizeof(*b));
268 if (!b) {
269 fprintf(stderr, "out of memory\n");
270 exit(1);
271 }
272 b->fct = fct;
273 LIST_ADDQ(&post_check_list, &b->list);
274}
275
Willy Tarreau05554e62016-12-21 20:46:26 +0100276/* used to register some de-initialization functions to call after everything
277 * has stopped.
278 */
279void hap_register_post_deinit(void (*fct)())
280{
281 struct post_deinit_fct *b;
282
283 b = calloc(1, sizeof(*b));
284 if (!b) {
285 fprintf(stderr, "out of memory\n");
286 exit(1);
287 }
288 b->fct = fct;
289 LIST_ADDQ(&post_deinit_list, &b->list);
290}
291
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100292static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200293{
294 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b677262017-04-03 09:27:49 +0200295 printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200296}
297
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100298static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100299{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100300 struct build_opts_str *item;
301
Willy Tarreau7b066db2007-12-02 11:28:59 +0100302 printf("Build options :"
303#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100304 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100305#endif
306#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100307 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100308#endif
309#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100310 "\n CC = " BUILD_CC
311#endif
312#ifdef BUILD_CFLAGS
313 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100314#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100315#ifdef BUILD_OPTIONS
316 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100317#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200318 "\n\nDefault settings :"
319 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
320 "\n\n",
321 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200322
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100323 list_for_each_entry(item, &build_opts_list, list) {
324 puts(item->str);
325 }
326
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100327 putchar('\n');
328
Willy Tarreaube5b6852009-10-03 18:57:08 +0200329 list_pollers(stdout);
330 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100331 list_filters(stdout);
332 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100333}
334
Willy Tarreaubaaee002006-06-26 02:48:02 +0200335/*
336 * This function prints the command line usage and exits
337 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100338static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200339{
340 display_version();
341 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200342 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200343 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200344 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100345 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200347 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200348 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200349 " -D goes daemon ; -C changes to <dir> before loading files.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200350 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200351 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352 " -n sets the maximum total # of connections (%d)\n"
353 " -m limits the usable amount of memory (in MB)\n"
354 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200355 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200356 " -p writes pids of all children to this file\n"
357#if defined(ENABLE_EPOLL)
358 " -de disables epoll() usage even when available\n"
359#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200360#if defined(ENABLE_KQUEUE)
361 " -dk disables kqueue() usage even when available\n"
362#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363#if defined(ENABLE_POLL)
364 " -dp disables poll() usage even when available\n"
365#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200366#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100367 " -dS disables splice usage (broken on old kernels)\n"
368#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200369#if defined(USE_GETADDRINFO)
370 " -dG disables getaddrinfo() usage\n"
371#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000372#if defined(SO_REUSEPORT)
373 " -dR disables SO_REUSEPORT usage\n"
374#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100375 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100376 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200377 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200378 " -x <unix_socket> get listening sockets from a unix socket\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200379 "\n",
380 name, DEFAULT_MAXCONN, cfg_maxpconn);
381 exit(1);
382}
383
384
385
386/*********************************************************************/
387/* more specific functions ***************************************/
388/*********************************************************************/
389
390/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200391 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
392 * a signal zero to all subscribers. This means that it's as easy as
393 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200394 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100395static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396{
397 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200398 signal_unregister_handler(sh);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200399 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400}
401
402/*
403 * upon SIGTTOU, we pause everything
404 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100405static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406{
407 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200408 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409}
410
411/*
412 * upon SIGTTIN, let's have a soft stop.
413 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100414static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200415{
Willy Tarreaube58c382011-07-24 18:28:10 +0200416 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417}
418
419/*
420 * this function dumps every server's state when the process receives SIGHUP.
421 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100422static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200423{
424 struct proxy *p = proxy;
425
426 Warning("SIGHUP received, dumping servers states.\n");
427 while (p) {
428 struct server *s = p->srv;
429
430 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
431 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100432 chunk_printf(&trash,
433 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
434 p->id, s->id,
Willy Tarreau892337c2014-05-13 23:41:20 +0200435 (s->state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100436 s->cur_sess, s->nbpend, s->counters.cum_sess);
437 Warning("%s\n", trash.str);
438 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200439 s = s->next;
440 }
441
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200442 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
443 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100444 chunk_printf(&trash,
445 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
446 p->id,
447 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 +0200448 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100449 chunk_printf(&trash,
450 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
451 p->id,
452 (p->srv_bck) ? "is running on backup servers" : "has no server available",
453 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 +0200454 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100455 chunk_printf(&trash,
456 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
457 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
458 p->id, p->srv_act, p->srv_bck,
459 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 +0200460 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100461 Warning("%s\n", trash.str);
462 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200463
464 p = p->next;
465 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200466}
467
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100468static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200469{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200470 /* dump memory usage then free everything possible */
471 dump_pools();
472 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200473}
474
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200475/* This function check if cfg_cfgfiles containes directories.
476 * If it find one, it add all the files (and only files) it containes
477 * in cfg_cfgfiles in place of the directory (and remove the directory).
478 * It add the files in lexical order.
479 * It add only files with .cfg extension.
480 * It doesn't add files with name starting with '.'
481 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100482static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200483{
484 struct wordlist *wl, *wlb;
485 char *err = NULL;
486
487 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
488 struct stat file_stat;
489 struct dirent **dir_entries = NULL;
490 int dir_entries_nb;
491 int dir_entries_it;
492
493 if (stat(wl->s, &file_stat)) {
494 Alert("Cannot open configuration file/directory %s : %s\n",
495 wl->s,
496 strerror(errno));
497 exit(1);
498 }
499
500 if (!S_ISDIR(file_stat.st_mode))
501 continue;
502
503 /* from this point wl->s is a directory */
504
505 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
506 if (dir_entries_nb < 0) {
507 Alert("Cannot open configuration directory %s : %s\n",
508 wl->s,
509 strerror(errno));
510 exit(1);
511 }
512
513 /* for each element in the directory wl->s */
514 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
515 struct dirent *dir_entry = dir_entries[dir_entries_it];
516 char *filename = NULL;
517 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
518
519 /* don't add filename that begin with .
520 * only add filename with .cfg extention
521 */
522 if (dir_entry->d_name[0] == '.' ||
523 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
524 goto next_dir_entry;
525
526 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
527 Alert("Cannot load configuration files %s : out of memory.\n",
528 filename);
529 exit(1);
530 }
531
532 if (stat(filename, &file_stat)) {
533 Alert("Cannot open configuration file %s : %s\n",
534 wl->s,
535 strerror(errno));
536 exit(1);
537 }
538
539 /* don't add anything else than regular file in cfg_cfgfiles
540 * this way we avoid loops
541 */
542 if (!S_ISREG(file_stat.st_mode))
543 goto next_dir_entry;
544
545 if (!list_append_word(&wl->list, filename, &err)) {
546 Alert("Cannot load configuration files %s : %s\n",
547 filename,
548 err);
549 exit(1);
550 }
551
552next_dir_entry:
553 free(filename);
554 free(dir_entry);
555 }
556
557 free(dir_entries);
558
559 /* remove the current directory (wl) from cfg_cfgfiles */
560 free(wl->s);
561 LIST_DEL(&wl->list);
562 free(wl);
563 }
564
565 free(err);
566}
567
Olivier Houchardf73629d2017-04-05 22:33:04 +0200568static int get_old_sockets(const char *unixsocket)
569{
570 char *cmsgbuf = NULL, *tmpbuf = NULL;
571 int *tmpfd = NULL;
572 struct sockaddr_un addr;
573 struct cmsghdr *cmsg;
574 struct msghdr msghdr;
575 struct iovec iov;
576 struct xfer_sock_list *xfer_sock = NULL;
577 int sock = -1;
578 int ret = -1;
579 int ret2 = -1;
580 int fd_nb;
581 int got_fd = 0;
582 int i = 0;
583 size_t maxoff = 0, curoff = 0;
584
585 memset(&msghdr, 0, sizeof(msghdr));
586 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
587 if (!cmsgbuf) {
588 Warning("Failed to allocate memory to send sockets\n");
589 goto out;
590 }
591 sock = socket(PF_UNIX, SOCK_STREAM, 0);
592 if (sock < 0) {
593 Warning("Failed to connect to the old process socket '%s'\n",
594 unixsocket);
595 goto out;
596 }
597 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
598 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
599 addr.sun_family = PF_UNIX;
600 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
601 if (ret < 0) {
602 Warning("Failed to connect to the old process socket '%s'\n",
603 unixsocket);
604 goto out;
605 }
606 iov.iov_base = &fd_nb;
607 iov.iov_len = sizeof(fd_nb);
608 msghdr.msg_iov = &iov;
609 msghdr.msg_iovlen = 1;
610 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
611 /* First, get the number of file descriptors to be received */
612 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
613 Warning("Failed to get the number of sockets to be transferred !\n");
614 goto out;
615 }
616 if (fd_nb == 0) {
617 ret = 0;
618 goto out;
619 }
620 tmpbuf = malloc(fd_nb * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int)));
621 if (tmpbuf == NULL) {
622 Warning("Failed to allocate memory while receiving sockets\n");
623 goto out;
624 }
625 tmpfd = malloc(fd_nb * sizeof(int));
626 if (tmpfd == NULL) {
627 Warning("Failed to allocate memory while receiving sockets\n");
628 goto out;
629 }
630 msghdr.msg_control = cmsgbuf;
631 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
632 iov.iov_len = MAX_SEND_FD * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int));
633 do {
634 int ret3;
635
636 iov.iov_base = tmpbuf + curoff;
637 ret = recvmsg(sock, &msghdr, 0);
638 if (ret == -1 && errno == EINTR)
639 continue;
640 if (ret <= 0)
641 break;
642 /* Send an ack to let the sender know we got the sockets
643 * and it can send some more
644 */
645 do {
646 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
647 } while (ret3 == -1 && errno == EINTR);
648 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
649 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
650 if (cmsg->cmsg_level == SOL_SOCKET &&
651 cmsg->cmsg_type == SCM_RIGHTS) {
652 size_t totlen = cmsg->cmsg_len -
653 CMSG_LEN(0);
654 if (totlen / sizeof(int) + got_fd > fd_nb) {
655 Warning("Got to many sockets !\n");
656 goto out;
657 }
658 /*
659 * Be paranoid and use memcpy() to avoid any
660 * potential alignement issue.
661 */
662 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
663 got_fd += totlen / sizeof(int);
664 }
665 }
666 curoff += ret;
667 } while (got_fd < fd_nb);
668
669 if (got_fd != fd_nb) {
670 Warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
671 fd_nb, got_fd);
672 goto out;
673 }
674 maxoff = curoff;
675 curoff = 0;
676 for (i = 0; i < got_fd; i++) {
677 int fd = tmpfd[i];
678 socklen_t socklen;
679 int len;
680
681 xfer_sock = calloc(1, sizeof(*xfer_sock));
682 if (!xfer_sock) {
683 Warning("Failed to allocate memory in get_old_sockets() !\n");
684 break;
685 }
686 xfer_sock->fd = -1;
687
688 socklen = sizeof(xfer_sock->addr);
689 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
690 Warning("Failed to get socket address\n");
691 free(xfer_sock);
692 continue;
693 }
694 if (curoff >= maxoff) {
695 Warning("Inconsistency while transferring sockets\n");
696 goto out;
697 }
698 len = tmpbuf[curoff++];
699 if (len > 0) {
700 /* We have a namespace */
701 if (curoff + len > maxoff) {
702 Warning("Inconsistency while transferring sockets\n");
703 goto out;
704 }
705 xfer_sock->namespace = malloc(len + 1);
706 if (!xfer_sock->namespace) {
707 Warning("Failed to allocate memory while transferring sockets\n");
708 goto out;
709 }
710 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
711 xfer_sock->namespace[len] = 0;
712 curoff += len;
713 }
714 if (curoff >= maxoff) {
715 Warning("Inconsistency while transferring sockets\n");
716 goto out;
717 }
718 len = tmpbuf[curoff++];
719 if (len > 0) {
720 /* We have an interface */
721 if (curoff + len > maxoff) {
722 Warning("Inconsistency while transferring sockets\n");
723 goto out;
724 }
725 xfer_sock->iface = malloc(len + 1);
726 if (!xfer_sock->iface) {
727 Warning("Failed to allocate memory while transferring sockets\n");
728 goto out;
729 }
730 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
731 xfer_sock->namespace[len] = 0;
732 curoff += len;
733 }
734 if (curoff + sizeof(int) > maxoff) {
735 Warning("Inconsistency while transferring sockets\n");
736 goto out;
737 }
738 memcpy(&xfer_sock->options, &tmpbuf[curoff],
739 sizeof(xfer_sock->options));
740 curoff += sizeof(xfer_sock->options);
741
742 xfer_sock->fd = fd;
743 if (xfer_sock_list)
744 xfer_sock_list->prev = xfer_sock;
745 xfer_sock->next = xfer_sock_list;
746 xfer_sock->prev = NULL;
747 xfer_sock_list = xfer_sock;
748 xfer_sock = NULL;
749 }
750
751 ret2 = 0;
752out:
753 /* If we failed midway make sure to close the remaining
754 * file descriptors
755 */
756 if (tmpfd != NULL && i < got_fd) {
757 for (; i < got_fd; i++) {
758 close(tmpfd[i]);
759 }
760 }
761 free(tmpbuf);
762 free(tmpfd);
763 free(cmsgbuf);
764 if (sock != -1)
765 close(sock);
766 if (xfer_sock) {
767 free(xfer_sock->namespace);
768 free(xfer_sock->iface);
769 if (xfer_sock->fd != -1)
770 close(xfer_sock->fd);
771 free(xfer_sock);
772 }
773 return (ret2);
774}
775
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776/*
777 * This function initializes all the necessary variables. It only returns
778 * if everything is OK. If something fails, it exits.
779 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100780static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781{
Willy Tarreaubaaee002006-06-26 02:48:02 +0200782 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200783 char *tmp;
784 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +0200785 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +0200786 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +0100787 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +0000788 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +0200789 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200790 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +0100791 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200792
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100793 chunk_init(&trash, malloc(global.tune.bufsize), global.tune.bufsize);
Willy Tarreau2819e992013-12-13 14:41:10 +0100794 alloc_trash_buffers(global.tune.bufsize);
David du Colombier7af46052012-05-16 14:16:48 +0200795
Emeric Brun2b920a12010-09-23 18:30:22 +0200796 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
797 * the string in case of truncation, and at least FreeBSD appears not to do
798 * it.
799 */
800 memset(hostname, 0, sizeof(hostname));
801 gethostname(hostname, sizeof(hostname) - 1);
802 memset(localpeer, 0, sizeof(localpeer));
803 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
804
Willy Tarreaubaaee002006-06-26 02:48:02 +0200805 /*
806 * Initialize the previously static variables.
807 */
808
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100809 totalconn = actconn = maxfd = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100810 killed = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200811
812
813#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +0100814 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200815#endif
816
Benoit GARNIERb413c2a2016-03-27 11:08:03 +0200817 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200818 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 start_date = now;
820
Willy Tarreau84310e22014-02-14 11:59:04 +0100821 srandom(now_ms - getpid());
822
Dragan Dosen835b9212016-02-12 13:23:03 +0100823 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +0200824 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +0100825 if (init_acl() != 0)
826 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200827 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +0200828 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200829 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200830 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +0200831 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200832 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100833 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200834
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100835 /* Initialise lua. */
836 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100837
Christopher Fauletff2613e2016-11-09 11:36:17 +0100838 /* Initialize process vars */
839 vars_init(&global.vars, SCOPE_PROC);
840
Willy Tarreau43b78992009-01-25 15:42:27 +0100841 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200842#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100843 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844#endif
845#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100846 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200848#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +0100849 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200850#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200851#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100852 global.tune.options |= GTUNE_USE_SPLICE;
853#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200854#if defined(USE_GETADDRINFO)
855 global.tune.options |= GTUNE_USE_GAI;
856#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000857#if defined(SO_REUSEPORT)
858 global.tune.options |= GTUNE_USE_REUSEPORT;
859#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200860
861 pid = getpid();
862 progname = *argv;
863 while ((tmp = strchr(progname, '/')) != NULL)
864 progname = tmp + 1;
865
Kevinm48936af2010-12-22 16:08:21 +0000866 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +0200867 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +0000868
Willy Tarreaubaaee002006-06-26 02:48:02 +0200869 argc--; argv++;
870 while (argc > 0) {
871 char *flag;
872
873 if (**argv == '-') {
874 flag = *argv+1;
875
876 /* 1 arg */
877 if (*flag == 'v') {
878 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100879 if (flag[1] == 'v') /* -vv */
880 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881 exit(0);
882 }
883#if defined(ENABLE_EPOLL)
884 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +0100885 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200886#endif
887#if defined(ENABLE_POLL)
888 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +0100889 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200890#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200891#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200892 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +0100893 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200894#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200895#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100896 else if (*flag == 'd' && flag[1] == 'S')
897 global.tune.options &= ~GTUNE_USE_SPLICE;
898#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200899#if defined(USE_GETADDRINFO)
900 else if (*flag == 'd' && flag[1] == 'G')
901 global.tune.options &= ~GTUNE_USE_GAI;
902#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000903#if defined(SO_REUSEPORT)
904 else if (*flag == 'd' && flag[1] == 'R')
905 global.tune.options &= ~GTUNE_USE_REUSEPORT;
906#endif
Emeric Brun850efd52014-01-29 12:24:34 +0100907 else if (*flag == 'd' && flag[1] == 'V')
908 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909 else if (*flag == 'V')
910 arg_mode |= MODE_VERBOSE;
911 else if (*flag == 'd' && flag[1] == 'b')
912 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +0200913 else if (*flag == 'd' && flag[1] == 'M')
914 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100915 else if (*flag == 'd' && flag[1] == 'r')
916 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917 else if (*flag == 'd')
918 arg_mode |= MODE_DEBUG;
919 else if (*flag == 'c')
920 arg_mode |= MODE_CHECK;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +0100921 else if (*flag == 'D') {
Willy Tarreau6bde87b2009-05-18 16:29:51 +0200922 arg_mode |= MODE_DAEMON;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +0100923 if (flag[1] == 's') /* -Ds */
924 arg_mode |= MODE_SYSTEMD;
925 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926 else if (*flag == 'q')
927 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +0200928 else if (*flag == 'x') {
929 if (argv[1][0] == '-') {
930 Alert("Unix socket path expected with the -x flag\n");
931 exit(1);
932 }
933 old_unixsocket = argv[1];
934 argv++;
935 argc--;
936 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
938 /* list of pids to finish ('f') or terminate ('t') */
939
940 if (flag[1] == 'f')
941 oldpids_sig = SIGUSR1; /* finish then exit */
942 else
943 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200944 while (argc > 1 && argv[1][0] != '-') {
945 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
946 if (!oldpids) {
947 Alert("Cannot allocate old pid : out of memory.\n");
948 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200950 argc--; argv++;
951 oldpids[nb_oldpids] = atol(*argv);
952 if (oldpids[nb_oldpids] <= 0)
953 usage(progname);
954 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200955 }
956 }
Willy Tarreaua088d312015-10-08 11:58:48 +0200957 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
958 /* now that's a cfgfile list */
959 argv++; argc--;
960 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +0200961 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
962 Alert("Cannot load configuration file/directory %s : %s\n",
963 *argv,
964 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +0200965 exit(1);
966 }
Willy Tarreaua088d312015-10-08 11:58:48 +0200967 argv++; argc--;
968 }
969 break;
970 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200971 else { /* >=2 args */
972 argv++; argc--;
973 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200974 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975
976 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +0200977 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200978 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +0100979 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200980 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +0200981 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +0200982 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +0200983 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
984 Alert("Cannot load configuration file/directory %s : %s\n",
985 *argv,
986 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +0200987 exit(1);
988 }
Willy Tarreau5d01a632009-06-22 16:02:30 +0200989 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200991 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200992 }
993 }
994 }
995 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200996 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997 argv++; argc--;
998 }
999
1000 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001001 (arg_mode & (MODE_DAEMON | MODE_SYSTEMD | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreaubaaee002006-06-26 02:48:02 +02001002 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
1003
Willy Tarreau576132e2011-09-10 19:26:56 +02001004 if (change_dir && chdir(change_dir) < 0) {
1005 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
1006 exit(1);
1007 }
1008
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001009 /* handle cfgfiles that are actualy directories */
1010 cfgfiles_expand_directories();
1011
1012 if (LIST_ISEMPTY(&cfg_cfgfiles))
1013 usage(progname);
1014
Willy Tarreaubaaee002006-06-26 02:48:02 +02001015 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001016
1017 init_default_instance();
1018
Willy Tarreau477ecd82010-01-03 21:12:30 +01001019 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001020 int ret;
1021
Willy Tarreau477ecd82010-01-03 21:12:30 +01001022 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001023 if (ret == -1) {
1024 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +01001025 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001026 exit(1);
1027 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001028 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +01001029 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001030 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001031 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001032 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001033 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001034
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001035 pattern_finalize_config();
1036
Willy Tarreaubb925012009-07-23 13:36:36 +02001037 err_code |= check_config_validity();
1038 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1039 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001040 exit(1);
1041 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001042
Willy Tarreau70060452015-12-14 12:46:07 +01001043 /* recompute the amount of per-process memory depending on nbproc and
1044 * the shared SSL cache size (allowed to exist in all processes).
1045 */
1046 if (global.rlimit_memmax_all) {
1047#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1048 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1049
1050 global.rlimit_memmax =
1051 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1052 ssl_cache_bytes) / global.nbproc +
1053 ssl_cache_bytes + 1048575LL) / 1048576LL;
1054#else
1055 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1056#endif
1057 }
1058
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001059#ifdef CONFIG_HAP_NS
1060 err_code |= netns_init();
1061 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1062 Alert("Failed to initialize namespace support.\n");
1063 exit(1);
1064 }
1065#endif
1066
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001067 /* Apply server states */
1068 apply_server_state();
1069
1070 for (px = proxy; px; px = px->next)
1071 srv_compute_all_admin_states(px);
1072
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001073 /* Apply servers' configured address */
1074 err_code |= srv_init_addr();
1075 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1076 Alert("Failed to initialize server(s) addr.\n");
1077 exit(1);
1078 }
1079
Willy Tarreaubaaee002006-06-26 02:48:02 +02001080 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001081 struct peers *pr;
1082 struct proxy *px;
1083
1084 for (pr = peers; pr; pr = pr->next)
1085 if (pr->peers_fe)
1086 break;
1087
1088 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001089 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001090 break;
1091
1092 if (pr || px) {
1093 /* At least one peer or one listener has been found */
1094 qfprintf(stdout, "Configuration file is valid\n");
1095 exit(0);
1096 }
1097 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1098 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001099 }
1100
Willy Tarreaue9b26022011-08-01 20:57:55 +02001101 global_listener_queue_task = task_new();
1102 if (!global_listener_queue_task) {
1103 Alert("Out of memory when initializing global task\n");
1104 exit(1);
1105 }
1106 /* very simple initialization, users will queue the task if needed */
1107 global_listener_queue_task->context = NULL; /* not even a context! */
1108 global_listener_queue_task->process = manage_global_listener_queue;
1109 global_listener_queue_task->expire = TICK_ETERNITY;
1110
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001111 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001112 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001113
Willy Tarreaue6945732016-12-21 19:57:00 +01001114 list_for_each_entry(pcf, &post_check_list, list) {
1115 err_code |= pcf->fct();
1116 if (err_code & (ERR_ABORT|ERR_FATAL))
1117 exit(1);
1118 }
1119
Willy Tarreaubaaee002006-06-26 02:48:02 +02001120 if (cfg_maxconn > 0)
1121 global.maxconn = cfg_maxconn;
1122
1123 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001124 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001125 global.pidfile = strdup(cfg_pidfile);
1126 }
1127
Willy Tarreaud0256482015-01-15 21:45:22 +01001128 /* Now we want to compute the maxconn and possibly maxsslconn values.
1129 * It's a bit tricky. If memmax is not set, maxconn defaults to
1130 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1131 *
1132 * If memmax is set, then it depends on which values are set. If
1133 * maxsslconn is set, we use memmax to determine how many cleartext
1134 * connections may be added, and set maxconn to the sum of the two.
1135 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1136 * the remaining amount of memory between memmax and the cleartext
1137 * connections. If neither are set, then it is considered that all
1138 * connections are SSL-capable, and maxconn is computed based on this,
1139 * then maxsslconn accordingly. We need to know if SSL is used on the
1140 * frontends, backends, or both, because when it's used on both sides,
1141 * we need twice the value for maxsslconn, but we only count the
1142 * handshake once since it is not performed on the two sides at the
1143 * same time (frontend-side is terminated before backend-side begins).
1144 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001145 * ssl_handshake_cost during its initialization. In any case, if
1146 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1147 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001148 */
1149 if (!global.rlimit_memmax) {
1150 if (global.maxconn == 0) {
1151 global.maxconn = DEFAULT_MAXCONN;
1152 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1153 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1154 }
1155 }
1156#ifdef USE_OPENSSL
1157 else if (!global.maxconn && !global.maxsslconn &&
1158 (global.ssl_used_frontend || global.ssl_used_backend)) {
1159 /* memmax is set, compute everything automatically. Here we want
1160 * to ensure that all SSL connections will be served. We take
1161 * care of the number of sides where SSL is used, and consider
1162 * the worst case : SSL used on both sides and doing a handshake
1163 * simultaneously. Note that we can't have more than maxconn
1164 * handshakes at a time by definition, so for the worst case of
1165 * two SSL conns per connection, we count a single handshake.
1166 */
1167 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1168 int64_t mem = global.rlimit_memmax * 1048576ULL;
1169
1170 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1171 mem -= global.maxzlibmem;
1172 mem = mem * MEM_USABLE_RATIO;
1173
1174 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001175 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001176 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1177 global.ssl_handshake_max_cost); // 1 handshake per connection max
1178
1179 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001180#ifdef SYSTEM_MAXCONN
1181 if (global.maxconn > DEFAULT_MAXCONN)
1182 global.maxconn = DEFAULT_MAXCONN;
1183#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001184 global.maxsslconn = sides * global.maxconn;
1185 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1186 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1187 global.maxconn, global.maxsslconn);
1188 }
1189 else if (!global.maxsslconn &&
1190 (global.ssl_used_frontend || global.ssl_used_backend)) {
1191 /* memmax and maxconn are known, compute maxsslconn automatically.
1192 * maxsslconn being forced, we don't know how many of it will be
1193 * on each side if both sides are being used. The worst case is
1194 * when all connections use only one SSL instance because
1195 * handshakes may be on two sides at the same time.
1196 */
1197 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1198 int64_t mem = global.rlimit_memmax * 1048576ULL;
1199 int64_t sslmem;
1200
1201 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1202 mem -= global.maxzlibmem;
1203 mem = mem * MEM_USABLE_RATIO;
1204
Willy Tarreau87b09662015-04-03 00:22:06 +02001205 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001206 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1207 global.maxsslconn = round_2dig(global.maxsslconn);
1208
1209 if (sslmem <= 0 || global.maxsslconn < sides) {
1210 Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1211 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1212 "without SSL is %d, but %d was found and SSL is in use.\n",
1213 global.rlimit_memmax,
Willy Tarreau87b09662015-04-03 00:22:06 +02001214 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
Willy Tarreaud0256482015-01-15 21:45:22 +01001215 global.maxconn);
1216 exit(1);
1217 }
1218
1219 if (global.maxsslconn > sides * global.maxconn)
1220 global.maxsslconn = sides * global.maxconn;
1221
1222 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1223 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1224 }
1225#endif
1226 else if (!global.maxconn) {
1227 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1228 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1229 int64_t mem = global.rlimit_memmax * 1048576ULL;
1230 int64_t clearmem;
1231
1232 if (global.ssl_used_frontend || global.ssl_used_backend)
1233 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1234
1235 mem -= global.maxzlibmem;
1236 mem = mem * MEM_USABLE_RATIO;
1237
1238 clearmem = mem;
1239 if (sides)
1240 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1241
Willy Tarreau87b09662015-04-03 00:22:06 +02001242 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001243 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001244#ifdef SYSTEM_MAXCONN
1245 if (global.maxconn > DEFAULT_MAXCONN)
1246 global.maxconn = DEFAULT_MAXCONN;
1247#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001248
1249 if (clearmem <= 0 || !global.maxconn) {
1250 Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1251 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1252 "is %d, but %d was found.\n",
1253 global.rlimit_memmax,
1254 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1255 global.maxsslconn);
1256 exit(1);
1257 }
1258
1259 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1260 if (sides && global.maxsslconn > sides * global.maxconn) {
1261 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1262 "to be limited to %d. Better reduce global.maxsslconn to get more "
1263 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1264 }
1265 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1266 }
1267 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001268
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001269 if (!global.maxpipes) {
1270 /* maxpipes not specified. Count how many frontends and backends
1271 * may be using splicing, and bound that to maxconn.
1272 */
1273 struct proxy *cur;
1274 int nbfe = 0, nbbe = 0;
1275
1276 for (cur = proxy; cur; cur = cur->next) {
1277 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1278 if (cur->cap & PR_CAP_FE)
1279 nbfe += cur->maxconn;
1280 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001281 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001282 }
1283 }
1284 global.maxpipes = MAX(nbfe, nbbe);
1285 if (global.maxpipes > global.maxconn)
1286 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001287 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001288 }
1289
1290
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001291 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001292 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001293 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001294
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001295 if (global.stats_fe)
1296 global.maxsock += global.stats_fe->maxconn;
1297
1298 if (peers) {
1299 /* peers also need to bypass global maxconn */
1300 struct peers *p = peers;
1301
1302 for (p = peers; p; p = p->next)
1303 if (p->peers_fe)
1304 global.maxsock += p->peers_fe->maxconn;
1305 }
1306
Willy Tarreau1db37712007-06-03 17:16:49 +02001307 if (global.tune.maxpollevents <= 0)
1308 global.tune.maxpollevents = MAX_POLL_EVENTS;
1309
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001310 if (global.tune.recv_enough == 0)
1311 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1312
Willy Tarreau27097842015-09-28 13:53:23 +02001313 if (global.tune.maxrewrite < 0)
1314 global.tune.maxrewrite = MAXREWRITE;
1315
Willy Tarreau27a674e2009-08-17 07:23:33 +02001316 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1317 global.tune.maxrewrite = global.tune.bufsize / 2;
1318
Willy Tarreaubaaee002006-06-26 02:48:02 +02001319 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1320 /* command line debug mode inhibits configuration mode */
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001321 global.mode &= ~(MODE_DAEMON | MODE_SYSTEMD | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001322 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1323 }
1324
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001325 if (arg_mode & (MODE_DAEMON | MODE_SYSTEMD)) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001326 /* command line daemon mode inhibits foreground and debug modes mode */
1327 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001328 global.mode |= (arg_mode & (MODE_DAEMON | MODE_SYSTEMD));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001329 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001330
1331 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001332
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001333 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_SYSTEMD | MODE_QUIET))) {
1334 Warning("<debug> mode incompatible with <quiet>, <daemon> and <systemd>. Keeping <debug> only.\n");
1335 global.mode &= ~(MODE_DAEMON | MODE_SYSTEMD | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001336 }
1337
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01001338 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_SYSTEMD))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
1340 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
1341 global.nbproc = 1;
1342 }
1343
1344 if (global.nbproc < 1)
1345 global.nbproc = 1;
1346
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001347 swap_buffer = calloc(1, global.tune.bufsize);
1348 get_http_auth_buff = calloc(1, global.tune.bufsize);
Thierry FOURNIER7e25df32015-07-24 19:31:59 +02001349 static_table_key = calloc(1, sizeof(*static_table_key));
Willy Tarreau8096de92010-02-26 11:12:27 +01001350
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001351 fdinfo = calloc(1, sizeof(struct fdinfo) * (global.maxsock));
1352 fdtab = calloc(1, sizeof(struct fdtab) * (global.maxsock));
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001353 /*
1354 * Note: we could register external pollers here.
1355 * Built-in pollers have been registered before main().
1356 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001357
Willy Tarreau43b78992009-01-25 15:42:27 +01001358 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001359 disable_poller("kqueue");
1360
Willy Tarreau43b78992009-01-25 15:42:27 +01001361 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001362 disable_poller("epoll");
1363
Willy Tarreau43b78992009-01-25 15:42:27 +01001364 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001365 disable_poller("poll");
1366
Willy Tarreau43b78992009-01-25 15:42:27 +01001367 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001368 disable_poller("select");
1369
1370 /* Note: we could disable any poller by name here */
1371
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001372 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001373 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001374 fprintf(stderr, "\n");
1375 list_filters(stderr);
1376 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001377
Willy Tarreau4f60f162007-04-08 16:39:58 +02001378 if (!init_pollers()) {
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001379 Alert("No polling mechanism available.\n"
1380 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1381 " is too low on this platform to support maxconn and the number of listeners\n"
1382 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1383 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
Prach Pongpanichb837e682013-05-14 20:56:28 +02001384 " global maxconn setting to accommodate the system's limitation. For reference,\n"
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001385 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1386 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1387 " check build settings using 'haproxy -vv'.\n\n",
1388 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001389 exit(1);
1390 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001391 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1392 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001393 }
1394
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001395 if (!global.node)
1396 global.node = strdup(hostname);
1397
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001398 if (!hlua_post_init())
1399 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001400
Baptiste Assmann325137d2015-04-13 23:40:55 +02001401 /* initialize structures for name resolution */
Baptiste Assmann5cd1b922017-02-02 22:44:15 +01001402 if (!dns_init_resolvers(0))
Baptiste Assmann325137d2015-04-13 23:40:55 +02001403 exit(1);
Maxime de Roucy0f503922016-05-13 23:52:55 +02001404
1405 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001406}
1407
Simon Horman6fb82592011-07-15 13:14:11 +09001408static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001409{
Simon Hormanac821422011-07-15 13:14:09 +09001410 struct acl_term_suite *suite, *suiteb;
1411 struct acl_term *term, *termb;
1412
Simon Horman6fb82592011-07-15 13:14:11 +09001413 if (!cond)
1414 return;
1415
1416 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1417 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1418 LIST_DEL(&term->list);
1419 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001420 }
Simon Horman6fb82592011-07-15 13:14:11 +09001421 LIST_DEL(&suite->list);
1422 free(suite);
1423 }
1424
1425 free(cond);
1426}
1427
1428static void deinit_tcp_rules(struct list *rules)
1429{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001430 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001431
1432 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001433 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001434 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001435 free(trule);
1436 }
1437}
1438
Simon Horman6fb82592011-07-15 13:14:11 +09001439static void deinit_stick_rules(struct list *rules)
1440{
1441 struct sticking_rule *rule, *ruleb;
1442
1443 list_for_each_entry_safe(rule, ruleb, rules, list) {
1444 LIST_DEL(&rule->list);
1445 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001446 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001447 free(rule);
1448 }
1449}
1450
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001451void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001452{
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001453 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001454 struct cap_hdr *h,*h_next;
1455 struct server *s,*s_next;
1456 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001457 struct acl_cond *cond, *condb;
1458 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001459 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001460 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001461 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001462 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001463 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01001464 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001465 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02001466 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01001467 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001468 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001469 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01001470 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001471 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001472
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001473 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001474 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02001475 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001476 free(p->id);
1477 free(p->check_req);
1478 free(p->cookie_name);
1479 free(p->cookie_domain);
1480 free(p->url_param_name);
1481 free(p->capture_name);
1482 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09001483 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02001484 if (p->conf.logformat_string != default_http_log_format &&
1485 p->conf.logformat_string != default_tcp_log_format &&
1486 p->conf.logformat_string != clf_http_log_format)
1487 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02001488
Willy Tarreau62a61232013-04-12 18:13:46 +02001489 free(p->conf.lfs_file);
1490 free(p->conf.uniqueid_format_string);
1491 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08001492 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001493
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001494 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1495 free(p->conf.logformat_sd_string);
1496 free(p->conf.lfsd_file);
1497
Willy Tarreaua534fea2008-08-03 12:19:50 +02001498 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001499 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001500
Willy Tarreauf4f04122010-01-28 18:10:50 +01001501 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
1502 LIST_DEL(&cwl->list);
1503 free(cwl->s);
1504 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001505 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001506
Willy Tarreauf4f04122010-01-28 18:10:50 +01001507 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
1508 LIST_DEL(&cwl->list);
1509 free(cwl->s);
1510 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001511 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001512
Willy Tarreaub80c2302007-11-30 20:51:32 +01001513 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
1514 LIST_DEL(&cond->list);
1515 prune_acl_cond(cond);
1516 free(cond);
1517 }
1518
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001519 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001520 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001521 regex_free(exp->preg);
1522 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001523 }
1524
Willy Tarreau98d04852015-05-26 12:18:29 +02001525 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001526 expb = exp;
1527 exp = exp->next;
1528 free(expb);
1529 }
1530
1531 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001532 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001533 regex_free(exp->preg);
1534 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001535 }
1536
Willy Tarreau98d04852015-05-26 12:18:29 +02001537 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001538 expb = exp;
1539 exp = exp->next;
1540 free(expb);
1541 }
1542
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001543 /* build a list of unique uri_auths */
1544 if (!ua)
1545 ua = p->uri_auth;
1546 else {
1547 /* check if p->uri_auth is unique */
1548 for (uap = ua; uap; uap=uap->next)
1549 if (uap == p->uri_auth)
1550 break;
1551
Willy Tarreauaccc4e12008-06-24 11:14:45 +02001552 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001553 /* add it, if it is */
1554 p->uri_auth->next = ua;
1555 ua = p->uri_auth;
1556 }
1557 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001558
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001559 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
1560 LIST_DEL(&acl->list);
1561 prune_acl(acl);
1562 free(acl);
1563 }
1564
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001565 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
1566 LIST_DEL(&srule->list);
1567 prune_acl_cond(srule->cond);
1568 free(srule->cond);
1569 free(srule);
1570 }
1571
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001572 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
1573 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001574 if (rule->cond) {
1575 prune_acl_cond(rule->cond);
1576 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01001577 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001578 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001579 free(rule);
1580 }
1581
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001582 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
1583 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01001584 if (rdr->cond) {
1585 prune_acl_cond(rdr->cond);
1586 free(rdr->cond);
1587 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001588 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01001589 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
1590 LIST_DEL(&lf->list);
1591 free(lf);
1592 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001593 free(rdr);
1594 }
1595
William Lallemand0f99e342011-10-12 17:50:54 +02001596 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
1597 LIST_DEL(&log->list);
1598 free(log);
1599 }
1600
William Lallemand723b73a2012-02-08 16:37:49 +01001601 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
1602 LIST_DEL(&lf->list);
1603 free(lf);
1604 }
1605
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001606 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
1607 LIST_DEL(&lf->list);
1608 free(lf);
1609 }
1610
Simon Hormanac821422011-07-15 13:14:09 +09001611 deinit_tcp_rules(&p->tcp_req.inspect_rules);
1612 deinit_tcp_rules(&p->tcp_req.l4_rules);
1613
Simon Horman6fb82592011-07-15 13:14:11 +09001614 deinit_stick_rules(&p->storersp_rules);
1615 deinit_stick_rules(&p->sticking_rules);
1616
Willy Tarreaubaaee002006-06-26 02:48:02 +02001617 h = p->req_cap;
1618 while (h) {
1619 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001620 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001621 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001622 free(h);
1623 h = h_next;
1624 }/* end while(h) */
1625
1626 h = p->rsp_cap;
1627 while (h) {
1628 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001629 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001630 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001631 free(h);
1632 h = h_next;
1633 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001634
Willy Tarreaubaaee002006-06-26 02:48:02 +02001635 s = p->srv;
1636 while (s) {
1637 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001638
Willy Tarreau5b3a2022012-09-28 15:01:02 +02001639 if (s->check.task) {
1640 task_delete(s->check.task);
1641 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001642 }
Simon Hormand60d6912013-11-25 10:46:36 +09001643 if (s->agent.task) {
1644 task_delete(s->agent.task);
1645 task_free(s->agent.task);
1646 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001647
Willy Tarreau2e993902011-10-31 11:53:20 +01001648 if (s->warmup) {
1649 task_delete(s->warmup);
1650 task_free(s->warmup);
1651 }
1652
Willy Tarreaua534fea2008-08-03 12:19:50 +02001653 free(s->id);
1654 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001655 free(s->check.bi);
1656 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09001657 free(s->agent.bi);
1658 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07001659 free(s->agent.send_string);
Sárközi, László34c01792014-09-05 10:08:23 +02001660 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01001661
1662 if (s->use_ssl || s->check.use_ssl) {
1663 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
1664 xprt_get(XPRT_SSL)->destroy_srv(s);
1665 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001666 free(s);
1667 s = s_next;
1668 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001669
Willy Tarreau4348fad2012-09-20 16:48:07 +02001670 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02001671 unbind_listener(l);
1672 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001673 LIST_DEL(&l->by_fe);
1674 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01001675 free(l->name);
1676 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001677 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001678 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001679
Willy Tarreau4348fad2012-09-20 16:48:07 +02001680 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001681 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01001682 if (bind_conf->xprt->destroy_bind_conf)
1683 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001684 free(bind_conf->file);
1685 free(bind_conf->arg);
1686 LIST_DEL(&bind_conf->by_fe);
1687 free(bind_conf);
1688 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02001689
Christopher Fauletd7c91962015-04-30 11:48:27 +02001690 flt_deinit(p);
1691
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01001692 free(p->desc);
1693 free(p->fwdfor_hdr_name);
1694
Willy Tarreauff011f22011-01-06 17:51:27 +01001695 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06001696 free_http_res_rules(&p->http_res_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02001697 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01001698
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001699 pool_destroy2(p->req_cap_pool);
1700 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09001701 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001702
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001703 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001704 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001705 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02001707
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001708 while (ua) {
1709 uap = ua;
1710 ua = ua->next;
1711
Willy Tarreaua534fea2008-08-03 12:19:50 +02001712 free(uap->uri_prefix);
1713 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001714 free(uap->node);
1715 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001716
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001717 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01001718 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001719
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001720 free(uap);
1721 }
1722
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001723 userlist_free(userlist);
1724
David Carlier834cb2e2015-09-25 12:02:25 +01001725 cfg_unregister_sections();
1726
1727 free_trash_buffers();
1728 chunk_destroy(&trash);
1729
Willy Tarreaudd815982007-10-16 12:25:14 +02001730 protocol_unbind_all();
1731
Willy Tarreau05554e62016-12-21 20:46:26 +01001732 list_for_each_entry(pdf, &post_deinit_list, list)
1733 pdf->fct();
1734
Joe Williamsdf5b38f2010-12-29 17:05:48 +01001735 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02001736 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001737 free(global.chroot); global.chroot = NULL;
1738 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001739 free(global.node); global.node = NULL;
1740 free(global.desc); global.desc = NULL;
Godbach4cc1b0d2013-06-26 16:49:51 +08001741 free(fdinfo); fdinfo = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001742 free(fdtab); fdtab = NULL;
1743 free(oldpids); oldpids = NULL;
David Carlier834cb2e2015-09-25 12:02:25 +01001744 free(static_table_key); static_table_key = NULL;
1745 free(get_http_auth_buff); get_http_auth_buff = NULL;
1746 free(swap_buffer); swap_buffer = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001747 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001748
William Lallemand0f99e342011-10-12 17:50:54 +02001749 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
1750 LIST_DEL(&log->list);
1751 free(log);
1752 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01001753 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001754 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01001755 LIST_DEL(&wl->list);
1756 free(wl);
1757 }
1758
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001759 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
1760 if (bol->must_free)
1761 free((void *)bol->str);
1762 LIST_DEL(&bol->list);
1763 free(bol);
1764 }
1765
Christopher Fauletff2613e2016-11-09 11:36:17 +01001766 vars_prune(&global.vars, NULL, NULL);
1767
Willy Tarreau87b09662015-04-03 00:22:06 +02001768 pool_destroy2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +02001769 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001770 pool_destroy2(pool2_connection);
Willy Tarreaub686afd2017-02-08 11:06:11 +01001771 pool_destroy2(pool2_trash);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001772 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001773 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001774 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02001775 pool_destroy2(pool2_capture);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001776 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001777 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02001778 pool_destroy2(pool2_hdr_idx);
Willy Tarreau63986c72015-04-03 22:55:33 +02001779 pool_destroy2(pool2_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001780 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001781} /* end deinit() */
1782
Willy Tarreaubb545b42010-08-25 12:58:59 +02001783/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
1784 * pids the signal was correctly delivered to.
1785 */
1786static int tell_old_pids(int sig)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001787{
1788 int p;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001789 int ret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001790 for (p = 0; p < nb_oldpids; p++)
Willy Tarreaubb545b42010-08-25 12:58:59 +02001791 if (kill(oldpids[p], sig) == 0)
1792 ret++;
1793 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001794}
1795
Willy Tarreau918ff602011-07-25 16:33:49 +02001796/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001797static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02001798{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001799 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02001800
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001801 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001802 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01001803 /* Process a few tasks */
1804 process_runnable_tasks();
1805
Willy Tarreau29857942009-05-10 09:01:21 +02001806 /* check if we caught some signals and process them */
1807 signal_process_queue();
1808
Willy Tarreau58b458d2008-06-29 22:40:23 +02001809 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01001810 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001811
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001812 /* stop when there's nothing left to do */
1813 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02001814 break;
1815
Willy Tarreau10146c92015-04-13 20:44:19 +02001816 /* expire immediately if events are pending */
Christopher Faulet34c5cc92016-12-06 09:15:30 +01001817 if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue)
Willy Tarreau10146c92015-04-13 20:44:19 +02001818 next = now_ms;
1819
Willy Tarreau58b458d2008-06-29 22:40:23 +02001820 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001821 cur_poller.poll(&cur_poller, next);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01001822 fd_process_cached_events();
Willy Tarreau3c595ac2015-04-19 09:59:31 +02001823 applet_run_active();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001824 }
1825}
1826
Willy Tarreaue9b26022011-08-01 20:57:55 +02001827/* This is the global management task for listeners. It enables listeners waiting
1828 * for global resources when there are enough free resource, or at least once in
1829 * a while. It is designed to be called as a task.
1830 */
1831static struct task *manage_global_listener_queue(struct task *t)
1832{
1833 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001834 /* queue is empty, nothing to do */
1835 if (LIST_ISEMPTY(&global_listener_queue))
1836 goto out;
1837
1838 /* If there are still too many concurrent connections, let's wait for
1839 * some of them to go away. We don't need to re-arm the timer because
1840 * each of them will scan the queue anyway.
1841 */
1842 if (unlikely(actconn >= global.maxconn))
1843 goto out;
1844
1845 /* We should periodically try to enable listeners waiting for a global
1846 * resource here, because it is possible, though very unlikely, that
1847 * they have been blocked by a temporary lack of global resource such
1848 * as a file descriptor or memory and that the temporary condition has
1849 * disappeared.
1850 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001851 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001852
1853 out:
1854 t->expire = next;
1855 task_queue(t);
1856 return t;
1857}
Willy Tarreau4f60f162007-04-08 16:39:58 +02001858
Willy Tarreaubaaee002006-06-26 02:48:02 +02001859int main(int argc, char **argv)
1860{
1861 int err, retry;
1862 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02001863 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02001864 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865
Emeric Bruncf20bf12010-10-22 16:06:11 +02001866 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001867 signal_register_fct(SIGQUIT, dump, SIGQUIT);
1868 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
1869 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870
Willy Tarreaue437c442010-03-17 18:02:46 +01001871 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
1872 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
1873 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001875 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001876
Willy Tarreaudc23a922011-02-16 11:10:36 +01001877 /* ulimits */
1878 if (!global.rlimit_nofile)
1879 global.rlimit_nofile = global.maxsock;
1880
1881 if (global.rlimit_nofile) {
1882 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
1883 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02001884 /* try to set it to the max possible at least */
1885 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02001886 limit.rlim_cur = limit.rlim_max;
1887 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
1888 getrlimit(RLIMIT_NOFILE, &limit);
1889
Willy Tarreauef635472016-06-21 11:48:18 +02001890 Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
1891 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01001892 }
1893 }
1894
1895 if (global.rlimit_memmax) {
1896 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01001897 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01001898#ifdef RLIMIT_AS
1899 if (setrlimit(RLIMIT_AS, &limit) == -1) {
1900 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1901 argv[0], global.rlimit_memmax);
1902 }
1903#else
1904 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
1905 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1906 argv[0], global.rlimit_memmax);
1907 }
1908#endif
1909 }
1910
Olivier Houchardf73629d2017-04-05 22:33:04 +02001911 if (old_unixsocket) {
1912 if (get_old_sockets(old_unixsocket) != 0) {
1913 Alert("Failed to get the sockets from the old process!\n");
1914 exit(1);
1915 }
1916 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001917 /* We will loop at most 100 times with 10 ms delay each time.
1918 * That's at most 1 second. We only send a signal to old pids
1919 * if we cannot grab at least one port.
1920 */
1921 retry = MAX_START_RETRIES;
1922 err = ERR_NONE;
1923 while (retry >= 0) {
1924 struct timeval w;
1925 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01001926 /* exit the loop on no error or fatal error */
1927 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001928 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001929 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001930 break;
1931
1932 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
1933 * listening sockets. So on those platforms, it would be wiser to
1934 * simply send SIGUSR1, which will not be undoable.
1935 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02001936 if (tell_old_pids(SIGTTOU) == 0) {
1937 /* no need to wait if we can't contact old pids */
1938 retry = 0;
1939 continue;
1940 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001941 /* give some time to old processes to stop listening */
1942 w.tv_sec = 0;
1943 w.tv_usec = 10*1000;
1944 select(0, NULL, NULL, NULL, &w);
1945 retry--;
1946 }
1947
1948 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01001949 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02001950 if (retry != MAX_START_RETRIES && nb_oldpids) {
1951 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001952 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02001953 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001954 exit(1);
1955 }
1956
1957 if (listeners == 0) {
Willy Tarreauf2ee0162015-08-09 11:01:51 +02001958 Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001959 /* Note: we don't have to send anything to the old pids because we
1960 * never stopped them. */
1961 exit(1);
1962 }
1963
Emeric Bruncf20bf12010-10-22 16:06:11 +02001964 err = protocol_bind_all(errmsg, sizeof(errmsg));
1965 if ((err & ~ERR_WARN) != ERR_NONE) {
1966 if ((err & ERR_ALERT) || (err & ERR_WARN))
1967 Alert("[%s.main()] %s.\n", argv[0], errmsg);
1968
Willy Tarreaudd815982007-10-16 12:25:14 +02001969 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
1970 protocol_unbind_all(); /* cleanup everything we can */
1971 if (nb_oldpids)
1972 tell_old_pids(SIGTTIN);
1973 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02001974 } else if (err & ERR_WARN) {
1975 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02001976 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02001977 /* Ok, all listener should now be bound, close any leftover sockets
1978 * the previous process gave us, we don't need them anymore
1979 */
1980 while (xfer_sock_list != NULL) {
1981 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
1982 close(xfer_sock_list->fd);
1983 free(xfer_sock_list->iface);
1984 free(xfer_sock_list->namespace);
1985 free(xfer_sock_list);
1986 xfer_sock_list = tmpxfer;
1987 }
Willy Tarreaudd815982007-10-16 12:25:14 +02001988
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001990 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
1991 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001992
Willy Tarreaubaaee002006-06-26 02:48:02 +02001993 /* MODE_QUIET can inhibit alerts and warnings below this line */
1994
1995 global.mode &= ~MODE_STARTING;
1996 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
1997 /* detach from the tty */
1998 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001999 }
2000
2001 /* open log & pid files before the chroot */
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002002 if (global.mode & (MODE_DAEMON | MODE_SYSTEMD) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002003 unlink(global.pidfile);
2004 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2005 if (pidfd < 0) {
2006 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
2007 if (nb_oldpids)
2008 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002009 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002010 exit(1);
2011 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002012 }
2013
Willy Tarreaub38651a2007-03-24 17:24:39 +01002014 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
2015 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002016 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002017 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002018 exit(1);
2019 }
2020
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002021 /* If the user is not root, we'll still let him try the configuration
2022 * but we inform him that unexpected behaviour may occur.
2023 */
2024 if ((global.last_checks & LSTCHK_NETADM) && getuid())
2025 Warning("[%s.main()] Some options which require full privileges"
2026 " might not work well.\n"
2027 "", argv[0]);
2028
Willy Tarreauf223cc02007-10-15 18:57:08 +02002029 /* chroot if needed */
2030 if (global.chroot != NULL) {
Willy Tarreau21337822012-04-29 14:11:38 +02002031 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Willy Tarreauf223cc02007-10-15 18:57:08 +02002032 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
2033 if (nb_oldpids)
2034 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002035 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02002036 exit(1);
2037 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002038 }
2039
Willy Tarreaubaaee002006-06-26 02:48:02 +02002040 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002041 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002042
2043 /* Note that any error at this stage will be fatal because we will not
2044 * be able to restart the old pids.
2045 */
2046
2047 /* setgid / setuid */
Michael Schererab012dd2013-01-12 18:35:19 +01002048 if (global.gid) {
2049 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2050 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2051 " without 'uid'/'user' is generally useless.\n", argv[0]);
2052
2053 if (setgid(global.gid) == -1) {
2054 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2055 protocol_unbind_all();
2056 exit(1);
2057 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002058 }
2059
2060 if (global.uid && setuid(global.uid) == -1) {
2061 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02002062 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002063 exit(1);
2064 }
2065
2066 /* check ulimits */
2067 limit.rlim_cur = limit.rlim_max = 0;
2068 getrlimit(RLIMIT_NOFILE, &limit);
2069 if (limit.rlim_cur < global.maxsock) {
2070 Warning("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
Willy Tarreau1772ece2009-04-03 14:49:12 +02002071 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002072 }
2073
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002074 if (global.mode & (MODE_DAEMON | MODE_SYSTEMD)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002075 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002076 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002077 int ret = 0;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002078 int *children = calloc(global.nbproc, sizeof(int));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002079 int proc;
Willy Tarreaub9571092016-10-25 17:20:24 +02002080 char *wrapper_fd;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002081
2082 /* the father launches the required number of processes */
2083 for (proc = 0; proc < global.nbproc; proc++) {
2084 ret = fork();
2085 if (ret < 0) {
2086 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002087 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002088 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002089 }
2090 else if (ret == 0) /* child breaks here */
2091 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002092 children[proc] = ret;
Willy Tarreau269ab312012-09-05 08:02:48 +02002093 if (pidfd >= 0) {
2094 char pidstr[100];
2095 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002096 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002097 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002098 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002099 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002100
2101#ifdef USE_CPU_AFFINITY
2102 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002103 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002104 global.cpu_map[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002105#ifdef __FreeBSD__
2106 cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2107#else
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002108 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2109#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002110#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002111 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002112 if (pidfd >= 0) {
2113 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2114 close(pidfd);
2115 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002116
Willy Tarreaub9571092016-10-25 17:20:24 +02002117 /* each child must notify the wrapper that it's ready by closing the requested fd */
2118 wrapper_fd = getenv("HAPROXY_WRAPPER_FD");
2119 if (wrapper_fd) {
2120 int pipe_fd = atoi(wrapper_fd);
2121
2122 if (pipe_fd >= 0)
2123 close(pipe_fd);
2124 }
2125
Willy Tarreaud137dd32010-08-25 12:49:05 +02002126 /* We won't ever use this anymore */
2127 free(oldpids); oldpids = NULL;
2128 free(global.chroot); global.chroot = NULL;
2129 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002130
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002131 if (proc == global.nbproc) {
2132 if (global.mode & MODE_SYSTEMD) {
William Lallemand6ad6bde2016-01-14 18:10:30 +01002133 int i;
2134
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002135 protocol_unbind_all();
William Lallemand6ad6bde2016-01-14 18:10:30 +01002136 for (i = 1; i < argc; i++) {
2137 memset(argv[i], '\0', strlen(argv[i]));
2138 }
2139 /* it's OK because "-Ds -f x" is the shortest form going here */
2140 memcpy(argv[0] + strlen(argv[0]), "-master", 8);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002141 for (proc = 0; proc < global.nbproc; proc++)
William Lallemand1e4fc432016-12-23 15:44:15 +01002142 while (waitpid(-1, NULL, 0) == -1 && errno == EINTR);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002143 }
2144 exit(0); /* parent must leave */
2145 }
2146
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002147 /* we might have to unbind some proxies from some processes */
2148 px = proxy;
2149 while (px != NULL) {
2150 if (px->bind_proc && px->state != PR_STSTOPPED) {
Willy Tarreaua9db57e2013-01-18 11:29:29 +01002151 if (!(px->bind_proc & (1UL << proc)))
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002152 stop_proxy(px);
2153 }
2154 px = px->next;
2155 }
2156
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002157 /* we might have to unbind some peers sections from some processes */
2158 for (curpeers = peers; curpeers; curpeers = curpeers->next) {
2159 if (!curpeers->peers_fe)
2160 continue;
2161
2162 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2163 continue;
2164
2165 stop_proxy(curpeers->peers_fe);
2166 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002167 signal_unregister_handler(curpeers->sighandler);
2168 task_delete(curpeers->sync_task);
2169 task_free(curpeers->sync_task);
2170 curpeers->sync_task = NULL;
2171 task_free(curpeers->peers_fe->task);
2172 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002173 curpeers->peers_fe = NULL;
2174 }
2175
Dirkjan Bussink07fcaaa2014-04-28 22:57:16 +00002176 free(children);
2177 children = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002178 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2179 * that we can detach from the TTY. We MUST NOT do it in other cases since
2180 * it would have already be done, and 0-2 would have been affected to listening
2181 * sockets
2182 */
Willy Tarreau106cb762008-11-16 07:40:34 +01002183 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002184 /* detach from the tty */
2185 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01002186 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002187 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2188 }
2189 pid = getpid(); /* update child's pid */
2190 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02002191 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002192 }
2193
Baptiste Assmann26c6eb82017-02-02 23:14:51 +01002194 /* initialize structures for name resolution */
2195 if (!dns_init_resolvers(1))
2196 exit(1);
2197
Willy Tarreaudd815982007-10-16 12:25:14 +02002198 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002199 /*
2200 * That's it : the central polling loop. Run until we stop.
2201 */
2202 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002203
Willy Tarreaubaaee002006-06-26 02:48:02 +02002204 /* Do some cleanup */
2205 deinit();
2206
2207 exit(0);
2208}
2209
2210
2211/*
2212 * Local variables:
2213 * c-indent-level: 8
2214 * c-basic-offset: 8
2215 * End:
2216 */