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 | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 29 | |
| 30 | #include <proto/client.h> |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 31 | #include <proto/backend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 32 | #include <proto/fd.h> |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 33 | #include <proto/hdr_idx.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | #include <proto/log.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 35 | #include <proto/protocols.h> |
| 36 | #include <proto/proto_tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | #include <proto/proxy.h> |
| 38 | |
| 39 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 40 | int listeners; /* # of proxy listeners, set by cfgparse, unset by maintain_proxies */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | struct proxy *proxy = NULL; /* list of all existing proxies */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 42 | struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 43 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 44 | /* |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 45 | * This function returns a string containing a name describing capabilities to |
| 46 | * report comprehensible error messages. Specifically, it will return the words |
| 47 | * "frontend", "backend", "ruleset" when appropriate, or "proxy" for all other |
| 48 | * cases including the proxies declared in "listen" mode. |
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 | const char *proxy_cap_str(int cap) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 51 | { |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 52 | if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) { |
| 53 | if (cap & PR_CAP_FE) |
| 54 | return "frontend"; |
| 55 | else if (cap & PR_CAP_BE) |
| 56 | return "backend"; |
| 57 | else if (cap & PR_CAP_RS) |
| 58 | return "ruleset"; |
| 59 | } |
| 60 | return "proxy"; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 61 | } |
| 62 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 63 | /* |
| 64 | * This function returns a string containing the mode of the proxy in a format |
| 65 | * suitable for error messages. |
| 66 | */ |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 67 | const char *proxy_mode_str(int mode) { |
| 68 | |
| 69 | if (mode == PR_MODE_TCP) |
| 70 | return "tcp"; |
| 71 | else if (mode == PR_MODE_HTTP) |
| 72 | return "http"; |
| 73 | else if (mode == PR_MODE_HEALTH) |
| 74 | return "health"; |
| 75 | else |
| 76 | return "unknown"; |
| 77 | } |
| 78 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 79 | /* |
| 80 | * This function scans the list of backends and servers to retrieve the first |
| 81 | * backend and the first server with the given names, and sets them in both |
| 82 | * parameters. It returns zero if either is not found, or non-zero and sets |
| 83 | * the ones it did not found to NULL. If a NULL pointer is passed for the |
| 84 | * backend, only the pointer to the server will be updated. |
| 85 | */ |
| 86 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 87 | struct proxy **bk, struct server **sv) |
| 88 | { |
| 89 | struct proxy *p; |
| 90 | struct server *s; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 91 | int pid, sid; |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 92 | |
| 93 | *sv = NULL; |
| 94 | |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 95 | pid = 0; |
| 96 | if (*bk_name == '#') |
| 97 | pid = atoi(bk_name + 1); |
| 98 | sid = 0; |
| 99 | if (*sv_name == '#') |
| 100 | sid = atoi(sv_name + 1); |
| 101 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 102 | for (p = proxy; p; p = p->next) |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 103 | if ((p->cap & PR_CAP_BE) && |
| 104 | ((pid && p->uuid == pid) || |
| 105 | (!pid && strcmp(p->id, bk_name) == 0))) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 106 | break; |
| 107 | if (bk) |
| 108 | *bk = p; |
| 109 | if (!p) |
| 110 | return 0; |
| 111 | |
| 112 | for (s = p->srv; s; s = s->next) |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 113 | if ((sid && s->puid == sid) || |
| 114 | (!sid && strcmp(s->id, sv_name) == 0)) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 115 | break; |
| 116 | *sv = s; |
| 117 | if (!s) |
| 118 | return 0; |
| 119 | return 1; |
| 120 | } |
| 121 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 122 | /* This function parses a "timeout" statement in a proxy section. It returns |
| 123 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
| 124 | * return zero, it may write an error message into the <err> buffer, for at |
| 125 | * most <errlen> bytes, trailing zero included. The trailing '\n' must not |
| 126 | * be written. The function must be called with <args> pointing to the first |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 127 | * command line word, with <proxy> pointing to the proxy being parsed, and |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 128 | * <defpx> to the default proxy or NULL. As a special case for compatibility |
| 129 | * with older configs, it also accepts "{cli|srv|con}timeout" in args[0]. |
| 130 | */ |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 131 | static int proxy_parse_timeout(char **args, int section, struct proxy *proxy, |
| 132 | struct proxy *defpx, char *err, int errlen) |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 133 | { |
| 134 | unsigned timeout; |
| 135 | int retval, cap; |
| 136 | const char *res, *name; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 137 | int *tv = NULL; |
| 138 | int *td = NULL; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 139 | |
| 140 | retval = 0; |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 141 | |
| 142 | /* simply skip "timeout" but remain compatible with old form */ |
| 143 | if (strcmp(args[0], "timeout") == 0) |
| 144 | args++; |
| 145 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 146 | name = args[0]; |
| 147 | if (!strcmp(args[0], "client") || !strcmp(args[0], "clitimeout")) { |
| 148 | name = "client"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 149 | tv = &proxy->timeout.client; |
| 150 | td = &defpx->timeout.client; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 151 | cap = PR_CAP_FE; |
| 152 | } else if (!strcmp(args[0], "tarpit")) { |
| 153 | tv = &proxy->timeout.tarpit; |
| 154 | td = &defpx->timeout.tarpit; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 155 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 156 | } else if (!strcmp(args[0], "http-keep-alive")) { |
| 157 | tv = &proxy->timeout.httpka; |
| 158 | td = &defpx->timeout.httpka; |
| 159 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 160 | } else if (!strcmp(args[0], "http-request")) { |
| 161 | tv = &proxy->timeout.httpreq; |
| 162 | td = &defpx->timeout.httpreq; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 163 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 164 | } else if (!strcmp(args[0], "server") || !strcmp(args[0], "srvtimeout")) { |
| 165 | name = "server"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 166 | tv = &proxy->timeout.server; |
| 167 | td = &defpx->timeout.server; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 168 | cap = PR_CAP_BE; |
| 169 | } else if (!strcmp(args[0], "connect") || !strcmp(args[0], "contimeout")) { |
| 170 | name = "connect"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 171 | tv = &proxy->timeout.connect; |
| 172 | td = &defpx->timeout.connect; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 173 | cap = PR_CAP_BE; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 174 | } else if (!strcmp(args[0], "check")) { |
| 175 | tv = &proxy->timeout.check; |
| 176 | td = &defpx->timeout.check; |
| 177 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 178 | } else if (!strcmp(args[0], "queue")) { |
| 179 | tv = &proxy->timeout.queue; |
| 180 | td = &defpx->timeout.queue; |
| 181 | cap = PR_CAP_BE; |
| 182 | } else { |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 183 | snprintf(err, errlen, |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 184 | "timeout '%s': must be 'client', 'server', 'connect', 'check', " |
Willy Tarreau | 76bfc95 | 2010-01-10 17:48:11 +0100 | [diff] [blame] | 185 | "'queue', 'http-keep-alive', 'http-request' or 'tarpit'", |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 186 | args[0]); |
| 187 | return -1; |
| 188 | } |
| 189 | |
| 190 | if (*args[1] == 0) { |
| 191 | snprintf(err, errlen, "%s timeout expects an integer value (in milliseconds)", name); |
| 192 | return -1; |
| 193 | } |
| 194 | |
| 195 | res = parse_time_err(args[1], &timeout, TIME_UNIT_MS); |
| 196 | if (res) { |
Willy Tarreau | bb9251e | 2009-03-06 08:05:40 +0100 | [diff] [blame] | 197 | snprintf(err, errlen, "unexpected character '%c' in %s timeout", *res, name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 198 | return -1; |
| 199 | } |
| 200 | |
| 201 | if (!(proxy->cap & cap)) { |
| 202 | snprintf(err, errlen, "%s timeout will be ignored because %s '%s' has no %s capability", |
| 203 | name, proxy_type_str(proxy), proxy->id, |
| 204 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 205 | retval = 1; |
| 206 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 207 | else if (defpx && *tv != *td) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 208 | snprintf(err, errlen, "overwriting %s timeout which was already specified", name); |
| 209 | retval = 1; |
| 210 | } |
| 211 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 212 | *tv = MS_TO_TICKS(timeout); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 213 | return retval; |
| 214 | } |
| 215 | |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 216 | /* This function parses a "rate-limit" statement in a proxy section. It returns |
| 217 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
| 218 | * return zero, it may write an error message into the <err> buffer, for at |
| 219 | * most <errlen> bytes, trailing zero included. The trailing '\n' must not |
| 220 | * be written. The function must be called with <args> pointing to the first |
| 221 | * command line word, with <proxy> pointing to the proxy being parsed, and |
| 222 | * <defpx> to the default proxy or NULL. |
| 223 | */ |
| 224 | static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy, |
| 225 | struct proxy *defpx, char *err, int errlen) |
| 226 | { |
| 227 | int retval, cap; |
| 228 | char *res, *name; |
| 229 | unsigned int *tv = NULL; |
| 230 | unsigned int *td = NULL; |
| 231 | unsigned int val; |
| 232 | |
| 233 | retval = 0; |
| 234 | |
| 235 | /* simply skip "rate-limit" */ |
| 236 | if (strcmp(args[0], "rate-limit") == 0) |
| 237 | args++; |
| 238 | |
| 239 | name = args[0]; |
| 240 | if (!strcmp(args[0], "sessions")) { |
| 241 | name = "sessions"; |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 242 | tv = &proxy->fe_sps_lim; |
| 243 | td = &defpx->fe_sps_lim; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 244 | cap = PR_CAP_FE; |
| 245 | } else { |
| 246 | snprintf(err, errlen, |
| 247 | "%s '%s': must be 'sessions'", |
| 248 | "rate-limit", args[0]); |
| 249 | return -1; |
| 250 | } |
| 251 | |
| 252 | if (*args[1] == 0) { |
| 253 | snprintf(err, errlen, "%s %s expects expects an integer value (in sessions/second)", "rate-limit", name); |
| 254 | return -1; |
| 255 | } |
| 256 | |
| 257 | val = strtoul(args[1], &res, 0); |
| 258 | if (*res) { |
| 259 | snprintf(err, errlen, "%s %s: unexpected character '%c' in integer value '%s'", "rate-limit", name, *res, args[1]); |
| 260 | return -1; |
| 261 | } |
| 262 | |
| 263 | if (!(proxy->cap & cap)) { |
| 264 | snprintf(err, errlen, "%s %s will be ignored because %s '%s' has no %s capability", |
| 265 | "rate-limit", name, proxy_type_str(proxy), proxy->id, |
| 266 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 267 | retval = 1; |
| 268 | } |
| 269 | else if (defpx && *tv != *td) { |
| 270 | snprintf(err, errlen, "overwriting %s %s which was already specified", "rate-limit", name); |
| 271 | retval = 1; |
| 272 | } |
| 273 | |
| 274 | *tv = val; |
| 275 | return retval; |
| 276 | } |
| 277 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 278 | /* |
| 279 | * This function finds a proxy with matching name, mode and with satisfying |
| 280 | * capabilities. It also checks if there are more matching proxies with |
| 281 | * requested name as this often leads into unexpected situations. |
| 282 | */ |
| 283 | |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 284 | struct proxy *findproxy_mode(const char *name, int mode, int cap) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 285 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 286 | struct proxy *curproxy, *target = NULL; |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 287 | |
| 288 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 289 | if ((curproxy->cap & cap)!=cap || strcmp(curproxy->id, name)) |
| 290 | continue; |
| 291 | |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 292 | if (curproxy->mode != mode && |
| 293 | !(curproxy->mode == PR_MODE_HTTP && mode == PR_MODE_TCP)) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 294 | Alert("Unable to use proxy '%s' with wrong mode, required: %s, has: %s.\n", |
| 295 | name, proxy_mode_str(mode), proxy_mode_str(curproxy->mode)); |
| 296 | Alert("You may want to use 'mode %s'.\n", proxy_mode_str(mode)); |
| 297 | return NULL; |
| 298 | } |
| 299 | |
| 300 | if (!target) { |
| 301 | target = curproxy; |
| 302 | continue; |
| 303 | } |
| 304 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 305 | 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] | 306 | name, proxy_type_str(curproxy), proxy_type_str(target)); |
| 307 | |
| 308 | return NULL; |
| 309 | } |
| 310 | |
| 311 | return target; |
| 312 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 313 | |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 314 | struct proxy *findproxy(const char *name, int cap) { |
| 315 | |
| 316 | struct proxy *curproxy, *target = NULL; |
| 317 | |
| 318 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 319 | if ((curproxy->cap & cap)!=cap || strcmp(curproxy->id, name)) |
| 320 | continue; |
| 321 | |
| 322 | if (!target) { |
| 323 | target = curproxy; |
| 324 | continue; |
| 325 | } |
| 326 | |
| 327 | return NULL; |
| 328 | } |
| 329 | |
| 330 | return target; |
| 331 | } |
| 332 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 333 | /* |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 334 | * This function finds a server with matching name within selected proxy. |
| 335 | * It also checks if there are more matching servers with |
| 336 | * requested name as this often leads into unexpected situations. |
| 337 | */ |
| 338 | |
| 339 | struct server *findserver(const struct proxy *px, const char *name) { |
| 340 | |
| 341 | struct server *cursrv, *target = NULL; |
| 342 | |
| 343 | if (!px) |
| 344 | return NULL; |
| 345 | |
| 346 | for (cursrv = px->srv; cursrv; cursrv = cursrv->next) { |
| 347 | if (strcmp(cursrv->id, name)) |
| 348 | continue; |
| 349 | |
| 350 | if (!target) { |
| 351 | target = cursrv; |
| 352 | continue; |
| 353 | } |
| 354 | |
| 355 | Alert("Refusing to use duplicated server '%s' fould in proxy: %s!\n", |
| 356 | name, px->id); |
| 357 | |
| 358 | return NULL; |
| 359 | } |
| 360 | |
| 361 | return target; |
| 362 | } |
| 363 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 364 | /* This function checks that the designated proxy has no http directives |
| 365 | * enabled. It will output a warning if there are, and will fix some of them. |
| 366 | * It returns the number of fatal errors encountered. This should be called |
| 367 | * at the end of the configuration parsing if the proxy is not in http mode. |
| 368 | * The <file> argument is used to construct the error message. |
| 369 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 370 | int proxy_cfg_ensure_no_http(struct proxy *curproxy) |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 371 | { |
| 372 | if (curproxy->cookie_name != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 373 | Warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n", |
| 374 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 375 | } |
| 376 | if (curproxy->rsp_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 377 | Warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 378 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 379 | } |
| 380 | if (curproxy->req_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 381 | Warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 382 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 383 | } |
| 384 | if (curproxy->monitor_uri != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 385 | Warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n", |
| 386 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 387 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 388 | if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 389 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 390 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 391 | Warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n", |
| 392 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 393 | } |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 394 | if (curproxy->to_log & (LW_REQ | LW_RESP)) { |
| 395 | curproxy->to_log &= ~(LW_REQ | LW_RESP); |
| 396 | Warning("config : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 397 | proxy_type_str(curproxy), curproxy->id); |
| 398 | } |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 399 | return 0; |
| 400 | } |
| 401 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 402 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 403 | * This function creates all proxy sockets. It should be done very early, |
| 404 | * typically before privileges are dropped. The sockets will be registered |
| 405 | * but not added to any fd_set, in order not to loose them across the fork(). |
| 406 | * The proxies also start in IDLE state, meaning that it will be |
| 407 | * maintain_proxies that will finally complete their loading. |
| 408 | * |
| 409 | * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 410 | * Retryable errors will only be printed if <verbose> is not zero. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 411 | */ |
| 412 | int start_proxies(int verbose) |
| 413 | { |
| 414 | struct proxy *curproxy; |
| 415 | struct listener *listener; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 416 | int lerr, err = ERR_NONE; |
| 417 | int pxerr; |
| 418 | char msg[100]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 419 | |
| 420 | for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) { |
| 421 | if (curproxy->state != PR_STNEW) |
| 422 | continue; /* already initialized */ |
| 423 | |
| 424 | pxerr = 0; |
| 425 | for (listener = curproxy->listen; listener != NULL; listener = listener->next) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 426 | if (listener->state != LI_ASSIGNED) |
| 427 | continue; /* already started */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 428 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 429 | lerr = tcp_bind_listener(listener, msg, sizeof(msg)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 430 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 431 | /* errors are reported if <verbose> is set or if they are fatal */ |
| 432 | if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) { |
| 433 | if (lerr & ERR_ALERT) |
| 434 | Alert("Starting %s %s: %s\n", |
| 435 | proxy_type_str(curproxy), curproxy->id, msg); |
| 436 | else if (lerr & ERR_WARN) |
| 437 | Warning("Starting %s %s: %s\n", |
| 438 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 439 | } |
| 440 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 441 | err |= lerr; |
| 442 | if (lerr & (ERR_ABORT | ERR_FATAL)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 443 | pxerr |= 1; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 444 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 445 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 446 | else if (lerr & ERR_CODE) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 447 | pxerr |= 1; |
| 448 | continue; |
| 449 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | if (!pxerr) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 453 | curproxy->state = PR_STIDLE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 454 | send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id); |
| 455 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 456 | |
| 457 | if (err & ERR_ABORT) |
| 458 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | return err; |
| 462 | } |
| 463 | |
| 464 | |
| 465 | /* |
| 466 | * this function enables proxies when there are enough free sessions, |
| 467 | * or stops them when the table is full. It is designed to be called from the |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 468 | * select_loop(). It adjusts the date of next expiration event during stop |
| 469 | * time if appropriate. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 470 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 471 | void maintain_proxies(int *next) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 472 | { |
| 473 | struct proxy *p; |
| 474 | struct listener *l; |
Willy Tarreau | 7958422 | 2009-03-06 09:18:27 +0100 | [diff] [blame] | 475 | unsigned int wait; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 476 | |
| 477 | p = proxy; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 478 | |
| 479 | /* if there are enough free sessions, we'll activate proxies */ |
| 480 | if (actconn < global.maxconn) { |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 481 | for (; p; p = p->next) { |
| 482 | /* check the various reasons we may find to block the frontend */ |
| 483 | if (p->feconn >= p->maxconn) |
| 484 | goto do_block; |
| 485 | |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 486 | if (p->fe_sps_lim && |
| 487 | (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) { |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 488 | /* we're blocking because a limit was reached on the number of |
| 489 | * requests/s on the frontend. We want to re-check ASAP, which |
Willy Tarreau | efcbc6e | 2009-03-06 08:27:10 +0100 | [diff] [blame] | 490 | * means in 1 ms before estimated expiration date, because the |
| 491 | * timer will have settled down. Note that we may already be in |
| 492 | * IDLE state here. |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 493 | */ |
Willy Tarreau | efcbc6e | 2009-03-06 08:27:10 +0100 | [diff] [blame] | 494 | *next = tick_first(*next, tick_add(now_ms, wait)); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 495 | goto do_block; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 496 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 497 | |
| 498 | /* OK we have no reason to block, so let's unblock if we were blocking */ |
| 499 | if (p->state == PR_STIDLE) { |
| 500 | for (l = p->listen; l != NULL; l = l->next) |
| 501 | enable_listener(l); |
| 502 | p->state = PR_STRUN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 503 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 504 | continue; |
| 505 | |
| 506 | do_block: |
| 507 | if (p->state == PR_STRUN) { |
| 508 | for (l = p->listen; l != NULL; l = l->next) |
| 509 | disable_listener(l); |
| 510 | p->state = PR_STIDLE; |
| 511 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | else { /* block all proxies */ |
| 515 | while (p) { |
| 516 | if (p->state == PR_STRUN) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 517 | for (l = p->listen; l != NULL; l = l->next) |
| 518 | disable_listener(l); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 519 | p->state = PR_STIDLE; |
| 520 | } |
| 521 | p = p->next; |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | if (stopping) { |
| 526 | p = proxy; |
| 527 | while (p) { |
| 528 | if (p->state != PR_STSTOPPED) { |
| 529 | int t; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 530 | t = tick_remain(now_ms, p->stop_time); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 531 | if (t == 0) { |
| 532 | Warning("Proxy %s stopped.\n", p->id); |
| 533 | send_log(p, LOG_WARNING, "Proxy %s stopped.\n", p->id); |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 534 | stop_proxy(p); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 535 | /* try to free more memory */ |
| 536 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 537 | } |
| 538 | else { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 539 | *next = tick_first(*next, p->stop_time); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 540 | } |
| 541 | } |
| 542 | p = p->next; |
| 543 | } |
| 544 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 545 | return; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | |
| 549 | /* |
| 550 | * this function disables health-check servers so that the process will quickly be ignored |
| 551 | * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace |
| 552 | * time will not be used since it would already not listen anymore to the socket. |
| 553 | */ |
| 554 | void soft_stop(void) |
| 555 | { |
| 556 | struct proxy *p; |
| 557 | |
| 558 | stopping = 1; |
| 559 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 560 | 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] | 561 | while (p) { |
| 562 | if (p->state != PR_STSTOPPED) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 563 | Warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
| 564 | 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] | 565 | p->stop_time = tick_add(now_ms, p->grace); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 566 | } |
| 567 | p = p->next; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | |
| 572 | /* |
| 573 | * Linux unbinds the listen socket after a SHUT_RD, and ignores SHUT_WR. |
| 574 | * Solaris refuses either shutdown(). |
| 575 | * OpenBSD ignores SHUT_RD but closes upon SHUT_WR and refuses to rebind. |
| 576 | * So a common validation path involves SHUT_WR && listen && SHUT_RD. |
| 577 | * If disabling at least one listener returns an error, then the proxy |
| 578 | * state is set to PR_STERROR because we don't know how to resume from this. |
| 579 | */ |
| 580 | void pause_proxy(struct proxy *p) |
| 581 | { |
| 582 | struct listener *l; |
| 583 | for (l = p->listen; l != NULL; l = l->next) { |
| 584 | if (shutdown(l->fd, SHUT_WR) == 0 && |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 585 | listen(l->fd, p->backlog ? p->backlog : p->maxconn) == 0 && |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 586 | shutdown(l->fd, SHUT_RD) == 0) { |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 587 | EV_FD_CLR(l->fd, DIR_RD); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 588 | if (p->state != PR_STERROR) |
| 589 | p->state = PR_STPAUSED; |
| 590 | } |
| 591 | else |
| 592 | p->state = PR_STERROR; |
| 593 | } |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | |
| 597 | /* |
| 598 | * This function completely stops a proxy and releases its listeners. It has |
| 599 | * to be called when going down in order to release the ports so that another |
| 600 | * process may bind to them. It must also be called on disabled proxies at the |
| 601 | * end of start-up. When all listeners are closed, the proxy is set to the |
| 602 | * PR_STSTOPPED state. |
| 603 | */ |
| 604 | void stop_proxy(struct proxy *p) |
| 605 | { |
| 606 | struct listener *l; |
| 607 | |
| 608 | for (l = p->listen; l != NULL; l = l->next) { |
| 609 | unbind_listener(l); |
| 610 | if (l->state >= LI_ASSIGNED) { |
| 611 | delete_listener(l); |
| 612 | listeners--; |
| 613 | } |
| 614 | } |
| 615 | p->state = PR_STSTOPPED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | /* |
| 619 | * This function temporarily disables listening so that another new instance |
| 620 | * can start listening. It is designed to be called upon reception of a |
| 621 | * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop |
| 622 | * the proxy, or a SIGTTIN can be sent to listen again. |
| 623 | */ |
| 624 | void pause_proxies(void) |
| 625 | { |
| 626 | int err; |
| 627 | struct proxy *p; |
| 628 | |
| 629 | err = 0; |
| 630 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 631 | 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] | 632 | while (p) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 633 | if (p->cap & PR_CAP_FE && |
| 634 | p->state != PR_STERROR && |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 635 | p->state != PR_STSTOPPED && |
| 636 | p->state != PR_STPAUSED) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 637 | Warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 638 | send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 639 | pause_proxy(p); |
| 640 | if (p->state != PR_STPAUSED) { |
| 641 | err |= 1; |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 642 | Warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 643 | send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 644 | } |
| 645 | } |
| 646 | p = p->next; |
| 647 | } |
| 648 | if (err) { |
| 649 | Warning("Some proxies refused to pause, performing soft stop now.\n"); |
| 650 | send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n"); |
| 651 | soft_stop(); |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | |
| 656 | /* |
| 657 | * This function reactivates listening. This can be used after a call to |
| 658 | * sig_pause(), for example when a new instance has failed starting up. |
| 659 | * It is designed to be called upon reception of a SIGTTIN. |
| 660 | */ |
| 661 | void listen_proxies(void) |
| 662 | { |
| 663 | struct proxy *p; |
| 664 | struct listener *l; |
| 665 | |
| 666 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 667 | 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] | 668 | while (p) { |
| 669 | if (p->state == PR_STPAUSED) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 670 | Warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 671 | send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 672 | |
| 673 | for (l = p->listen; l != NULL; l = l->next) { |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 674 | if (listen(l->fd, p->backlog ? p->backlog : p->maxconn) == 0) { |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 675 | if (actconn < global.maxconn && p->feconn < p->maxconn) { |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 676 | EV_FD_SET(l->fd, DIR_RD); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 677 | p->state = PR_STRUN; |
| 678 | } |
| 679 | else |
| 680 | p->state = PR_STIDLE; |
| 681 | } else { |
| 682 | int port; |
| 683 | |
| 684 | if (l->addr.ss_family == AF_INET6) |
| 685 | port = ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port); |
| 686 | else |
| 687 | port = ntohs(((struct sockaddr_in *)(&l->addr))->sin_port); |
| 688 | |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 689 | Warning("Port %d busy while trying to enable %s %s.\n", |
| 690 | port, proxy_cap_str(p->cap), p->id); |
| 691 | send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n", |
| 692 | port, proxy_cap_str(p->cap), p->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 693 | /* Another port might have been enabled. Let's stop everything. */ |
| 694 | pause_proxy(p); |
| 695 | break; |
| 696 | } |
| 697 | } |
| 698 | } |
| 699 | p = p->next; |
| 700 | } |
| 701 | } |
| 702 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 703 | /* Set current session's backend to <be>. Nothing is done if the |
| 704 | * session already had a backend assigned, which is indicated by |
| 705 | * s->flags & SN_BE_ASSIGNED. |
| 706 | * All flags, stats and counters which need be updated are updated. |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 707 | * 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] | 708 | */ |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 709 | int session_set_backend(struct session *s, struct proxy *be) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 710 | { |
| 711 | if (s->flags & SN_BE_ASSIGNED) |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 712 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 713 | s->be = be; |
| 714 | be->beconn++; |
Krzysztof Piotr Oledzki | 052d4fd | 2009-10-04 14:52:57 +0200 | [diff] [blame] | 715 | if (be->beconn > be->counters.beconn_max) |
| 716 | be->counters.beconn_max = be->beconn; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 717 | proxy_inc_be_ctr(be); |
| 718 | |
| 719 | /* assign new parameters to the session from the new backend */ |
| 720 | s->rep->rto = s->req->wto = be->timeout.server; |
| 721 | s->req->cto = be->timeout.connect; |
| 722 | s->conn_retries = be->conn_retries; |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 723 | s->si[1].flags &= ~SI_FL_INDEP_STR; |
| 724 | if (be->options2 & PR_O2_INDEPSTR) |
| 725 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 726 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 727 | if (be->options2 & PR_O2_RSPBUG_OK) |
| 728 | s->txn.rsp.err_pos = -1; /* let buggy responses pass */ |
| 729 | s->flags |= SN_BE_ASSIGNED; |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 730 | |
| 731 | /* If the target backend requires HTTP processing, we have to allocate |
| 732 | * a struct hdr_idx for it if we did not have one. |
| 733 | */ |
| 734 | if (unlikely(!s->txn.hdr_idx.v && (be->acl_requires & ACL_USE_L7_ANY))) { |
| 735 | if ((s->txn.hdr_idx.v = pool_alloc2(s->fe->hdr_idx_pool)) == NULL) |
| 736 | return 0; /* not enough memory */ |
| 737 | s->txn.hdr_idx.size = MAX_HTTP_HDR; |
| 738 | hdr_idx_init(&s->txn.hdr_idx); |
| 739 | } |
| 740 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 741 | /* We want to enable the backend-specific analysers except those which |
| 742 | * were already run as part of the frontend/listener. Note that it would |
| 743 | * be more reliable to store the list of analysers that have been run, |
| 744 | * but what we do here is OK for now. |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 745 | */ |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 746 | s->req->analysers |= be->be_req_ana & ~(s->listener->analysers); |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 747 | |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 748 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 749 | } |
| 750 | |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 751 | static struct cfg_kw_list cfg_kws = {{ },{ |
| 752 | { CFG_LISTEN, "timeout", proxy_parse_timeout }, |
| 753 | { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, |
| 754 | { CFG_LISTEN, "contimeout", proxy_parse_timeout }, |
| 755 | { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 756 | { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 757 | { 0, NULL, NULL }, |
| 758 | }}; |
| 759 | |
| 760 | __attribute__((constructor)) |
| 761 | static void __proxy_module_init(void) |
| 762 | { |
| 763 | cfg_register_keywords(&cfg_kws); |
| 764 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 765 | |
| 766 | /* |
| 767 | * Local variables: |
| 768 | * c-indent-level: 8 |
| 769 | * c-basic-offset: 8 |
| 770 | * End: |
| 771 | */ |