Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Proxy variables and functions. |
| 3 | * |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <fcntl.h> |
| 14 | #include <unistd.h> |
Willy Tarreau | c8f24f8 | 2007-11-30 18:38:35 +0100 | [diff] [blame] | 15 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 16 | #include <sys/types.h> |
| 17 | #include <sys/socket.h> |
| 18 | #include <sys/stat.h> |
| 19 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 20 | #include <common/defaults.h> |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 21 | #include <common/cfgparse.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 24 | #include <common/errors.h> |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 25 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 26 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
| 28 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 29 | #include <types/obj_type.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 30 | #include <types/peers.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 32 | #include <proto/backend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <proto/fd.h> |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 34 | #include <proto/hdr_idx.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 35 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | #include <proto/log.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 37 | #include <proto/proto_tcp.h> |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 38 | #include <proto/proto_http.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 39 | #include <proto/proxy.h> |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 40 | #include <proto/signal.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 41 | #include <proto/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 42 | |
| 43 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 44 | int listeners; /* # of proxy listeners, set by cfgparse */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | struct proxy *proxy = NULL; /* list of all existing proxies */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 46 | struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */ |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 47 | 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] | 48 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 49 | /* |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 50 | * This function returns a string containing a name describing capabilities to |
| 51 | * report comprehensible error messages. Specifically, it will return the words |
| 52 | * "frontend", "backend", "ruleset" when appropriate, or "proxy" for all other |
| 53 | * cases including the proxies declared in "listen" mode. |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 54 | */ |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 55 | const char *proxy_cap_str(int cap) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 56 | { |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 57 | if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) { |
| 58 | if (cap & PR_CAP_FE) |
| 59 | return "frontend"; |
| 60 | else if (cap & PR_CAP_BE) |
| 61 | return "backend"; |
| 62 | else if (cap & PR_CAP_RS) |
| 63 | return "ruleset"; |
| 64 | } |
| 65 | return "proxy"; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 68 | /* |
| 69 | * This function returns a string containing the mode of the proxy in a format |
| 70 | * suitable for error messages. |
| 71 | */ |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 72 | const char *proxy_mode_str(int mode) { |
| 73 | |
| 74 | if (mode == PR_MODE_TCP) |
| 75 | return "tcp"; |
| 76 | else if (mode == PR_MODE_HTTP) |
| 77 | return "http"; |
| 78 | else if (mode == PR_MODE_HEALTH) |
| 79 | return "health"; |
| 80 | else |
| 81 | return "unknown"; |
| 82 | } |
| 83 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 84 | /* |
| 85 | * This function scans the list of backends and servers to retrieve the first |
| 86 | * backend and the first server with the given names, and sets them in both |
| 87 | * parameters. It returns zero if either is not found, or non-zero and sets |
| 88 | * the ones it did not found to NULL. If a NULL pointer is passed for the |
| 89 | * backend, only the pointer to the server will be updated. |
| 90 | */ |
| 91 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 92 | struct proxy **bk, struct server **sv) |
| 93 | { |
| 94 | struct proxy *p; |
| 95 | struct server *s; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 96 | int pid, sid; |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 97 | |
| 98 | *sv = NULL; |
| 99 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 100 | pid = -1; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 101 | if (*bk_name == '#') |
| 102 | pid = atoi(bk_name + 1); |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 103 | sid = -1; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 104 | if (*sv_name == '#') |
| 105 | sid = atoi(sv_name + 1); |
| 106 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 107 | for (p = proxy; p; p = p->next) |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 108 | if ((p->cap & PR_CAP_BE) && |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 109 | ((pid >= 0 && p->uuid == pid) || |
| 110 | (pid < 0 && strcmp(p->id, bk_name) == 0))) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 111 | break; |
| 112 | if (bk) |
| 113 | *bk = p; |
| 114 | if (!p) |
| 115 | return 0; |
| 116 | |
| 117 | for (s = p->srv; s; s = s->next) |
Willy Tarreau | 4055a10 | 2012-11-15 00:15:18 +0100 | [diff] [blame] | 118 | if ((sid >= 0 && s->puid == sid) || |
| 119 | (sid < 0 && strcmp(s->id, sv_name) == 0)) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 120 | break; |
| 121 | *sv = s; |
| 122 | if (!s) |
| 123 | return 0; |
| 124 | return 1; |
| 125 | } |
| 126 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 127 | /* This function parses a "timeout" statement in a proxy section. It returns |
| 128 | * -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] | 129 | * return zero, it will write an error or warning message into a preallocated |
| 130 | * buffer returned at <err>. The trailing is not be written. The function must |
| 131 | * be called with <args> pointing to the first command line word, with <proxy> |
| 132 | * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 133 | * As a special case for compatibility with older configs, it also accepts |
| 134 | * "{cli|srv|con}timeout" in args[0]. |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 135 | */ |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 136 | static int proxy_parse_timeout(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 137 | struct proxy *defpx, const char *file, int line, |
| 138 | char **err) |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 139 | { |
| 140 | unsigned timeout; |
| 141 | int retval, cap; |
| 142 | const char *res, *name; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 143 | int *tv = NULL; |
| 144 | int *td = NULL; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 145 | |
| 146 | retval = 0; |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 147 | |
| 148 | /* simply skip "timeout" but remain compatible with old form */ |
| 149 | if (strcmp(args[0], "timeout") == 0) |
| 150 | args++; |
| 151 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 152 | name = args[0]; |
| 153 | if (!strcmp(args[0], "client") || !strcmp(args[0], "clitimeout")) { |
| 154 | name = "client"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 155 | tv = &proxy->timeout.client; |
| 156 | td = &defpx->timeout.client; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 157 | cap = PR_CAP_FE; |
| 158 | } else if (!strcmp(args[0], "tarpit")) { |
| 159 | tv = &proxy->timeout.tarpit; |
| 160 | td = &defpx->timeout.tarpit; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 161 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 162 | } else if (!strcmp(args[0], "http-keep-alive")) { |
| 163 | tv = &proxy->timeout.httpka; |
| 164 | td = &defpx->timeout.httpka; |
| 165 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 166 | } else if (!strcmp(args[0], "http-request")) { |
| 167 | tv = &proxy->timeout.httpreq; |
| 168 | td = &defpx->timeout.httpreq; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 169 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 170 | } else if (!strcmp(args[0], "server") || !strcmp(args[0], "srvtimeout")) { |
| 171 | name = "server"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 172 | tv = &proxy->timeout.server; |
| 173 | td = &defpx->timeout.server; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 174 | cap = PR_CAP_BE; |
| 175 | } else if (!strcmp(args[0], "connect") || !strcmp(args[0], "contimeout")) { |
| 176 | name = "connect"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 177 | tv = &proxy->timeout.connect; |
| 178 | td = &defpx->timeout.connect; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 179 | cap = PR_CAP_BE; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 180 | } else if (!strcmp(args[0], "check")) { |
| 181 | tv = &proxy->timeout.check; |
| 182 | td = &defpx->timeout.check; |
| 183 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 184 | } else if (!strcmp(args[0], "queue")) { |
| 185 | tv = &proxy->timeout.queue; |
| 186 | td = &defpx->timeout.queue; |
| 187 | cap = PR_CAP_BE; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 188 | } else if (!strcmp(args[0], "tunnel")) { |
| 189 | tv = &proxy->timeout.tunnel; |
| 190 | td = &defpx->timeout.tunnel; |
| 191 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 192 | } else { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 193 | memprintf(err, |
| 194 | "'timeout' supports 'client', 'server', 'connect', 'check', " |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 195 | "'queue', 'http-keep-alive', 'http-request', 'tunnel' or 'tarpit', (got '%s')", |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 196 | args[0]); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 197 | return -1; |
| 198 | } |
| 199 | |
| 200 | if (*args[1] == 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 201 | memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 202 | return -1; |
| 203 | } |
| 204 | |
| 205 | res = parse_time_err(args[1], &timeout, TIME_UNIT_MS); |
| 206 | if (res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 207 | memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 208 | return -1; |
| 209 | } |
| 210 | |
| 211 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 212 | memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability", |
| 213 | name, proxy_type_str(proxy), proxy->id, |
| 214 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 215 | retval = 1; |
| 216 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 217 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 218 | memprintf(err, "overwriting 'timeout %s' which was already specified", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 219 | retval = 1; |
| 220 | } |
| 221 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 222 | *tv = MS_TO_TICKS(timeout); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 223 | return retval; |
| 224 | } |
| 225 | |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 226 | /* This function parses a "rate-limit" statement in a proxy section. It returns |
| 227 | * -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] | 228 | * return zero, it will write an error or warning message into a preallocated |
| 229 | * buffer returned at <err>. The function must be called with <args> pointing |
| 230 | * to the first command line word, with <proxy> pointing to the proxy being |
| 231 | * parsed, and <defpx> to the default proxy or NULL. |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 232 | */ |
| 233 | 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] | 234 | struct proxy *defpx, const char *file, int line, |
| 235 | char **err) |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 236 | { |
| 237 | int retval, cap; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 238 | char *res; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 239 | unsigned int *tv = NULL; |
| 240 | unsigned int *td = NULL; |
| 241 | unsigned int val; |
| 242 | |
| 243 | retval = 0; |
| 244 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 245 | if (strcmp(args[1], "sessions") == 0) { |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 246 | tv = &proxy->fe_sps_lim; |
| 247 | td = &defpx->fe_sps_lim; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 248 | cap = PR_CAP_FE; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 249 | } |
| 250 | else { |
| 251 | memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 252 | return -1; |
| 253 | } |
| 254 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 255 | if (*args[2] == 0) { |
| 256 | 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] | 257 | return -1; |
| 258 | } |
| 259 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 260 | val = strtoul(args[2], &res, 0); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 261 | if (*res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 262 | 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] | 263 | return -1; |
| 264 | } |
| 265 | |
| 266 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 267 | memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability", |
| 268 | args[0], args[1], proxy_type_str(proxy), proxy->id, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 269 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 270 | retval = 1; |
| 271 | } |
| 272 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 273 | 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] | 274 | retval = 1; |
| 275 | } |
| 276 | |
| 277 | *tv = val; |
| 278 | return retval; |
| 279 | } |
| 280 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 281 | /* |
| 282 | * This function finds a proxy with matching name, mode and with satisfying |
| 283 | * capabilities. It also checks if there are more matching proxies with |
| 284 | * requested name as this often leads into unexpected situations. |
| 285 | */ |
| 286 | |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 287 | struct proxy *findproxy_mode(const char *name, int mode, int cap) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 288 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 289 | struct proxy *curproxy, *target = NULL; |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 290 | |
| 291 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 292 | if ((curproxy->cap & cap)!=cap || strcmp(curproxy->id, name)) |
| 293 | continue; |
| 294 | |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 295 | if (curproxy->mode != mode && |
| 296 | !(curproxy->mode == PR_MODE_HTTP && mode == PR_MODE_TCP)) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 297 | Alert("Unable to use proxy '%s' with wrong mode, required: %s, has: %s.\n", |
| 298 | name, proxy_mode_str(mode), proxy_mode_str(curproxy->mode)); |
| 299 | Alert("You may want to use 'mode %s'.\n", proxy_mode_str(mode)); |
| 300 | return NULL; |
| 301 | } |
| 302 | |
| 303 | if (!target) { |
| 304 | target = curproxy; |
| 305 | continue; |
| 306 | } |
| 307 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 308 | Alert("Refusing to use duplicated proxy '%s' with overlapping capabilities: %s/%s!\n", |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 309 | name, proxy_type_str(curproxy), proxy_type_str(target)); |
| 310 | |
| 311 | return NULL; |
| 312 | } |
| 313 | |
| 314 | return target; |
| 315 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 316 | |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 317 | /* Returns a pointer to the proxy matching either name <name>, or id <name> if |
| 318 | * <name> begins with a '#'. NULL is returned if no match is found, as well as |
| 319 | * if multiple matches are found (eg: too large capabilities mask). |
| 320 | */ |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 321 | struct proxy *findproxy(const char *name, int cap) { |
| 322 | |
| 323 | struct proxy *curproxy, *target = NULL; |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 324 | int pid = -1; |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 325 | |
| 326 | if (*name == '#') |
| 327 | pid = atoi(name + 1); |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 328 | |
| 329 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 330 | if ((curproxy->cap & cap) != cap || |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 331 | (pid >= 0 && curproxy->uuid != pid) || |
| 332 | (pid < 0 && strcmp(curproxy->id, name))) |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 333 | continue; |
| 334 | |
| 335 | if (!target) { |
| 336 | target = curproxy; |
| 337 | continue; |
| 338 | } |
| 339 | |
| 340 | return NULL; |
| 341 | } |
| 342 | |
| 343 | return target; |
| 344 | } |
| 345 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 346 | /* |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 347 | * This function finds a server with matching name within selected proxy. |
| 348 | * It also checks if there are more matching servers with |
| 349 | * requested name as this often leads into unexpected situations. |
| 350 | */ |
| 351 | |
| 352 | struct server *findserver(const struct proxy *px, const char *name) { |
| 353 | |
| 354 | struct server *cursrv, *target = NULL; |
| 355 | |
| 356 | if (!px) |
| 357 | return NULL; |
| 358 | |
| 359 | for (cursrv = px->srv; cursrv; cursrv = cursrv->next) { |
| 360 | if (strcmp(cursrv->id, name)) |
| 361 | continue; |
| 362 | |
| 363 | if (!target) { |
| 364 | target = cursrv; |
| 365 | continue; |
| 366 | } |
| 367 | |
Cyril Bonté | 0bb519e | 2012-04-04 12:57:19 +0200 | [diff] [blame] | 368 | Alert("Refusing to use duplicated server '%s' found in proxy: %s!\n", |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 369 | name, px->id); |
| 370 | |
| 371 | return NULL; |
| 372 | } |
| 373 | |
| 374 | return target; |
| 375 | } |
| 376 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 377 | /* This function checks that the designated proxy has no http directives |
| 378 | * enabled. It will output a warning if there are, and will fix some of them. |
| 379 | * It returns the number of fatal errors encountered. This should be called |
| 380 | * at the end of the configuration parsing if the proxy is not in http mode. |
| 381 | * The <file> argument is used to construct the error message. |
| 382 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 383 | int proxy_cfg_ensure_no_http(struct proxy *curproxy) |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 384 | { |
| 385 | if (curproxy->cookie_name != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 386 | Warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n", |
| 387 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 388 | } |
| 389 | if (curproxy->rsp_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 390 | Warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 391 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 392 | } |
| 393 | if (curproxy->req_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 394 | Warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 395 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 396 | } |
| 397 | if (curproxy->monitor_uri != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 398 | Warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n", |
| 399 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 400 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 401 | if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 402 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 403 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 404 | Warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n", |
| 405 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 406 | } |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 407 | if (curproxy->to_log & (LW_REQ | LW_RESP)) { |
| 408 | curproxy->to_log &= ~(LW_REQ | LW_RESP); |
Willy Tarreau | b1f3af2 | 2013-04-12 18:30:32 +0200 | [diff] [blame] | 409 | Warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 410 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 411 | proxy_type_str(curproxy), curproxy->id); |
| 412 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 413 | if (curproxy->conf.logformat_string == default_http_log_format || |
| 414 | curproxy->conf.logformat_string == clf_http_log_format) { |
| 415 | /* Note: we don't change the directive's file:line number */ |
| 416 | curproxy->conf.logformat_string = default_tcp_log_format; |
| 417 | Warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 418 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 419 | proxy_type_str(curproxy), curproxy->id); |
| 420 | } |
| 421 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 422 | return 0; |
| 423 | } |
| 424 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 425 | /* Perform the most basic initialization of a proxy : |
| 426 | * memset(), list_init(*), reset_timeouts(*). |
Willy Tarreau | b249e84 | 2011-09-07 18:41:08 +0200 | [diff] [blame] | 427 | * Any new proxy or peer should be initialized via this function. |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 428 | */ |
| 429 | void init_new_proxy(struct proxy *p) |
| 430 | { |
| 431 | memset(p, 0, sizeof(struct proxy)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 432 | p->obj_type = OBJ_TYPE_PROXY; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 433 | LIST_INIT(&p->pendconns); |
| 434 | LIST_INIT(&p->acl); |
| 435 | LIST_INIT(&p->http_req_rules); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 436 | LIST_INIT(&p->http_res_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 437 | LIST_INIT(&p->block_cond); |
| 438 | LIST_INIT(&p->redirect_rules); |
| 439 | LIST_INIT(&p->mon_fail_cond); |
| 440 | LIST_INIT(&p->switching_rules); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 441 | LIST_INIT(&p->server_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 442 | LIST_INIT(&p->persist_rules); |
| 443 | LIST_INIT(&p->sticking_rules); |
| 444 | LIST_INIT(&p->storersp_rules); |
| 445 | LIST_INIT(&p->tcp_req.inspect_rules); |
| 446 | LIST_INIT(&p->tcp_rep.inspect_rules); |
| 447 | LIST_INIT(&p->tcp_req.l4_rules); |
| 448 | LIST_INIT(&p->req_add); |
| 449 | LIST_INIT(&p->rsp_add); |
| 450 | LIST_INIT(&p->listener_queue); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 451 | LIST_INIT(&p->logsrvs); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 452 | LIST_INIT(&p->logformat); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 453 | LIST_INIT(&p->format_unique_id); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 454 | LIST_INIT(&p->conf.bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 455 | LIST_INIT(&p->conf.listeners); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 456 | LIST_INIT(&p->conf.args.list); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 457 | |
| 458 | /* Timeouts are defined as -1 */ |
| 459 | proxy_reset_timeouts(p); |
| 460 | p->tcp_rep.inspect_delay = TICK_ETERNITY; |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 461 | |
| 462 | /* initial uuid is unassigned (-1) */ |
| 463 | p->uuid = -1; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 464 | } |
| 465 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 466 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 467 | * This function creates all proxy sockets. It should be done very early, |
| 468 | * typically before privileges are dropped. The sockets will be registered |
| 469 | * but not added to any fd_set, in order not to loose them across the fork(). |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 470 | * The proxies also start in READY state because they all have their listeners |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 471 | * bound. |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 472 | * |
| 473 | * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 474 | * Retryable errors will only be printed if <verbose> is not zero. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 475 | */ |
| 476 | int start_proxies(int verbose) |
| 477 | { |
| 478 | struct proxy *curproxy; |
| 479 | struct listener *listener; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 480 | int lerr, err = ERR_NONE; |
| 481 | int pxerr; |
| 482 | char msg[100]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 483 | |
| 484 | for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) { |
| 485 | if (curproxy->state != PR_STNEW) |
| 486 | continue; /* already initialized */ |
| 487 | |
| 488 | pxerr = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 489 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 490 | if (listener->state != LI_ASSIGNED) |
| 491 | continue; /* already started */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 492 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 493 | lerr = listener->proto->bind(listener, msg, sizeof(msg)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 494 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 495 | /* errors are reported if <verbose> is set or if they are fatal */ |
| 496 | if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) { |
| 497 | if (lerr & ERR_ALERT) |
| 498 | Alert("Starting %s %s: %s\n", |
| 499 | proxy_type_str(curproxy), curproxy->id, msg); |
| 500 | else if (lerr & ERR_WARN) |
| 501 | Warning("Starting %s %s: %s\n", |
| 502 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 503 | } |
| 504 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 505 | err |= lerr; |
| 506 | if (lerr & (ERR_ABORT | ERR_FATAL)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 507 | pxerr |= 1; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 508 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 509 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 510 | else if (lerr & ERR_CODE) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 511 | pxerr |= 1; |
| 512 | continue; |
| 513 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | if (!pxerr) { |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 517 | curproxy->state = PR_STREADY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 518 | send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id); |
| 519 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 520 | |
| 521 | if (err & ERR_ABORT) |
| 522 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | return err; |
| 526 | } |
| 527 | |
| 528 | |
| 529 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 530 | * This is the proxy management task. It enables proxies when there are enough |
| 531 | * free sessions, or stops them when the table is full. It is designed to be |
| 532 | * called as a task which is woken up upon stopping or when rate limiting must |
| 533 | * be enforced. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 534 | */ |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 535 | struct task *manage_proxy(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 536 | { |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 537 | struct proxy *p = t->context; |
| 538 | int next = TICK_ETERNITY; |
Willy Tarreau | 7958422 | 2009-03-06 09:18:27 +0100 | [diff] [blame] | 539 | unsigned int wait; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 540 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 541 | /* We should periodically try to enable listeners waiting for a |
| 542 | * global resource here. |
| 543 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 544 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 545 | /* first, let's check if we need to stop the proxy */ |
| 546 | if (unlikely(stopping && p->state != PR_STSTOPPED)) { |
| 547 | int t; |
| 548 | t = tick_remain(now_ms, p->stop_time); |
| 549 | if (t == 0) { |
| 550 | Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 551 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 552 | send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 553 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 554 | stop_proxy(p); |
| 555 | /* try to free more memory */ |
| 556 | pool_gc2(); |
| 557 | } |
| 558 | else { |
| 559 | next = tick_first(next, p->stop_time); |
| 560 | } |
| 561 | } |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 562 | |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 563 | /* If the proxy holds a stick table, we need to purge all unused |
| 564 | * entries. These are all the ones in the table with ref_cnt == 0 |
| 565 | * and all the ones in the pool used to allocate new entries. Any |
| 566 | * entry attached to an existing session waiting for a store will |
| 567 | * be in neither list. Any entry being dumped will have ref_cnt > 0. |
| 568 | * However we protect tables that are being synced to peers. |
| 569 | */ |
| 570 | if (unlikely(stopping && p->state == PR_STSTOPPED && p->table.current)) { |
| 571 | if (!p->table.syncing) { |
| 572 | stktable_trash_oldest(&p->table, p->table.current); |
| 573 | pool_gc2(); |
| 574 | } |
| 575 | if (p->table.current) { |
| 576 | /* some entries still remain, let's recheck in one second */ |
| 577 | next = tick_first(next, tick_add(now_ms, 1000)); |
| 578 | } |
| 579 | } |
| 580 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 581 | /* the rest below is just for frontends */ |
| 582 | if (!(p->cap & PR_CAP_FE)) |
| 583 | goto out; |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 584 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 585 | /* check the various reasons we may find to block the frontend */ |
| 586 | if (unlikely(p->feconn >= p->maxconn)) { |
| 587 | if (p->state == PR_STREADY) |
| 588 | p->state = PR_STFULL; |
| 589 | goto out; |
| 590 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 591 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 592 | /* OK we have no reason to block, so let's unblock if we were blocking */ |
| 593 | if (p->state == PR_STFULL) |
| 594 | p->state = PR_STREADY; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 595 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 596 | if (p->fe_sps_lim && |
| 597 | (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) { |
| 598 | /* we're blocking because a limit was reached on the number of |
| 599 | * requests/s on the frontend. We want to re-check ASAP, which |
| 600 | * means in 1 ms before estimated expiration date, because the |
| 601 | * timer will have settled down. |
| 602 | */ |
| 603 | next = tick_first(next, tick_add(now_ms, wait)); |
| 604 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 605 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 606 | |
| 607 | /* The proxy is not limited so we can re-enable any waiting listener */ |
| 608 | if (!LIST_ISEMPTY(&p->listener_queue)) |
| 609 | dequeue_all_listeners(&p->listener_queue); |
| 610 | out: |
| 611 | t->expire = next; |
| 612 | task_queue(t); |
| 613 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | |
| 617 | /* |
| 618 | * this function disables health-check servers so that the process will quickly be ignored |
| 619 | * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace |
| 620 | * time will not be used since it would already not listen anymore to the socket. |
| 621 | */ |
| 622 | void soft_stop(void) |
| 623 | { |
| 624 | struct proxy *p; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 625 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 626 | |
| 627 | stopping = 1; |
| 628 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 629 | 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] | 630 | while (p) { |
| 631 | if (p->state != PR_STSTOPPED) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 632 | Warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
| 633 | 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] | 634 | p->stop_time = tick_add(now_ms, p->grace); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 635 | } |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 636 | if (p->table.size && p->table.sync_task) |
| 637 | task_wakeup(p->table.sync_task, TASK_WOKEN_MSG); |
| 638 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 639 | /* wake every proxy task up so that they can handle the stopping */ |
Willy Tarreau | d1a33e3 | 2012-10-04 00:14:33 +0200 | [diff] [blame] | 640 | if (p->task) |
| 641 | task_wakeup(p->task, TASK_WOKEN_MSG); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 642 | p = p->next; |
| 643 | } |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 644 | |
| 645 | prs = peers; |
| 646 | while (prs) { |
| 647 | stop_proxy((struct proxy *)prs->peers_fe); |
| 648 | prs = prs->next; |
| 649 | } |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 650 | /* signal zero is used to broadcast the "stopping" event */ |
| 651 | signal_handler(0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 655 | /* Temporarily disables listening on all of the proxy's listeners. Upon |
| 656 | * success, the proxy enters the PR_PAUSED state. If disabling at least one |
| 657 | * listener returns an error, then the proxy state is set to PR_STERROR |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 658 | * because we don't know how to resume from this. The function returns 0 |
| 659 | * if it fails, or non-zero on success. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 660 | */ |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 661 | int pause_proxy(struct proxy *p) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 662 | { |
| 663 | struct listener *l; |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 664 | |
| 665 | if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR || |
| 666 | p->state == PR_STSTOPPED || p->state == PR_STPAUSED) |
| 667 | return 1; |
| 668 | |
| 669 | Warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 670 | send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 671 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 672 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 673 | if (!pause_listener(l)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 674 | p->state = PR_STERROR; |
| 675 | } |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 676 | |
| 677 | if (p->state == PR_STERROR) { |
| 678 | Warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 679 | send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 680 | return 0; |
| 681 | } |
| 682 | |
| 683 | p->state = PR_STPAUSED; |
| 684 | return 1; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | |
| 688 | /* |
| 689 | * This function completely stops a proxy and releases its listeners. It has |
| 690 | * to be called when going down in order to release the ports so that another |
| 691 | * process may bind to them. It must also be called on disabled proxies at the |
| 692 | * end of start-up. When all listeners are closed, the proxy is set to the |
| 693 | * PR_STSTOPPED state. |
| 694 | */ |
| 695 | void stop_proxy(struct proxy *p) |
| 696 | { |
| 697 | struct listener *l; |
| 698 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 699 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 700 | unbind_listener(l); |
| 701 | if (l->state >= LI_ASSIGNED) { |
| 702 | delete_listener(l); |
| 703 | listeners--; |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 704 | jobs--; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 705 | } |
| 706 | } |
| 707 | p->state = PR_STSTOPPED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 708 | } |
| 709 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 710 | /* This function resumes listening on the specified proxy. It scans all of its |
| 711 | * listeners and tries to enable them all. If any of them fails, the proxy is |
| 712 | * put back to the paused state. It returns 1 upon success, or zero if an error |
| 713 | * is encountered. |
| 714 | */ |
| 715 | int resume_proxy(struct proxy *p) |
| 716 | { |
| 717 | struct listener *l; |
| 718 | int fail; |
| 719 | |
| 720 | if (p->state != PR_STPAUSED) |
| 721 | return 1; |
| 722 | |
| 723 | Warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 724 | send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 725 | |
| 726 | fail = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 727 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 728 | if (!resume_listener(l)) { |
| 729 | int port; |
| 730 | |
| 731 | port = get_host_port(&l->addr); |
| 732 | if (port) { |
| 733 | Warning("Port %d busy while trying to enable %s %s.\n", |
| 734 | port, proxy_cap_str(p->cap), p->id); |
| 735 | send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n", |
| 736 | port, proxy_cap_str(p->cap), p->id); |
| 737 | } |
| 738 | else { |
| 739 | Warning("Bind on socket %d busy while trying to enable %s %s.\n", |
| 740 | l->luid, proxy_cap_str(p->cap), p->id); |
| 741 | send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n", |
| 742 | l->luid, proxy_cap_str(p->cap), p->id); |
| 743 | } |
| 744 | |
| 745 | /* Another port might have been enabled. Let's stop everything. */ |
| 746 | fail = 1; |
| 747 | break; |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | p->state = PR_STREADY; |
| 752 | if (fail) { |
| 753 | pause_proxy(p); |
| 754 | return 0; |
| 755 | } |
| 756 | return 1; |
| 757 | } |
| 758 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 759 | /* |
| 760 | * This function temporarily disables listening so that another new instance |
| 761 | * can start listening. It is designed to be called upon reception of a |
| 762 | * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop |
| 763 | * the proxy, or a SIGTTIN can be sent to listen again. |
| 764 | */ |
| 765 | void pause_proxies(void) |
| 766 | { |
| 767 | int err; |
| 768 | struct proxy *p; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 769 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 770 | |
| 771 | err = 0; |
| 772 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 773 | 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] | 774 | while (p) { |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 775 | err |= !pause_proxy(p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 776 | p = p->next; |
| 777 | } |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 778 | |
| 779 | prs = peers; |
| 780 | while (prs) { |
| 781 | p = prs->peers_fe; |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 782 | err |= !pause_proxy(p); |
| 783 | prs = prs->next; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 784 | } |
| 785 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 786 | if (err) { |
| 787 | Warning("Some proxies refused to pause, performing soft stop now.\n"); |
| 788 | send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n"); |
| 789 | soft_stop(); |
| 790 | } |
| 791 | } |
| 792 | |
| 793 | |
| 794 | /* |
| 795 | * This function reactivates listening. This can be used after a call to |
| 796 | * sig_pause(), for example when a new instance has failed starting up. |
| 797 | * It is designed to be called upon reception of a SIGTTIN. |
| 798 | */ |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 799 | void resume_proxies(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 800 | { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 801 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 802 | struct proxy *p; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 803 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 804 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 805 | err = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 806 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 807 | 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] | 808 | while (p) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 809 | err |= !resume_proxy(p); |
| 810 | p = p->next; |
| 811 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 812 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 813 | prs = peers; |
| 814 | while (prs) { |
| 815 | p = prs->peers_fe; |
| 816 | err |= !resume_proxy(p); |
| 817 | prs = prs->next; |
| 818 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 819 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 820 | if (err) { |
| 821 | Warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
| 822 | send_log(p, LOG_WARNING, "Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 823 | } |
| 824 | } |
| 825 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 826 | /* Set current session's backend to <be>. Nothing is done if the |
| 827 | * session already had a backend assigned, which is indicated by |
| 828 | * s->flags & SN_BE_ASSIGNED. |
| 829 | * All flags, stats and counters which need be updated are updated. |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 830 | * 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] | 831 | */ |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 832 | int session_set_backend(struct session *s, struct proxy *be) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 833 | { |
| 834 | if (s->flags & SN_BE_ASSIGNED) |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 835 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 836 | s->be = be; |
| 837 | be->beconn++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 838 | if (be->beconn > be->be_counters.conn_max) |
| 839 | be->be_counters.conn_max = be->beconn; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 840 | proxy_inc_be_ctr(be); |
| 841 | |
| 842 | /* assign new parameters to the session from the new backend */ |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 843 | s->si[1].flags &= ~SI_FL_INDEP_STR; |
| 844 | if (be->options2 & PR_O2_INDEPSTR) |
| 845 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 846 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 847 | if (be->options2 & PR_O2_RSPBUG_OK) |
| 848 | s->txn.rsp.err_pos = -1; /* let buggy responses pass */ |
| 849 | s->flags |= SN_BE_ASSIGNED; |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 850 | |
| 851 | /* If the target backend requires HTTP processing, we have to allocate |
| 852 | * a struct hdr_idx for it if we did not have one. |
| 853 | */ |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 854 | if (unlikely(!s->txn.hdr_idx.v && be->http_needed)) { |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 855 | if ((s->txn.hdr_idx.v = pool_alloc2(pool2_hdr_idx)) == NULL) |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 856 | return 0; /* not enough memory */ |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 857 | |
| 858 | /* and now initialize the HTTP transaction state */ |
| 859 | http_init_txn(s); |
| 860 | |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 861 | s->txn.hdr_idx.size = global.tune.max_http_hdr; |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 862 | hdr_idx_init(&s->txn.hdr_idx); |
| 863 | } |
| 864 | |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 865 | if (be->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 866 | s->req->flags |= CF_NEVER_WAIT; |
| 867 | s->rep->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 868 | } |
| 869 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 870 | /* We want to enable the backend-specific analysers except those which |
| 871 | * were already run as part of the frontend/listener. Note that it would |
| 872 | * be more reliable to store the list of analysers that have been run, |
| 873 | * but what we do here is OK for now. |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 874 | */ |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 875 | s->req->analysers |= be->be_req_ana & ~(s->listener->analysers); |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 876 | |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 877 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 878 | } |
| 879 | |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 880 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 881 | { CFG_LISTEN, "timeout", proxy_parse_timeout }, |
| 882 | { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, |
| 883 | { CFG_LISTEN, "contimeout", proxy_parse_timeout }, |
| 884 | { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 885 | { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 886 | { 0, NULL, NULL }, |
| 887 | }}; |
| 888 | |
| 889 | __attribute__((constructor)) |
| 890 | static void __proxy_module_init(void) |
| 891 | { |
| 892 | cfg_register_keywords(&cfg_kws); |
| 893 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 894 | |
| 895 | /* |
| 896 | * Local variables: |
| 897 | * c-indent-level: 8 |
| 898 | * c-basic-offset: 8 |
| 899 | * End: |
| 900 | */ |