Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Proxy variables and functions. |
| 3 | * |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <fcntl.h> |
| 14 | #include <unistd.h> |
Willy Tarreau | c8f24f8 | 2007-11-30 18:38:35 +0100 | [diff] [blame] | 15 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 16 | #include <sys/types.h> |
| 17 | #include <sys/socket.h> |
| 18 | #include <sys/stat.h> |
| 19 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 20 | #include <common/defaults.h> |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 21 | #include <common/cfgparse.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 24 | #include <common/errors.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 25 | #include <common/initcall.h> |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 26 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 27 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 29 | #include <eb32tree.h> |
| 30 | #include <ebistree.h> |
| 31 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 32 | #include <types/capture.h> |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 33 | #include <types/cli.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 35 | #include <types/obj_type.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 36 | #include <types/peers.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 37 | #include <types/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 38 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 39 | #include <proto/applet.h> |
| 40 | #include <proto/cli.h> |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 41 | #include <proto/backend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 42 | #include <proto/fd.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 43 | #include <proto/filters.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 44 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | #include <proto/log.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 46 | #include <proto/proto_tcp.h> |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 47 | #include <proto/http_ana.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <proto/proxy.h> |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 49 | #include <proto/server.h> |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 50 | #include <proto/signal.h> |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 51 | #include <proto/stream.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 52 | #include <proto/stream_interface.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 53 | #include <proto/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | |
| 55 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 56 | int listeners; /* # of proxy listeners, set by cfgparse */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 57 | struct proxy *proxies_list = NULL; /* list of all existing proxies */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 58 | struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */ |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 59 | struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */ |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 60 | unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 61 | |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 62 | /* proxy->options */ |
| 63 | const struct cfg_opt cfg_opts[] = |
| 64 | { |
| 65 | { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 }, |
| 66 | { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 }, |
| 67 | { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 68 | { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 }, |
| 69 | { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 }, |
| 70 | { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 }, |
| 71 | { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 72 | { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 73 | { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 74 | { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 75 | { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 }, |
| 76 | { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 }, |
| 77 | { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 }, |
| 78 | { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 79 | #ifdef USE_TPROXY |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 80 | { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 }, |
| 81 | #else |
| 82 | { "transparent", 0, 0, 0, 0 }, |
| 83 | #endif |
| 84 | |
| 85 | { NULL, 0, 0, 0, 0 } |
| 86 | }; |
| 87 | |
| 88 | /* proxy->options2 */ |
| 89 | const struct cfg_opt cfg_opts2[] = |
| 90 | { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 91 | #ifdef USE_LINUX_SPLICE |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 92 | { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 93 | { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 94 | { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 95 | #else |
| 96 | { "splice-request", 0, 0, 0, 0 }, |
| 97 | { "splice-response", 0, 0, 0, 0 }, |
| 98 | { "splice-auto", 0, 0, 0, 0 }, |
| 99 | #endif |
| 100 | { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 101 | { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 102 | { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 }, |
| 103 | { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 }, |
| 104 | { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 }, |
| 105 | { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 }, |
| 106 | { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 }, |
| 107 | { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 108 | { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 109 | { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 110 | { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 111 | { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Christopher Faulet | 3193037 | 2019-07-15 10:16:58 +0200 | [diff] [blame] | 112 | { "http-use-htx", 0, PR_CAP_FE|PR_CAP_BE, 0, 0 }, // deprecated |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 113 | { NULL, 0, 0, 0 } |
| 114 | }; |
| 115 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 116 | /* |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 117 | * This function returns a string containing a name describing capabilities to |
| 118 | * report comprehensible error messages. Specifically, it will return the words |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 119 | * "frontend", "backend" when appropriate, or "proxy" for all other |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 120 | * cases including the proxies declared in "listen" mode. |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 121 | */ |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 122 | const char *proxy_cap_str(int cap) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 123 | { |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 124 | if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) { |
| 125 | if (cap & PR_CAP_FE) |
| 126 | return "frontend"; |
| 127 | else if (cap & PR_CAP_BE) |
| 128 | return "backend"; |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 129 | } |
| 130 | return "proxy"; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 131 | } |
| 132 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 133 | /* |
| 134 | * This function returns a string containing the mode of the proxy in a format |
| 135 | * suitable for error messages. |
| 136 | */ |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 137 | const char *proxy_mode_str(int mode) { |
| 138 | |
| 139 | if (mode == PR_MODE_TCP) |
| 140 | return "tcp"; |
| 141 | else if (mode == PR_MODE_HTTP) |
| 142 | return "http"; |
| 143 | else if (mode == PR_MODE_HEALTH) |
| 144 | return "health"; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 145 | else if (mode == PR_MODE_CLI) |
| 146 | return "cli"; |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 147 | else |
| 148 | return "unknown"; |
| 149 | } |
| 150 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 151 | /* |
| 152 | * This function scans the list of backends and servers to retrieve the first |
| 153 | * backend and the first server with the given names, and sets them in both |
| 154 | * parameters. It returns zero if either is not found, or non-zero and sets |
| 155 | * the ones it did not found to NULL. If a NULL pointer is passed for the |
| 156 | * backend, only the pointer to the server will be updated. |
| 157 | */ |
| 158 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 159 | struct proxy **bk, struct server **sv) |
| 160 | { |
| 161 | struct proxy *p; |
| 162 | struct server *s; |
Willy Tarreau | 7ecc420 | 2014-03-15 07:57:11 +0100 | [diff] [blame] | 163 | int sid; |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 164 | |
| 165 | *sv = NULL; |
| 166 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 167 | sid = -1; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 168 | if (*sv_name == '#') |
| 169 | sid = atoi(sv_name + 1); |
| 170 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 171 | p = proxy_be_by_name(bk_name); |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 172 | if (bk) |
| 173 | *bk = p; |
| 174 | if (!p) |
| 175 | return 0; |
| 176 | |
| 177 | for (s = p->srv; s; s = s->next) |
Willy Tarreau | 4055a10 | 2012-11-15 00:15:18 +0100 | [diff] [blame] | 178 | if ((sid >= 0 && s->puid == sid) || |
| 179 | (sid < 0 && strcmp(s->id, sv_name) == 0)) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 180 | break; |
| 181 | *sv = s; |
| 182 | if (!s) |
| 183 | return 0; |
| 184 | return 1; |
| 185 | } |
| 186 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 187 | /* This function parses a "timeout" statement in a proxy section. It returns |
| 188 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 189 | * return zero, it will write an error or warning message into a preallocated |
| 190 | * buffer returned at <err>. The trailing is not be written. The function must |
| 191 | * be called with <args> pointing to the first command line word, with <proxy> |
| 192 | * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 193 | * As a special case for compatibility with older configs, it also accepts |
| 194 | * "{cli|srv|con}timeout" in args[0]. |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 195 | */ |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 196 | static int proxy_parse_timeout(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 197 | struct proxy *defpx, const char *file, int line, |
| 198 | char **err) |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 199 | { |
| 200 | unsigned timeout; |
| 201 | int retval, cap; |
| 202 | const char *res, *name; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 203 | int *tv = NULL; |
| 204 | int *td = NULL; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 205 | |
| 206 | retval = 0; |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 207 | |
| 208 | /* simply skip "timeout" but remain compatible with old form */ |
| 209 | if (strcmp(args[0], "timeout") == 0) |
| 210 | args++; |
| 211 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 212 | name = args[0]; |
Tim Duesterhus | 86e6b6e | 2019-05-14 20:57:59 +0200 | [diff] [blame] | 213 | if (!strcmp(args[0], "client")) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 214 | name = "client"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 215 | tv = &proxy->timeout.client; |
| 216 | td = &defpx->timeout.client; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 217 | cap = PR_CAP_FE; |
| 218 | } else if (!strcmp(args[0], "tarpit")) { |
| 219 | tv = &proxy->timeout.tarpit; |
| 220 | td = &defpx->timeout.tarpit; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 221 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 222 | } else if (!strcmp(args[0], "http-keep-alive")) { |
| 223 | tv = &proxy->timeout.httpka; |
| 224 | td = &defpx->timeout.httpka; |
| 225 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 226 | } else if (!strcmp(args[0], "http-request")) { |
| 227 | tv = &proxy->timeout.httpreq; |
| 228 | td = &defpx->timeout.httpreq; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 229 | cap = PR_CAP_FE | PR_CAP_BE; |
Tim Duesterhus | 86e6b6e | 2019-05-14 20:57:59 +0200 | [diff] [blame] | 230 | } else if (!strcmp(args[0], "server")) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 231 | name = "server"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 232 | tv = &proxy->timeout.server; |
| 233 | td = &defpx->timeout.server; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 234 | cap = PR_CAP_BE; |
Tim Duesterhus | 86e6b6e | 2019-05-14 20:57:59 +0200 | [diff] [blame] | 235 | } else if (!strcmp(args[0], "connect")) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 236 | name = "connect"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 237 | tv = &proxy->timeout.connect; |
| 238 | td = &defpx->timeout.connect; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 239 | cap = PR_CAP_BE; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 240 | } else if (!strcmp(args[0], "check")) { |
| 241 | tv = &proxy->timeout.check; |
| 242 | td = &defpx->timeout.check; |
| 243 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 244 | } else if (!strcmp(args[0], "queue")) { |
| 245 | tv = &proxy->timeout.queue; |
| 246 | td = &defpx->timeout.queue; |
| 247 | cap = PR_CAP_BE; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 248 | } else if (!strcmp(args[0], "tunnel")) { |
| 249 | tv = &proxy->timeout.tunnel; |
| 250 | td = &defpx->timeout.tunnel; |
| 251 | cap = PR_CAP_BE; |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 252 | } else if (!strcmp(args[0], "client-fin")) { |
| 253 | tv = &proxy->timeout.clientfin; |
| 254 | td = &defpx->timeout.clientfin; |
| 255 | cap = PR_CAP_FE; |
| 256 | } else if (!strcmp(args[0], "server-fin")) { |
| 257 | tv = &proxy->timeout.serverfin; |
| 258 | td = &defpx->timeout.serverfin; |
| 259 | cap = PR_CAP_BE; |
Tim Duesterhus | 86e6b6e | 2019-05-14 20:57:59 +0200 | [diff] [blame] | 260 | } else if (!strcmp(args[0], "clitimeout")) { |
| 261 | memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]); |
| 262 | return -1; |
| 263 | } else if (!strcmp(args[0], "srvtimeout")) { |
| 264 | memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]); |
| 265 | return -1; |
| 266 | } else if (!strcmp(args[0], "contimeout")) { |
| 267 | memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]); |
| 268 | return -1; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 269 | } else { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 270 | memprintf(err, |
| 271 | "'timeout' supports 'client', 'server', 'connect', 'check', " |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 272 | "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', " |
| 273 | "'client-fin' and 'server-fin' (got '%s')", |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 274 | args[0]); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 275 | return -1; |
| 276 | } |
| 277 | |
| 278 | if (*args[1] == 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 279 | memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 280 | return -1; |
| 281 | } |
| 282 | |
| 283 | res = parse_time_err(args[1], &timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 284 | if (res == PARSE_TIME_OVER) { |
| 285 | memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 286 | args[1], name); |
| 287 | return -1; |
| 288 | } |
| 289 | else if (res == PARSE_TIME_UNDER) { |
| 290 | memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)", |
| 291 | args[1], name); |
| 292 | return -1; |
| 293 | } |
| 294 | else if (res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 295 | memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 296 | return -1; |
| 297 | } |
| 298 | |
| 299 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 300 | memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability", |
| 301 | name, proxy_type_str(proxy), proxy->id, |
| 302 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 303 | retval = 1; |
| 304 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 305 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 306 | memprintf(err, "overwriting 'timeout %s' which was already specified", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 307 | retval = 1; |
| 308 | } |
| 309 | |
Willy Tarreau | fac5b59 | 2014-05-22 08:24:46 +0200 | [diff] [blame] | 310 | if (*args[2] != 0) { |
| 311 | memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]); |
| 312 | retval = -1; |
| 313 | } |
| 314 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 315 | *tv = MS_TO_TICKS(timeout); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 316 | return retval; |
| 317 | } |
| 318 | |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 319 | /* This function parses a "rate-limit" statement in a proxy section. It returns |
| 320 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 321 | * return zero, it will write an error or warning message into a preallocated |
| 322 | * buffer returned at <err>. The function must be called with <args> pointing |
| 323 | * to the first command line word, with <proxy> pointing to the proxy being |
| 324 | * parsed, and <defpx> to the default proxy or NULL. |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 325 | */ |
| 326 | static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 327 | struct proxy *defpx, const char *file, int line, |
| 328 | char **err) |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 329 | { |
| 330 | int retval, cap; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 331 | char *res; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 332 | unsigned int *tv = NULL; |
| 333 | unsigned int *td = NULL; |
| 334 | unsigned int val; |
| 335 | |
| 336 | retval = 0; |
| 337 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 338 | if (strcmp(args[1], "sessions") == 0) { |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 339 | tv = &proxy->fe_sps_lim; |
| 340 | td = &defpx->fe_sps_lim; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 341 | cap = PR_CAP_FE; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 342 | } |
| 343 | else { |
| 344 | memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 345 | return -1; |
| 346 | } |
| 347 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 348 | if (*args[2] == 0) { |
| 349 | memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 350 | return -1; |
| 351 | } |
| 352 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 353 | val = strtoul(args[2], &res, 0); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 354 | if (*res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 355 | memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 356 | return -1; |
| 357 | } |
| 358 | |
| 359 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 360 | memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability", |
| 361 | args[0], args[1], proxy_type_str(proxy), proxy->id, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 362 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 363 | retval = 1; |
| 364 | } |
| 365 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 366 | memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 367 | retval = 1; |
| 368 | } |
| 369 | |
| 370 | *tv = val; |
| 371 | return retval; |
| 372 | } |
| 373 | |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 374 | /* This function parses a "max-keep-alive-queue" statement in a proxy section. |
| 375 | * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it |
| 376 | * does not return zero, it will write an error or warning message into a |
| 377 | * preallocated buffer returned at <err>. The function must be called with |
| 378 | * <args> pointing to the first command line word, with <proxy> pointing to |
| 379 | * the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 380 | */ |
| 381 | static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy, |
| 382 | struct proxy *defpx, const char *file, int line, |
| 383 | char **err) |
| 384 | { |
| 385 | int retval; |
| 386 | char *res; |
| 387 | unsigned int val; |
| 388 | |
| 389 | retval = 0; |
| 390 | |
| 391 | if (*args[1] == 0) { |
| 392 | memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]); |
| 393 | return -1; |
| 394 | } |
| 395 | |
| 396 | val = strtol(args[1], &res, 0); |
| 397 | if (*res) { |
| 398 | memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]); |
| 399 | return -1; |
| 400 | } |
| 401 | |
| 402 | if (!(proxy->cap & PR_CAP_BE)) { |
| 403 | memprintf(err, "%s will be ignored because %s '%s' has no backend capability", |
| 404 | args[0], proxy_type_str(proxy), proxy->id); |
| 405 | retval = 1; |
| 406 | } |
| 407 | |
| 408 | /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */ |
| 409 | proxy->max_ka_queue = val + 1; |
| 410 | return retval; |
| 411 | } |
| 412 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 413 | /* This function parses a "declare" statement in a proxy section. It returns -1 |
| 414 | * if there is any error, 1 for warning, otherwise 0. If it does not return zero, |
| 415 | * it will write an error or warning message into a preallocated buffer returned |
| 416 | * at <err>. The function must be called with <args> pointing to the first command |
| 417 | * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the |
| 418 | * default proxy or NULL. |
| 419 | */ |
| 420 | static int proxy_parse_declare(char **args, int section, struct proxy *curpx, |
| 421 | struct proxy *defpx, const char *file, int line, |
| 422 | char **err) |
| 423 | { |
| 424 | /* Capture keyword wannot be declared in a default proxy. */ |
| 425 | if (curpx == defpx) { |
Joseph Herlant | 9edebb8 | 2018-11-15 11:50:44 -0800 | [diff] [blame] | 426 | memprintf(err, "'%s' not available in default section", args[0]); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 427 | return -1; |
| 428 | } |
| 429 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 430 | /* Capture keywork is only available in frontend. */ |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 431 | if (!(curpx->cap & PR_CAP_FE)) { |
Joseph Herlant | 9edebb8 | 2018-11-15 11:50:44 -0800 | [diff] [blame] | 432 | memprintf(err, "'%s' only available in frontend or listen section", args[0]); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 433 | return -1; |
| 434 | } |
| 435 | |
| 436 | /* Check mandatory second keyword. */ |
| 437 | if (!args[1] || !*args[1]) { |
| 438 | memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]); |
| 439 | return -1; |
| 440 | } |
| 441 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 442 | /* Actually, declare is only available for declaring capture |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 443 | * slot, but in the future it can declare maps or variables. |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 444 | * So, this section permits to check and switch according with |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 445 | * the second keyword. |
| 446 | */ |
| 447 | if (strcmp(args[1], "capture") == 0) { |
| 448 | char *error = NULL; |
| 449 | long len; |
| 450 | struct cap_hdr *hdr; |
| 451 | |
| 452 | /* Check the next keyword. */ |
| 453 | if (!args[2] || !*args[2] || |
| 454 | (strcmp(args[2], "response") != 0 && |
| 455 | strcmp(args[2], "request") != 0)) { |
| 456 | memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]); |
| 457 | return -1; |
| 458 | } |
| 459 | |
| 460 | /* Check the 'len' keyword. */ |
| 461 | if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) { |
| 462 | memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]); |
| 463 | return -1; |
| 464 | } |
| 465 | |
| 466 | /* Check the length value. */ |
| 467 | if (!args[4] || !*args[4]) { |
| 468 | memprintf(err, "'%s %s': 'len' requires a numeric value that represents the " |
| 469 | "capture length", |
| 470 | args[0], args[1]); |
| 471 | return -1; |
| 472 | } |
| 473 | |
| 474 | /* convert the length value. */ |
| 475 | len = strtol(args[4], &error, 10); |
| 476 | if (*error != '\0') { |
| 477 | memprintf(err, "'%s %s': cannot parse the length '%s'.", |
| 478 | args[0], args[1], args[3]); |
| 479 | return -1; |
| 480 | } |
| 481 | |
| 482 | /* check length. */ |
| 483 | if (len <= 0) { |
| 484 | memprintf(err, "length must be > 0"); |
| 485 | return -1; |
| 486 | } |
| 487 | |
| 488 | /* register the capture. */ |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 489 | hdr = calloc(1, sizeof(*hdr)); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 490 | hdr->name = NULL; /* not a header capture */ |
| 491 | hdr->namelen = 0; |
| 492 | hdr->len = len; |
| 493 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
| 494 | |
| 495 | if (strcmp(args[2], "request") == 0) { |
| 496 | hdr->next = curpx->req_cap; |
| 497 | hdr->index = curpx->nb_req_cap++; |
| 498 | curpx->req_cap = hdr; |
| 499 | } |
| 500 | if (strcmp(args[2], "response") == 0) { |
| 501 | hdr->next = curpx->rsp_cap; |
| 502 | hdr->index = curpx->nb_rsp_cap++; |
| 503 | curpx->rsp_cap = hdr; |
| 504 | } |
| 505 | return 0; |
| 506 | } |
| 507 | else { |
| 508 | memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]); |
| 509 | return -1; |
| 510 | } |
| 511 | } |
| 512 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 513 | /* This function parses a "retry-on" statement */ |
| 514 | static int |
| 515 | proxy_parse_retry_on(char **args, int section, struct proxy *curpx, |
| 516 | struct proxy *defpx, const char *file, int line, |
| 517 | char **err) |
| 518 | { |
| 519 | int i; |
| 520 | |
| 521 | if (!(*args[1])) { |
| 522 | memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]); |
| 523 | return -1; |
| 524 | } |
| 525 | if (!(curpx->cap & PR_CAP_BE)) { |
| 526 | memprintf(err, "'%s' only available in backend or listen section", args[0]); |
| 527 | return -1; |
| 528 | } |
| 529 | curpx->retry_type = 0; |
| 530 | for (i = 1; *(args[i]); i++) { |
| 531 | if (!strcmp(args[i], "conn-failure")) |
| 532 | curpx->retry_type |= PR_RE_CONN_FAILED; |
| 533 | else if (!strcmp(args[i], "empty-response")) |
| 534 | curpx->retry_type |= PR_RE_DISCONNECTED; |
| 535 | else if (!strcmp(args[i], "response-timeout")) |
| 536 | curpx->retry_type |= PR_RE_TIMEOUT; |
| 537 | else if (!strcmp(args[i], "404")) |
| 538 | curpx->retry_type |= PR_RE_404; |
| 539 | else if (!strcmp(args[i], "408")) |
| 540 | curpx->retry_type |= PR_RE_408; |
| 541 | else if (!strcmp(args[i], "425")) |
| 542 | curpx->retry_type |= PR_RE_425; |
| 543 | else if (!strcmp(args[i], "500")) |
| 544 | curpx->retry_type |= PR_RE_500; |
| 545 | else if (!strcmp(args[i], "501")) |
| 546 | curpx->retry_type |= PR_RE_501; |
| 547 | else if (!strcmp(args[i], "502")) |
| 548 | curpx->retry_type |= PR_RE_502; |
| 549 | else if (!strcmp(args[i], "503")) |
| 550 | curpx->retry_type |= PR_RE_503; |
| 551 | else if (!strcmp(args[i], "504")) |
| 552 | curpx->retry_type |= PR_RE_504; |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 553 | else if (!strcmp(args[i], "0rtt-rejected")) |
| 554 | curpx->retry_type |= PR_RE_EARLY_ERROR; |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 555 | else if (!strcmp(args[i], "junk-response")) |
| 556 | curpx->retry_type |= PR_RE_JUNK_REQUEST; |
Olivier Houchard | ddf0e03 | 2019-05-10 18:05:40 +0200 | [diff] [blame] | 557 | else if (!(strcmp(args[i], "all-retryable-errors"))) |
| 558 | curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED | |
| 559 | PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 | |
| 560 | PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR | |
| 561 | PR_RE_JUNK_REQUEST; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 562 | else if (!strcmp(args[i], "none")) { |
| 563 | if (i != 1 || *args[i + 1]) { |
| 564 | memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]); |
| 565 | return -1; |
| 566 | } |
| 567 | } else { |
| 568 | memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]); |
| 569 | return -1; |
| 570 | } |
| 571 | |
| 572 | } |
| 573 | |
| 574 | |
| 575 | return 0; |
| 576 | } |
| 577 | |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 578 | /* This function inserts proxy <px> into the tree of known proxies. The proxy's |
| 579 | * name is used as the storing key so it must already have been initialized. |
| 580 | */ |
| 581 | void proxy_store_name(struct proxy *px) |
| 582 | { |
| 583 | px->conf.by_name.key = px->id; |
| 584 | ebis_insert(&proxy_by_name, &px->conf.by_name); |
| 585 | } |
| 586 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 587 | /* Returns a pointer to the first proxy matching capabilities <cap> and id |
| 588 | * <id>. NULL is returned if no match is found. If <table> is non-zero, it |
| 589 | * only considers proxies having a table. |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 590 | */ |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 591 | struct proxy *proxy_find_by_id(int id, int cap, int table) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 592 | { |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 593 | struct eb32_node *n; |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 594 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 595 | for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) { |
| 596 | struct proxy *px = container_of(n, struct proxy, conf.id); |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 597 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 598 | if (px->uuid != id) |
| 599 | break; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 600 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 601 | if ((px->cap & cap) != cap) |
| 602 | continue; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 603 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 604 | if (table && (!px->table || !px->table->size)) |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 605 | continue; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 606 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 607 | return px; |
| 608 | } |
| 609 | return NULL; |
| 610 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 611 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 612 | /* Returns a pointer to the first proxy matching either name <name>, or id |
| 613 | * <name> if <name> begins with a '#'. NULL is returned if no match is found. |
| 614 | * If <table> is non-zero, it only considers proxies having a table. |
| 615 | */ |
| 616 | struct proxy *proxy_find_by_name(const char *name, int cap, int table) |
| 617 | { |
| 618 | struct proxy *curproxy; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 619 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 620 | if (*name == '#') { |
| 621 | curproxy = proxy_find_by_id(atoi(name + 1), cap, table); |
| 622 | if (curproxy) |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 623 | return curproxy; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 624 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 625 | else { |
| 626 | struct ebpt_node *node; |
| 627 | |
| 628 | for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) { |
| 629 | curproxy = container_of(node, struct proxy, conf.by_name); |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 630 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 631 | if (strcmp(curproxy->id, name) != 0) |
| 632 | break; |
| 633 | |
| 634 | if ((curproxy->cap & cap) != cap) |
| 635 | continue; |
| 636 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 637 | if (table && (!curproxy->table || !curproxy->table->size)) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 638 | continue; |
| 639 | |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 640 | return curproxy; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 641 | } |
| 642 | } |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 643 | return NULL; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 644 | } |
| 645 | |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 646 | /* Finds the best match for a proxy with capabilities <cap>, name <name> and id |
| 647 | * <id>. At most one of <id> or <name> may be different provided that <cap> is |
| 648 | * valid. Either <id> or <name> may be left unspecified (0). The purpose is to |
| 649 | * find a proxy based on some information from a previous configuration, across |
| 650 | * reloads or during information exchange between peers. |
| 651 | * |
| 652 | * Names are looked up first if present, then IDs are compared if present. In |
| 653 | * case of an inexact match whatever is forced in the configuration has |
| 654 | * precedence in the following order : |
| 655 | * - 1) forced ID (proves a renaming / change of proxy type) |
| 656 | * - 2) proxy name+type (may indicate a move if ID differs) |
| 657 | * - 3) automatic ID+type (may indicate a renaming) |
| 658 | * |
| 659 | * Depending on what is found, we can end up in the following situations : |
| 660 | * |
| 661 | * name id cap | possible causes |
| 662 | * -------------+----------------- |
| 663 | * -- -- -- | nothing found |
| 664 | * -- -- ok | nothing found |
| 665 | * -- ok -- | proxy deleted, ID points to next one |
| 666 | * -- ok ok | proxy renamed, or deleted with ID pointing to next one |
| 667 | * ok -- -- | proxy deleted, but other half with same name still here (before) |
| 668 | * ok -- ok | proxy's ID changed (proxy moved in the config file) |
| 669 | * ok ok -- | proxy deleted, but other half with same name still here (after) |
| 670 | * ok ok ok | perfect match |
| 671 | * |
| 672 | * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits : |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 673 | * - PR_FBM_MISMATCH_ID : proxy was found but ID differs |
| 674 | * (and ID was not zero) |
| 675 | * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs |
| 676 | * (and name was not NULL) |
| 677 | * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with |
| 678 | * the same name and/or id |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 679 | * |
| 680 | * Only a valid proxy is returned. If capabilities do not match, NULL is |
| 681 | * returned. The caller can check <diff> to report detailed warnings / errors, |
| 682 | * and decide whether or not to use what was found. |
| 683 | */ |
| 684 | struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff) |
| 685 | { |
| 686 | struct proxy *byname; |
| 687 | struct proxy *byid; |
| 688 | |
| 689 | if (!name && !id) |
| 690 | return NULL; |
| 691 | |
| 692 | if (diff) |
| 693 | *diff = 0; |
| 694 | |
| 695 | byname = byid = NULL; |
| 696 | |
| 697 | if (name) { |
| 698 | byname = proxy_find_by_name(name, cap, 0); |
| 699 | if (byname && (!id || byname->uuid == id)) |
| 700 | return byname; |
| 701 | } |
| 702 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 703 | /* remaining possibilities : |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 704 | * - name not set |
| 705 | * - name set but not found |
| 706 | * - name found, but ID doesn't match. |
| 707 | */ |
| 708 | if (id) { |
| 709 | byid = proxy_find_by_id(id, cap, 0); |
| 710 | if (byid) { |
| 711 | if (byname) { |
| 712 | /* id+type found, name+type found, but not all 3. |
| 713 | * ID wins only if forced, otherwise name wins. |
| 714 | */ |
| 715 | if (byid->options & PR_O_FORCED_ID) { |
| 716 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 717 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 718 | return byid; |
| 719 | } |
| 720 | else { |
| 721 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 722 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 723 | return byname; |
| 724 | } |
| 725 | } |
| 726 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 727 | /* remaining possibilities : |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 728 | * - name not set |
| 729 | * - name set but not found |
| 730 | */ |
| 731 | if (name && diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 732 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 733 | return byid; |
| 734 | } |
| 735 | |
| 736 | /* ID not found */ |
| 737 | if (byname) { |
| 738 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 739 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 740 | return byname; |
| 741 | } |
| 742 | } |
| 743 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 744 | /* All remaining possibilities will lead to NULL. If we can report more |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 745 | * detailed information to the caller about changed types and/or name, |
| 746 | * we'll do it. For example, we could detect that "listen foo" was |
| 747 | * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced. |
| 748 | * - name not set, ID not found |
| 749 | * - name not found, ID not set |
| 750 | * - name not found, ID not found |
| 751 | */ |
| 752 | if (!diff) |
| 753 | return NULL; |
| 754 | |
| 755 | if (name) { |
| 756 | byname = proxy_find_by_name(name, 0, 0); |
| 757 | if (byname && (!id || byname->uuid == id)) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 758 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | if (id) { |
| 762 | byid = proxy_find_by_id(id, 0, 0); |
| 763 | if (byid) { |
| 764 | if (!name) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 765 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */ |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 766 | else if (byid->options & PR_O_FORCED_ID) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 767 | *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */ |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 768 | /* otherwise it's a different proxy that was returned */ |
| 769 | } |
| 770 | } |
| 771 | return NULL; |
| 772 | } |
| 773 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 774 | /* |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 775 | * This function finds a server with matching name within selected proxy. |
| 776 | * It also checks if there are more matching servers with |
| 777 | * requested name as this often leads into unexpected situations. |
| 778 | */ |
| 779 | |
| 780 | struct server *findserver(const struct proxy *px, const char *name) { |
| 781 | |
| 782 | struct server *cursrv, *target = NULL; |
| 783 | |
| 784 | if (!px) |
| 785 | return NULL; |
| 786 | |
| 787 | for (cursrv = px->srv; cursrv; cursrv = cursrv->next) { |
| 788 | if (strcmp(cursrv->id, name)) |
| 789 | continue; |
| 790 | |
| 791 | if (!target) { |
| 792 | target = cursrv; |
| 793 | continue; |
| 794 | } |
| 795 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 796 | ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n", |
| 797 | name, px->id); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 798 | |
| 799 | return NULL; |
| 800 | } |
| 801 | |
| 802 | return target; |
| 803 | } |
| 804 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 805 | /* This function checks that the designated proxy has no http directives |
| 806 | * enabled. It will output a warning if there are, and will fix some of them. |
| 807 | * It returns the number of fatal errors encountered. This should be called |
| 808 | * at the end of the configuration parsing if the proxy is not in http mode. |
| 809 | * The <file> argument is used to construct the error message. |
| 810 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 811 | int proxy_cfg_ensure_no_http(struct proxy *curproxy) |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 812 | { |
| 813 | if (curproxy->cookie_name != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 814 | ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n", |
| 815 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 816 | } |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 817 | if (curproxy->monitor_uri != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 818 | ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n", |
| 819 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 820 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 821 | if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 822 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 823 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 824 | ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n", |
| 825 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 826 | } |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 827 | if (curproxy->to_log & (LW_REQ | LW_RESP)) { |
| 828 | curproxy->to_log &= ~(LW_REQ | LW_RESP); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 829 | ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n", |
| 830 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
| 831 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 832 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 833 | if (curproxy->conf.logformat_string == default_http_log_format || |
| 834 | curproxy->conf.logformat_string == clf_http_log_format) { |
| 835 | /* Note: we don't change the directive's file:line number */ |
| 836 | curproxy->conf.logformat_string = default_tcp_log_format; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 837 | ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 838 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
| 839 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 840 | } |
| 841 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 842 | return 0; |
| 843 | } |
| 844 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 845 | /* Perform the most basic initialization of a proxy : |
| 846 | * memset(), list_init(*), reset_timeouts(*). |
Willy Tarreau | b249e84 | 2011-09-07 18:41:08 +0200 | [diff] [blame] | 847 | * Any new proxy or peer should be initialized via this function. |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 848 | */ |
| 849 | void init_new_proxy(struct proxy *p) |
| 850 | { |
| 851 | memset(p, 0, sizeof(struct proxy)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 852 | p->obj_type = OBJ_TYPE_PROXY; |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 853 | p->pendconns = EB_ROOT; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 854 | LIST_INIT(&p->acl); |
| 855 | LIST_INIT(&p->http_req_rules); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 856 | LIST_INIT(&p->http_res_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 857 | LIST_INIT(&p->redirect_rules); |
| 858 | LIST_INIT(&p->mon_fail_cond); |
| 859 | LIST_INIT(&p->switching_rules); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 860 | LIST_INIT(&p->server_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 861 | LIST_INIT(&p->persist_rules); |
| 862 | LIST_INIT(&p->sticking_rules); |
| 863 | LIST_INIT(&p->storersp_rules); |
| 864 | LIST_INIT(&p->tcp_req.inspect_rules); |
| 865 | LIST_INIT(&p->tcp_rep.inspect_rules); |
| 866 | LIST_INIT(&p->tcp_req.l4_rules); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 867 | LIST_INIT(&p->tcp_req.l5_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 868 | LIST_INIT(&p->listener_queue); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 869 | LIST_INIT(&p->logsrvs); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 870 | LIST_INIT(&p->logformat); |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 871 | LIST_INIT(&p->logformat_sd); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 872 | LIST_INIT(&p->format_unique_id); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 873 | LIST_INIT(&p->conf.bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 874 | LIST_INIT(&p->conf.listeners); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 875 | LIST_INIT(&p->conf.args.list); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 876 | LIST_INIT(&p->tcpcheck_rules); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 877 | LIST_INIT(&p->filter_configs); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 878 | |
| 879 | /* Timeouts are defined as -1 */ |
| 880 | proxy_reset_timeouts(p); |
| 881 | p->tcp_rep.inspect_delay = TICK_ETERNITY; |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 882 | |
| 883 | /* initial uuid is unassigned (-1) */ |
| 884 | p->uuid = -1; |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 885 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 886 | /* Default to only allow L4 retries */ |
| 887 | p->retry_type = PR_RE_CONN_FAILED; |
| 888 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 889 | HA_SPIN_INIT(&p->lock); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 890 | } |
| 891 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 892 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 893 | * This function creates all proxy sockets. It should be done very early, |
| 894 | * typically before privileges are dropped. The sockets will be registered |
| 895 | * but not added to any fd_set, in order not to loose them across the fork(). |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 896 | * The proxies also start in READY state because they all have their listeners |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 897 | * bound. |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 898 | * |
| 899 | * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 900 | * Retryable errors will only be printed if <verbose> is not zero. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 901 | */ |
| 902 | int start_proxies(int verbose) |
| 903 | { |
| 904 | struct proxy *curproxy; |
| 905 | struct listener *listener; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 906 | int lerr, err = ERR_NONE; |
| 907 | int pxerr; |
| 908 | char msg[100]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 909 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 910 | for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 911 | if (curproxy->state != PR_STNEW) |
| 912 | continue; /* already initialized */ |
| 913 | |
| 914 | pxerr = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 915 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 916 | if (listener->state != LI_ASSIGNED) |
| 917 | continue; /* already started */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 918 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 919 | lerr = listener->proto->bind(listener, msg, sizeof(msg)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 920 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 921 | /* errors are reported if <verbose> is set or if they are fatal */ |
| 922 | if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) { |
| 923 | if (lerr & ERR_ALERT) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 924 | ha_alert("Starting %s %s: %s\n", |
| 925 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 926 | else if (lerr & ERR_WARN) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 927 | ha_warning("Starting %s %s: %s\n", |
| 928 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 929 | } |
| 930 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 931 | err |= lerr; |
| 932 | if (lerr & (ERR_ABORT | ERR_FATAL)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 933 | pxerr |= 1; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 934 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 935 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 936 | else if (lerr & ERR_CODE) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 937 | pxerr |= 1; |
| 938 | continue; |
| 939 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | if (!pxerr) { |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 943 | curproxy->state = PR_STREADY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 944 | send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id); |
| 945 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 946 | |
| 947 | if (err & ERR_ABORT) |
| 948 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | return err; |
| 952 | } |
| 953 | |
| 954 | |
| 955 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 956 | * This is the proxy management task. It enables proxies when there are enough |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 957 | * free streams, or stops them when the table is full. It is designed to be |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 958 | * called as a task which is woken up upon stopping or when rate limiting must |
| 959 | * be enforced. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 960 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 961 | struct task *manage_proxy(struct task *t, void *context, unsigned short state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 962 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 963 | struct proxy *p = context; |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 964 | int next = TICK_ETERNITY; |
Willy Tarreau | 7958422 | 2009-03-06 09:18:27 +0100 | [diff] [blame] | 965 | unsigned int wait; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 966 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 967 | /* We should periodically try to enable listeners waiting for a |
| 968 | * global resource here. |
| 969 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 970 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 971 | /* first, let's check if we need to stop the proxy */ |
| 972 | if (unlikely(stopping && p->state != PR_STSTOPPED)) { |
| 973 | int t; |
| 974 | t = tick_remain(now_ms, p->stop_time); |
| 975 | if (t == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 976 | ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 977 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 978 | send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 979 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 980 | stop_proxy(p); |
| 981 | /* try to free more memory */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 982 | pool_gc(NULL); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 983 | } |
| 984 | else { |
| 985 | next = tick_first(next, p->stop_time); |
| 986 | } |
| 987 | } |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 988 | |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 989 | /* If the proxy holds a stick table, we need to purge all unused |
| 990 | * entries. These are all the ones in the table with ref_cnt == 0 |
| 991 | * and all the ones in the pool used to allocate new entries. Any |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 992 | * entry attached to an existing stream waiting for a store will |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 993 | * be in neither list. Any entry being dumped will have ref_cnt > 0. |
| 994 | * However we protect tables that are being synced to peers. |
| 995 | */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 996 | if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) { |
| 997 | if (!p->table->syncing) { |
| 998 | stktable_trash_oldest(p->table, p->table->current); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 999 | pool_gc(NULL); |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1000 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1001 | if (p->table->current) { |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1002 | /* some entries still remain, let's recheck in one second */ |
| 1003 | next = tick_first(next, tick_add(now_ms, 1000)); |
| 1004 | } |
| 1005 | } |
| 1006 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1007 | /* the rest below is just for frontends */ |
| 1008 | if (!(p->cap & PR_CAP_FE)) |
| 1009 | goto out; |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 1010 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1011 | /* check the various reasons we may find to block the frontend */ |
| 1012 | if (unlikely(p->feconn >= p->maxconn)) { |
| 1013 | if (p->state == PR_STREADY) |
| 1014 | p->state = PR_STFULL; |
| 1015 | goto out; |
| 1016 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1017 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1018 | /* OK we have no reason to block, so let's unblock if we were blocking */ |
| 1019 | if (p->state == PR_STFULL) |
| 1020 | p->state = PR_STREADY; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1021 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1022 | if (p->fe_sps_lim && |
| 1023 | (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) { |
| 1024 | /* we're blocking because a limit was reached on the number of |
| 1025 | * requests/s on the frontend. We want to re-check ASAP, which |
| 1026 | * means in 1 ms before estimated expiration date, because the |
| 1027 | * timer will have settled down. |
| 1028 | */ |
| 1029 | next = tick_first(next, tick_add(now_ms, wait)); |
| 1030 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1031 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1032 | |
| 1033 | /* The proxy is not limited so we can re-enable any waiting listener */ |
| 1034 | if (!LIST_ISEMPTY(&p->listener_queue)) |
| 1035 | dequeue_all_listeners(&p->listener_queue); |
| 1036 | out: |
| 1037 | t->expire = next; |
| 1038 | task_queue(t); |
| 1039 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1043 | static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx, |
| 1044 | struct proxy *defpx, const char *file, int line, |
| 1045 | char **err) |
| 1046 | { |
| 1047 | const char *res; |
| 1048 | |
| 1049 | if (!*args[1]) { |
| 1050 | memprintf(err, "'%s' expects <time> as argument.\n", args[0]); |
| 1051 | return -1; |
| 1052 | } |
| 1053 | res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1054 | if (res == PARSE_TIME_OVER) { |
| 1055 | memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 1056 | args[1], args[0]); |
| 1057 | return -1; |
| 1058 | } |
| 1059 | else if (res == PARSE_TIME_UNDER) { |
| 1060 | memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)", |
| 1061 | args[1], args[0]); |
| 1062 | return -1; |
| 1063 | } |
| 1064 | else if (res) { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1065 | memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]); |
| 1066 | return -1; |
| 1067 | } |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 1071 | struct task *hard_stop(struct task *t, void *context, unsigned short state) |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1072 | { |
| 1073 | struct proxy *p; |
| 1074 | struct stream *s; |
| 1075 | |
| 1076 | if (killed) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1077 | ha_warning("Some tasks resisted to hard-stop, exiting now.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1078 | send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n"); |
Willy Tarreau | 7067b3a | 2019-06-02 11:11:29 +0200 | [diff] [blame] | 1079 | killed = 2; |
| 1080 | t->expire = TICK_ETERNITY; |
| 1081 | return t; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1082 | } |
| 1083 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1084 | ha_warning("soft-stop running for too long, performing a hard-stop.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1085 | send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n"); |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1086 | p = proxies_list; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1087 | while (p) { |
| 1088 | if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1089 | ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n", |
| 1090 | p->id, p->feconn); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1091 | send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n", |
| 1092 | p->id, p->feconn); |
| 1093 | } |
| 1094 | p = p->next; |
| 1095 | } |
| 1096 | list_for_each_entry(s, &streams, list) { |
| 1097 | stream_shutdown(s, SF_ERR_KILLED); |
| 1098 | } |
| 1099 | |
| 1100 | killed = 1; |
| 1101 | t->expire = tick_add(now_ms, MS_TO_TICKS(1000)); |
| 1102 | return t; |
| 1103 | } |
| 1104 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1105 | /* |
| 1106 | * this function disables health-check servers so that the process will quickly be ignored |
| 1107 | * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace |
| 1108 | * time will not be used since it would already not listen anymore to the socket. |
| 1109 | */ |
| 1110 | void soft_stop(void) |
| 1111 | { |
| 1112 | struct proxy *p; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1113 | struct peers *prs; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1114 | struct task *task; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1115 | |
| 1116 | stopping = 1; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1117 | if (tick_isset(global.hard_stop_after)) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 1118 | task = task_new(MAX_THREADS_MASK); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1119 | if (task) { |
| 1120 | task->process = hard_stop; |
| 1121 | task_schedule(task, tick_add(now_ms, global.hard_stop_after)); |
| 1122 | } |
| 1123 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1124 | ha_alert("out of memory trying to allocate the hard-stop task.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1125 | } |
| 1126 | } |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1127 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1128 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1129 | while (p) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1130 | /* Zombie proxy, let's close the file descriptors */ |
| 1131 | if (p->state == PR_STSTOPPED && |
| 1132 | !LIST_ISEMPTY(&p->conf.listeners) && |
| 1133 | LIST_ELEM(p->conf.listeners.n, |
| 1134 | struct listener *, by_fe)->state >= LI_ZOMBIE) { |
| 1135 | struct listener *l; |
| 1136 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
| 1137 | if (l->state >= LI_ZOMBIE) |
| 1138 | close(l->fd); |
| 1139 | l->state = LI_INIT; |
| 1140 | } |
| 1141 | } |
| 1142 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1143 | if (p->state != PR_STSTOPPED) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1144 | ha_warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 1145 | send_log(p, LOG_WARNING, "Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 1146 | p->stop_time = tick_add(now_ms, p->grace); |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1147 | |
Willy Tarreau | 20b7afb | 2015-09-28 16:35:04 +0200 | [diff] [blame] | 1148 | /* Note: do not wake up stopped proxies' task nor their tables' |
| 1149 | * tasks as these ones might point to already released entries. |
| 1150 | */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1151 | if (p->table && p->table->size && p->table->sync_task) |
| 1152 | task_wakeup(p->table->sync_task, TASK_WOKEN_MSG); |
Willy Tarreau | 20b7afb | 2015-09-28 16:35:04 +0200 | [diff] [blame] | 1153 | |
| 1154 | if (p->task) |
| 1155 | task_wakeup(p->task, TASK_WOKEN_MSG); |
| 1156 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1157 | p = p->next; |
| 1158 | } |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1159 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1160 | prs = cfg_peers; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1161 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1162 | if (prs->peers_fe) |
| 1163 | stop_proxy(prs->peers_fe); |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1164 | prs = prs->next; |
| 1165 | } |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 1166 | /* signal zero is used to broadcast the "stopping" event */ |
| 1167 | signal_handler(0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1171 | /* Temporarily disables listening on all of the proxy's listeners. Upon |
| 1172 | * success, the proxy enters the PR_PAUSED state. If disabling at least one |
| 1173 | * listener returns an error, then the proxy state is set to PR_STERROR |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1174 | * because we don't know how to resume from this. The function returns 0 |
| 1175 | * if it fails, or non-zero on success. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1176 | */ |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1177 | int pause_proxy(struct proxy *p) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1178 | { |
| 1179 | struct listener *l; |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1180 | |
| 1181 | if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR || |
| 1182 | p->state == PR_STSTOPPED || p->state == PR_STPAUSED) |
| 1183 | return 1; |
| 1184 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1185 | ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1186 | send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1187 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1188 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1189 | if (!pause_listener(l)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1190 | p->state = PR_STERROR; |
| 1191 | } |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1192 | |
| 1193 | if (p->state == PR_STERROR) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1194 | ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1195 | send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 1196 | return 0; |
| 1197 | } |
| 1198 | |
| 1199 | p->state = PR_STPAUSED; |
| 1200 | return 1; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1201 | } |
| 1202 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1203 | /* This function makes the proxy unusable, but keeps the listening sockets |
| 1204 | * opened, so that if any process requests them, we are able to serve them. |
| 1205 | * This should only be called early, before we started accepting requests. |
| 1206 | */ |
| 1207 | void zombify_proxy(struct proxy *p) |
| 1208 | { |
| 1209 | struct listener *l; |
| 1210 | struct listener *first_to_listen = NULL; |
| 1211 | |
| 1212 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
| 1213 | enum li_state oldstate = l->state; |
| 1214 | |
| 1215 | unbind_listener_no_close(l); |
| 1216 | if (l->state >= LI_ASSIGNED) { |
| 1217 | delete_listener(l); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1218 | } |
| 1219 | /* |
| 1220 | * Pretend we're still up and running so that the fd |
| 1221 | * will be sent if asked. |
| 1222 | */ |
| 1223 | l->state = LI_ZOMBIE; |
| 1224 | if (!first_to_listen && oldstate >= LI_LISTEN) |
| 1225 | first_to_listen = l; |
| 1226 | } |
| 1227 | /* Quick hack : at stop time, to know we have to close the sockets |
| 1228 | * despite the proxy being marked as stopped, make the first listener |
| 1229 | * of the listener list an active one, so that we don't have to |
| 1230 | * parse the whole list to be sure. |
| 1231 | */ |
| 1232 | if (first_to_listen && LIST_ELEM(p->conf.listeners.n, |
| 1233 | struct listener *, by_fe) != first_to_listen) { |
| 1234 | LIST_DEL(&l->by_fe); |
| 1235 | LIST_ADD(&p->conf.listeners, &l->by_fe); |
| 1236 | } |
| 1237 | |
| 1238 | p->state = PR_STSTOPPED; |
| 1239 | } |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1240 | |
| 1241 | /* |
| 1242 | * This function completely stops a proxy and releases its listeners. It has |
| 1243 | * to be called when going down in order to release the ports so that another |
| 1244 | * process may bind to them. It must also be called on disabled proxies at the |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1245 | * end of start-up. If all listeners are closed, the proxy is set to the |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1246 | * PR_STSTOPPED state. |
| 1247 | */ |
| 1248 | void stop_proxy(struct proxy *p) |
| 1249 | { |
| 1250 | struct listener *l; |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1251 | int nostop = 0; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1252 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1253 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1254 | if (l->options & LI_O_NOSTOP) { |
| 1255 | HA_ATOMIC_ADD(&unstoppable_jobs, 1); |
| 1256 | nostop = 1; |
| 1257 | continue; |
| 1258 | } |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1259 | unbind_listener(l); |
| 1260 | if (l->state >= LI_ASSIGNED) { |
| 1261 | delete_listener(l); |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1262 | } |
| 1263 | } |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1264 | if (!nostop) |
| 1265 | p->state = PR_STSTOPPED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1266 | } |
| 1267 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1268 | /* This function resumes listening on the specified proxy. It scans all of its |
| 1269 | * listeners and tries to enable them all. If any of them fails, the proxy is |
| 1270 | * put back to the paused state. It returns 1 upon success, or zero if an error |
| 1271 | * is encountered. |
| 1272 | */ |
| 1273 | int resume_proxy(struct proxy *p) |
| 1274 | { |
| 1275 | struct listener *l; |
| 1276 | int fail; |
| 1277 | |
| 1278 | if (p->state != PR_STPAUSED) |
| 1279 | return 1; |
| 1280 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1281 | ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1282 | send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1283 | |
| 1284 | fail = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1285 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1286 | if (!resume_listener(l)) { |
| 1287 | int port; |
| 1288 | |
| 1289 | port = get_host_port(&l->addr); |
| 1290 | if (port) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1291 | ha_warning("Port %d busy while trying to enable %s %s.\n", |
| 1292 | port, proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1293 | send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n", |
| 1294 | port, proxy_cap_str(p->cap), p->id); |
| 1295 | } |
| 1296 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1297 | ha_warning("Bind on socket %d busy while trying to enable %s %s.\n", |
| 1298 | l->luid, proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1299 | send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n", |
| 1300 | l->luid, proxy_cap_str(p->cap), p->id); |
| 1301 | } |
| 1302 | |
| 1303 | /* Another port might have been enabled. Let's stop everything. */ |
| 1304 | fail = 1; |
| 1305 | break; |
| 1306 | } |
| 1307 | } |
| 1308 | |
| 1309 | p->state = PR_STREADY; |
| 1310 | if (fail) { |
| 1311 | pause_proxy(p); |
| 1312 | return 0; |
| 1313 | } |
| 1314 | return 1; |
| 1315 | } |
| 1316 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1317 | /* |
| 1318 | * This function temporarily disables listening so that another new instance |
| 1319 | * can start listening. It is designed to be called upon reception of a |
| 1320 | * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop |
| 1321 | * the proxy, or a SIGTTIN can be sent to listen again. |
| 1322 | */ |
| 1323 | void pause_proxies(void) |
| 1324 | { |
| 1325 | int err; |
| 1326 | struct proxy *p; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1327 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1328 | |
| 1329 | err = 0; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1330 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1331 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1332 | while (p) { |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1333 | err |= !pause_proxy(p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1334 | p = p->next; |
| 1335 | } |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1336 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1337 | prs = cfg_peers; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1338 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1339 | if (prs->peers_fe) |
| 1340 | err |= !pause_proxy(prs->peers_fe); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1341 | prs = prs->next; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1342 | } |
| 1343 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1344 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1345 | ha_warning("Some proxies refused to pause, performing soft stop now.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1346 | send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n"); |
| 1347 | soft_stop(); |
| 1348 | } |
| 1349 | } |
| 1350 | |
| 1351 | |
| 1352 | /* |
| 1353 | * This function reactivates listening. This can be used after a call to |
| 1354 | * sig_pause(), for example when a new instance has failed starting up. |
| 1355 | * It is designed to be called upon reception of a SIGTTIN. |
| 1356 | */ |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1357 | void resume_proxies(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1358 | { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1359 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1360 | struct proxy *p; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1361 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1362 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1363 | err = 0; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1364 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1365 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1366 | while (p) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1367 | err |= !resume_proxy(p); |
| 1368 | p = p->next; |
| 1369 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1370 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1371 | prs = cfg_peers; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1372 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1373 | if (prs->peers_fe) |
| 1374 | err |= !resume_proxy(prs->peers_fe); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1375 | prs = prs->next; |
| 1376 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1377 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1378 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1379 | ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1380 | send_log(p, LOG_WARNING, "Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1381 | } |
| 1382 | } |
| 1383 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1384 | /* Set current stream's backend to <be>. Nothing is done if the |
| 1385 | * stream already had a backend assigned, which is indicated by |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1386 | * s->flags & SF_BE_ASSIGNED. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1387 | * All flags, stats and counters which need be updated are updated. |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1388 | * Returns 1 if done, 0 in case of internal error, eg: lack of resource. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1389 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1390 | int stream_set_backend(struct stream *s, struct proxy *be) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1391 | { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1392 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1393 | return 1; |
Christopher Faulet | 4117904 | 2016-06-21 11:54:52 +0200 | [diff] [blame] | 1394 | |
| 1395 | if (flt_set_stream_backend(s, be) < 0) |
| 1396 | return 0; |
| 1397 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1398 | s->be = be; |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 1399 | HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max, |
| 1400 | HA_ATOMIC_ADD(&be->beconn, 1)); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1401 | proxy_inc_be_ctr(be); |
| 1402 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1403 | /* assign new parameters to the stream from the new backend */ |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 1404 | s->si[1].flags &= ~SI_FL_INDEP_STR; |
| 1405 | if (be->options2 & PR_O2_INDEPSTR) |
| 1406 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 1407 | |
Hongbo Long | e39683c | 2017-03-10 18:41:51 +0100 | [diff] [blame] | 1408 | if (tick_isset(be->timeout.serverfin)) |
| 1409 | s->si[1].hcto = be->timeout.serverfin; |
| 1410 | |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1411 | /* We want to enable the backend-specific analysers except those which |
| 1412 | * were already run as part of the frontend/listener. Note that it would |
| 1413 | * be more reliable to store the list of analysers that have been run, |
| 1414 | * but what we do here is OK for now. |
| 1415 | */ |
Christopher Faulet | 70e2f27 | 2017-01-09 16:33:19 +0100 | [diff] [blame] | 1416 | s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0); |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1417 | |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1418 | /* If the target backend requires HTTP processing, we have to allocate |
Christopher Faulet | 711ed6a | 2019-07-16 14:16:10 +0200 | [diff] [blame] | 1419 | * the HTTP transaction if we did not have one. |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1420 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1421 | if (unlikely(!s->txn && be->http_needed)) { |
| 1422 | if (unlikely(!http_alloc_txn(s))) |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1423 | return 0; /* not enough memory */ |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 1424 | |
| 1425 | /* and now initialize the HTTP transaction state */ |
| 1426 | http_init_txn(s); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1427 | } |
| 1428 | |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 1429 | /* Be sure to filter request headers if the backend is an HTTP proxy and |
| 1430 | * if there are filters attached to the stream. */ |
| 1431 | if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s)) |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1432 | s->req.analysers |= AN_REQ_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 1433 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1434 | if (s->txn) { |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1435 | /* If we chain a TCP frontend to an HTX backend, we must upgrade |
| 1436 | * the client mux */ |
Christopher Faulet | 60d29b3 | 2019-07-15 15:00:25 +0200 | [diff] [blame] | 1437 | if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) { |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1438 | struct connection *conn = objt_conn(strm_sess(s)->origin); |
| 1439 | struct conn_stream *cs = objt_cs(s->si[0].end); |
| 1440 | |
| 1441 | if (conn && cs) { |
| 1442 | si_rx_endp_more(&s->si[0]); |
Olivier Houchard | 2ab3dad | 2019-07-03 13:08:18 +0200 | [diff] [blame] | 1443 | /* Make sure we're unsubscribed, the the new |
| 1444 | * mux will probably want to subscribe to |
| 1445 | * the underlying XPRT |
| 1446 | */ |
| 1447 | if (s->si[0].wait_event.events) |
| 1448 | conn->mux->unsubscribe(cs, s->si[0].wait_event.events, |
| 1449 | &s->si[0].wait_event); |
Christopher Faulet | c985f6c | 2019-07-15 11:42:52 +0200 | [diff] [blame] | 1450 | if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTTP) == -1) |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1451 | return 0; |
| 1452 | s->flags |= SF_HTX; |
| 1453 | } |
| 1454 | } |
| 1455 | |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1456 | /* we may request to parse a request body */ |
Christopher Faulet | 711ed6a | 2019-07-16 14:16:10 +0200 | [diff] [blame] | 1457 | if (be->options & PR_O_WREQ_BODY) |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1458 | s->req.analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1459 | } |
| 1460 | |
| 1461 | s->flags |= SF_BE_ASSIGNED; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1462 | if (be->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1463 | s->req.flags |= CF_NEVER_WAIT; |
| 1464 | s->res.flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1465 | } |
| 1466 | |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1467 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1468 | } |
| 1469 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1470 | /* Capture a bad request or response and archive it in the proxy's structure. |
| 1471 | * It is relatively protocol-agnostic so it requires that a number of elements |
| 1472 | * are passed : |
| 1473 | * - <proxy> is the proxy where the error was detected and where the snapshot |
| 1474 | * needs to be stored |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 1475 | * - <is_back> indicates that the error happened when receiving the response |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1476 | * - <other_end> is a pointer to the proxy on the other side when known |
| 1477 | * - <target> is the target of the connection, usually a server or a proxy |
| 1478 | * - <sess> is the session which experienced the error |
| 1479 | * - <ctx> may be NULL or should contain any info relevant to the protocol |
| 1480 | * - <buf> is the buffer containing the offending data |
| 1481 | * - <buf_ofs> is the position of this buffer's input data in the input |
| 1482 | * stream, starting at zero. It may be passed as zero if unknown. |
| 1483 | * - <buf_out> is the portion of <buf->data> which was already forwarded and |
| 1484 | * which precedes the buffer's input. The buffer's input starts at |
| 1485 | * buf->head + buf_out. |
| 1486 | * - <err_pos> is the pointer to the faulty byte in the buffer's input. |
| 1487 | * - <show> is the callback to use to display <ctx>. It may be NULL. |
| 1488 | */ |
| 1489 | void proxy_capture_error(struct proxy *proxy, int is_back, |
| 1490 | struct proxy *other_end, enum obj_type *target, |
| 1491 | const struct session *sess, |
| 1492 | const struct buffer *buf, long buf_ofs, |
| 1493 | unsigned int buf_out, unsigned int err_pos, |
| 1494 | const union error_snapshot_ctx *ctx, |
| 1495 | void (*show)(struct buffer *, const struct error_snapshot *)) |
| 1496 | { |
| 1497 | struct error_snapshot *es; |
| 1498 | unsigned int buf_len; |
| 1499 | int len1, len2; |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1500 | unsigned int ev_id; |
| 1501 | |
| 1502 | ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1); |
| 1503 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1504 | buf_len = b_data(buf) - buf_out; |
| 1505 | |
| 1506 | es = malloc(sizeof(*es) + buf_len); |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1507 | if (!es) |
| 1508 | return; |
| 1509 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1510 | es->buf_len = buf_len; |
| 1511 | es->ev_id = ev_id; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1512 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1513 | len1 = b_size(buf) - buf_len; |
| 1514 | if (len1 > buf_len) |
| 1515 | len1 = buf_len; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1516 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1517 | if (len1) { |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1518 | memcpy(es->buf, b_peek(buf, buf_out), len1); |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1519 | len2 = buf_len - len1; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1520 | if (len2) |
| 1521 | memcpy(es->buf + len1, b_orig(buf), len2); |
| 1522 | } |
| 1523 | |
| 1524 | es->buf_err = err_pos; |
| 1525 | es->when = date; // user-visible date |
| 1526 | es->srv = objt_server(target); |
| 1527 | es->oe = other_end; |
Willy Tarreau | 026efc7 | 2019-07-17 15:20:02 +0200 | [diff] [blame] | 1528 | if (objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin))) |
| 1529 | es->src = *__objt_conn(sess->origin)->src; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1530 | else |
| 1531 | memset(&es->src, 0, sizeof(es->src)); |
| 1532 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1533 | es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out); |
| 1534 | es->buf_out = buf_out; |
| 1535 | es->buf_ofs = buf_ofs; |
| 1536 | |
| 1537 | /* be sure to indicate the offset of the first IN byte */ |
| 1538 | if (es->buf_ofs >= es->buf_len) |
| 1539 | es->buf_ofs -= es->buf_len; |
| 1540 | else |
| 1541 | es->buf_ofs = 0; |
| 1542 | |
| 1543 | /* protocol-specific part now */ |
| 1544 | if (ctx) |
| 1545 | es->ctx = *ctx; |
| 1546 | else |
| 1547 | memset(&es->ctx, 0, sizeof(es->ctx)); |
| 1548 | es->show = show; |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1549 | |
| 1550 | /* note: we still lock since we have to be certain that nobody is |
| 1551 | * dumping the output while we free. |
| 1552 | */ |
| 1553 | HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock); |
| 1554 | if (is_back) { |
| 1555 | es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es); |
| 1556 | } else { |
| 1557 | es = HA_ATOMIC_XCHG(&proxy->invalid_req, es); |
| 1558 | } |
| 1559 | free(es); |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1560 | HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock); |
| 1561 | } |
| 1562 | |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1563 | /* Configure all proxies which lack a maxconn setting to use the global one by |
| 1564 | * default. This avoids the common mistake consisting in setting maxconn only |
| 1565 | * in the global section and discovering the hard way that it doesn't propagate |
| 1566 | * through the frontends. These values are also propagated through the various |
| 1567 | * targetted backends, whose fullconn is finally calculated if not yet set. |
| 1568 | */ |
| 1569 | void proxy_adjust_all_maxconn() |
| 1570 | { |
| 1571 | struct proxy *curproxy; |
| 1572 | struct switching_rule *swrule1, *swrule2; |
| 1573 | |
| 1574 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 1575 | if (curproxy->state == PR_STSTOPPED) |
| 1576 | continue; |
| 1577 | |
| 1578 | if (!(curproxy->cap & PR_CAP_FE)) |
| 1579 | continue; |
| 1580 | |
| 1581 | if (!curproxy->maxconn) |
| 1582 | curproxy->maxconn = global.maxconn; |
| 1583 | |
| 1584 | /* update the target backend's fullconn count : default_backend */ |
| 1585 | if (curproxy->defbe.be) |
| 1586 | curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn; |
| 1587 | else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) |
| 1588 | curproxy->tot_fe_maxconn += curproxy->maxconn; |
| 1589 | |
| 1590 | list_for_each_entry(swrule1, &curproxy->switching_rules, list) { |
| 1591 | /* For each target of switching rules, we update their |
| 1592 | * tot_fe_maxconn, except if a previous rule points to |
| 1593 | * the same backend or to the default backend. |
| 1594 | */ |
| 1595 | if (swrule1->be.backend != curproxy->defbe.be) { |
Frédéric Lécaille | 2365fb0 | 2019-03-07 15:02:52 +0100 | [diff] [blame] | 1596 | /* note: swrule1->be.backend isn't a backend if the rule |
| 1597 | * is dynamic, it's an expression instead, so it must not |
| 1598 | * be dereferenced as a backend before being certain it is. |
| 1599 | */ |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1600 | list_for_each_entry(swrule2, &curproxy->switching_rules, list) { |
| 1601 | if (swrule2 == swrule1) { |
Frédéric Lécaille | 2365fb0 | 2019-03-07 15:02:52 +0100 | [diff] [blame] | 1602 | if (!swrule1->dynamic) |
| 1603 | swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn; |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1604 | break; |
| 1605 | } |
| 1606 | else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) { |
| 1607 | /* there are multiple refs of this backend */ |
| 1608 | break; |
| 1609 | } |
| 1610 | } |
| 1611 | } |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | /* automatically compute fullconn if not set. We must not do it in the |
| 1616 | * loop above because cross-references are not yet fully resolved. |
| 1617 | */ |
| 1618 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 1619 | if (curproxy->state == PR_STSTOPPED) |
| 1620 | continue; |
| 1621 | |
| 1622 | /* If <fullconn> is not set, let's set it to 10% of the sum of |
| 1623 | * the possible incoming frontend's maxconns. |
| 1624 | */ |
| 1625 | if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) { |
| 1626 | /* we have the sum of the maxconns in <total>. We only |
| 1627 | * keep 10% of that sum to set the default fullconn, with |
| 1628 | * a hard minimum of 1 (to avoid a divide by zero). |
| 1629 | */ |
| 1630 | curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10; |
| 1631 | if (!curproxy->fullconn) |
| 1632 | curproxy->fullconn = 1; |
| 1633 | } |
| 1634 | } |
| 1635 | } |
| 1636 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1637 | /* Config keywords below */ |
| 1638 | |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1639 | static struct cfg_kw_list cfg_kws = {ILH, { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1640 | { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1641 | { CFG_LISTEN, "timeout", proxy_parse_timeout }, |
Tim Duesterhus | 86e6b6e | 2019-05-14 20:57:59 +0200 | [diff] [blame] | 1642 | { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */ |
| 1643 | { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */ |
| 1644 | { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */ |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1645 | { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit }, |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 1646 | { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue }, |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 1647 | { CFG_LISTEN, "declare", proxy_parse_declare }, |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1648 | { CFG_LISTEN, "retry-on", proxy_parse_retry_on }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1649 | { 0, NULL, NULL }, |
| 1650 | }}; |
| 1651 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1652 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1653 | |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1654 | /* Expects to find a frontend named <arg> and returns it, otherwise displays various |
| 1655 | * adequate error messages and returns NULL. This function is designed to be used by |
| 1656 | * functions requiring a frontend on the CLI. |
| 1657 | */ |
| 1658 | struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg) |
| 1659 | { |
| 1660 | struct proxy *px; |
| 1661 | |
| 1662 | if (!*arg) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1663 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1664 | appctx->ctx.cli.msg = "A frontend name is expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1665 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1666 | return NULL; |
| 1667 | } |
| 1668 | |
| 1669 | px = proxy_fe_by_name(arg); |
| 1670 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1671 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1672 | appctx->ctx.cli.msg = "No such frontend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1673 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1674 | return NULL; |
| 1675 | } |
| 1676 | return px; |
| 1677 | } |
| 1678 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1679 | /* Expects to find a backend named <arg> and returns it, otherwise displays various |
| 1680 | * adequate error messages and returns NULL. This function is designed to be used by |
| 1681 | * functions requiring a frontend on the CLI. |
| 1682 | */ |
| 1683 | struct proxy *cli_find_backend(struct appctx *appctx, const char *arg) |
| 1684 | { |
| 1685 | struct proxy *px; |
| 1686 | |
| 1687 | if (!*arg) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1688 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1689 | appctx->ctx.cli.msg = "A backend name is expected.\n"; |
| 1690 | appctx->st0 = CLI_ST_PRINT; |
| 1691 | return NULL; |
| 1692 | } |
| 1693 | |
| 1694 | px = proxy_be_by_name(arg); |
| 1695 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1696 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1697 | appctx->ctx.cli.msg = "No such backend.\n"; |
| 1698 | appctx->st0 = CLI_ST_PRINT; |
| 1699 | return NULL; |
| 1700 | } |
| 1701 | return px; |
| 1702 | } |
| 1703 | |
| 1704 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1705 | /* parse a "show servers" CLI line, returns 0 if it wants to start the dump or |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1706 | * 1 if it stops immediately. If an argument is specified, it will set the proxy |
| 1707 | * pointer into cli.p0 and its ID into cli.i0. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1708 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1709 | static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1710 | { |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1711 | struct proxy *px; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1712 | |
| 1713 | /* check if a backend name has been provided */ |
| 1714 | if (*args[3]) { |
| 1715 | /* read server state from local file */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1716 | px = proxy_be_by_name(args[3]); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1717 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1718 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1719 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1720 | appctx->ctx.cli.msg = "Can't find backend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1721 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1722 | return 1; |
| 1723 | } |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1724 | appctx->ctx.cli.p0 = px; |
| 1725 | appctx->ctx.cli.i0 = px->uuid; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1726 | } |
| 1727 | return 0; |
| 1728 | } |
| 1729 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1730 | /* dumps server state information into <buf> for all the servers found in backend cli.p0. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1731 | * These information are all the parameters which may change during HAProxy runtime. |
| 1732 | * By default, we only export to the last known server state file format. |
| 1733 | * These information can be used at next startup to recover same level of server state. |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1734 | * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's |
| 1735 | * pointer from cli.p1. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1736 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1737 | static int dump_servers_state(struct stream_interface *si, struct buffer *buf) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1738 | { |
| 1739 | struct appctx *appctx = __objt_appctx(si->end); |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1740 | struct proxy *px = appctx->ctx.cli.p0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1741 | struct server *srv; |
| 1742 | char srv_addr[INET6_ADDRSTRLEN + 1]; |
| 1743 | time_t srv_time_since_last_change; |
| 1744 | int bk_f_forced_id, srv_f_forced_id; |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1745 | char *srvrecord; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1746 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1747 | /* we don't want to report any state if the backend is not enabled on this process */ |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 1748 | if (!(proc_mask(px->bind_proc) & pid_bit)) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1749 | return 1; |
| 1750 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1751 | if (!appctx->ctx.cli.p1) |
| 1752 | appctx->ctx.cli.p1 = px->srv; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1753 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1754 | for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) { |
| 1755 | srv = appctx->ctx.cli.p1; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1756 | srv_addr[0] = '\0'; |
| 1757 | |
| 1758 | switch (srv->addr.ss_family) { |
| 1759 | case AF_INET: |
| 1760 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr, |
| 1761 | srv_addr, INET_ADDRSTRLEN + 1); |
| 1762 | break; |
| 1763 | case AF_INET6: |
| 1764 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr, |
| 1765 | srv_addr, INET6_ADDRSTRLEN + 1); |
| 1766 | break; |
Daniel Corbett | 9215ffa | 2018-05-19 19:43:24 -0400 | [diff] [blame] | 1767 | default: |
| 1768 | memcpy(srv_addr, "-\0", 2); |
| 1769 | break; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1770 | } |
| 1771 | srv_time_since_last_change = now.tv_sec - srv->last_change; |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1772 | bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1773 | srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0; |
| 1774 | |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1775 | srvrecord = NULL; |
| 1776 | if (srv->srvrq && srv->srvrq->name) |
| 1777 | srvrecord = srv->srvrq->name; |
| 1778 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1779 | chunk_appendf(buf, |
| 1780 | "%d %s " |
| 1781 | "%d %s %s " |
| 1782 | "%d %d %d %d %ld " |
| 1783 | "%d %d %d %d %d " |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1784 | "%d %d %s %u %s" |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1785 | "\n", |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1786 | px->uuid, px->id, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1787 | srv->puid, srv->id, srv_addr, |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1788 | srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1789 | srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state, |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1790 | bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port, |
| 1791 | srvrecord ? srvrecord : "-"); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1792 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1793 | si_rx_room_blk(si); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1794 | return 0; |
| 1795 | } |
| 1796 | } |
| 1797 | return 1; |
| 1798 | } |
| 1799 | |
| 1800 | /* Parses backend list or simply use backend name provided by the user to return |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1801 | * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is |
| 1802 | * non-null. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1803 | */ |
| 1804 | static int cli_io_handler_servers_state(struct appctx *appctx) |
| 1805 | { |
| 1806 | struct stream_interface *si = appctx->owner; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1807 | struct proxy *curproxy; |
| 1808 | |
| 1809 | chunk_reset(&trash); |
| 1810 | |
| 1811 | if (appctx->st2 == STAT_ST_INIT) { |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1812 | if (!appctx->ctx.cli.p0) |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1813 | appctx->ctx.cli.p0 = proxies_list; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1814 | appctx->st2 = STAT_ST_HEAD; |
| 1815 | } |
| 1816 | |
| 1817 | if (appctx->st2 == STAT_ST_HEAD) { |
| 1818 | chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1819 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1820 | si_rx_room_blk(si); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1821 | return 0; |
| 1822 | } |
| 1823 | appctx->st2 = STAT_ST_INFO; |
| 1824 | } |
| 1825 | |
| 1826 | /* STAT_ST_INFO */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1827 | for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) { |
| 1828 | curproxy = appctx->ctx.cli.p0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1829 | /* servers are only in backends */ |
| 1830 | if (curproxy->cap & PR_CAP_BE) { |
| 1831 | if (!dump_servers_state(si, &trash)) |
| 1832 | return 0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1833 | } |
| 1834 | /* only the selected proxy is dumped */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1835 | if (appctx->ctx.cli.i0) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1836 | break; |
| 1837 | } |
| 1838 | |
| 1839 | return 1; |
| 1840 | } |
| 1841 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1842 | /* Parses backend list and simply report backend names. It keeps the proxy |
| 1843 | * pointer in cli.p0. |
| 1844 | */ |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1845 | static int cli_io_handler_show_backend(struct appctx *appctx) |
| 1846 | { |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1847 | struct stream_interface *si = appctx->owner; |
| 1848 | struct proxy *curproxy; |
| 1849 | |
| 1850 | chunk_reset(&trash); |
| 1851 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1852 | if (!appctx->ctx.cli.p0) { |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1853 | chunk_printf(&trash, "# name\n"); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1854 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1855 | si_rx_room_blk(si); |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1856 | return 0; |
| 1857 | } |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1858 | appctx->ctx.cli.p0 = proxies_list; |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1859 | } |
| 1860 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1861 | for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) { |
| 1862 | curproxy = appctx->ctx.cli.p0; |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1863 | |
| 1864 | /* looking for backends only */ |
| 1865 | if (!(curproxy->cap & PR_CAP_BE)) |
| 1866 | continue; |
| 1867 | |
| 1868 | /* we don't want to list a backend which is bound to this process */ |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 1869 | if (!(proc_mask(curproxy->bind_proc) & pid_bit)) |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1870 | continue; |
| 1871 | |
| 1872 | chunk_appendf(&trash, "%s\n", curproxy->id); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1873 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1874 | si_rx_room_blk(si); |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1875 | return 0; |
| 1876 | } |
| 1877 | } |
| 1878 | |
| 1879 | return 1; |
| 1880 | } |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1881 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1882 | /* Parses the "enable dynamic-cookies backend" directive, it always returns 1. |
| 1883 | * |
| 1884 | * Grabs the proxy lock and each server's lock. |
| 1885 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1886 | static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1887 | { |
| 1888 | struct proxy *px; |
| 1889 | struct server *s; |
| 1890 | |
| 1891 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1892 | return 1; |
| 1893 | |
| 1894 | px = cli_find_backend(appctx, args[3]); |
| 1895 | if (!px) |
| 1896 | return 1; |
| 1897 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1898 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 1899 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1900 | px->ck_opts |= PR_CK_DYNAMIC; |
| 1901 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1902 | for (s = px->srv; s != NULL; s = s->next) { |
| 1903 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1904 | srv_set_dyncookie(s); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1905 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 1906 | } |
| 1907 | |
| 1908 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1909 | |
| 1910 | return 1; |
| 1911 | } |
| 1912 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1913 | /* Parses the "disable dynamic-cookies backend" directive, it always returns 1. |
| 1914 | * |
| 1915 | * Grabs the proxy lock and each server's lock. |
| 1916 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1917 | static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1918 | { |
| 1919 | struct proxy *px; |
| 1920 | struct server *s; |
| 1921 | |
| 1922 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1923 | return 1; |
| 1924 | |
| 1925 | px = cli_find_backend(appctx, args[3]); |
| 1926 | if (!px) |
| 1927 | return 1; |
| 1928 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1929 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 1930 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1931 | px->ck_opts &= ~PR_CK_DYNAMIC; |
| 1932 | |
| 1933 | for (s = px->srv; s != NULL; s = s->next) { |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1934 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1935 | if (!(s->flags & SRV_F_COOKIESET)) { |
| 1936 | free(s->cookie); |
| 1937 | s->cookie = NULL; |
| 1938 | } |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1939 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1940 | } |
| 1941 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1942 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 1943 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1944 | return 1; |
| 1945 | } |
| 1946 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1947 | /* Parses the "set dynamic-cookie-key backend" directive, it always returns 1. |
| 1948 | * |
| 1949 | * Grabs the proxy lock and each server's lock. |
| 1950 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1951 | static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1952 | { |
| 1953 | struct proxy *px; |
| 1954 | struct server *s; |
| 1955 | char *newkey; |
| 1956 | |
| 1957 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1958 | return 1; |
| 1959 | |
| 1960 | px = cli_find_backend(appctx, args[3]); |
| 1961 | if (!px) |
| 1962 | return 1; |
| 1963 | |
| 1964 | if (!*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1965 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1966 | appctx->ctx.cli.msg = "String value expected.\n"; |
| 1967 | appctx->st0 = CLI_ST_PRINT; |
| 1968 | return 1; |
| 1969 | } |
| 1970 | |
| 1971 | newkey = strdup(args[4]); |
| 1972 | if (!newkey) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1973 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1974 | appctx->ctx.cli.msg = "Failed to allocate memory.\n"; |
| 1975 | appctx->st0 = CLI_ST_PRINT; |
| 1976 | return 1; |
| 1977 | } |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1978 | |
| 1979 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 1980 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1981 | free(px->dyncookie_key); |
| 1982 | px->dyncookie_key = newkey; |
| 1983 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1984 | for (s = px->srv; s != NULL; s = s->next) { |
| 1985 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1986 | srv_set_dyncookie(s); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1987 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 1988 | } |
| 1989 | |
| 1990 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1991 | |
| 1992 | return 1; |
| 1993 | } |
| 1994 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1995 | /* Parses the "set maxconn frontend" directive, it always returns 1. |
| 1996 | * |
| 1997 | * Grabs the proxy lock. |
| 1998 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1999 | static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2000 | { |
| 2001 | struct proxy *px; |
| 2002 | struct listener *l; |
| 2003 | int v; |
| 2004 | |
| 2005 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2006 | return 1; |
| 2007 | |
| 2008 | px = cli_find_frontend(appctx, args[3]); |
| 2009 | if (!px) |
| 2010 | return 1; |
| 2011 | |
| 2012 | if (!*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2013 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2014 | appctx->ctx.cli.msg = "Integer value expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2015 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2016 | return 1; |
| 2017 | } |
| 2018 | |
| 2019 | v = atoi(args[4]); |
| 2020 | if (v < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2021 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2022 | appctx->ctx.cli.msg = "Value out of range.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2023 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2024 | return 1; |
| 2025 | } |
| 2026 | |
| 2027 | /* OK, the value is fine, so we assign it to the proxy and to all of |
| 2028 | * its listeners. The blocked ones will be dequeued. |
| 2029 | */ |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2030 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2031 | |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2032 | px->maxconn = v; |
| 2033 | list_for_each_entry(l, &px->conf.listeners, by_fe) { |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2034 | if (l->state == LI_FULL) |
| 2035 | resume_listener(l); |
| 2036 | } |
| 2037 | |
| 2038 | if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue)) |
| 2039 | dequeue_all_listeners(&px->listener_queue); |
| 2040 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2041 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2042 | |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2043 | return 1; |
| 2044 | } |
| 2045 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2046 | /* Parses the "shutdown frontend" directive, it always returns 1. |
| 2047 | * |
| 2048 | * Grabs the proxy lock. |
| 2049 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2050 | static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2051 | { |
| 2052 | struct proxy *px; |
| 2053 | |
| 2054 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2055 | return 1; |
| 2056 | |
| 2057 | px = cli_find_frontend(appctx, args[2]); |
| 2058 | if (!px) |
| 2059 | return 1; |
| 2060 | |
| 2061 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2062 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2063 | appctx->ctx.cli.msg = "Frontend was already shut down.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2064 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2065 | return 1; |
| 2066 | } |
| 2067 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2068 | ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 2069 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2070 | send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 2071 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2072 | |
| 2073 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2074 | stop_proxy(px); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2075 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2076 | |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2077 | return 1; |
| 2078 | } |
| 2079 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2080 | /* Parses the "disable frontend" directive, it always returns 1. |
| 2081 | * |
| 2082 | * Grabs the proxy lock. |
| 2083 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2084 | static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2085 | { |
| 2086 | struct proxy *px; |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2087 | int ret; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2088 | |
| 2089 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2090 | return 1; |
| 2091 | |
| 2092 | px = cli_find_frontend(appctx, args[2]); |
| 2093 | if (!px) |
| 2094 | return 1; |
| 2095 | |
| 2096 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2097 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2098 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2099 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2100 | return 1; |
| 2101 | } |
| 2102 | |
| 2103 | if (px->state == PR_STPAUSED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2104 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2105 | appctx->ctx.cli.msg = "Frontend is already disabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2106 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2107 | return 1; |
| 2108 | } |
| 2109 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2110 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2111 | ret = pause_proxy(px); |
| 2112 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2113 | |
| 2114 | if (!ret) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2115 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2116 | appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2117 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2118 | return 1; |
| 2119 | } |
| 2120 | return 1; |
| 2121 | } |
| 2122 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2123 | /* Parses the "enable frontend" directive, it always returns 1. |
| 2124 | * |
| 2125 | * Grabs the proxy lock. |
| 2126 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2127 | static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2128 | { |
| 2129 | struct proxy *px; |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2130 | int ret; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2131 | |
| 2132 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2133 | return 1; |
| 2134 | |
| 2135 | px = cli_find_frontend(appctx, args[2]); |
| 2136 | if (!px) |
| 2137 | return 1; |
| 2138 | |
| 2139 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2140 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2141 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2142 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2143 | return 1; |
| 2144 | } |
| 2145 | |
| 2146 | if (px->state != PR_STPAUSED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2147 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2148 | appctx->ctx.cli.msg = "Frontend is already enabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2149 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2150 | return 1; |
| 2151 | } |
| 2152 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2153 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2154 | ret = resume_proxy(px); |
| 2155 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2156 | |
| 2157 | if (!ret) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2158 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2159 | appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2160 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2161 | return 1; |
| 2162 | } |
| 2163 | return 1; |
| 2164 | } |
| 2165 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2166 | /* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop |
| 2167 | * now. |
| 2168 | */ |
| 2169 | static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private) |
| 2170 | { |
| 2171 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 2172 | return 1; |
| 2173 | |
| 2174 | if (*args[2]) { |
| 2175 | struct proxy *px; |
| 2176 | |
| 2177 | px = proxy_find_by_name(args[2], 0, 0); |
| 2178 | if (px) |
| 2179 | appctx->ctx.errors.iid = px->uuid; |
| 2180 | else |
| 2181 | appctx->ctx.errors.iid = atoi(args[2]); |
| 2182 | |
| 2183 | if (!appctx->ctx.errors.iid) { |
| 2184 | appctx->ctx.cli.severity = LOG_ERR; |
| 2185 | appctx->ctx.cli.msg = "No such proxy.\n"; |
| 2186 | appctx->st0 = CLI_ST_PRINT; |
| 2187 | return 1; |
| 2188 | } |
| 2189 | } |
| 2190 | else |
| 2191 | appctx->ctx.errors.iid = -1; // dump all proxies |
| 2192 | |
| 2193 | appctx->ctx.errors.flag = 0; |
| 2194 | if (strcmp(args[3], "request") == 0) |
| 2195 | appctx->ctx.errors.flag |= 4; // ignore response |
| 2196 | else if (strcmp(args[3], "response") == 0) |
| 2197 | appctx->ctx.errors.flag |= 2; // ignore request |
| 2198 | appctx->ctx.errors.px = NULL; |
| 2199 | return 0; |
| 2200 | } |
| 2201 | |
| 2202 | /* This function dumps all captured errors onto the stream interface's |
| 2203 | * read buffer. It returns 0 if the output buffer is full and it needs |
| 2204 | * to be called again, otherwise non-zero. |
| 2205 | */ |
| 2206 | static int cli_io_handler_show_errors(struct appctx *appctx) |
| 2207 | { |
| 2208 | struct stream_interface *si = appctx->owner; |
| 2209 | extern const char *monthname[12]; |
| 2210 | |
| 2211 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 2212 | return 1; |
| 2213 | |
| 2214 | chunk_reset(&trash); |
| 2215 | |
| 2216 | if (!appctx->ctx.errors.px) { |
| 2217 | /* the function had not been called yet, let's prepare the |
| 2218 | * buffer for a response. |
| 2219 | */ |
| 2220 | struct tm tm; |
| 2221 | |
| 2222 | get_localtime(date.tv_sec, &tm); |
| 2223 | chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n", |
| 2224 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 2225 | tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000), |
| 2226 | error_snapshot_id); |
| 2227 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2228 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2229 | goto cant_send; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2230 | |
| 2231 | appctx->ctx.errors.px = proxies_list; |
| 2232 | appctx->ctx.errors.bol = 0; |
| 2233 | appctx->ctx.errors.ptr = -1; |
| 2234 | } |
| 2235 | |
| 2236 | /* we have two inner loops here, one for the proxy, the other one for |
| 2237 | * the buffer. |
| 2238 | */ |
| 2239 | while (appctx->ctx.errors.px) { |
| 2240 | struct error_snapshot *es; |
| 2241 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2242 | HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
| 2243 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2244 | if ((appctx->ctx.errors.flag & 1) == 0) { |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2245 | es = appctx->ctx.errors.px->invalid_req; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2246 | if (appctx->ctx.errors.flag & 2) // skip req |
| 2247 | goto next; |
| 2248 | } |
| 2249 | else { |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2250 | es = appctx->ctx.errors.px->invalid_rep; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2251 | if (appctx->ctx.errors.flag & 4) // skip resp |
| 2252 | goto next; |
| 2253 | } |
| 2254 | |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2255 | if (!es) |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2256 | goto next; |
| 2257 | |
| 2258 | if (appctx->ctx.errors.iid >= 0 && |
| 2259 | appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid && |
| 2260 | es->oe->uuid != appctx->ctx.errors.iid) |
| 2261 | goto next; |
| 2262 | |
| 2263 | if (appctx->ctx.errors.ptr < 0) { |
| 2264 | /* just print headers now */ |
| 2265 | |
| 2266 | char pn[INET6_ADDRSTRLEN]; |
| 2267 | struct tm tm; |
| 2268 | int port; |
| 2269 | |
| 2270 | get_localtime(es->when.tv_sec, &tm); |
| 2271 | chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]", |
| 2272 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 2273 | tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000)); |
| 2274 | |
| 2275 | switch (addr_to_str(&es->src, pn, sizeof(pn))) { |
| 2276 | case AF_INET: |
| 2277 | case AF_INET6: |
| 2278 | port = get_host_port(&es->src); |
| 2279 | break; |
| 2280 | default: |
| 2281 | port = 0; |
| 2282 | } |
| 2283 | |
| 2284 | switch (appctx->ctx.errors.flag & 1) { |
| 2285 | case 0: |
| 2286 | chunk_appendf(&trash, |
| 2287 | " frontend %s (#%d): invalid request\n" |
| 2288 | " backend %s (#%d)", |
| 2289 | appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid, |
| 2290 | (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>", |
| 2291 | (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1); |
| 2292 | break; |
| 2293 | case 1: |
| 2294 | chunk_appendf(&trash, |
| 2295 | " backend %s (#%d): invalid response\n" |
| 2296 | " frontend %s (#%d)", |
| 2297 | appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid, |
| 2298 | es->oe->id, es->oe->uuid); |
| 2299 | break; |
| 2300 | } |
| 2301 | |
| 2302 | chunk_appendf(&trash, |
| 2303 | ", server %s (#%d), event #%u, src %s:%d\n" |
| 2304 | " buffer starts at %llu (including %u out), %u free,\n" |
| 2305 | " len %u, wraps at %u, error at position %u\n", |
| 2306 | es->srv ? es->srv->id : "<NONE>", |
| 2307 | es->srv ? es->srv->puid : -1, |
| 2308 | es->ev_id, pn, port, |
| 2309 | es->buf_ofs, es->buf_out, |
| 2310 | global.tune.bufsize - es->buf_out - es->buf_len, |
| 2311 | es->buf_len, es->buf_wrap, es->buf_err); |
| 2312 | |
| 2313 | if (es->show) |
| 2314 | es->show(&trash, es); |
| 2315 | |
| 2316 | chunk_appendf(&trash, " \n"); |
| 2317 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2318 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2319 | goto cant_send_unlock; |
| 2320 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2321 | appctx->ctx.errors.ptr = 0; |
| 2322 | appctx->ctx.errors.ev_id = es->ev_id; |
| 2323 | } |
| 2324 | |
| 2325 | if (appctx->ctx.errors.ev_id != es->ev_id) { |
| 2326 | /* the snapshot changed while we were dumping it */ |
| 2327 | chunk_appendf(&trash, |
| 2328 | " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n"); |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2329 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2330 | goto cant_send_unlock; |
| 2331 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2332 | goto next; |
| 2333 | } |
| 2334 | |
| 2335 | /* OK, ptr >= 0, so we have to dump the current line */ |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 2336 | while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) { |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2337 | int newptr; |
| 2338 | int newline; |
| 2339 | |
| 2340 | newline = appctx->ctx.errors.bol; |
| 2341 | newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr); |
| 2342 | if (newptr == appctx->ctx.errors.ptr) |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2343 | goto cant_send_unlock; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2344 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2345 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2346 | goto cant_send_unlock; |
| 2347 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2348 | appctx->ctx.errors.ptr = newptr; |
| 2349 | appctx->ctx.errors.bol = newline; |
| 2350 | }; |
| 2351 | next: |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2352 | HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2353 | appctx->ctx.errors.bol = 0; |
| 2354 | appctx->ctx.errors.ptr = -1; |
| 2355 | appctx->ctx.errors.flag ^= 1; |
| 2356 | if (!(appctx->ctx.errors.flag & 1)) |
| 2357 | appctx->ctx.errors.px = appctx->ctx.errors.px->next; |
| 2358 | } |
| 2359 | |
| 2360 | /* dump complete */ |
| 2361 | return 1; |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2362 | |
| 2363 | cant_send_unlock: |
| 2364 | HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
| 2365 | cant_send: |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 2366 | si_rx_room_blk(si); |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2367 | return 0; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2368 | } |
| 2369 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2370 | /* register cli keywords */ |
| 2371 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2372 | { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL }, |
| 2373 | { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL }, |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2374 | { { "set", "maxconn", "frontend", NULL }, "set maxconn frontend : change a frontend's maxconn setting", cli_parse_set_maxconn_frontend, NULL }, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2375 | { { "show","servers", "state", NULL }, "show servers state [id]: dump volatile server information (for backend <id>)", cli_parse_show_servers, cli_io_handler_servers_state }, |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 2376 | { { "show", "backend", NULL }, "show backend : list backends in the current running config", NULL, cli_io_handler_show_backend }, |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2377 | { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL }, |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2378 | { { "set", "dynamic-cookie-key", "backend", NULL }, "set dynamic-cookie-key backend : change a backend secret key for dynamic cookies", cli_parse_set_dyncookie_key_backend, NULL }, |
| 2379 | { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL }, |
| 2380 | { { "disable", "dynamic-cookie", "backend", NULL }, "disable dynamic-cookie backend : disable dynamic cookies on a specific backend", cli_parse_disable_dyncookie_backend, NULL }, |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2381 | { { "show", "errors", NULL }, "show errors : report last request and response errors for each proxy", cli_parse_show_errors, cli_io_handler_show_errors, NULL }, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2382 | {{},} |
| 2383 | }}; |
| 2384 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2385 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2386 | |
| 2387 | /* |
| 2388 | * Local variables: |
| 2389 | * c-indent-level: 8 |
| 2390 | * c-basic-offset: 8 |
| 2391 | * End: |
| 2392 | */ |