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