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