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