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