Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HA-Proxy : High Availability-enabled HTTP/TCP proxy |
Willy Tarreau | 7b67726 | 2017-04-03 09:27:49 +0200 | [diff] [blame] | 3 | * Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | * |
Lukas Tribus | 2395368 | 2017-04-28 13:24:30 +0000 | [diff] [blame] | 10 | * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and |
| 11 | * RFC6265 for informations about cookies usage. More generally, the IETF HTTP |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | */ |
| 27 | |
David Carlier | 7ece096 | 2015-12-08 21:43:09 +0000 | [diff] [blame] | 28 | #define _GNU_SOURCE |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <unistd.h> |
| 32 | #include <string.h> |
| 33 | #include <ctype.h> |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 34 | #include <dirent.h> |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 35 | #include <sys/stat.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | #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 Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 42 | #include <net/if.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 43 | #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 Perennou | 992709b | 2013-02-12 10:53:52 +0100 | [diff] [blame] | 49 | #include <sys/wait.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 50 | #include <time.h> |
| 51 | #include <syslog.h> |
Michael Scherer | ab012dd | 2013-01-12 18:35:19 +0100 | [diff] [blame] | 52 | #include <grp.h> |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 53 | #ifdef USE_CPU_AFFINITY |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 54 | #include <sched.h> |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 55 | #ifdef __FreeBSD__ |
| 56 | #include <sys/param.h> |
| 57 | #include <sys/cpuset.h> |
| 58 | #endif |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 59 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 60 | |
| 61 | #ifdef DEBUG_FULL |
| 62 | #include <assert.h> |
| 63 | #endif |
| 64 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 65 | #include <common/base64.h> |
| 66 | #include <common/cfgparse.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 67 | #include <common/chunk.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 68 | #include <common/compat.h> |
| 69 | #include <common/config.h> |
| 70 | #include <common/defaults.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 71 | #include <common/errors.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 72 | #include <common/memory.h> |
| 73 | #include <common/mini-clist.h> |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 74 | #include <common/namespace.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 75 | #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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 80 | |
| 81 | #include <types/capture.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 82 | #include <types/filters.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 83 | #include <types/global.h> |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 84 | #include <types/acl.h> |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 85 | #include <types/peers.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 86 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 87 | #include <proto/acl.h> |
Willy Tarreau | 3c595ac | 2015-04-19 09:59:31 +0200 | [diff] [blame] | 88 | #include <proto/applet.h> |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 89 | #include <proto/arg.h> |
Willy Tarreau | 3c595ac | 2015-04-19 09:59:31 +0200 | [diff] [blame] | 90 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 91 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 92 | #include <proto/channel.h> |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 93 | #include <proto/connection.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 94 | #include <proto/fd.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 95 | #include <proto/filters.h> |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 96 | #include <proto/hdr_idx.h> |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 97 | #include <proto/hlua.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 98 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 99 | #include <proto/log.h> |
Thierry FOURNIER | af5a29d | 2014-03-11 14:29:22 +0100 | [diff] [blame] | 100 | #include <proto/pattern.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 101 | #include <proto/protocol.h> |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 102 | #include <proto/proto_http.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 103 | #include <proto/proxy.h> |
| 104 | #include <proto/queue.h> |
| 105 | #include <proto/server.h> |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 106 | #include <proto/session.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 107 | #include <proto/stream.h> |
Willy Tarreau | 2985794 | 2009-05-10 09:01:21 +0200 | [diff] [blame] | 108 | #include <proto/signal.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 109 | #include <proto/task.h> |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 110 | #include <proto/dns.h> |
Christopher Faulet | ff2613e | 2016-11-09 11:36:17 +0100 | [diff] [blame] | 111 | #include <proto/vars.h> |
Willy Tarreau | 50bc31d | 2017-08-16 15:35:19 +0200 | [diff] [blame] | 112 | #ifdef USE_OPENSSL |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 113 | #include <proto/ssl_sock.h> |
Willy Tarreau | 50bc31d | 2017-08-16 15:35:19 +0200 | [diff] [blame] | 114 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 115 | |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 116 | /* list of config files */ |
| 117 | static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 118 | int pid; /* current process id */ |
Willy Tarreau | 2815664 | 2007-11-26 16:13:36 +0100 | [diff] [blame] | 119 | int relative_pid = 1; /* process id starting at 1 */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 120 | |
| 121 | /* global options */ |
| 122 | struct global global = { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 123 | .hard_stop_after = TICK_ETERNITY, |
Willy Tarreau | 247a13a | 2012-11-15 17:38:15 +0100 | [diff] [blame] | 124 | .nbproc = 1, |
William Lallemand | 5f23240 | 2012-04-05 18:02:55 +0200 | [diff] [blame] | 125 | .req_count = 0, |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 126 | .logsrvs = LIST_HEAD_INIT(global.logsrvs), |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 127 | .maxzlibmem = 0, |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 128 | .comp_rate_lim = 0, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 129 | .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED, |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 130 | .unix_bind = { |
| 131 | .ux = { |
| 132 | .uid = -1, |
| 133 | .gid = -1, |
| 134 | .mode = 0, |
| 135 | } |
| 136 | }, |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 137 | .tune = { |
| 138 | .bufsize = BUFSIZE, |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 139 | .maxrewrite = -1, |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 140 | .chksize = BUFSIZE, |
Willy Tarreau | a24adf0 | 2014-11-27 01:11:56 +0100 | [diff] [blame] | 141 | .reserved_bufs = RESERVED_BUFS, |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 142 | .pattern_cache = DEFAULT_PAT_LRU_SIZE, |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 143 | #ifdef USE_OPENSSL |
Emeric Brun | 4663577 | 2012-11-14 11:32:56 +0100 | [diff] [blame] | 144 | .sslcachesize = SSLCACHESIZE, |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 145 | #endif |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 146 | .comp_maxlevel = 1, |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 147 | #ifdef DEFAULT_IDLE_TIMER |
| 148 | .idle_timer = DEFAULT_IDLE_TIMER, |
| 149 | #else |
| 150 | .idle_timer = 1000, /* 1 second */ |
| 151 | #endif |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 152 | }, |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 153 | #ifdef USE_OPENSSL |
| 154 | #ifdef DEFAULT_MAXSSLCONN |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 155 | .maxsslconn = DEFAULT_MAXSSLCONN, |
| 156 | #endif |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 157 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 158 | /* others NULL OK */ |
| 159 | }; |
| 160 | |
| 161 | /*********************************************************************/ |
| 162 | |
| 163 | int stopping; /* non zero means stopping in progress */ |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 164 | int killed; /* non zero means a hard-stop is triggered */ |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 165 | int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 166 | |
| 167 | /* Here we store informations about the pids of the processes we may pause |
| 168 | * or kill. We will send them a signal every 10 ms until we can bind to all |
| 169 | * our ports. With 200 retries, that's about 2 seconds. |
| 170 | */ |
| 171 | #define MAX_START_RETRIES 200 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 172 | static int *oldpids = NULL; |
| 173 | static int oldpids_sig; /* use USR1 or TERM */ |
| 174 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 175 | /* Path to the unix socket we use to retrieve listener sockets from the old process */ |
| 176 | static const char *old_unixsocket; |
| 177 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 178 | static char *cur_unixsocket = NULL; |
| 179 | |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 180 | /* this buffer is always the same size as standard buffers and is used for |
| 181 | * swapping data inside a buffer. |
| 182 | */ |
| 183 | char *swap_buffer = NULL; |
| 184 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 185 | int atexit_flag = 0; |
| 186 | |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 187 | int nb_oldpids = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 188 | const int zero = 0; |
| 189 | const int one = 1; |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 190 | const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 191 | |
Willy Tarreau | 1d21e0a | 2010-03-12 21:58:54 +0100 | [diff] [blame] | 192 | char hostname[MAX_HOSTNAME_LEN]; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 193 | char localpeer[MAX_HOSTNAME_LEN]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 194 | |
Willy Tarreau | 89efaed | 2013-12-13 15:14:55 +0100 | [diff] [blame] | 195 | /* used from everywhere just to drain results we don't want to read and which |
| 196 | * recent versions of gcc increasingly and annoyingly complain about. |
| 197 | */ |
| 198 | int shut_your_big_mouth_gcc_int = 0; |
| 199 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 200 | int *children = NULL; /* store PIDs of children in master workers mode */ |
| 201 | |
| 202 | static volatile sig_atomic_t caught_signal = 0; |
| 203 | static char **next_argv = NULL; |
| 204 | |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 205 | int mworker_pipe[2]; |
| 206 | |
Willy Tarreau | 08ceb10 | 2011-07-24 22:58:00 +0200 | [diff] [blame] | 207 | /* list of the temporarily limited listeners because of lack of resource */ |
| 208 | struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue); |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 209 | struct task *global_listener_queue_task; |
| 210 | static struct task *manage_global_listener_queue(struct task *t); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 211 | |
Willy Tarreau | ff05550 | 2014-04-28 22:27:06 +0200 | [diff] [blame] | 212 | /* bitfield of a few warnings to emit just once (WARN_*) */ |
| 213 | unsigned int warned = 0; |
| 214 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 215 | |
| 216 | /* These are strings to be reported in the output of "haproxy -vv". They may |
| 217 | * either be constants (in which case must_free must be zero) or dynamically |
| 218 | * allocated strings to pass to free() on exit, and in this case must_free |
| 219 | * must be non-zero. |
| 220 | */ |
| 221 | struct list build_opts_list = LIST_HEAD_INIT(build_opts_list); |
| 222 | struct build_opts_str { |
| 223 | struct list list; |
| 224 | const char *str; |
| 225 | int must_free; |
| 226 | }; |
| 227 | |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 228 | /* These functions are called just after the point where the program exits |
| 229 | * after a config validity check, so they are generally suited for resource |
| 230 | * allocation and slow initializations that should be skipped during basic |
| 231 | * config checks. The functions must return 0 on success, or a combination |
| 232 | * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause |
| 233 | * and immediate exit, so the function must have emitted any useful error. |
| 234 | */ |
| 235 | struct list post_check_list = LIST_HEAD_INIT(post_check_list); |
| 236 | struct post_check_fct { |
| 237 | struct list list; |
| 238 | int (*fct)(); |
| 239 | }; |
| 240 | |
Willy Tarreau | 05554e6 | 2016-12-21 20:46:26 +0100 | [diff] [blame] | 241 | /* These functions are called when freeing the global sections at the end |
| 242 | * of deinit, after everything is stopped. They don't return anything, and |
| 243 | * they work in best effort mode as their sole goal is to make valgrind |
| 244 | * mostly happy. |
| 245 | */ |
| 246 | struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list); |
| 247 | struct post_deinit_fct { |
| 248 | struct list list; |
| 249 | void (*fct)(); |
| 250 | }; |
| 251 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 252 | /*********************************************************************/ |
| 253 | /* general purpose functions ***************************************/ |
| 254 | /*********************************************************************/ |
| 255 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 256 | /* used to register some build option strings at boot. Set must_free to |
| 257 | * non-zero if the string must be freed upon exit. |
| 258 | */ |
| 259 | void hap_register_build_opts(const char *str, int must_free) |
| 260 | { |
| 261 | struct build_opts_str *b; |
| 262 | |
| 263 | b = calloc(1, sizeof(*b)); |
| 264 | if (!b) { |
| 265 | fprintf(stderr, "out of memory\n"); |
| 266 | exit(1); |
| 267 | } |
| 268 | b->str = str; |
| 269 | b->must_free = must_free; |
| 270 | LIST_ADDQ(&build_opts_list, &b->list); |
| 271 | } |
| 272 | |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 273 | /* used to register some initialization functions to call after the checks. */ |
| 274 | void hap_register_post_check(int (*fct)()) |
| 275 | { |
| 276 | struct post_check_fct *b; |
| 277 | |
| 278 | b = calloc(1, sizeof(*b)); |
| 279 | if (!b) { |
| 280 | fprintf(stderr, "out of memory\n"); |
| 281 | exit(1); |
| 282 | } |
| 283 | b->fct = fct; |
| 284 | LIST_ADDQ(&post_check_list, &b->list); |
| 285 | } |
| 286 | |
Willy Tarreau | 05554e6 | 2016-12-21 20:46:26 +0100 | [diff] [blame] | 287 | /* used to register some de-initialization functions to call after everything |
| 288 | * has stopped. |
| 289 | */ |
| 290 | void hap_register_post_deinit(void (*fct)()) |
| 291 | { |
| 292 | struct post_deinit_fct *b; |
| 293 | |
| 294 | b = calloc(1, sizeof(*b)); |
| 295 | if (!b) { |
| 296 | fprintf(stderr, "out of memory\n"); |
| 297 | exit(1); |
| 298 | } |
| 299 | b->fct = fct; |
| 300 | LIST_ADDQ(&post_deinit_list, &b->list); |
| 301 | } |
| 302 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 303 | static void display_version() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 304 | { |
| 305 | printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n"); |
Willy Tarreau | 7b67726 | 2017-04-03 09:27:49 +0200 | [diff] [blame] | 306 | printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 307 | } |
| 308 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 309 | static void display_build_opts() |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 310 | { |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 311 | struct build_opts_str *item; |
| 312 | |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 313 | printf("Build options :" |
| 314 | #ifdef BUILD_TARGET |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 315 | "\n TARGET = " BUILD_TARGET |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 316 | #endif |
| 317 | #ifdef BUILD_CPU |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 318 | "\n CPU = " BUILD_CPU |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 319 | #endif |
| 320 | #ifdef BUILD_CC |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 321 | "\n CC = " BUILD_CC |
| 322 | #endif |
| 323 | #ifdef BUILD_CFLAGS |
| 324 | "\n CFLAGS = " BUILD_CFLAGS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 325 | #endif |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 326 | #ifdef BUILD_OPTIONS |
| 327 | "\n OPTIONS = " BUILD_OPTIONS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 328 | #endif |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 329 | "\n\nDefault settings :" |
| 330 | "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d" |
| 331 | "\n\n", |
| 332 | DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS); |
Willy Tarreau | be5b685 | 2009-10-03 18:57:08 +0200 | [diff] [blame] | 333 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 334 | list_for_each_entry(item, &build_opts_list, list) { |
| 335 | puts(item->str); |
| 336 | } |
| 337 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 338 | putchar('\n'); |
| 339 | |
Willy Tarreau | be5b685 | 2009-10-03 18:57:08 +0200 | [diff] [blame] | 340 | list_pollers(stdout); |
| 341 | putchar('\n'); |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 342 | list_filters(stdout); |
| 343 | putchar('\n'); |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 344 | } |
| 345 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 346 | /* |
| 347 | * This function prints the command line usage and exits |
| 348 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 349 | static void usage(char *name) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 350 | { |
| 351 | display_version(); |
| 352 | fprintf(stderr, |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 353 | "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 354 | "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n" |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 355 | " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n" |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 356 | " -v displays version ; -vv shows known build options.\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 357 | " -d enters debug mode ; -db only disables background mode.\n" |
Willy Tarreau | 6e06443 | 2012-05-08 15:40:42 +0200 | [diff] [blame] | 358 | " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 359 | " -V enters verbose mode (disables quiet mode)\n" |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 360 | " -D goes daemon ; -C changes to <dir> before loading files.\n" |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 361 | " -W master-worker mode.\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 362 | " -q quiet mode : don't display messages\n" |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 363 | " -c check mode : only check config files and exit\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 364 | " -n sets the maximum total # of connections (%d)\n" |
| 365 | " -m limits the usable amount of memory (in MB)\n" |
| 366 | " -N sets the default, per-proxy maximum # of connections (%d)\n" |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 367 | " -L set local peer name (default to hostname)\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 368 | " -p writes pids of all children to this file\n" |
| 369 | #if defined(ENABLE_EPOLL) |
| 370 | " -de disables epoll() usage even when available\n" |
| 371 | #endif |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 372 | #if defined(ENABLE_KQUEUE) |
| 373 | " -dk disables kqueue() usage even when available\n" |
| 374 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 375 | #if defined(ENABLE_POLL) |
| 376 | " -dp disables poll() usage even when available\n" |
| 377 | #endif |
Willy Tarreau | b55932d | 2009-08-16 13:20:32 +0200 | [diff] [blame] | 378 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 379 | " -dS disables splice usage (broken on old kernels)\n" |
| 380 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 381 | #if defined(USE_GETADDRINFO) |
| 382 | " -dG disables getaddrinfo() usage\n" |
| 383 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 384 | #if defined(SO_REUSEPORT) |
| 385 | " -dR disables SO_REUSEPORT usage\n" |
| 386 | #endif |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 387 | " -dr ignores server address resolution failures\n" |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 388 | " -dV disables SSL verify on servers side\n" |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 389 | " -sf/-st [pid ]* finishes/terminates old pids.\n" |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 390 | " -x <unix_socket> get listening sockets from a unix socket\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 391 | "\n", |
| 392 | name, DEFAULT_MAXCONN, cfg_maxpconn); |
| 393 | exit(1); |
| 394 | } |
| 395 | |
| 396 | |
| 397 | |
| 398 | /*********************************************************************/ |
| 399 | /* more specific functions ***************************************/ |
| 400 | /*********************************************************************/ |
| 401 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 402 | /* sends the signal <sig> to all pids found in <oldpids>. Returns the number of |
| 403 | * pids the signal was correctly delivered to. |
| 404 | */ |
| 405 | static int tell_old_pids(int sig) |
| 406 | { |
| 407 | int p; |
| 408 | int ret = 0; |
| 409 | for (p = 0; p < nb_oldpids; p++) |
| 410 | if (kill(oldpids[p], sig) == 0) |
| 411 | ret++; |
| 412 | return ret; |
| 413 | } |
| 414 | |
| 415 | /* return 1 if a pid is a current child otherwise 0 */ |
| 416 | |
| 417 | int current_child(int pid) |
| 418 | { |
| 419 | int i; |
| 420 | |
| 421 | for (i = 0; i < global.nbproc; i++) { |
| 422 | if (children[i] == pid) |
| 423 | return 1; |
| 424 | } |
| 425 | return 0; |
| 426 | } |
| 427 | |
| 428 | static void mworker_signalhandler(int signum) |
| 429 | { |
| 430 | caught_signal = signum; |
| 431 | } |
| 432 | |
| 433 | static void mworker_register_signals() |
| 434 | { |
| 435 | struct sigaction sa; |
| 436 | /* Here we are not using the haproxy async way |
| 437 | for signals because it does not exists in |
| 438 | the master */ |
| 439 | memset(&sa, 0, sizeof(struct sigaction)); |
| 440 | sa.sa_handler = &mworker_signalhandler; |
| 441 | sigaction(SIGHUP, &sa, NULL); |
| 442 | sigaction(SIGUSR1, &sa, NULL); |
| 443 | sigaction(SIGUSR2, &sa, NULL); |
| 444 | sigaction(SIGINT, &sa, NULL); |
| 445 | sigaction(SIGTERM, &sa, NULL); |
| 446 | } |
| 447 | |
| 448 | static void mworker_block_signals() |
| 449 | { |
| 450 | sigset_t set; |
| 451 | |
| 452 | sigemptyset(&set); |
| 453 | sigaddset(&set, SIGUSR1); |
| 454 | sigaddset(&set, SIGUSR2); |
| 455 | sigaddset(&set, SIGHUP); |
| 456 | sigaddset(&set, SIGINT); |
| 457 | sigaddset(&set, SIGTERM); |
| 458 | sigprocmask(SIG_SETMASK, &set, NULL); |
| 459 | } |
| 460 | |
| 461 | static void mworker_unblock_signals() |
| 462 | { |
| 463 | sigset_t set; |
| 464 | |
| 465 | sigemptyset(&set); |
| 466 | sigaddset(&set, SIGUSR1); |
| 467 | sigaddset(&set, SIGUSR2); |
| 468 | sigaddset(&set, SIGHUP); |
| 469 | sigaddset(&set, SIGINT); |
| 470 | sigaddset(&set, SIGTERM); |
| 471 | sigprocmask(SIG_UNBLOCK, &set, NULL); |
| 472 | } |
| 473 | |
| 474 | static void mworker_unregister_signals() |
| 475 | { |
| 476 | signal(SIGINT, SIG_DFL); |
| 477 | signal(SIGTERM, SIG_DFL); |
| 478 | signal(SIGHUP, SIG_IGN); |
| 479 | signal(SIGUSR1, SIG_IGN); |
| 480 | signal(SIGUSR2, SIG_IGN); |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * Send signal to every known children. |
| 485 | */ |
| 486 | |
| 487 | static void mworker_kill(int sig) |
| 488 | { |
| 489 | int i; |
| 490 | |
| 491 | tell_old_pids(sig); |
| 492 | if (children) { |
| 493 | for (i = 0; i < global.nbproc; i++) |
| 494 | kill(children[i], sig); |
| 495 | } |
| 496 | } |
| 497 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 498 | /* |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 499 | * remove a pid forom the olpid array and decrease nb_oldpids |
| 500 | * return 1 pid was found otherwise return 0 |
| 501 | */ |
| 502 | |
| 503 | int delete_oldpid(int pid) |
| 504 | { |
| 505 | int i; |
| 506 | |
| 507 | for (i = 0; i < nb_oldpids; i++) { |
| 508 | if (oldpids[i] == pid) { |
| 509 | oldpids[i] = oldpids[nb_oldpids - 1]; |
| 510 | oldpids[nb_oldpids - 1] = 0; |
| 511 | nb_oldpids--; |
| 512 | return 1; |
| 513 | } |
| 514 | } |
| 515 | return 0; |
| 516 | } |
| 517 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 518 | |
| 519 | static void get_cur_unixsocket() |
| 520 | { |
| 521 | /* if -x was used, try to update the stat socket if not available anymore */ |
| 522 | if (global.stats_fe) { |
| 523 | struct bind_conf *bind_conf; |
| 524 | |
| 525 | /* pass through all stats socket */ |
| 526 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 527 | struct listener *l; |
| 528 | |
| 529 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 530 | |
| 531 | if (l->addr.ss_family == AF_UNIX && |
| 532 | (bind_conf->level & ACCESS_FD_LISTENERS)) { |
| 533 | const struct sockaddr_un *un; |
| 534 | |
| 535 | un = (struct sockaddr_un *)&l->addr; |
| 536 | /* priority to old_unixsocket */ |
| 537 | if (!cur_unixsocket) { |
| 538 | cur_unixsocket = strdup(un->sun_path); |
| 539 | } else { |
| 540 | if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) { |
| 541 | free(cur_unixsocket); |
| 542 | cur_unixsocket = strdup(old_unixsocket); |
| 543 | return; |
| 544 | } |
| 545 | } |
| 546 | } |
| 547 | } |
| 548 | } |
| 549 | } |
| 550 | if (!cur_unixsocket && old_unixsocket) |
| 551 | cur_unixsocket = strdup(old_unixsocket); |
| 552 | } |
| 553 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 554 | /* |
| 555 | * When called, this function reexec haproxy with -sf followed by current |
| 556 | * children PIDs and possibily old children PIDs if they didn't leave yet. |
| 557 | */ |
| 558 | static void mworker_reload() |
| 559 | { |
| 560 | int next_argc = 0; |
| 561 | int j; |
| 562 | char *msg = NULL; |
| 563 | |
| 564 | mworker_block_signals(); |
| 565 | mworker_unregister_signals(); |
| 566 | setenv("HAPROXY_MWORKER_REEXEC", "1", 1); |
| 567 | |
| 568 | /* compute length */ |
| 569 | while (next_argv[next_argc]) |
| 570 | next_argc++; |
| 571 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 572 | /* 1 for haproxy -sf, 2 for -x /socket */ |
| 573 | next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *)); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 574 | if (next_argv == NULL) |
| 575 | goto alloc_error; |
| 576 | |
| 577 | |
| 578 | /* add -sf <PID>* to argv */ |
| 579 | if (children || nb_oldpids > 0) |
| 580 | next_argv[next_argc++] = "-sf"; |
| 581 | if (children) { |
| 582 | for (j = 0; j < global.nbproc; next_argc++,j++) { |
| 583 | next_argv[next_argc] = memprintf(&msg, "%d", children[j]); |
| 584 | if (next_argv[next_argc] == NULL) |
| 585 | goto alloc_error; |
| 586 | msg = NULL; |
| 587 | } |
| 588 | } |
| 589 | /* copy old process PIDs */ |
| 590 | for (j = 0; j < nb_oldpids; next_argc++,j++) { |
| 591 | next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]); |
| 592 | if (next_argv[next_argc] == NULL) |
| 593 | goto alloc_error; |
| 594 | msg = NULL; |
| 595 | } |
| 596 | next_argv[next_argc] = NULL; |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 597 | |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 598 | /* add the -x option with the stat socket */ |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 599 | if (cur_unixsocket) { |
| 600 | |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 601 | next_argv[next_argc++] = "-x"; |
| 602 | next_argv[next_argc++] = (char *)cur_unixsocket; |
| 603 | next_argv[next_argc++] = NULL; |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 604 | } |
| 605 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 606 | deinit(); /* we don't want to leak FD there */ |
| 607 | Warning("Reexecuting Master process\n"); |
| 608 | execv(next_argv[0], next_argv); |
| 609 | |
| 610 | alloc_error: |
| 611 | Warning("Cannot allocate memory\n"); |
| 612 | Warning("Failed to reexecute the master processs [%d]\n", pid); |
| 613 | return; |
| 614 | } |
| 615 | |
| 616 | |
| 617 | /* |
| 618 | * Wait for every children to exit |
| 619 | */ |
| 620 | |
| 621 | static void mworker_wait() |
| 622 | { |
| 623 | int exitpid = -1; |
| 624 | int status = 0; |
| 625 | |
| 626 | mworker_register_signals(); |
| 627 | mworker_unblock_signals(); |
| 628 | |
| 629 | while (1) { |
| 630 | |
| 631 | while (((exitpid = wait(&status)) == -1) && errno == EINTR) { |
| 632 | int sig = caught_signal; |
| 633 | if (sig == SIGUSR2 || sig == SIGHUP) { |
| 634 | mworker_reload(); |
| 635 | } else { |
| 636 | Warning("Exiting Master process...\n"); |
| 637 | mworker_kill(sig); |
| 638 | mworker_unregister_signals(); |
| 639 | } |
| 640 | caught_signal = 0; |
| 641 | } |
| 642 | |
| 643 | if (exitpid == -1 && errno == ECHILD) { |
| 644 | Warning("All workers are left. Leaving... (%d)\n", status); |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 645 | atexit_flag = 0; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 646 | exit(status); /* parent must leave using the latest status code known */ |
| 647 | } |
| 648 | |
| 649 | if (WIFEXITED(status)) |
| 650 | status = WEXITSTATUS(status); |
| 651 | else if (WIFSIGNALED(status)) |
| 652 | status = 128 + WTERMSIG(status); |
| 653 | else if (WIFSTOPPED(status)) |
| 654 | status = 128 + WSTOPSIG(status); |
| 655 | else |
| 656 | status = 255; |
| 657 | |
| 658 | if (!children) { |
| 659 | Warning("Worker %d left with exit code %d\n", exitpid, status); |
| 660 | } else { |
| 661 | /* check if exited child was in the current children list */ |
| 662 | if (current_child(exitpid)) { |
| 663 | Alert("Current worker %d left with exit code %d\n", exitpid, status); |
William Lallemand | 69f9b3b | 2017-06-01 17:38:54 +0200 | [diff] [blame] | 664 | if (status != 0 && status != 130 && status != 143 |
| 665 | && global.tune.options & GTUNE_EXIT_ONFAILURE) { |
| 666 | Alert("exit-on-failure: killing every workers with SIGTERM\n"); |
| 667 | mworker_kill(SIGTERM); |
| 668 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 669 | } else { |
| 670 | Warning("Former worker %d left with exit code %d\n", exitpid, status); |
| 671 | delete_oldpid(exitpid); |
| 672 | } |
| 673 | } |
| 674 | } |
| 675 | } |
| 676 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 677 | |
| 678 | /* |
| 679 | * Reexec the process in failure mode, instead of exiting |
| 680 | */ |
| 681 | void reexec_on_failure() |
| 682 | { |
| 683 | if (!atexit_flag) |
| 684 | return; |
| 685 | |
| 686 | setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1); |
| 687 | |
| 688 | Warning("Reexecuting Master process in waitpid mode\n"); |
| 689 | mworker_reload(); |
| 690 | |
| 691 | Warning("Failed to reexecute the master processs\n"); |
| 692 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 693 | |
| 694 | |
| 695 | /* |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 696 | * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts |
| 697 | * a signal zero to all subscribers. This means that it's as easy as |
| 698 | * subscribing to signal 0 to get informed about an imminent shutdown. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 699 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 700 | static void sig_soft_stop(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 701 | { |
| 702 | soft_stop(); |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 703 | signal_unregister_handler(sh); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 704 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | /* |
| 708 | * upon SIGTTOU, we pause everything |
| 709 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 710 | static void sig_pause(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 711 | { |
| 712 | pause_proxies(); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 713 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | /* |
| 717 | * upon SIGTTIN, let's have a soft stop. |
| 718 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 719 | static void sig_listen(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 720 | { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 721 | resume_proxies(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | /* |
| 725 | * this function dumps every server's state when the process receives SIGHUP. |
| 726 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 727 | static void sig_dump_state(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 728 | { |
| 729 | struct proxy *p = proxy; |
| 730 | |
| 731 | Warning("SIGHUP received, dumping servers states.\n"); |
| 732 | while (p) { |
| 733 | struct server *s = p->srv; |
| 734 | |
| 735 | send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id); |
| 736 | while (s) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 737 | chunk_printf(&trash, |
| 738 | "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.", |
| 739 | p->id, s->id, |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 740 | (s->state != SRV_ST_STOPPED) ? "UP" : "DOWN", |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 741 | s->cur_sess, s->nbpend, s->counters.cum_sess); |
| 742 | Warning("%s\n", trash.str); |
| 743 | send_log(p, LOG_NOTICE, "%s\n", trash.str); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 744 | s = s->next; |
| 745 | } |
| 746 | |
Willy Tarreau | 5fcc8f1 | 2007-09-17 11:27:09 +0200 | [diff] [blame] | 747 | /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */ |
| 748 | if (!p->srv) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 749 | chunk_printf(&trash, |
| 750 | "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 751 | p->id, |
| 752 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | 5fcc8f1 | 2007-09-17 11:27:09 +0200 | [diff] [blame] | 753 | } else if (p->srv_act == 0) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 754 | chunk_printf(&trash, |
| 755 | "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 756 | p->id, |
| 757 | (p->srv_bck) ? "is running on backup servers" : "has no server available", |
| 758 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 759 | } else { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 760 | chunk_printf(&trash, |
| 761 | "SIGHUP: Proxy %s has %d active servers and %d backup servers available." |
| 762 | " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 763 | p->id, p->srv_act, p->srv_bck, |
| 764 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 765 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 766 | Warning("%s\n", trash.str); |
| 767 | send_log(p, LOG_NOTICE, "%s\n", trash.str); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 768 | |
| 769 | p = p->next; |
| 770 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 771 | } |
| 772 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 773 | static void dump(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 774 | { |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 775 | /* dump memory usage then free everything possible */ |
| 776 | dump_pools(); |
| 777 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 778 | } |
| 779 | |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 780 | /* This function check if cfg_cfgfiles containes directories. |
| 781 | * If it find one, it add all the files (and only files) it containes |
| 782 | * in cfg_cfgfiles in place of the directory (and remove the directory). |
| 783 | * It add the files in lexical order. |
| 784 | * It add only files with .cfg extension. |
| 785 | * It doesn't add files with name starting with '.' |
| 786 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 787 | static void cfgfiles_expand_directories(void) |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 788 | { |
| 789 | struct wordlist *wl, *wlb; |
| 790 | char *err = NULL; |
| 791 | |
| 792 | list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) { |
| 793 | struct stat file_stat; |
| 794 | struct dirent **dir_entries = NULL; |
| 795 | int dir_entries_nb; |
| 796 | int dir_entries_it; |
| 797 | |
| 798 | if (stat(wl->s, &file_stat)) { |
| 799 | Alert("Cannot open configuration file/directory %s : %s\n", |
| 800 | wl->s, |
| 801 | strerror(errno)); |
| 802 | exit(1); |
| 803 | } |
| 804 | |
| 805 | if (!S_ISDIR(file_stat.st_mode)) |
| 806 | continue; |
| 807 | |
| 808 | /* from this point wl->s is a directory */ |
| 809 | |
| 810 | dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort); |
| 811 | if (dir_entries_nb < 0) { |
| 812 | Alert("Cannot open configuration directory %s : %s\n", |
| 813 | wl->s, |
| 814 | strerror(errno)); |
| 815 | exit(1); |
| 816 | } |
| 817 | |
| 818 | /* for each element in the directory wl->s */ |
| 819 | for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) { |
| 820 | struct dirent *dir_entry = dir_entries[dir_entries_it]; |
| 821 | char *filename = NULL; |
| 822 | char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg"); |
| 823 | |
| 824 | /* don't add filename that begin with . |
| 825 | * only add filename with .cfg extention |
| 826 | */ |
| 827 | if (dir_entry->d_name[0] == '.' || |
| 828 | !(d_name_cfgext && d_name_cfgext[4] == '\0')) |
| 829 | goto next_dir_entry; |
| 830 | |
| 831 | if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) { |
| 832 | Alert("Cannot load configuration files %s : out of memory.\n", |
| 833 | filename); |
| 834 | exit(1); |
| 835 | } |
| 836 | |
| 837 | if (stat(filename, &file_stat)) { |
| 838 | Alert("Cannot open configuration file %s : %s\n", |
| 839 | wl->s, |
| 840 | strerror(errno)); |
| 841 | exit(1); |
| 842 | } |
| 843 | |
| 844 | /* don't add anything else than regular file in cfg_cfgfiles |
| 845 | * this way we avoid loops |
| 846 | */ |
| 847 | if (!S_ISREG(file_stat.st_mode)) |
| 848 | goto next_dir_entry; |
| 849 | |
| 850 | if (!list_append_word(&wl->list, filename, &err)) { |
| 851 | Alert("Cannot load configuration files %s : %s\n", |
| 852 | filename, |
| 853 | err); |
| 854 | exit(1); |
| 855 | } |
| 856 | |
| 857 | next_dir_entry: |
| 858 | free(filename); |
| 859 | free(dir_entry); |
| 860 | } |
| 861 | |
| 862 | free(dir_entries); |
| 863 | |
| 864 | /* remove the current directory (wl) from cfg_cfgfiles */ |
| 865 | free(wl->s); |
| 866 | LIST_DEL(&wl->list); |
| 867 | free(wl); |
| 868 | } |
| 869 | |
| 870 | free(err); |
| 871 | } |
| 872 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 873 | static int get_old_sockets(const char *unixsocket) |
| 874 | { |
| 875 | char *cmsgbuf = NULL, *tmpbuf = NULL; |
| 876 | int *tmpfd = NULL; |
| 877 | struct sockaddr_un addr; |
| 878 | struct cmsghdr *cmsg; |
| 879 | struct msghdr msghdr; |
| 880 | struct iovec iov; |
| 881 | struct xfer_sock_list *xfer_sock = NULL; |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 882 | struct timeval tv = { .tv_sec = 1, .tv_usec = 0 }; |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 883 | int sock = -1; |
| 884 | int ret = -1; |
| 885 | int ret2 = -1; |
| 886 | int fd_nb; |
| 887 | int got_fd = 0; |
| 888 | int i = 0; |
| 889 | size_t maxoff = 0, curoff = 0; |
| 890 | |
| 891 | memset(&msghdr, 0, sizeof(msghdr)); |
| 892 | cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD); |
| 893 | if (!cmsgbuf) { |
| 894 | Warning("Failed to allocate memory to send sockets\n"); |
| 895 | goto out; |
| 896 | } |
| 897 | sock = socket(PF_UNIX, SOCK_STREAM, 0); |
| 898 | if (sock < 0) { |
| 899 | Warning("Failed to connect to the old process socket '%s'\n", |
| 900 | unixsocket); |
| 901 | goto out; |
| 902 | } |
| 903 | strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path)); |
| 904 | addr.sun_path[sizeof(addr.sun_path) - 1] = 0; |
| 905 | addr.sun_family = PF_UNIX; |
| 906 | ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr)); |
| 907 | if (ret < 0) { |
| 908 | Warning("Failed to connect to the old process socket '%s'\n", |
| 909 | unixsocket); |
| 910 | goto out; |
| 911 | } |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 912 | setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv)); |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 913 | iov.iov_base = &fd_nb; |
| 914 | iov.iov_len = sizeof(fd_nb); |
| 915 | msghdr.msg_iov = &iov; |
| 916 | msghdr.msg_iovlen = 1; |
| 917 | send(sock, "_getsocks\n", strlen("_getsocks\n"), 0); |
| 918 | /* First, get the number of file descriptors to be received */ |
| 919 | if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) { |
| 920 | Warning("Failed to get the number of sockets to be transferred !\n"); |
| 921 | goto out; |
| 922 | } |
| 923 | if (fd_nb == 0) { |
| 924 | ret = 0; |
| 925 | goto out; |
| 926 | } |
| 927 | tmpbuf = malloc(fd_nb * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int))); |
| 928 | if (tmpbuf == NULL) { |
| 929 | Warning("Failed to allocate memory while receiving sockets\n"); |
| 930 | goto out; |
| 931 | } |
| 932 | tmpfd = malloc(fd_nb * sizeof(int)); |
| 933 | if (tmpfd == NULL) { |
| 934 | Warning("Failed to allocate memory while receiving sockets\n"); |
| 935 | goto out; |
| 936 | } |
| 937 | msghdr.msg_control = cmsgbuf; |
| 938 | msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD; |
| 939 | iov.iov_len = MAX_SEND_FD * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int)); |
| 940 | do { |
| 941 | int ret3; |
| 942 | |
| 943 | iov.iov_base = tmpbuf + curoff; |
| 944 | ret = recvmsg(sock, &msghdr, 0); |
| 945 | if (ret == -1 && errno == EINTR) |
| 946 | continue; |
| 947 | if (ret <= 0) |
| 948 | break; |
| 949 | /* Send an ack to let the sender know we got the sockets |
| 950 | * and it can send some more |
| 951 | */ |
| 952 | do { |
| 953 | ret3 = send(sock, &got_fd, sizeof(got_fd), 0); |
| 954 | } while (ret3 == -1 && errno == EINTR); |
| 955 | for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL; |
| 956 | cmsg = CMSG_NXTHDR(&msghdr, cmsg)) { |
| 957 | if (cmsg->cmsg_level == SOL_SOCKET && |
| 958 | cmsg->cmsg_type == SCM_RIGHTS) { |
| 959 | size_t totlen = cmsg->cmsg_len - |
| 960 | CMSG_LEN(0); |
| 961 | if (totlen / sizeof(int) + got_fd > fd_nb) { |
| 962 | Warning("Got to many sockets !\n"); |
| 963 | goto out; |
| 964 | } |
| 965 | /* |
| 966 | * Be paranoid and use memcpy() to avoid any |
| 967 | * potential alignement issue. |
| 968 | */ |
| 969 | memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen); |
| 970 | got_fd += totlen / sizeof(int); |
| 971 | } |
| 972 | } |
| 973 | curoff += ret; |
| 974 | } while (got_fd < fd_nb); |
| 975 | |
| 976 | if (got_fd != fd_nb) { |
| 977 | Warning("We didn't get the expected number of sockets (expecting %d got %d)\n", |
| 978 | fd_nb, got_fd); |
| 979 | goto out; |
| 980 | } |
| 981 | maxoff = curoff; |
| 982 | curoff = 0; |
| 983 | for (i = 0; i < got_fd; i++) { |
| 984 | int fd = tmpfd[i]; |
| 985 | socklen_t socklen; |
| 986 | int len; |
| 987 | |
| 988 | xfer_sock = calloc(1, sizeof(*xfer_sock)); |
| 989 | if (!xfer_sock) { |
| 990 | Warning("Failed to allocate memory in get_old_sockets() !\n"); |
| 991 | break; |
| 992 | } |
| 993 | xfer_sock->fd = -1; |
| 994 | |
| 995 | socklen = sizeof(xfer_sock->addr); |
| 996 | if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) { |
| 997 | Warning("Failed to get socket address\n"); |
| 998 | free(xfer_sock); |
Olivier Houchard | be7b1ce | 2017-07-17 17:25:33 +0200 | [diff] [blame] | 999 | xfer_sock = NULL; |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1000 | continue; |
| 1001 | } |
| 1002 | if (curoff >= maxoff) { |
| 1003 | Warning("Inconsistency while transferring sockets\n"); |
| 1004 | goto out; |
| 1005 | } |
| 1006 | len = tmpbuf[curoff++]; |
| 1007 | if (len > 0) { |
| 1008 | /* We have a namespace */ |
| 1009 | if (curoff + len > maxoff) { |
| 1010 | Warning("Inconsistency while transferring sockets\n"); |
| 1011 | goto out; |
| 1012 | } |
| 1013 | xfer_sock->namespace = malloc(len + 1); |
| 1014 | if (!xfer_sock->namespace) { |
| 1015 | Warning("Failed to allocate memory while transferring sockets\n"); |
| 1016 | goto out; |
| 1017 | } |
| 1018 | memcpy(xfer_sock->namespace, &tmpbuf[curoff], len); |
| 1019 | xfer_sock->namespace[len] = 0; |
| 1020 | curoff += len; |
| 1021 | } |
| 1022 | if (curoff >= maxoff) { |
| 1023 | Warning("Inconsistency while transferring sockets\n"); |
| 1024 | goto out; |
| 1025 | } |
| 1026 | len = tmpbuf[curoff++]; |
| 1027 | if (len > 0) { |
| 1028 | /* We have an interface */ |
| 1029 | if (curoff + len > maxoff) { |
| 1030 | Warning("Inconsistency while transferring sockets\n"); |
| 1031 | goto out; |
| 1032 | } |
| 1033 | xfer_sock->iface = malloc(len + 1); |
| 1034 | if (!xfer_sock->iface) { |
| 1035 | Warning("Failed to allocate memory while transferring sockets\n"); |
| 1036 | goto out; |
| 1037 | } |
| 1038 | memcpy(xfer_sock->iface, &tmpbuf[curoff], len); |
| 1039 | xfer_sock->namespace[len] = 0; |
| 1040 | curoff += len; |
| 1041 | } |
| 1042 | if (curoff + sizeof(int) > maxoff) { |
| 1043 | Warning("Inconsistency while transferring sockets\n"); |
| 1044 | goto out; |
| 1045 | } |
| 1046 | memcpy(&xfer_sock->options, &tmpbuf[curoff], |
| 1047 | sizeof(xfer_sock->options)); |
| 1048 | curoff += sizeof(xfer_sock->options); |
| 1049 | |
| 1050 | xfer_sock->fd = fd; |
| 1051 | if (xfer_sock_list) |
| 1052 | xfer_sock_list->prev = xfer_sock; |
| 1053 | xfer_sock->next = xfer_sock_list; |
| 1054 | xfer_sock->prev = NULL; |
| 1055 | xfer_sock_list = xfer_sock; |
| 1056 | xfer_sock = NULL; |
| 1057 | } |
| 1058 | |
| 1059 | ret2 = 0; |
| 1060 | out: |
| 1061 | /* If we failed midway make sure to close the remaining |
| 1062 | * file descriptors |
| 1063 | */ |
| 1064 | if (tmpfd != NULL && i < got_fd) { |
| 1065 | for (; i < got_fd; i++) { |
| 1066 | close(tmpfd[i]); |
| 1067 | } |
| 1068 | } |
| 1069 | free(tmpbuf); |
| 1070 | free(tmpfd); |
| 1071 | free(cmsgbuf); |
| 1072 | if (sock != -1) |
| 1073 | close(sock); |
| 1074 | if (xfer_sock) { |
| 1075 | free(xfer_sock->namespace); |
| 1076 | free(xfer_sock->iface); |
| 1077 | if (xfer_sock->fd != -1) |
| 1078 | close(xfer_sock->fd); |
| 1079 | free(xfer_sock); |
| 1080 | } |
| 1081 | return (ret2); |
| 1082 | } |
| 1083 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1084 | /* |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1085 | * copy and cleanup the current argv |
| 1086 | * Remove the -sf /-st parameters |
| 1087 | * Return an allocated copy of argv |
| 1088 | */ |
| 1089 | |
| 1090 | static char **copy_argv(int argc, char **argv) |
| 1091 | { |
| 1092 | char **newargv; |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1093 | int i = 0, j = 0; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1094 | |
| 1095 | newargv = calloc(argc + 2, sizeof(char *)); |
| 1096 | if (newargv == NULL) { |
| 1097 | Warning("Cannot allocate memory\n"); |
| 1098 | return NULL; |
| 1099 | } |
| 1100 | |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1101 | while (i < argc) { |
| 1102 | /* -sf or -st or -x */ |
| 1103 | if ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' ) { |
| 1104 | /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */ |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1105 | i++; |
| 1106 | while (i < argc && argv[i][0] != '-') { |
| 1107 | i++; |
| 1108 | } |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1109 | continue; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1110 | } |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1111 | |
| 1112 | newargv[j++] = argv[i++]; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1113 | } |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1114 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1115 | return newargv; |
| 1116 | } |
| 1117 | |
| 1118 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1119 | * This function initializes all the necessary variables. It only returns |
| 1120 | * if everything is OK. If something fails, it exits. |
| 1121 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 1122 | static void init(int argc, char **argv) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1123 | { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1124 | int arg_mode = 0; /* MODE_DEBUG, ... */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1125 | char *tmp; |
| 1126 | char *cfg_pidfile = NULL; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1127 | int err_code = 0; |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1128 | char *err_msg = NULL; |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1129 | struct wordlist *wl; |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1130 | char *progname; |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1131 | char *change_dir = NULL; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1132 | struct proxy *px; |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 1133 | struct post_check_fct *pcf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1134 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1135 | next_argv = copy_argv(argc, argv); |
| 1136 | |
Christopher Faulet | 748919a | 2017-07-26 14:59:46 +0200 | [diff] [blame] | 1137 | if (!init_trash_buffers()) { |
| 1138 | Alert("failed to initialize trash buffers.\n"); |
| 1139 | exit(1); |
| 1140 | } |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 1141 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1142 | /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate |
| 1143 | * the string in case of truncation, and at least FreeBSD appears not to do |
| 1144 | * it. |
| 1145 | */ |
| 1146 | memset(hostname, 0, sizeof(hostname)); |
| 1147 | gethostname(hostname, sizeof(hostname) - 1); |
| 1148 | memset(localpeer, 0, sizeof(localpeer)); |
| 1149 | memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1); |
| 1150 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1151 | /* |
| 1152 | * Initialize the previously static variables. |
| 1153 | */ |
| 1154 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 1155 | totalconn = actconn = maxfd = listeners = stopping = 0; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1156 | killed = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1157 | |
| 1158 | |
| 1159 | #ifdef HAPROXY_MEMMAX |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1160 | global.rlimit_memmax_all = HAPROXY_MEMMAX; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1161 | #endif |
| 1162 | |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 1163 | tzset(); |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1164 | tv_update_date(-1,-1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1165 | start_date = now; |
| 1166 | |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 1167 | srandom(now_ms - getpid()); |
| 1168 | |
Dragan Dosen | 835b921 | 2016-02-12 13:23:03 +0100 | [diff] [blame] | 1169 | init_log(); |
Willy Tarreau | 2985794 | 2009-05-10 09:01:21 +0200 | [diff] [blame] | 1170 | signal_init(); |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 1171 | if (init_acl() != 0) |
| 1172 | exit(1); |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 1173 | init_task(); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1174 | init_stream(); |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 1175 | init_session(); |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1176 | init_connection(); |
Willy Tarreau | 8280d64 | 2009-09-23 23:37:52 +0200 | [diff] [blame] | 1177 | /* warning, we init buffers later */ |
Willy Tarreau | e4d7e55 | 2007-05-13 20:19:55 +0200 | [diff] [blame] | 1178 | init_pendconn(); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 1179 | init_proto_http(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1180 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 1181 | /* Initialise lua. */ |
| 1182 | hlua_init(); |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 1183 | |
Christopher Faulet | ff2613e | 2016-11-09 11:36:17 +0100 | [diff] [blame] | 1184 | /* Initialize process vars */ |
| 1185 | vars_init(&global.vars, SCOPE_PROC); |
| 1186 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1187 | global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1188 | #if defined(ENABLE_POLL) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1189 | global.tune.options |= GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1190 | #endif |
| 1191 | #if defined(ENABLE_EPOLL) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1192 | global.tune.options |= GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1193 | #endif |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1194 | #if defined(ENABLE_KQUEUE) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1195 | global.tune.options |= GTUNE_USE_KQUEUE; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1196 | #endif |
Willy Tarreau | b55932d | 2009-08-16 13:20:32 +0200 | [diff] [blame] | 1197 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 1198 | global.tune.options |= GTUNE_USE_SPLICE; |
| 1199 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 1200 | #if defined(USE_GETADDRINFO) |
| 1201 | global.tune.options |= GTUNE_USE_GAI; |
| 1202 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 1203 | #if defined(SO_REUSEPORT) |
| 1204 | global.tune.options |= GTUNE_USE_REUSEPORT; |
| 1205 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1206 | |
| 1207 | pid = getpid(); |
| 1208 | progname = *argv; |
| 1209 | while ((tmp = strchr(progname, '/')) != NULL) |
| 1210 | progname = tmp + 1; |
| 1211 | |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1212 | /* the process name is used for the logs only */ |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 1213 | chunk_initstr(&global.log_tag, strdup(progname)); |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1214 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1215 | argc--; argv++; |
| 1216 | while (argc > 0) { |
| 1217 | char *flag; |
| 1218 | |
| 1219 | if (**argv == '-') { |
| 1220 | flag = *argv+1; |
| 1221 | |
| 1222 | /* 1 arg */ |
| 1223 | if (*flag == 'v') { |
| 1224 | display_version(); |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 1225 | if (flag[1] == 'v') /* -vv */ |
| 1226 | display_build_opts(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1227 | exit(0); |
| 1228 | } |
| 1229 | #if defined(ENABLE_EPOLL) |
| 1230 | else if (*flag == 'd' && flag[1] == 'e') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1231 | global.tune.options &= ~GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1232 | #endif |
| 1233 | #if defined(ENABLE_POLL) |
| 1234 | else if (*flag == 'd' && flag[1] == 'p') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1235 | global.tune.options &= ~GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1236 | #endif |
Willy Tarreau | 69cad1a | 2007-04-10 22:45:11 +0200 | [diff] [blame] | 1237 | #if defined(ENABLE_KQUEUE) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1238 | else if (*flag == 'd' && flag[1] == 'k') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1239 | global.tune.options &= ~GTUNE_USE_KQUEUE; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1240 | #endif |
Willy Tarreau | b55932d | 2009-08-16 13:20:32 +0200 | [diff] [blame] | 1241 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 1242 | else if (*flag == 'd' && flag[1] == 'S') |
| 1243 | global.tune.options &= ~GTUNE_USE_SPLICE; |
| 1244 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 1245 | #if defined(USE_GETADDRINFO) |
| 1246 | else if (*flag == 'd' && flag[1] == 'G') |
| 1247 | global.tune.options &= ~GTUNE_USE_GAI; |
| 1248 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 1249 | #if defined(SO_REUSEPORT) |
| 1250 | else if (*flag == 'd' && flag[1] == 'R') |
| 1251 | global.tune.options &= ~GTUNE_USE_REUSEPORT; |
| 1252 | #endif |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1253 | else if (*flag == 'd' && flag[1] == 'V') |
| 1254 | global.ssl_server_verify = SSL_SERVER_VERIFY_NONE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1255 | else if (*flag == 'V') |
| 1256 | arg_mode |= MODE_VERBOSE; |
| 1257 | else if (*flag == 'd' && flag[1] == 'b') |
| 1258 | arg_mode |= MODE_FOREGROUND; |
Willy Tarreau | 6e06443 | 2012-05-08 15:40:42 +0200 | [diff] [blame] | 1259 | else if (*flag == 'd' && flag[1] == 'M') |
| 1260 | mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P'; |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 1261 | else if (*flag == 'd' && flag[1] == 'r') |
| 1262 | global.tune.options |= GTUNE_RESOLVE_DONTFAIL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1263 | else if (*flag == 'd') |
| 1264 | arg_mode |= MODE_DEBUG; |
| 1265 | else if (*flag == 'c') |
| 1266 | arg_mode |= MODE_CHECK; |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1267 | else if (*flag == 'D') |
Willy Tarreau | 6bde87b | 2009-05-18 16:29:51 +0200 | [diff] [blame] | 1268 | arg_mode |= MODE_DAEMON; |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1269 | else if (*flag == 'W') |
| 1270 | arg_mode |= MODE_MWORKER; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1271 | else if (*flag == 'q') |
| 1272 | arg_mode |= MODE_QUIET; |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1273 | else if (*flag == 'x') { |
William Lallemand | 45eff44 | 2017-06-19 15:57:55 +0200 | [diff] [blame] | 1274 | if (argc <= 1 || argv[1][0] == '-') { |
| 1275 | Alert("Unix socket path expected with the -x flag\n\n"); |
| 1276 | usage(progname); |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1277 | } |
William Lallemand | 4fc0969 | 2017-06-19 16:37:19 +0200 | [diff] [blame] | 1278 | if (old_unixsocket) |
| 1279 | Warning("-x option already set, overwriting the value\n"); |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1280 | old_unixsocket = argv[1]; |
William Lallemand | 4fc0969 | 2017-06-19 16:37:19 +0200 | [diff] [blame] | 1281 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1282 | argv++; |
| 1283 | argc--; |
| 1284 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1285 | else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) { |
| 1286 | /* list of pids to finish ('f') or terminate ('t') */ |
| 1287 | |
| 1288 | if (flag[1] == 'f') |
| 1289 | oldpids_sig = SIGUSR1; /* finish then exit */ |
| 1290 | else |
| 1291 | oldpids_sig = SIGTERM; /* terminate immediately */ |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1292 | while (argc > 1 && argv[1][0] != '-') { |
| 1293 | oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int)); |
| 1294 | if (!oldpids) { |
| 1295 | Alert("Cannot allocate old pid : out of memory.\n"); |
| 1296 | exit(1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1297 | } |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1298 | argc--; argv++; |
| 1299 | oldpids[nb_oldpids] = atol(*argv); |
| 1300 | if (oldpids[nb_oldpids] <= 0) |
| 1301 | usage(progname); |
| 1302 | nb_oldpids++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1303 | } |
| 1304 | } |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1305 | else if (flag[0] == '-' && flag[1] == 0) { /* "--" */ |
| 1306 | /* now that's a cfgfile list */ |
| 1307 | argv++; argc--; |
| 1308 | while (argc > 0) { |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1309 | if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) { |
| 1310 | Alert("Cannot load configuration file/directory %s : %s\n", |
| 1311 | *argv, |
| 1312 | err_msg); |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1313 | exit(1); |
| 1314 | } |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1315 | argv++; argc--; |
| 1316 | } |
| 1317 | break; |
| 1318 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1319 | else { /* >=2 args */ |
| 1320 | argv++; argc--; |
| 1321 | if (argc == 0) |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1322 | usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1323 | |
| 1324 | switch (*flag) { |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1325 | case 'C' : change_dir = *argv; break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1326 | case 'n' : cfg_maxconn = atol(*argv); break; |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1327 | case 'm' : global.rlimit_memmax_all = atol(*argv); break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1328 | case 'N' : cfg_maxpconn = atol(*argv); break; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1329 | case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break; |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1330 | case 'f' : |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1331 | if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) { |
| 1332 | Alert("Cannot load configuration file/directory %s : %s\n", |
| 1333 | *argv, |
| 1334 | err_msg); |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1335 | exit(1); |
| 1336 | } |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1337 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1338 | case 'p' : cfg_pidfile = *argv; break; |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1339 | default: usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1340 | } |
| 1341 | } |
| 1342 | } |
| 1343 | else |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1344 | usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1345 | argv++; argc--; |
| 1346 | } |
| 1347 | |
| 1348 | global.mode = MODE_STARTING | /* during startup, we want most of the alerts */ |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1349 | (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1350 | | MODE_QUIET | MODE_CHECK | MODE_DEBUG)); |
| 1351 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 1352 | /* Master workers wait mode */ |
| 1353 | if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) { |
| 1354 | |
| 1355 | unsetenv("HAPROXY_MWORKER_WAIT_ONLY"); |
| 1356 | mworker_wait(); |
| 1357 | } |
| 1358 | |
| 1359 | if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) { |
| 1360 | atexit_flag = 1; |
| 1361 | atexit(reexec_on_failure); |
| 1362 | } |
| 1363 | |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1364 | if (change_dir && chdir(change_dir) < 0) { |
| 1365 | Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno)); |
| 1366 | exit(1); |
| 1367 | } |
| 1368 | |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1369 | /* handle cfgfiles that are actualy directories */ |
| 1370 | cfgfiles_expand_directories(); |
| 1371 | |
| 1372 | if (LIST_ISEMPTY(&cfg_cfgfiles)) |
| 1373 | usage(progname); |
| 1374 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1375 | global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1376 | |
| 1377 | init_default_instance(); |
| 1378 | |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1379 | list_for_each_entry(wl, &cfg_cfgfiles, list) { |
Willy Tarreau | c438242 | 2009-12-06 13:10:44 +0100 | [diff] [blame] | 1380 | int ret; |
| 1381 | |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1382 | ret = readcfgfile(wl->s); |
Willy Tarreau | c438242 | 2009-12-06 13:10:44 +0100 | [diff] [blame] | 1383 | if (ret == -1) { |
| 1384 | Alert("Could not open configuration file %s : %s\n", |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1385 | wl->s, strerror(errno)); |
Willy Tarreau | c438242 | 2009-12-06 13:10:44 +0100 | [diff] [blame] | 1386 | exit(1); |
| 1387 | } |
Willy Tarreau | 25a67fa | 2009-12-15 21:46:25 +0100 | [diff] [blame] | 1388 | if (ret & (ERR_ABORT|ERR_FATAL)) |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1389 | Alert("Error(s) found in configuration file : %s\n", wl->s); |
Willy Tarreau | 25a67fa | 2009-12-15 21:46:25 +0100 | [diff] [blame] | 1390 | err_code |= ret; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1391 | if (err_code & ERR_ABORT) |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1392 | exit(1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1393 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1394 | |
Willy Tarreau | b83dc3d | 2017-04-19 11:24:07 +0200 | [diff] [blame] | 1395 | /* do not try to resolve arguments nor to spot inconsistencies when |
| 1396 | * the configuration contains fatal errors caused by files not found |
| 1397 | * or failed memory allocations. |
| 1398 | */ |
| 1399 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1400 | Alert("Fatal errors found in configuration.\n"); |
| 1401 | exit(1); |
| 1402 | } |
| 1403 | |
Thierry FOURNIER | af5a29d | 2014-03-11 14:29:22 +0100 | [diff] [blame] | 1404 | pattern_finalize_config(); |
| 1405 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 1406 | err_code |= check_config_validity(); |
| 1407 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1408 | Alert("Fatal errors found in configuration.\n"); |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1409 | exit(1); |
| 1410 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1411 | |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1412 | /* recompute the amount of per-process memory depending on nbproc and |
| 1413 | * the shared SSL cache size (allowed to exist in all processes). |
| 1414 | */ |
| 1415 | if (global.rlimit_memmax_all) { |
| 1416 | #if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE) |
| 1417 | int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL; |
| 1418 | |
| 1419 | global.rlimit_memmax = |
| 1420 | ((((int64_t)global.rlimit_memmax_all * 1048576LL) - |
| 1421 | ssl_cache_bytes) / global.nbproc + |
| 1422 | ssl_cache_bytes + 1048575LL) / 1048576LL; |
| 1423 | #else |
| 1424 | global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc; |
| 1425 | #endif |
| 1426 | } |
| 1427 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1428 | #ifdef CONFIG_HAP_NS |
| 1429 | err_code |= netns_init(); |
| 1430 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1431 | Alert("Failed to initialize namespace support.\n"); |
| 1432 | exit(1); |
| 1433 | } |
| 1434 | #endif |
| 1435 | |
Baptiste Assmann | 4215d7d | 2016-11-02 15:33:15 +0100 | [diff] [blame] | 1436 | /* Apply server states */ |
| 1437 | apply_server_state(); |
| 1438 | |
| 1439 | for (px = proxy; px; px = px->next) |
| 1440 | srv_compute_all_admin_states(px); |
| 1441 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 1442 | /* Apply servers' configured address */ |
| 1443 | err_code |= srv_init_addr(); |
| 1444 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1445 | Alert("Failed to initialize server(s) addr.\n"); |
| 1446 | exit(1); |
| 1447 | } |
| 1448 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1449 | if (global.mode & MODE_CHECK) { |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 1450 | struct peers *pr; |
| 1451 | struct proxy *px; |
| 1452 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1453 | for (pr = cfg_peers; pr; pr = pr->next) |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 1454 | if (pr->peers_fe) |
| 1455 | break; |
| 1456 | |
| 1457 | for (px = proxy; px; px = px->next) |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1458 | if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners)) |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 1459 | break; |
| 1460 | |
| 1461 | if (pr || px) { |
| 1462 | /* At least one peer or one listener has been found */ |
| 1463 | qfprintf(stdout, "Configuration file is valid\n"); |
| 1464 | exit(0); |
| 1465 | } |
| 1466 | qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n"); |
| 1467 | exit(2); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1468 | } |
| 1469 | |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 1470 | global_listener_queue_task = task_new(); |
| 1471 | if (!global_listener_queue_task) { |
| 1472 | Alert("Out of memory when initializing global task\n"); |
| 1473 | exit(1); |
| 1474 | } |
| 1475 | /* very simple initialization, users will queue the task if needed */ |
| 1476 | global_listener_queue_task->context = NULL; /* not even a context! */ |
| 1477 | global_listener_queue_task->process = manage_global_listener_queue; |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 1478 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 1479 | /* now we know the buffer size, we can initialize the channels and buffers */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1480 | init_buffer(); |
Willy Tarreau | 8280d64 | 2009-09-23 23:37:52 +0200 | [diff] [blame] | 1481 | |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 1482 | list_for_each_entry(pcf, &post_check_list, list) { |
| 1483 | err_code |= pcf->fct(); |
| 1484 | if (err_code & (ERR_ABORT|ERR_FATAL)) |
| 1485 | exit(1); |
| 1486 | } |
| 1487 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1488 | if (cfg_maxconn > 0) |
| 1489 | global.maxconn = cfg_maxconn; |
| 1490 | |
| 1491 | if (cfg_pidfile) { |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1492 | free(global.pidfile); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1493 | global.pidfile = strdup(cfg_pidfile); |
| 1494 | } |
| 1495 | |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1496 | /* Now we want to compute the maxconn and possibly maxsslconn values. |
| 1497 | * It's a bit tricky. If memmax is not set, maxconn defaults to |
| 1498 | * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN. |
| 1499 | * |
| 1500 | * If memmax is set, then it depends on which values are set. If |
| 1501 | * maxsslconn is set, we use memmax to determine how many cleartext |
| 1502 | * connections may be added, and set maxconn to the sum of the two. |
| 1503 | * If maxconn is set and not maxsslconn, maxsslconn is computed from |
| 1504 | * the remaining amount of memory between memmax and the cleartext |
| 1505 | * connections. If neither are set, then it is considered that all |
| 1506 | * connections are SSL-capable, and maxconn is computed based on this, |
| 1507 | * then maxsslconn accordingly. We need to know if SSL is used on the |
| 1508 | * frontends, backends, or both, because when it's used on both sides, |
| 1509 | * we need twice the value for maxsslconn, but we only count the |
| 1510 | * handshake once since it is not performed on the two sides at the |
| 1511 | * same time (frontend-side is terminated before backend-side begins). |
| 1512 | * The SSL stack is supposed to have filled ssl_session_cost and |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 1513 | * ssl_handshake_cost during its initialization. In any case, if |
| 1514 | * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for |
| 1515 | * maxconn in order to protect the system. |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1516 | */ |
| 1517 | if (!global.rlimit_memmax) { |
| 1518 | if (global.maxconn == 0) { |
| 1519 | global.maxconn = DEFAULT_MAXCONN; |
| 1520 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 1521 | fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn); |
| 1522 | } |
| 1523 | } |
| 1524 | #ifdef USE_OPENSSL |
| 1525 | else if (!global.maxconn && !global.maxsslconn && |
| 1526 | (global.ssl_used_frontend || global.ssl_used_backend)) { |
| 1527 | /* memmax is set, compute everything automatically. Here we want |
| 1528 | * to ensure that all SSL connections will be served. We take |
| 1529 | * care of the number of sides where SSL is used, and consider |
| 1530 | * the worst case : SSL used on both sides and doing a handshake |
| 1531 | * simultaneously. Note that we can't have more than maxconn |
| 1532 | * handshakes at a time by definition, so for the worst case of |
| 1533 | * two SSL conns per connection, we count a single handshake. |
| 1534 | */ |
| 1535 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 1536 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
| 1537 | |
| 1538 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 1539 | mem -= global.maxzlibmem; |
| 1540 | mem = mem * MEM_USABLE_RATIO; |
| 1541 | |
| 1542 | global.maxconn = mem / |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1543 | ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1544 | sides * global.ssl_session_max_cost + // SSL buffers, one per side |
| 1545 | global.ssl_handshake_max_cost); // 1 handshake per connection max |
| 1546 | |
| 1547 | global.maxconn = round_2dig(global.maxconn); |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 1548 | #ifdef SYSTEM_MAXCONN |
| 1549 | if (global.maxconn > DEFAULT_MAXCONN) |
| 1550 | global.maxconn = DEFAULT_MAXCONN; |
| 1551 | #endif /* SYSTEM_MAXCONN */ |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1552 | global.maxsslconn = sides * global.maxconn; |
| 1553 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 1554 | fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n", |
| 1555 | global.maxconn, global.maxsslconn); |
| 1556 | } |
| 1557 | else if (!global.maxsslconn && |
| 1558 | (global.ssl_used_frontend || global.ssl_used_backend)) { |
| 1559 | /* memmax and maxconn are known, compute maxsslconn automatically. |
| 1560 | * maxsslconn being forced, we don't know how many of it will be |
| 1561 | * on each side if both sides are being used. The worst case is |
| 1562 | * when all connections use only one SSL instance because |
| 1563 | * handshakes may be on two sides at the same time. |
| 1564 | */ |
| 1565 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 1566 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
| 1567 | int64_t sslmem; |
| 1568 | |
| 1569 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 1570 | mem -= global.maxzlibmem; |
| 1571 | mem = mem * MEM_USABLE_RATIO; |
| 1572 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1573 | sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize); |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1574 | global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost); |
| 1575 | global.maxsslconn = round_2dig(global.maxsslconn); |
| 1576 | |
| 1577 | if (sslmem <= 0 || global.maxsslconn < sides) { |
| 1578 | Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too " |
| 1579 | "high for the global.memmax value (%d MB). The absolute maximum possible value " |
| 1580 | "without SSL is %d, but %d was found and SSL is in use.\n", |
| 1581 | global.rlimit_memmax, |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1582 | (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)), |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1583 | global.maxconn); |
| 1584 | exit(1); |
| 1585 | } |
| 1586 | |
| 1587 | if (global.maxsslconn > sides * global.maxconn) |
| 1588 | global.maxsslconn = sides * global.maxconn; |
| 1589 | |
| 1590 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 1591 | fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn); |
| 1592 | } |
| 1593 | #endif |
| 1594 | else if (!global.maxconn) { |
| 1595 | /* memmax and maxsslconn are known/unused, compute maxconn automatically */ |
| 1596 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 1597 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
| 1598 | int64_t clearmem; |
| 1599 | |
| 1600 | if (global.ssl_used_frontend || global.ssl_used_backend) |
| 1601 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 1602 | |
| 1603 | mem -= global.maxzlibmem; |
| 1604 | mem = mem * MEM_USABLE_RATIO; |
| 1605 | |
| 1606 | clearmem = mem; |
| 1607 | if (sides) |
| 1608 | clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn; |
| 1609 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1610 | global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize); |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1611 | global.maxconn = round_2dig(global.maxconn); |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 1612 | #ifdef SYSTEM_MAXCONN |
| 1613 | if (global.maxconn > DEFAULT_MAXCONN) |
| 1614 | global.maxconn = DEFAULT_MAXCONN; |
| 1615 | #endif /* SYSTEM_MAXCONN */ |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 1616 | |
| 1617 | if (clearmem <= 0 || !global.maxconn) { |
| 1618 | Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too " |
| 1619 | "high for the global.memmax value (%d MB). The absolute maximum possible value " |
| 1620 | "is %d, but %d was found.\n", |
| 1621 | global.rlimit_memmax, |
| 1622 | (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)), |
| 1623 | global.maxsslconn); |
| 1624 | exit(1); |
| 1625 | } |
| 1626 | |
| 1627 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
| 1628 | if (sides && global.maxsslconn > sides * global.maxconn) { |
| 1629 | fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn " |
| 1630 | "to be limited to %d. Better reduce global.maxsslconn to get more " |
| 1631 | "room for extra connections.\n", global.maxsslconn, global.maxconn); |
| 1632 | } |
| 1633 | fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn); |
| 1634 | } |
| 1635 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1636 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 1637 | if (!global.maxpipes) { |
| 1638 | /* maxpipes not specified. Count how many frontends and backends |
| 1639 | * may be using splicing, and bound that to maxconn. |
| 1640 | */ |
| 1641 | struct proxy *cur; |
| 1642 | int nbfe = 0, nbbe = 0; |
| 1643 | |
| 1644 | for (cur = proxy; cur; cur = cur->next) { |
| 1645 | if (cur->options2 & (PR_O2_SPLIC_ANY)) { |
| 1646 | if (cur->cap & PR_CAP_FE) |
| 1647 | nbfe += cur->maxconn; |
| 1648 | if (cur->cap & PR_CAP_BE) |
Willy Tarreau | afb4876 | 2009-01-25 10:42:05 +0100 | [diff] [blame] | 1649 | nbbe += cur->fullconn ? cur->fullconn : global.maxconn; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 1650 | } |
| 1651 | } |
| 1652 | global.maxpipes = MAX(nbfe, nbbe); |
| 1653 | if (global.maxpipes > global.maxconn) |
| 1654 | global.maxpipes = global.maxconn; |
Willy Tarreau | 686ac82 | 2009-01-25 14:06:58 +0100 | [diff] [blame] | 1655 | global.maxpipes /= 4; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 1656 | } |
| 1657 | |
| 1658 | |
Willy Tarreau | abacc2c | 2011-09-07 14:26:33 +0200 | [diff] [blame] | 1659 | global.hardmaxconn = global.maxconn; /* keep this max value */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1660 | global.maxsock += global.maxconn * 2; /* each connection needs two sockets */ |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1661 | global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1662 | |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 1663 | if (global.stats_fe) |
| 1664 | global.maxsock += global.stats_fe->maxconn; |
| 1665 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1666 | if (cfg_peers) { |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 1667 | /* peers also need to bypass global maxconn */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1668 | struct peers *p = cfg_peers; |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 1669 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1670 | for (p = cfg_peers; p; p = p->next) |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 1671 | if (p->peers_fe) |
| 1672 | global.maxsock += p->peers_fe->maxconn; |
| 1673 | } |
| 1674 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 1675 | if (global.tune.maxpollevents <= 0) |
| 1676 | global.tune.maxpollevents = MAX_POLL_EVENTS; |
| 1677 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 1678 | if (global.tune.recv_enough == 0) |
| 1679 | global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH; |
| 1680 | |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 1681 | if (global.tune.maxrewrite < 0) |
| 1682 | global.tune.maxrewrite = MAXREWRITE; |
| 1683 | |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 1684 | if (global.tune.maxrewrite >= global.tune.bufsize / 2) |
| 1685 | global.tune.maxrewrite = global.tune.bufsize / 2; |
| 1686 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1687 | if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) { |
| 1688 | /* command line debug mode inhibits configuration mode */ |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1689 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 1690 | global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)); |
| 1691 | } |
| 1692 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1693 | if (arg_mode & MODE_DAEMON) { |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 1694 | /* command line daemon mode inhibits foreground and debug modes mode */ |
| 1695 | global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1696 | global.mode |= arg_mode & MODE_DAEMON; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1697 | } |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 1698 | |
| 1699 | global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1700 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1701 | if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) { |
| 1702 | Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n"); |
| 1703 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1704 | } |
| 1705 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1706 | if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1707 | if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG))) |
| 1708 | Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n"); |
| 1709 | global.nbproc = 1; |
| 1710 | } |
| 1711 | |
| 1712 | if (global.nbproc < 1) |
| 1713 | global.nbproc = 1; |
| 1714 | |
Christopher Faulet | 3ef2639 | 2017-08-29 16:46:57 +0200 | [diff] [blame] | 1715 | /* Realloc trash buffers because global.tune.bufsize may have changed */ |
| 1716 | if (!init_trash_buffers()) { |
| 1717 | Alert("failed to initialize trash buffers.\n"); |
| 1718 | exit(1); |
| 1719 | } |
| 1720 | |
Christopher Faulet | 084aa96 | 2017-08-29 16:54:41 +0200 | [diff] [blame^] | 1721 | if (!init_log_buffers()) { |
| 1722 | Alert("failed to initialize log buffers.\n"); |
| 1723 | exit(1); |
| 1724 | } |
| 1725 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1726 | swap_buffer = calloc(1, global.tune.bufsize); |
| 1727 | get_http_auth_buff = calloc(1, global.tune.bufsize); |
Thierry FOURNIER | 7e25df3 | 2015-07-24 19:31:59 +0200 | [diff] [blame] | 1728 | static_table_key = calloc(1, sizeof(*static_table_key)); |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 1729 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1730 | fdinfo = calloc(1, sizeof(struct fdinfo) * (global.maxsock)); |
| 1731 | fdtab = calloc(1, sizeof(struct fdtab) * (global.maxsock)); |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 1732 | /* |
| 1733 | * Note: we could register external pollers here. |
| 1734 | * Built-in pollers have been registered before main(). |
| 1735 | */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1736 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1737 | if (!(global.tune.options & GTUNE_USE_KQUEUE)) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1738 | disable_poller("kqueue"); |
| 1739 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1740 | if (!(global.tune.options & GTUNE_USE_EPOLL)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1741 | disable_poller("epoll"); |
| 1742 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1743 | if (!(global.tune.options & GTUNE_USE_POLL)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1744 | disable_poller("poll"); |
| 1745 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1746 | if (!(global.tune.options & GTUNE_USE_SELECT)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1747 | disable_poller("select"); |
| 1748 | |
| 1749 | /* Note: we could disable any poller by name here */ |
| 1750 | |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 1751 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1752 | list_pollers(stderr); |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 1753 | fprintf(stderr, "\n"); |
| 1754 | list_filters(stderr); |
| 1755 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1756 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1757 | if (!init_pollers()) { |
Willy Tarreau | 3fa87b1 | 2013-03-31 14:41:15 +0200 | [diff] [blame] | 1758 | Alert("No polling mechanism available.\n" |
| 1759 | " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n" |
| 1760 | " is too low on this platform to support maxconn and the number of listeners\n" |
| 1761 | " and servers. You should rebuild haproxy specifying your system using TARGET=\n" |
| 1762 | " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n" |
Prach Pongpanich | b837e68 | 2013-05-14 20:56:28 +0200 | [diff] [blame] | 1763 | " global maxconn setting to accommodate the system's limitation. For reference,\n" |
Willy Tarreau | 3fa87b1 | 2013-03-31 14:41:15 +0200 | [diff] [blame] | 1764 | " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n" |
| 1765 | " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n" |
| 1766 | " check build settings using 'haproxy -vv'.\n\n", |
| 1767 | FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1768 | exit(1); |
| 1769 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1770 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
| 1771 | printf("Using %s() as the polling mechanism.\n", cur_poller.name); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1772 | } |
| 1773 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1774 | if (!global.node) |
| 1775 | global.node = strdup(hostname); |
| 1776 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 1777 | if (!hlua_post_init()) |
| 1778 | exit(1); |
Thomas Holmes | 6abded4 | 2015-05-12 16:23:58 +0100 | [diff] [blame] | 1779 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 1780 | /* initialize structures for name resolution */ |
Baptiste Assmann | 5cd1b92 | 2017-02-02 22:44:15 +0100 | [diff] [blame] | 1781 | if (!dns_init_resolvers(0)) |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 1782 | exit(1); |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1783 | |
| 1784 | free(err_msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1785 | } |
| 1786 | |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1787 | static void deinit_acl_cond(struct acl_cond *cond) |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1788 | { |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1789 | struct acl_term_suite *suite, *suiteb; |
| 1790 | struct acl_term *term, *termb; |
| 1791 | |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1792 | if (!cond) |
| 1793 | return; |
| 1794 | |
| 1795 | list_for_each_entry_safe(suite, suiteb, &cond->suites, list) { |
| 1796 | list_for_each_entry_safe(term, termb, &suite->terms, list) { |
| 1797 | LIST_DEL(&term->list); |
| 1798 | free(term); |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1799 | } |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1800 | LIST_DEL(&suite->list); |
| 1801 | free(suite); |
| 1802 | } |
| 1803 | |
| 1804 | free(cond); |
| 1805 | } |
| 1806 | |
| 1807 | static void deinit_tcp_rules(struct list *rules) |
| 1808 | { |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 1809 | struct act_rule *trule, *truleb; |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1810 | |
| 1811 | list_for_each_entry_safe(trule, truleb, rules, list) { |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1812 | LIST_DEL(&trule->list); |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1813 | deinit_acl_cond(trule->cond); |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1814 | free(trule); |
| 1815 | } |
| 1816 | } |
| 1817 | |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1818 | static void deinit_stick_rules(struct list *rules) |
| 1819 | { |
| 1820 | struct sticking_rule *rule, *ruleb; |
| 1821 | |
| 1822 | list_for_each_entry_safe(rule, ruleb, rules, list) { |
| 1823 | LIST_DEL(&rule->list); |
| 1824 | deinit_acl_cond(rule->cond); |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1825 | release_sample_expr(rule->expr); |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1826 | free(rule); |
| 1827 | } |
| 1828 | } |
| 1829 | |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1830 | void deinit(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1831 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 1832 | struct proxy *p = proxy, *p0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1833 | struct cap_hdr *h,*h_next; |
| 1834 | struct server *s,*s_next; |
| 1835 | struct listener *l,*l_next; |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1836 | struct acl_cond *cond, *condb; |
| 1837 | struct hdr_exp *exp, *expb; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 1838 | struct acl *acl, *aclb; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1839 | struct switching_rule *rule, *ruleb; |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 1840 | struct server_rule *srule, *sruleb; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 1841 | struct redirect_rule *rdr, *rdrb; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 1842 | struct wordlist *wl, *wlb; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 1843 | struct cond_wordlist *cwl, *cwlb; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1844 | struct uri_auth *uap, *ua = NULL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1845 | struct logsrv *log, *logb; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 1846 | struct logformat_node *lf, *lfb; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1847 | struct bind_conf *bind_conf, *bind_back; |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 1848 | struct build_opts_str *bol, *bolb; |
Willy Tarreau | 05554e6 | 2016-12-21 20:46:26 +0100 | [diff] [blame] | 1849 | struct post_deinit_fct *pdf; |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1850 | int i; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1851 | |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 1852 | deinit_signals(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1853 | while (p) { |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 1854 | free(p->conf.file); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1855 | free(p->id); |
| 1856 | free(p->check_req); |
| 1857 | free(p->cookie_name); |
| 1858 | free(p->cookie_domain); |
| 1859 | free(p->url_param_name); |
| 1860 | free(p->capture_name); |
| 1861 | free(p->monitor_uri); |
Simon Horman | a31c7f7 | 2011-07-15 13:14:08 +0900 | [diff] [blame] | 1862 | free(p->rdp_cookie_name); |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 1863 | if (p->conf.logformat_string != default_http_log_format && |
| 1864 | p->conf.logformat_string != default_tcp_log_format && |
| 1865 | p->conf.logformat_string != clf_http_log_format) |
| 1866 | free(p->conf.logformat_string); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 1867 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 1868 | free(p->conf.lfs_file); |
| 1869 | free(p->conf.uniqueid_format_string); |
| 1870 | free(p->conf.uif_file); |
Godbach | af1a75d | 2013-10-02 17:10:11 +0800 | [diff] [blame] | 1871 | free(p->lbprm.map.srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1872 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 1873 | if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 1874 | free(p->conf.logformat_sd_string); |
| 1875 | free(p->conf.lfsd_file); |
| 1876 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1877 | for (i = 0; i < HTTP_ERR_SIZE; i++) |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 1878 | chunk_destroy(&p->errmsg[i]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1879 | |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 1880 | list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) { |
| 1881 | LIST_DEL(&cwl->list); |
| 1882 | free(cwl->s); |
| 1883 | free(cwl); |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 1884 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1885 | |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 1886 | list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) { |
| 1887 | LIST_DEL(&cwl->list); |
| 1888 | free(cwl->s); |
| 1889 | free(cwl); |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 1890 | } |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1891 | |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 1892 | list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) { |
| 1893 | LIST_DEL(&cond->list); |
| 1894 | prune_acl_cond(cond); |
| 1895 | free(cond); |
| 1896 | } |
| 1897 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1898 | for (exp = p->req_exp; exp != NULL; ) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1899 | if (exp->preg) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1900 | regex_free(exp->preg); |
| 1901 | free(exp->preg); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1902 | } |
| 1903 | |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 1904 | free((char *)exp->replace); |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1905 | expb = exp; |
| 1906 | exp = exp->next; |
| 1907 | free(expb); |
| 1908 | } |
| 1909 | |
| 1910 | for (exp = p->rsp_exp; exp != NULL; ) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1911 | if (exp->preg) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1912 | regex_free(exp->preg); |
| 1913 | free(exp->preg); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1914 | } |
| 1915 | |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 1916 | free((char *)exp->replace); |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1917 | expb = exp; |
| 1918 | exp = exp->next; |
| 1919 | free(expb); |
| 1920 | } |
| 1921 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1922 | /* build a list of unique uri_auths */ |
| 1923 | if (!ua) |
| 1924 | ua = p->uri_auth; |
| 1925 | else { |
| 1926 | /* check if p->uri_auth is unique */ |
| 1927 | for (uap = ua; uap; uap=uap->next) |
| 1928 | if (uap == p->uri_auth) |
| 1929 | break; |
| 1930 | |
Willy Tarreau | accc4e1 | 2008-06-24 11:14:45 +0200 | [diff] [blame] | 1931 | if (!uap && p->uri_auth) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1932 | /* add it, if it is */ |
| 1933 | p->uri_auth->next = ua; |
| 1934 | ua = p->uri_auth; |
| 1935 | } |
| 1936 | } |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 1937 | |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 1938 | list_for_each_entry_safe(acl, aclb, &p->acl, list) { |
| 1939 | LIST_DEL(&acl->list); |
| 1940 | prune_acl(acl); |
| 1941 | free(acl); |
| 1942 | } |
| 1943 | |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 1944 | list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) { |
| 1945 | LIST_DEL(&srule->list); |
| 1946 | prune_acl_cond(srule->cond); |
| 1947 | free(srule->cond); |
| 1948 | free(srule); |
| 1949 | } |
| 1950 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1951 | list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) { |
| 1952 | LIST_DEL(&rule->list); |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 1953 | if (rule->cond) { |
| 1954 | prune_acl_cond(rule->cond); |
| 1955 | free(rule->cond); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 1956 | free(rule->file); |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 1957 | } |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 1958 | free(rule); |
| 1959 | } |
| 1960 | |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 1961 | list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) { |
| 1962 | LIST_DEL(&rdr->list); |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 1963 | if (rdr->cond) { |
| 1964 | prune_acl_cond(rdr->cond); |
| 1965 | free(rdr->cond); |
| 1966 | } |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 1967 | free(rdr->rdr_str); |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 1968 | list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) { |
| 1969 | LIST_DEL(&lf->list); |
| 1970 | free(lf); |
| 1971 | } |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 1972 | free(rdr); |
| 1973 | } |
| 1974 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1975 | list_for_each_entry_safe(log, logb, &p->logsrvs, list) { |
| 1976 | LIST_DEL(&log->list); |
| 1977 | free(log); |
| 1978 | } |
| 1979 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 1980 | list_for_each_entry_safe(lf, lfb, &p->logformat, list) { |
| 1981 | LIST_DEL(&lf->list); |
| 1982 | free(lf); |
| 1983 | } |
| 1984 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 1985 | list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) { |
| 1986 | LIST_DEL(&lf->list); |
| 1987 | free(lf); |
| 1988 | } |
| 1989 | |
Simon Horman | ac82142 | 2011-07-15 13:14:09 +0900 | [diff] [blame] | 1990 | deinit_tcp_rules(&p->tcp_req.inspect_rules); |
| 1991 | deinit_tcp_rules(&p->tcp_req.l4_rules); |
| 1992 | |
Simon Horman | 6fb8259 | 2011-07-15 13:14:11 +0900 | [diff] [blame] | 1993 | deinit_stick_rules(&p->storersp_rules); |
| 1994 | deinit_stick_rules(&p->sticking_rules); |
| 1995 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1996 | h = p->req_cap; |
| 1997 | while (h) { |
| 1998 | h_next = h->next; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1999 | free(h->name); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 2000 | pool_destroy2(h->pool); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2001 | free(h); |
| 2002 | h = h_next; |
| 2003 | }/* end while(h) */ |
| 2004 | |
| 2005 | h = p->rsp_cap; |
| 2006 | while (h) { |
| 2007 | h_next = h->next; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2008 | free(h->name); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 2009 | pool_destroy2(h->pool); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2010 | free(h); |
| 2011 | h = h_next; |
| 2012 | }/* end while(h) */ |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2013 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2014 | s = p->srv; |
| 2015 | while (s) { |
| 2016 | s_next = s->next; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2017 | |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 2018 | if (s->check.task) { |
| 2019 | task_delete(s->check.task); |
| 2020 | task_free(s->check.task); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2021 | } |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2022 | if (s->agent.task) { |
| 2023 | task_delete(s->agent.task); |
| 2024 | task_free(s->agent.task); |
| 2025 | } |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2026 | |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 2027 | if (s->warmup) { |
| 2028 | task_delete(s->warmup); |
| 2029 | task_free(s->warmup); |
| 2030 | } |
| 2031 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2032 | free(s->id); |
| 2033 | free(s->cookie); |
Willy Tarreau | 1ae1b7b | 2012-09-28 15:28:30 +0200 | [diff] [blame] | 2034 | free(s->check.bi); |
| 2035 | free(s->check.bo); |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2036 | free(s->agent.bi); |
| 2037 | free(s->agent.bo); |
James Brown | 55f9ff1 | 2015-10-21 18:19:05 -0700 | [diff] [blame] | 2038 | free(s->agent.send_string); |
Sárközi, László | 34c0179 | 2014-09-05 10:08:23 +0200 | [diff] [blame] | 2039 | free((char*)s->conf.file); |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 2040 | |
| 2041 | if (s->use_ssl || s->check.use_ssl) { |
| 2042 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv) |
| 2043 | xprt_get(XPRT_SSL)->destroy_srv(s); |
| 2044 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2045 | free(s); |
| 2046 | s = s_next; |
| 2047 | }/* end while(s) */ |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2048 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2049 | list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 2050 | /* |
| 2051 | * Zombie proxy, the listener just pretend to be up |
| 2052 | * because they still hold an opened fd. |
| 2053 | * Close it and give the listener its real state. |
| 2054 | */ |
| 2055 | if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) { |
| 2056 | close(l->fd); |
| 2057 | l->state = LI_INIT; |
| 2058 | } |
Willy Tarreau | f6e2cc7 | 2010-09-03 10:38:17 +0200 | [diff] [blame] | 2059 | unbind_listener(l); |
| 2060 | delete_listener(l); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2061 | LIST_DEL(&l->by_fe); |
| 2062 | LIST_DEL(&l->by_bind); |
Krzysztof Piotr Oledzki | aff01ea | 2010-02-05 20:31:44 +0100 | [diff] [blame] | 2063 | free(l->name); |
| 2064 | free(l->counters); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2065 | free(l); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2066 | } |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2067 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2068 | /* Release unused SSL configs. */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2069 | list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 2070 | if (bind_conf->xprt->destroy_bind_conf) |
| 2071 | bind_conf->xprt->destroy_bind_conf(bind_conf); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2072 | free(bind_conf->file); |
| 2073 | free(bind_conf->arg); |
| 2074 | LIST_DEL(&bind_conf->by_fe); |
| 2075 | free(bind_conf); |
| 2076 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 2077 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 2078 | flt_deinit(p); |
| 2079 | |
Krzysztof Piotr Oledzki | aff01ea | 2010-02-05 20:31:44 +0100 | [diff] [blame] | 2080 | free(p->desc); |
| 2081 | free(p->fwdfor_hdr_name); |
| 2082 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2083 | free_http_req_rules(&p->http_req_rules); |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 2084 | free_http_res_rules(&p->http_res_rules); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 2085 | free(p->task); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 2086 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 2087 | pool_destroy2(p->req_cap_pool); |
| 2088 | pool_destroy2(p->rsp_cap_pool); |
Simon Horman | b08584a | 2011-07-15 13:14:10 +0900 | [diff] [blame] | 2089 | pool_destroy2(p->table.pool); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 2090 | |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 2091 | p0 = p; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2092 | p = p->next; |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 2093 | free(p0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2094 | }/* end while(p) */ |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2095 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2096 | while (ua) { |
| 2097 | uap = ua; |
| 2098 | ua = ua->next; |
| 2099 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2100 | free(uap->uri_prefix); |
| 2101 | free(uap->auth_realm); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 2102 | free(uap->node); |
| 2103 | free(uap->desc); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2104 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 2105 | userlist_free(uap->userlist); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 2106 | free_http_req_rules(&uap->http_req_rules); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 2107 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2108 | free(uap); |
| 2109 | } |
| 2110 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 2111 | userlist_free(userlist); |
| 2112 | |
David Carlier | 834cb2e | 2015-09-25 12:02:25 +0100 | [diff] [blame] | 2113 | cfg_unregister_sections(); |
| 2114 | |
Christopher Faulet | 0132d06 | 2017-07-26 15:33:35 +0200 | [diff] [blame] | 2115 | deinit_log_buffers(); |
Christopher Faulet | 748919a | 2017-07-26 14:59:46 +0200 | [diff] [blame] | 2116 | deinit_trash_buffers(); |
David Carlier | 834cb2e | 2015-09-25 12:02:25 +0100 | [diff] [blame] | 2117 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2118 | protocol_unbind_all(); |
| 2119 | |
Willy Tarreau | 05554e6 | 2016-12-21 20:46:26 +0100 | [diff] [blame] | 2120 | list_for_each_entry(pdf, &post_deinit_list, list) |
| 2121 | pdf->fct(); |
| 2122 | |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 2123 | free(global.log_send_hostname); global.log_send_hostname = NULL; |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2124 | chunk_destroy(&global.log_tag); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2125 | free(global.chroot); global.chroot = NULL; |
| 2126 | free(global.pidfile); global.pidfile = NULL; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 2127 | free(global.node); global.node = NULL; |
| 2128 | free(global.desc); global.desc = NULL; |
Godbach | 4cc1b0d | 2013-06-26 16:49:51 +0800 | [diff] [blame] | 2129 | free(fdinfo); fdinfo = NULL; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2130 | free(fdtab); fdtab = NULL; |
| 2131 | free(oldpids); oldpids = NULL; |
David Carlier | 834cb2e | 2015-09-25 12:02:25 +0100 | [diff] [blame] | 2132 | free(static_table_key); static_table_key = NULL; |
| 2133 | free(get_http_auth_buff); get_http_auth_buff = NULL; |
| 2134 | free(swap_buffer); swap_buffer = NULL; |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 2135 | free(global_listener_queue_task); global_listener_queue_task = NULL; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2136 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2137 | list_for_each_entry_safe(log, logb, &global.logsrvs, list) { |
| 2138 | LIST_DEL(&log->list); |
| 2139 | free(log); |
| 2140 | } |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 2141 | list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) { |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 2142 | free(wl->s); |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 2143 | LIST_DEL(&wl->list); |
| 2144 | free(wl); |
| 2145 | } |
| 2146 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 2147 | list_for_each_entry_safe(bol, bolb, &build_opts_list, list) { |
| 2148 | if (bol->must_free) |
| 2149 | free((void *)bol->str); |
| 2150 | LIST_DEL(&bol->list); |
| 2151 | free(bol); |
| 2152 | } |
| 2153 | |
Christopher Faulet | ff2613e | 2016-11-09 11:36:17 +0100 | [diff] [blame] | 2154 | vars_prune(&global.vars, NULL, NULL); |
| 2155 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2156 | pool_destroy2(pool2_stream); |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 2157 | pool_destroy2(pool2_session); |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2158 | pool_destroy2(pool2_connection); |
Willy Tarreau | b686afd | 2017-02-08 11:06:11 +0100 | [diff] [blame] | 2159 | pool_destroy2(pool2_trash); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2160 | pool_destroy2(pool2_buffer); |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 2161 | pool_destroy2(pool2_requri); |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 2162 | pool_destroy2(pool2_task); |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 2163 | pool_destroy2(pool2_capture); |
Willy Tarreau | e4d7e55 | 2007-05-13 20:19:55 +0200 | [diff] [blame] | 2164 | pool_destroy2(pool2_pendconn); |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2165 | pool_destroy2(pool2_sig_handlers); |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 2166 | pool_destroy2(pool2_hdr_idx); |
Willy Tarreau | 63986c7 | 2015-04-03 22:55:33 +0200 | [diff] [blame] | 2167 | pool_destroy2(pool2_http_txn); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2168 | deinit_pollers(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2169 | } /* end deinit() */ |
| 2170 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2171 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 2172 | /* Runs the polling loop */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 2173 | static void run_poll_loop() |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2174 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 2175 | int next; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2176 | |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 2177 | tv_update_date(0,1); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2178 | while (1) { |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 2179 | /* Process a few tasks */ |
| 2180 | process_runnable_tasks(); |
| 2181 | |
Willy Tarreau | 2985794 | 2009-05-10 09:01:21 +0200 | [diff] [blame] | 2182 | /* check if we caught some signals and process them */ |
| 2183 | signal_process_queue(); |
| 2184 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 2185 | /* Check if we can expire some tasks */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 2186 | next = wake_expired_tasks(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2187 | |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 2188 | /* stop when there's nothing left to do */ |
| 2189 | if (jobs == 0) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2190 | break; |
| 2191 | |
Willy Tarreau | 10146c9 | 2015-04-13 20:44:19 +0200 | [diff] [blame] | 2192 | /* expire immediately if events are pending */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 2193 | if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue) |
Willy Tarreau | 10146c9 | 2015-04-13 20:44:19 +0200 | [diff] [blame] | 2194 | next = now_ms; |
| 2195 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 2196 | /* The poller will ensure it returns around <next> */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 2197 | cur_poller.poll(&cur_poller, next); |
Willy Tarreau | 033cd9d | 2014-01-25 19:24:15 +0100 | [diff] [blame] | 2198 | fd_process_cached_events(); |
Willy Tarreau | 3c595ac | 2015-04-19 09:59:31 +0200 | [diff] [blame] | 2199 | applet_run_active(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2200 | } |
| 2201 | } |
| 2202 | |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 2203 | /* This is the global management task for listeners. It enables listeners waiting |
| 2204 | * for global resources when there are enough free resource, or at least once in |
| 2205 | * a while. It is designed to be called as a task. |
| 2206 | */ |
| 2207 | static struct task *manage_global_listener_queue(struct task *t) |
| 2208 | { |
| 2209 | int next = TICK_ETERNITY; |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 2210 | /* queue is empty, nothing to do */ |
| 2211 | if (LIST_ISEMPTY(&global_listener_queue)) |
| 2212 | goto out; |
| 2213 | |
| 2214 | /* If there are still too many concurrent connections, let's wait for |
| 2215 | * some of them to go away. We don't need to re-arm the timer because |
| 2216 | * each of them will scan the queue anyway. |
| 2217 | */ |
| 2218 | if (unlikely(actconn >= global.maxconn)) |
| 2219 | goto out; |
| 2220 | |
| 2221 | /* We should periodically try to enable listeners waiting for a global |
| 2222 | * resource here, because it is possible, though very unlikely, that |
| 2223 | * they have been blocked by a temporary lack of global resource such |
| 2224 | * as a file descriptor or memory and that the temporary condition has |
| 2225 | * disappeared. |
| 2226 | */ |
Willy Tarreau | abacc2c | 2011-09-07 14:26:33 +0200 | [diff] [blame] | 2227 | dequeue_all_listeners(&global_listener_queue); |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 2228 | |
| 2229 | out: |
| 2230 | t->expire = next; |
| 2231 | task_queue(t); |
| 2232 | return t; |
| 2233 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2234 | |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 2235 | void mworker_pipe_handler(int fd) |
| 2236 | { |
| 2237 | char c; |
| 2238 | |
| 2239 | while (read(fd, &c, 1) == -1) { |
| 2240 | if (errno == EINTR) |
| 2241 | continue; |
| 2242 | if (errno == EAGAIN) { |
| 2243 | fd_cant_recv(fd); |
| 2244 | return; |
| 2245 | } |
| 2246 | break; |
| 2247 | } |
| 2248 | |
| 2249 | deinit(); |
| 2250 | exit(EXIT_FAILURE); |
| 2251 | return; |
| 2252 | } |
| 2253 | |
| 2254 | void mworker_pipe_register(int pipefd[2]) |
| 2255 | { |
| 2256 | close(mworker_pipe[1]); /* close the write end of the master pipe in the children */ |
| 2257 | |
| 2258 | fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK); |
| 2259 | fdtab[mworker_pipe[0]].owner = mworker_pipe; |
| 2260 | fdtab[mworker_pipe[0]].iocb = mworker_pipe_handler; |
| 2261 | fd_insert(mworker_pipe[0]); |
| 2262 | fd_want_recv(mworker_pipe[0]); |
| 2263 | } |
| 2264 | |
| 2265 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2266 | int main(int argc, char **argv) |
| 2267 | { |
| 2268 | int err, retry; |
| 2269 | struct rlimit limit; |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 2270 | char errmsg[100]; |
Willy Tarreau | 269ab31 | 2012-09-05 08:02:48 +0200 | [diff] [blame] | 2271 | int pidfd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2272 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 2273 | init(argc, argv); |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2274 | signal_register_fct(SIGQUIT, dump, SIGQUIT); |
| 2275 | signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1); |
| 2276 | signal_register_fct(SIGHUP, sig_dump_state, SIGHUP); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 2277 | signal_register_fct(SIGUSR2, NULL, 0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2278 | |
Willy Tarreau | e437c44 | 2010-03-17 18:02:46 +0100 | [diff] [blame] | 2279 | /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL. |
| 2280 | * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL |
| 2281 | * was defined there, so let's stay on the safe side. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2282 | */ |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2283 | signal_register_fct(SIGPIPE, NULL, 0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2284 | |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2285 | /* ulimits */ |
| 2286 | if (!global.rlimit_nofile) |
| 2287 | global.rlimit_nofile = global.maxsock; |
| 2288 | |
| 2289 | if (global.rlimit_nofile) { |
| 2290 | limit.rlim_cur = limit.rlim_max = global.rlimit_nofile; |
| 2291 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { |
Willy Tarreau | ef63547 | 2016-06-21 11:48:18 +0200 | [diff] [blame] | 2292 | /* try to set it to the max possible at least */ |
| 2293 | getrlimit(RLIMIT_NOFILE, &limit); |
Willy Tarreau | 164dd0b | 2016-06-21 11:51:59 +0200 | [diff] [blame] | 2294 | limit.rlim_cur = limit.rlim_max; |
| 2295 | if (setrlimit(RLIMIT_NOFILE, &limit) != -1) |
| 2296 | getrlimit(RLIMIT_NOFILE, &limit); |
| 2297 | |
Willy Tarreau | ef63547 | 2016-06-21 11:48:18 +0200 | [diff] [blame] | 2298 | Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur); |
| 2299 | global.rlimit_nofile = limit.rlim_cur; |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2300 | } |
| 2301 | } |
| 2302 | |
| 2303 | if (global.rlimit_memmax) { |
| 2304 | limit.rlim_cur = limit.rlim_max = |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 2305 | global.rlimit_memmax * 1048576ULL; |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2306 | #ifdef RLIMIT_AS |
| 2307 | if (setrlimit(RLIMIT_AS, &limit) == -1) { |
| 2308 | Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 2309 | argv[0], global.rlimit_memmax); |
| 2310 | } |
| 2311 | #else |
| 2312 | if (setrlimit(RLIMIT_DATA, &limit) == -1) { |
| 2313 | Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 2314 | argv[0], global.rlimit_memmax); |
| 2315 | } |
| 2316 | #endif |
| 2317 | } |
| 2318 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 2319 | if (old_unixsocket) { |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 2320 | if (strcmp("/dev/null", old_unixsocket) != 0) { |
| 2321 | if (get_old_sockets(old_unixsocket) != 0) { |
| 2322 | Alert("Failed to get the sockets from the old process!\n"); |
| 2323 | if (!(global.mode & MODE_MWORKER)) |
| 2324 | exit(1); |
| 2325 | } |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 2326 | } |
| 2327 | } |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 2328 | get_cur_unixsocket(); |
| 2329 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2330 | /* We will loop at most 100 times with 10 ms delay each time. |
| 2331 | * That's at most 1 second. We only send a signal to old pids |
| 2332 | * if we cannot grab at least one port. |
| 2333 | */ |
| 2334 | retry = MAX_START_RETRIES; |
| 2335 | err = ERR_NONE; |
| 2336 | while (retry >= 0) { |
| 2337 | struct timeval w; |
| 2338 | err = start_proxies(retry == 0 || nb_oldpids == 0); |
Willy Tarreau | e13e925 | 2007-12-20 23:05:50 +0100 | [diff] [blame] | 2339 | /* exit the loop on no error or fatal error */ |
| 2340 | if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2341 | break; |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 2342 | if (nb_oldpids == 0 || retry == 0) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2343 | break; |
| 2344 | |
| 2345 | /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on |
| 2346 | * listening sockets. So on those platforms, it would be wiser to |
| 2347 | * simply send SIGUSR1, which will not be undoable. |
| 2348 | */ |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 2349 | if (tell_old_pids(SIGTTOU) == 0) { |
| 2350 | /* no need to wait if we can't contact old pids */ |
| 2351 | retry = 0; |
| 2352 | continue; |
| 2353 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2354 | /* give some time to old processes to stop listening */ |
| 2355 | w.tv_sec = 0; |
| 2356 | w.tv_usec = 10*1000; |
| 2357 | select(0, NULL, NULL, NULL, &w); |
| 2358 | retry--; |
| 2359 | } |
| 2360 | |
| 2361 | /* Note: start_proxies() sends an alert when it fails. */ |
Willy Tarreau | 0a3b9d9 | 2009-02-04 17:05:23 +0100 | [diff] [blame] | 2362 | if ((err & ~ERR_WARN) != ERR_NONE) { |
Willy Tarreau | f68da46 | 2009-06-09 14:36:00 +0200 | [diff] [blame] | 2363 | if (retry != MAX_START_RETRIES && nb_oldpids) { |
| 2364 | protocol_unbind_all(); /* cleanup everything we can */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2365 | tell_old_pids(SIGTTIN); |
Willy Tarreau | f68da46 | 2009-06-09 14:36:00 +0200 | [diff] [blame] | 2366 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2367 | exit(1); |
| 2368 | } |
| 2369 | |
| 2370 | if (listeners == 0) { |
Willy Tarreau | f2ee016 | 2015-08-09 11:01:51 +0200 | [diff] [blame] | 2371 | Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2372 | /* Note: we don't have to send anything to the old pids because we |
| 2373 | * never stopped them. */ |
| 2374 | exit(1); |
| 2375 | } |
| 2376 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 2377 | err = protocol_bind_all(errmsg, sizeof(errmsg)); |
| 2378 | if ((err & ~ERR_WARN) != ERR_NONE) { |
| 2379 | if ((err & ERR_ALERT) || (err & ERR_WARN)) |
| 2380 | Alert("[%s.main()] %s.\n", argv[0], errmsg); |
| 2381 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2382 | Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]); |
| 2383 | protocol_unbind_all(); /* cleanup everything we can */ |
| 2384 | if (nb_oldpids) |
| 2385 | tell_old_pids(SIGTTIN); |
| 2386 | exit(1); |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 2387 | } else if (err & ERR_WARN) { |
| 2388 | Alert("[%s.main()] %s.\n", argv[0], errmsg); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2389 | } |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 2390 | /* Ok, all listener should now be bound, close any leftover sockets |
| 2391 | * the previous process gave us, we don't need them anymore |
| 2392 | */ |
| 2393 | while (xfer_sock_list != NULL) { |
| 2394 | struct xfer_sock_list *tmpxfer = xfer_sock_list->next; |
| 2395 | close(xfer_sock_list->fd); |
| 2396 | free(xfer_sock_list->iface); |
| 2397 | free(xfer_sock_list->namespace); |
| 2398 | free(xfer_sock_list); |
| 2399 | xfer_sock_list = tmpxfer; |
| 2400 | } |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2401 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2402 | /* prepare pause/play signals */ |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2403 | signal_register_fct(SIGTTOU, sig_pause, SIGTTOU); |
| 2404 | signal_register_fct(SIGTTIN, sig_listen, SIGTTIN); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2405 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2406 | /* MODE_QUIET can inhibit alerts and warnings below this line */ |
| 2407 | |
| 2408 | global.mode &= ~MODE_STARTING; |
| 2409 | if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) { |
| 2410 | /* detach from the tty */ |
| 2411 | fclose(stdin); fclose(stdout); fclose(stderr); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2412 | } |
| 2413 | |
| 2414 | /* open log & pid files before the chroot */ |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2415 | if (global.mode & MODE_DAEMON && global.pidfile != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2416 | unlink(global.pidfile); |
| 2417 | pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644); |
| 2418 | if (pidfd < 0) { |
| 2419 | Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile); |
| 2420 | if (nb_oldpids) |
| 2421 | tell_old_pids(SIGTTIN); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2422 | protocol_unbind_all(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2423 | exit(1); |
| 2424 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2425 | } |
| 2426 | |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 2427 | if ((global.last_checks & LSTCHK_NETADM) && global.uid) { |
| 2428 | Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n" |
Willy Tarreau | 4e30ed7 | 2009-02-04 18:02:48 +0100 | [diff] [blame] | 2429 | "", argv[0]); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2430 | protocol_unbind_all(); |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 2431 | exit(1); |
| 2432 | } |
| 2433 | |
Willy Tarreau | 4e30ed7 | 2009-02-04 18:02:48 +0100 | [diff] [blame] | 2434 | /* If the user is not root, we'll still let him try the configuration |
| 2435 | * but we inform him that unexpected behaviour may occur. |
| 2436 | */ |
| 2437 | if ((global.last_checks & LSTCHK_NETADM) && getuid()) |
| 2438 | Warning("[%s.main()] Some options which require full privileges" |
| 2439 | " might not work well.\n" |
| 2440 | "", argv[0]); |
| 2441 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2442 | if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) { |
| 2443 | |
| 2444 | /* chroot if needed */ |
| 2445 | if (global.chroot != NULL) { |
| 2446 | if (chroot(global.chroot) == -1 || chdir("/") == -1) { |
| 2447 | Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot); |
| 2448 | if (nb_oldpids) |
| 2449 | tell_old_pids(SIGTTIN); |
| 2450 | protocol_unbind_all(); |
| 2451 | exit(1); |
| 2452 | } |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 2453 | } |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 2454 | } |
| 2455 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2456 | if (nb_oldpids) |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 2457 | nb_oldpids = tell_old_pids(oldpids_sig); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2458 | |
William Lallemand | 8a361b5 | 2017-06-20 11:20:33 +0200 | [diff] [blame] | 2459 | if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) { |
| 2460 | nb_oldpids = 0; |
| 2461 | free(oldpids); |
| 2462 | oldpids = NULL; |
| 2463 | } |
| 2464 | |
| 2465 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2466 | /* Note that any error at this stage will be fatal because we will not |
| 2467 | * be able to restart the old pids. |
| 2468 | */ |
| 2469 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2470 | if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) { |
| 2471 | /* setgid / setuid */ |
| 2472 | if (global.gid) { |
| 2473 | if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1) |
| 2474 | Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'" |
| 2475 | " without 'uid'/'user' is generally useless.\n", argv[0]); |
| 2476 | |
| 2477 | if (setgid(global.gid) == -1) { |
| 2478 | Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid); |
| 2479 | protocol_unbind_all(); |
| 2480 | exit(1); |
| 2481 | } |
| 2482 | } |
Michael Scherer | ab012dd | 2013-01-12 18:35:19 +0100 | [diff] [blame] | 2483 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2484 | if (global.uid && setuid(global.uid) == -1) { |
| 2485 | Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid); |
Michael Scherer | ab012dd | 2013-01-12 18:35:19 +0100 | [diff] [blame] | 2486 | protocol_unbind_all(); |
| 2487 | exit(1); |
| 2488 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2489 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2490 | /* check ulimits */ |
| 2491 | limit.rlim_cur = limit.rlim_max = 0; |
| 2492 | getrlimit(RLIMIT_NOFILE, &limit); |
| 2493 | if (limit.rlim_cur < global.maxsock) { |
| 2494 | 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 Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 2495 | argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2496 | } |
| 2497 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2498 | if (global.mode & (MODE_DAEMON | MODE_MWORKER)) { |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2499 | struct proxy *px; |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 2500 | struct peers *curpeers; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2501 | int ret = 0; |
| 2502 | int proc; |
| 2503 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 2504 | children = calloc(global.nbproc, sizeof(int)); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2505 | /* |
| 2506 | * if daemon + mworker: must fork here to let a master |
| 2507 | * process live in background before forking children |
| 2508 | */ |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 2509 | |
| 2510 | if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL) |
| 2511 | && (global.mode & MODE_MWORKER) |
| 2512 | && (global.mode & MODE_DAEMON)) { |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2513 | ret = fork(); |
| 2514 | if (ret < 0) { |
| 2515 | Alert("[%s.main()] Cannot fork.\n", argv[0]); |
| 2516 | protocol_unbind_all(); |
| 2517 | exit(1); /* there has been an error */ |
| 2518 | } |
| 2519 | /* parent leave to daemonize */ |
| 2520 | if (ret > 0) |
| 2521 | exit(0); |
| 2522 | } |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 2523 | |
| 2524 | if (global.mode & MODE_MWORKER) { |
| 2525 | if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) { |
| 2526 | char *msg = NULL; |
| 2527 | /* master pipe to ensure the master is still alive */ |
| 2528 | ret = pipe(mworker_pipe); |
| 2529 | if (ret < 0) { |
| 2530 | Warning("[%s.main()] Cannot create master pipe.\n", argv[0]); |
| 2531 | } else { |
| 2532 | memprintf(&msg, "%d", mworker_pipe[0]); |
| 2533 | setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1); |
| 2534 | memprintf(&msg, "%d", mworker_pipe[1]); |
| 2535 | setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1); |
| 2536 | free(msg); |
| 2537 | } |
| 2538 | } else { |
| 2539 | mworker_pipe[0] = atol(getenv("HAPROXY_MWORKER_PIPE_RD")); |
| 2540 | mworker_pipe[1] = atol(getenv("HAPROXY_MWORKER_PIPE_WR")); |
| 2541 | if (mworker_pipe[0] <= 0 || mworker_pipe[1] <= 0) { |
| 2542 | Warning("[%s.main()] Cannot get master pipe FDs.\n", argv[0]); |
| 2543 | } |
| 2544 | } |
| 2545 | } |
| 2546 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2547 | /* the father launches the required number of processes */ |
| 2548 | for (proc = 0; proc < global.nbproc; proc++) { |
| 2549 | ret = fork(); |
| 2550 | if (ret < 0) { |
| 2551 | Alert("[%s.main()] Cannot fork.\n", argv[0]); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2552 | protocol_unbind_all(); |
Willy Tarreau | d680371 | 2007-10-16 07:44:56 +0200 | [diff] [blame] | 2553 | exit(1); /* there has been an error */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2554 | } |
| 2555 | else if (ret == 0) /* child breaks here */ |
| 2556 | break; |
Marc-Antoine Perennou | 992709b | 2013-02-12 10:53:52 +0100 | [diff] [blame] | 2557 | children[proc] = ret; |
Willy Tarreau | 269ab31 | 2012-09-05 08:02:48 +0200 | [diff] [blame] | 2558 | if (pidfd >= 0) { |
| 2559 | char pidstr[100]; |
| 2560 | snprintf(pidstr, sizeof(pidstr), "%d\n", ret); |
Willy Tarreau | 89efaed | 2013-12-13 15:14:55 +0100 | [diff] [blame] | 2561 | shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr))); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2562 | } |
Willy Tarreau | dcd4771 | 2007-11-04 23:35:08 +0100 | [diff] [blame] | 2563 | relative_pid++; /* each child will get a different one */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2564 | } |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 2565 | |
| 2566 | #ifdef USE_CPU_AFFINITY |
| 2567 | if (proc < global.nbproc && /* child */ |
Willy Tarreau | e759749 | 2015-04-20 11:36:57 +0200 | [diff] [blame] | 2568 | proc < LONGBITS && /* only the first 32/64 processes may be pinned */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 2569 | global.cpu_map[proc]) /* only do this if the process has a CPU map */ |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 2570 | #ifdef __FreeBSD__ |
Olivier Houchard | 97148f6 | 2017-08-16 17:29:11 +0200 | [diff] [blame] | 2571 | { |
| 2572 | cpuset_t cpuset; |
| 2573 | int i; |
| 2574 | unsigned long cpu_map = global.cpu_map[proc]; |
| 2575 | |
| 2576 | CPU_ZERO(&cpuset); |
| 2577 | while ((i = ffsl(cpu_map)) > 0) { |
| 2578 | CPU_SET(i - 1, &cpuset); |
| 2579 | cpu_map &= ~(1 << (i - 1)); |
| 2580 | } |
| 2581 | ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset); |
| 2582 | } |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 2583 | #else |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 2584 | sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]); |
| 2585 | #endif |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 2586 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2587 | /* close the pidfile both in children and father */ |
Willy Tarreau | 269ab31 | 2012-09-05 08:02:48 +0200 | [diff] [blame] | 2588 | if (pidfd >= 0) { |
| 2589 | //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */ |
| 2590 | close(pidfd); |
| 2591 | } |
Willy Tarreau | d137dd3 | 2010-08-25 12:49:05 +0200 | [diff] [blame] | 2592 | |
| 2593 | /* We won't ever use this anymore */ |
Willy Tarreau | d137dd3 | 2010-08-25 12:49:05 +0200 | [diff] [blame] | 2594 | free(global.pidfile); global.pidfile = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2595 | |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 2596 | if (proc == global.nbproc) { |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2597 | if (global.mode & MODE_MWORKER) { |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 2598 | protocol_unbind_all(); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 2599 | mworker_wait(); |
William Lallemand | 1499b9b | 2017-06-07 15:04:47 +0200 | [diff] [blame] | 2600 | /* should never get there */ |
| 2601 | exit(EXIT_FAILURE); |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 2602 | } |
William Lallemand | cf4e496 | 2017-06-08 19:05:48 +0200 | [diff] [blame] | 2603 | #if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 2604 | ssl_free_dh(); |
| 2605 | #endif |
William Lallemand | 1499b9b | 2017-06-07 15:04:47 +0200 | [diff] [blame] | 2606 | exit(0); /* parent must leave */ |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 2607 | } |
| 2608 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 2609 | /* child must never use the atexit function */ |
| 2610 | atexit_flag = 0; |
| 2611 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2612 | /* Must chroot and setgid/setuid in the children */ |
| 2613 | /* chroot if needed */ |
| 2614 | if (global.chroot != NULL) { |
| 2615 | if (chroot(global.chroot) == -1 || chdir("/") == -1) { |
| 2616 | Alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot); |
| 2617 | if (nb_oldpids) |
| 2618 | tell_old_pids(SIGTTIN); |
| 2619 | protocol_unbind_all(); |
| 2620 | exit(1); |
| 2621 | } |
| 2622 | } |
| 2623 | |
| 2624 | free(global.chroot); |
| 2625 | global.chroot = NULL; |
| 2626 | |
| 2627 | /* setgid / setuid */ |
| 2628 | if (global.gid) { |
| 2629 | if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1) |
| 2630 | Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'" |
| 2631 | " without 'uid'/'user' is generally useless.\n", argv[0]); |
| 2632 | |
| 2633 | if (setgid(global.gid) == -1) { |
| 2634 | Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid); |
| 2635 | protocol_unbind_all(); |
| 2636 | exit(1); |
| 2637 | } |
| 2638 | } |
| 2639 | |
| 2640 | if (global.uid && setuid(global.uid) == -1) { |
| 2641 | Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid); |
| 2642 | protocol_unbind_all(); |
| 2643 | exit(1); |
| 2644 | } |
| 2645 | |
William Lallemand | 7f80eb2 | 2017-05-26 18:19:55 +0200 | [diff] [blame] | 2646 | /* pass through every cli socket, and check if it's bound to |
| 2647 | * the current process and if it exposes listeners sockets. |
| 2648 | * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork. |
| 2649 | * */ |
| 2650 | |
| 2651 | if (global.stats_fe) { |
| 2652 | struct bind_conf *bind_conf; |
| 2653 | |
| 2654 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 2655 | if (bind_conf->level & ACCESS_FD_LISTENERS) { |
| 2656 | if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) { |
| 2657 | global.tune.options |= GTUNE_SOCKET_TRANSFER; |
| 2658 | break; |
| 2659 | } |
| 2660 | } |
| 2661 | } |
| 2662 | } |
| 2663 | |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2664 | /* we might have to unbind some proxies from some processes */ |
| 2665 | px = proxy; |
| 2666 | while (px != NULL) { |
| 2667 | if (px->bind_proc && px->state != PR_STSTOPPED) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 2668 | if (!(px->bind_proc & (1UL << proc))) { |
| 2669 | if (global.tune.options & GTUNE_SOCKET_TRANSFER) |
| 2670 | zombify_proxy(px); |
| 2671 | else |
| 2672 | stop_proxy(px); |
| 2673 | } |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2674 | } |
| 2675 | px = px->next; |
| 2676 | } |
| 2677 | |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 2678 | /* we might have to unbind some peers sections from some processes */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 2679 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 2680 | if (!curpeers->peers_fe) |
| 2681 | continue; |
| 2682 | |
| 2683 | if (curpeers->peers_fe->bind_proc & (1UL << proc)) |
| 2684 | continue; |
| 2685 | |
| 2686 | stop_proxy(curpeers->peers_fe); |
| 2687 | /* disable this peer section so that it kills itself */ |
Willy Tarreau | 47c8c02 | 2015-09-28 16:39:25 +0200 | [diff] [blame] | 2688 | signal_unregister_handler(curpeers->sighandler); |
| 2689 | task_delete(curpeers->sync_task); |
| 2690 | task_free(curpeers->sync_task); |
| 2691 | curpeers->sync_task = NULL; |
| 2692 | task_free(curpeers->peers_fe->task); |
| 2693 | curpeers->peers_fe->task = NULL; |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 2694 | curpeers->peers_fe = NULL; |
| 2695 | } |
| 2696 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2697 | /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure |
| 2698 | * that we can detach from the TTY. We MUST NOT do it in other cases since |
| 2699 | * it would have already be done, and 0-2 would have been affected to listening |
| 2700 | * sockets |
| 2701 | */ |
Willy Tarreau | 106cb76 | 2008-11-16 07:40:34 +0100 | [diff] [blame] | 2702 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2703 | /* detach from the tty */ |
| 2704 | fclose(stdin); fclose(stdout); fclose(stderr); |
Willy Tarreau | 106cb76 | 2008-11-16 07:40:34 +0100 | [diff] [blame] | 2705 | global.mode &= ~MODE_VERBOSE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2706 | global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */ |
| 2707 | } |
| 2708 | pid = getpid(); /* update child's pid */ |
| 2709 | setsid(); |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 2710 | fork_poller(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2711 | } |
| 2712 | |
Baptiste Assmann | 26c6eb8 | 2017-02-02 23:14:51 +0100 | [diff] [blame] | 2713 | /* initialize structures for name resolution */ |
| 2714 | if (!dns_init_resolvers(1)) |
| 2715 | exit(1); |
| 2716 | |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 2717 | if (global.mode & MODE_MWORKER) |
| 2718 | mworker_pipe_register(mworker_pipe); |
| 2719 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2720 | protocol_enable_all(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2721 | /* |
| 2722 | * That's it : the central polling loop. Run until we stop. |
| 2723 | */ |
| 2724 | run_poll_loop(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2725 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2726 | /* Do some cleanup */ |
| 2727 | deinit(); |
| 2728 | |
| 2729 | exit(0); |
| 2730 | } |
| 2731 | |
| 2732 | |
| 2733 | /* |
| 2734 | * Local variables: |
| 2735 | * c-indent-level: 8 |
| 2736 | * c-basic-offset: 8 |
| 2737 | * End: |
| 2738 | */ |