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