blob: 444daff7ad3b98716143487cf99085e2ea495e81 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreauf89c1872009-10-01 11:19:37 +02004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020023#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020024#include <common/debug.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020025#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010030#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <proto/backend.h>
Willy Tarreau14c8aac2007-05-08 19:46:30 +020032#include <proto/client.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020033#include <proto/lb_fwlc.h>
34#include <proto/lb_fwrr.h>
35#include <proto/lb_map.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/proto_http.h>
Willy Tarreaue8c66af2008-01-13 18:40:14 +010037#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010039#include <proto/server.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020040#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/task.h>
42
Willy Tarreaubaaee002006-06-26 02:48:02 +020043/*
44 * This function recounts the number of usable active and backup servers for
45 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010046 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010047 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010048 * this.
Willy Tarreaubaaee002006-06-26 02:48:02 +020049 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020050void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +020051{
52 struct server *srv;
53
Willy Tarreau20697042007-11-15 23:26:18 +010054 px->srv_act = px->srv_bck = 0;
55 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +010056 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +020057 for (srv = px->srv; srv != NULL; srv = srv->next) {
Willy Tarreaub625a082007-11-26 01:15:43 +010058 if (!srv_is_usable(srv->state, srv->eweight))
59 continue;
60
61 if (srv->state & SRV_BACKUP) {
62 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +010063 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +010064 px->lbprm.fbck = srv;
65 px->srv_bck++;
66 px->lbprm.tot_wbck += srv->eweight;
67 } else {
68 px->srv_act++;
69 px->lbprm.tot_wact += srv->eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +020070 }
71 }
Willy Tarreaub625a082007-11-26 01:15:43 +010072}
Willy Tarreau20697042007-11-15 23:26:18 +010073
Willy Tarreaub625a082007-11-26 01:15:43 +010074/* This function simply updates the backend's tot_weight and tot_used values
75 * after servers weights have been updated. It is designed to be used after
76 * recount_servers() or equivalent.
77 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020078void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +010079{
Willy Tarreau20697042007-11-15 23:26:18 +010080 if (px->srv_act) {
81 px->lbprm.tot_weight = px->lbprm.tot_wact;
82 px->lbprm.tot_used = px->srv_act;
83 }
Willy Tarreaub625a082007-11-26 01:15:43 +010084 else if (px->lbprm.fbck) {
85 /* use only the first backup server */
86 px->lbprm.tot_weight = px->lbprm.fbck->eweight;
87 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +010088 }
89 else {
Willy Tarreaub625a082007-11-26 01:15:43 +010090 px->lbprm.tot_weight = px->lbprm.tot_wbck;
91 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +010092 }
Willy Tarreaub625a082007-11-26 01:15:43 +010093}
94
Willy Tarreau39c9ba72009-10-01 21:11:15 +020095/*
96 * This function tries to find a running server for the proxy <px> following
97 * the source hash method. Depending on the number of active/backup servers,
98 * it will either look for active servers, or for backup servers.
99 * If any server is found, it will be returned. If no valid server is found,
100 * NULL is returned.
101 */
102struct server *get_server_sh(struct proxy *px, const char *addr, int len)
103{
104 unsigned int h, l;
105
106 if (px->lbprm.tot_weight == 0)
107 return NULL;
108
109 l = h = 0;
110
111 /* note: we won't hash if there's only one server left */
112 if (px->lbprm.tot_used == 1)
113 goto hash_done;
114
115 while ((l + sizeof (int)) <= len) {
116 h ^= ntohl(*(unsigned int *)(&addr[l]));
117 l += sizeof (int);
118 }
119 hash_done:
120 return map_get_server_hash(px, h);
121}
122
123/*
124 * This function tries to find a running server for the proxy <px> following
125 * the URI hash method. In order to optimize cache hits, the hash computation
126 * ends at the question mark. Depending on the number of active/backup servers,
127 * it will either look for active servers, or for backup servers.
128 * If any server is found, it will be returned. If no valid server is found,
129 * NULL is returned.
130 *
131 * This code was contributed by Guillaume Dallaire, who also selected this hash
132 * algorithm out of a tens because it gave him the best results.
133 *
134 */
135struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
136{
137 unsigned long hash = 0;
138 int c;
139 int slashes = 0;
140
141 if (px->lbprm.tot_weight == 0)
142 return NULL;
143
144 /* note: we won't hash if there's only one server left */
145 if (px->lbprm.tot_used == 1)
146 goto hash_done;
147
148 if (px->uri_len_limit)
149 uri_len = MIN(uri_len, px->uri_len_limit);
150
151 while (uri_len--) {
152 c = *uri++;
153 if (c == '/') {
154 slashes++;
155 if (slashes == px->uri_dirs_depth1) /* depth+1 */
156 break;
157 }
158 else if (c == '?')
159 break;
160
161 hash = c + (hash << 6) + (hash << 16) - hash;
162 }
163 hash_done:
164 return map_get_server_hash(px, hash);
165}
166
Willy Tarreau01732802007-11-01 22:48:15 +0100167/*
168 * This function tries to find a running server for the proxy <px> following
169 * the URL parameter hash method. It looks for a specific parameter in the
170 * URL and hashes it to compute the server ID. This is useful to optimize
171 * performance by avoiding bounces between servers in contexts where sessions
172 * are shared but cookies are not usable. If the parameter is not found, NULL
173 * is returned. If any server is found, it will be returned. If no valid server
174 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100175 */
176struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
177{
178 unsigned long hash = 0;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200179 const char *p;
180 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100181 int plen;
182
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200183 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100184 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100185 return NULL;
186
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200187 if ((p = memchr(uri, '?', uri_len)) == NULL)
188 return NULL;
189
Willy Tarreau01732802007-11-01 22:48:15 +0100190 p++;
191
192 uri_len -= (p - uri);
193 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200194 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100195
196 while (uri_len > plen) {
197 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200198 if (params[plen] == '=') {
199 if (memcmp(params, px->url_param_name, plen) == 0) {
200 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100201 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200202 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100203 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200204 p += plen + 1;
205 uri_len -= plen + 1;
206
Willy Tarreau01732802007-11-01 22:48:15 +0100207 while (uri_len && *p != '&') {
208 hash = *p + (hash << 6) + (hash << 16) - hash;
209 uri_len--;
210 p++;
211 }
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200212 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100213 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200214 }
215 /* skip to next parameter */
216 p = memchr(params, '&', uri_len);
217 if (!p)
218 return NULL;
219 p++;
220 uri_len -= (p - params);
221 params = p;
222 }
223 return NULL;
224}
225
226/*
227 * this does the same as the previous server_ph, but check the body contents
228 */
229struct server *get_server_ph_post(struct session *s)
230{
231 unsigned long hash = 0;
232 struct http_txn *txn = &s->txn;
233 struct buffer *req = s->req;
234 struct http_msg *msg = &txn->req;
235 struct proxy *px = s->be;
236 unsigned int plen = px->url_param_len;
Willy Tarreau192ee3e2008-04-19 21:24:56 +0200237 unsigned long body;
238 unsigned long len;
239 const char *params;
240 struct hdr_ctx ctx;
241 const char *p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200242
243 /* tot_weight appears to mean srv_count */
244 if (px->lbprm.tot_weight == 0)
245 return NULL;
246
Willy Tarreau192ee3e2008-04-19 21:24:56 +0200247 body = msg->sol[msg->eoh] == '\r' ? msg->eoh + 2 : msg->eoh + 1;
Willy Tarreaufb0528b2008-08-11 00:21:56 +0200248 len = req->l - body;
Willy Tarreau192ee3e2008-04-19 21:24:56 +0200249 params = req->data + body;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200250
251 if ( len == 0 )
252 return NULL;
253
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200254 ctx.idx = 0;
255
256 /* if the message is chunked, we skip the chunk size, but use the value as len */
257 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx);
Willy Tarreauadfb8562008-08-11 15:24:42 +0200258 if (ctx.idx && ctx.vlen >= 7 && strncasecmp(ctx.line+ctx.val, "chunked", 7) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200259 unsigned int chunk = 0;
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100260 while ( params < (req->data+req->max_len) && !HTTP_IS_CRLF(*params)) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200261 char c = *params;
262 if (ishex(c)) {
263 unsigned int hex = toupper(c) - '0';
264 if ( hex > 9 )
265 hex -= 'A' - '9' - 1;
266 chunk = (chunk << 4) | hex;
267 }
268 else
269 return NULL;
270 params++;
271 len--;
Willy Tarreau01732802007-11-01 22:48:15 +0100272 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200273 /* spec says we get CRLF */
274 if (HTTP_IS_CRLF(*params) && HTTP_IS_CRLF(params[1]))
275 params += 2;
276 else
277 return NULL;
278 /* ok we have some encoded length, just inspect the first chunk */
279 len = chunk;
280 }
Willy Tarreau01732802007-11-01 22:48:15 +0100281
Willy Tarreau192ee3e2008-04-19 21:24:56 +0200282 p = params;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283
284 while (len > plen) {
285 /* Look for the parameter name followed by an equal symbol */
286 if (params[plen] == '=') {
287 if (memcmp(params, px->url_param_name, plen) == 0) {
288 /* OK, we have the parameter here at <params>, and
289 * the value after the equal sign, at <p>
290 * skip the equal symbol
291 */
292 p += plen + 1;
293 len -= plen + 1;
294
295 while (len && *p != '&') {
296 if (unlikely(!HTTP_IS_TOKEN(*p))) {
297 /* if in a POST, body must be URI encoded or its not a URI.
298 * Do not interprete any possible binary data as a parameter.
299 */
300 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
301 break;
302 return NULL; /* oh, no; this is not uri-encoded.
303 * This body does not contain parameters.
304 */
305 }
306 hash = *p + (hash << 6) + (hash << 16) - hash;
307 len--;
308 p++;
309 /* should we break if vlen exceeds limit? */
310 }
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200311 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200312 }
313 }
Willy Tarreau01732802007-11-01 22:48:15 +0100314 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200315 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100316 if (!p)
317 return NULL;
318 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200319 len -= (p - params);
320 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100321 }
322 return NULL;
323}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200325
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326/*
Benoitaffb4812009-03-25 13:02:10 +0100327 * This function tries to find a running server for the proxy <px> following
328 * the Header parameter hash method. It looks for a specific parameter in the
329 * URL and hashes it to compute the server ID. This is useful to optimize
330 * performance by avoiding bounces between servers in contexts where sessions
331 * are shared but cookies are not usable. If the parameter is not found, NULL
332 * is returned. If any server is found, it will be returned. If no valid server
333 * is found, NULL is returned.
334 */
335struct server *get_server_hh(struct session *s)
336{
337 unsigned long hash = 0;
338 struct http_txn *txn = &s->txn;
339 struct http_msg *msg = &txn->req;
340 struct proxy *px = s->be;
341 unsigned int plen = px->hh_len;
342 unsigned long len;
343 struct hdr_ctx ctx;
344 const char *p;
345
346 /* tot_weight appears to mean srv_count */
347 if (px->lbprm.tot_weight == 0)
348 return NULL;
349
Benoitaffb4812009-03-25 13:02:10 +0100350 ctx.idx = 0;
351
352 /* if the message is chunked, we skip the chunk size, but use the value as len */
353 http_find_header2(px->hh_name, plen, msg->sol, &txn->hdr_idx, &ctx);
354
355 /* if the header is not found or empty, let's fallback to round robin */
356 if (!ctx.idx || !ctx.vlen)
357 return NULL;
358
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200359 /* note: we won't hash if there's only one server left */
360 if (px->lbprm.tot_used == 1)
361 goto hash_done;
362
Benoitaffb4812009-03-25 13:02:10 +0100363 /* Found a the hh_name in the headers.
364 * we will compute the hash based on this value ctx.val.
365 */
366 len = ctx.vlen;
367 p = (char *)ctx.line + ctx.val;
368 if (!px->hh_match_domain) {
369 while (len) {
370 hash = *p + (hash << 6) + (hash << 16) - hash;
371 len--;
372 p++;
373 }
374 } else {
375 int dohash = 0;
376 p += len - 1;
377 /* special computation, use only main domain name, not tld/host
378 * going back from the end of string, start hashing at first
379 * dot stop at next.
380 * This is designed to work with the 'Host' header, and requires
381 * a special option to activate this.
382 */
383 while (len) {
384 if (*p == '.') {
385 if (!dohash)
386 dohash = 1;
387 else
388 break;
389 } else {
390 if (dohash)
391 hash = *p + (hash << 6) + (hash << 16) - hash;
392 }
393 len--;
394 p--;
395 }
396 }
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200397 hash_done:
398 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100399}
400
Emeric Brun736aa232009-06-30 17:56:00 +0200401struct server *get_server_rch(struct session *s)
402{
403 unsigned long hash = 0;
404 struct proxy *px = s->be;
405 unsigned long len;
406 const char *p;
407 int ret;
408 struct acl_expr expr;
409 struct acl_test test;
410
411 /* tot_weight appears to mean srv_count */
412 if (px->lbprm.tot_weight == 0)
413 return NULL;
414
Emeric Brun736aa232009-06-30 17:56:00 +0200415 memset(&expr, 0, sizeof(expr));
416 memset(&test, 0, sizeof(test));
417
418 expr.arg.str = px->hh_name;
419 expr.arg_len = px->hh_len;
420
421 ret = acl_fetch_rdp_cookie(px, s, NULL, ACL_DIR_REQ, &expr, &test);
422 if (ret == 0 || (test.flags & ACL_TEST_F_MAY_CHANGE) || test.len == 0)
423 return NULL;
424
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200425 /* note: we won't hash if there's only one server left */
426 if (px->lbprm.tot_used == 1)
427 goto hash_done;
428
Emeric Brun736aa232009-06-30 17:56:00 +0200429 /* Found a the hh_name in the headers.
430 * we will compute the hash based on this value ctx.val.
431 */
432 len = test.len;
433 p = (char *)test.ptr;
434 while (len) {
435 hash = *p + (hash << 6) + (hash << 16) - hash;
436 len--;
437 p++;
438 }
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200439 hash_done:
440 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200441}
Benoitaffb4812009-03-25 13:02:10 +0100442
443/*
Willy Tarreau7c669d72008-06-20 15:04:11 +0200444 * This function applies the load-balancing algorithm to the session, as
445 * defined by the backend it is assigned to. The session is then marked as
446 * 'assigned'.
447 *
448 * This function MAY NOT be called with SN_ASSIGNED already set. If the session
449 * had a server previously assigned, it is rebalanced, trying to avoid the same
450 * server.
451 * The function tries to keep the original connection slot if it reconnects to
452 * the same server, otherwise it releases it and tries to offer it.
453 *
454 * It is illegal to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200455 *
456 * It may return :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200457 * SRV_STATUS_OK if everything is OK. Session assigned to ->srv
458 * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED
459 * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200460 * SRV_STATUS_INTERNAL for other unrecoverable errors.
461 *
Willy Tarreau7c669d72008-06-20 15:04:11 +0200462 * Upon successful return, the session flag SN_ASSIGNED is set to indicate that
463 * it does not need to be called anymore. This means that s->srv can be trusted
464 * in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200465 *
466 */
467
468int assign_server(struct session *s)
469{
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100470
Willy Tarreau7c669d72008-06-20 15:04:11 +0200471 struct server *conn_slot;
472 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100473
Willy Tarreaubaaee002006-06-26 02:48:02 +0200474#ifdef DEBUG_FULL
475 fprintf(stderr,"assign_server : s=%p\n",s);
476#endif
477
Willy Tarreau7c669d72008-06-20 15:04:11 +0200478 err = SRV_STATUS_INTERNAL;
479 if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED))
480 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100481
Willy Tarreau7c669d72008-06-20 15:04:11 +0200482 s->prev_srv = s->prev_srv;
483 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200484
Willy Tarreau7c669d72008-06-20 15:04:11 +0200485 /* We have to release any connection slot before applying any LB algo,
486 * otherwise we may erroneously end up with no available slot.
487 */
488 if (conn_slot)
489 sess_change_server(s, NULL);
490
491 /* We will now try to find the good server and store it into <s->srv>.
492 * Note that <s->srv> may be NULL in case of dispatch or proxy mode,
493 * as well as if no server is available (check error code).
494 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100495
Willy Tarreau7c669d72008-06-20 15:04:11 +0200496 s->srv = NULL;
497 if (s->be->lbprm.algo & BE_LB_ALGO) {
498 int len;
499 /* we must check if we have at least one server available */
500 if (!s->be->lbprm.tot_weight) {
501 err = SRV_STATUS_NOSRV;
502 goto out;
503 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200504
Willy Tarreau7c669d72008-06-20 15:04:11 +0200505 switch (s->be->lbprm.algo & BE_LB_ALGO) {
506 case BE_LB_ALGO_RR:
507 s->srv = fwrr_get_next_server(s->be, s->prev_srv);
508 if (!s->srv) {
509 err = SRV_STATUS_FULL;
510 goto out;
511 }
512 break;
513 case BE_LB_ALGO_LC:
514 s->srv = fwlc_get_next_server(s->be, s->prev_srv);
515 if (!s->srv) {
516 err = SRV_STATUS_FULL;
517 goto out;
518 }
519 break;
520 case BE_LB_ALGO_SH:
521 if (s->cli_addr.ss_family == AF_INET)
522 len = 4;
523 else if (s->cli_addr.ss_family == AF_INET6)
524 len = 16;
525 else {
526 /* unknown IP family */
527 err = SRV_STATUS_INTERNAL;
528 goto out;
529 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200530
Willy Tarreau7c669d72008-06-20 15:04:11 +0200531 s->srv = get_server_sh(s->be,
532 (void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
533 len);
534 break;
535 case BE_LB_ALGO_UH:
536 /* URI hashing */
537 s->srv = get_server_uh(s->be,
538 s->txn.req.sol + s->txn.req.sl.rq.u,
539 s->txn.req.sl.rq.u_l);
540 break;
541 case BE_LB_ALGO_PH:
542 /* URL Parameter hashing */
543 if (s->txn.meth == HTTP_METH_POST &&
544 memchr(s->txn.req.sol + s->txn.req.sl.rq.u, '&',
545 s->txn.req.sl.rq.u_l ) == NULL)
546 s->srv = get_server_ph_post(s);
547 else
548 s->srv = get_server_ph(s->be,
Willy Tarreau2fcb5002007-05-08 13:35:26 +0200549 s->txn.req.sol + s->txn.req.sl.rq.u,
550 s->txn.req.sl.rq.u_l);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200551
Willy Tarreau7c669d72008-06-20 15:04:11 +0200552 if (!s->srv) {
553 /* parameter not found, fall back to round robin on the map */
Willy Tarreauf89c1872009-10-01 11:19:37 +0200554 s->srv = map_get_server_rr(s->be, s->prev_srv);
Willy Tarreau01732802007-11-01 22:48:15 +0100555 if (!s->srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200556 err = SRV_STATUS_FULL;
557 goto out;
Willy Tarreau01732802007-11-01 22:48:15 +0100558 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100559 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 break;
Benoitaffb4812009-03-25 13:02:10 +0100561 case BE_LB_ALGO_HH:
562 /* Header Parameter hashing */
563 s->srv = get_server_hh(s);
564
565 if (!s->srv) {
566 /* parameter not found, fall back to round robin on the map */
Willy Tarreauf89c1872009-10-01 11:19:37 +0200567 s->srv = map_get_server_rr(s->be, s->prev_srv);
Benoitaffb4812009-03-25 13:02:10 +0100568 if (!s->srv) {
569 err = SRV_STATUS_FULL;
570 goto out;
571 }
572 }
573 break;
Emeric Brun736aa232009-06-30 17:56:00 +0200574 case BE_LB_ALGO_RCH:
575 /* RDP Cookie hashing */
576 s->srv = get_server_rch(s);
577
578 if (!s->srv) {
579 /* parameter not found, fall back to round robin on the map */
Willy Tarreauf89c1872009-10-01 11:19:37 +0200580 s->srv = map_get_server_rr(s->be, s->prev_srv);
Emeric Brun736aa232009-06-30 17:56:00 +0200581 if (!s->srv) {
582 err = SRV_STATUS_FULL;
583 goto out;
584 }
585 }
586 break;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200587 default:
588 /* unknown balancing algorithm */
589 err = SRV_STATUS_INTERNAL;
590 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200591 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200592 if (s->srv != s->prev_srv) {
593 s->be->cum_lbconn++;
594 s->srv->cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100595 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200596 }
597 else if (s->be->options & PR_O_HTTP_PROXY) {
598 if (!s->srv_addr.sin_addr.s_addr) {
599 err = SRV_STATUS_NOSRV;
600 goto out;
Willy Tarreau5d65bbb2007-01-21 12:47:26 +0100601 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200602 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200603 else if (!*(int *)&s->be->dispatch_addr.sin_addr &&
Willy Tarreau4b1f8592008-12-23 23:13:55 +0100604 !(s->be->options & PR_O_TRANSP)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200605 err = SRV_STATUS_NOSRV;
606 goto out;
607 }
608
609 s->flags |= SN_ASSIGNED;
610 err = SRV_STATUS_OK;
611 out:
612
613 /* Either we take back our connection slot, or we offer it to someone
614 * else if we don't need it anymore.
615 */
616 if (conn_slot) {
617 if (conn_slot == s->srv) {
618 sess_change_server(s, s->srv);
619 } else {
620 if (may_dequeue_tasks(conn_slot, s->be))
621 process_srv_queue(conn_slot);
622 }
623 }
624
625 out_err:
626 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627}
628
629
630/*
631 * This function assigns a server address to a session, and sets SN_ADDR_SET.
632 * The address is taken from the currently assigned server, or from the
633 * dispatch or transparent address.
634 *
635 * It may return :
636 * SRV_STATUS_OK if everything is OK.
637 * SRV_STATUS_INTERNAL for other unrecoverable errors.
638 *
639 * Upon successful return, the session flag SN_ADDR_SET is set. This flag is
640 * not cleared, so it's to the caller to clear it if required.
641 *
642 */
643int assign_server_address(struct session *s)
644{
645#ifdef DEBUG_FULL
646 fprintf(stderr,"assign_server_address : s=%p\n",s);
647#endif
648
Willy Tarreau31682232007-11-29 15:38:04 +0100649 if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_ALGO)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200650 /* A server is necessarily known for this session */
651 if (!(s->flags & SN_ASSIGNED))
652 return SRV_STATUS_INTERNAL;
653
654 s->srv_addr = s->srv->addr;
655
656 /* if this server remaps proxied ports, we'll use
657 * the port the client connected to with an offset. */
658 if (s->srv->state & SRV_MAPPORTS) {
Willy Tarreau4b1f8592008-12-23 23:13:55 +0100659 if (!(s->be->options & PR_O_TRANSP) && !(s->flags & SN_FRT_ADDR_SET))
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200660 get_frt_addr(s);
661 if (s->frt_addr.ss_family == AF_INET) {
662 s->srv_addr.sin_port = htons(ntohs(s->srv_addr.sin_port) +
663 ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port));
664 } else {
665 s->srv_addr.sin_port = htons(ntohs(s->srv_addr.sin_port) +
666 ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port));
667 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200668 }
669 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200670 else if (*(int *)&s->be->dispatch_addr.sin_addr) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671 /* connect to the defined dispatch addr */
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200672 s->srv_addr = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200673 }
Willy Tarreau4b1f8592008-12-23 23:13:55 +0100674 else if (s->be->options & PR_O_TRANSP) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaubd414282008-01-19 13:46:35 +0100676 if (!(s->flags & SN_FRT_ADDR_SET))
677 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200678
Willy Tarreaubd414282008-01-19 13:46:35 +0100679 memcpy(&s->srv_addr, &s->frt_addr, MIN(sizeof(s->srv_addr), sizeof(s->frt_addr)));
680 /* when we support IPv6 on the backend, we may add other tests */
681 //qfprintf(stderr, "Cannot get original server address.\n");
682 //return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200683 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100684 else if (s->be->options & PR_O_HTTP_PROXY) {
685 /* If HTTP PROXY option is set, then server is already assigned
686 * during incoming client request parsing. */
687 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100688 else {
689 /* no server and no LB algorithm ! */
690 return SRV_STATUS_INTERNAL;
691 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200692
693 s->flags |= SN_ADDR_SET;
694 return SRV_STATUS_OK;
695}
696
697
698/* This function assigns a server to session <s> if required, and can add the
699 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200700 * If ->srv_conn is set, the session is first released from the server.
701 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
702 * be called before any connection and after any retry or redispatch occurs.
703 *
704 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200705 *
706 * Returns :
707 *
708 * SRV_STATUS_OK if everything is OK.
709 * SRV_STATUS_NOSRV if no server is available. s->srv = NULL.
710 * SRV_STATUS_QUEUED if the connection has been queued.
711 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau7c669d72008-06-20 15:04:11 +0200712 * connection could not be queued in s->srv,
713 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200714 * SRV_STATUS_INTERNAL for other unrecoverable errors.
715 *
716 */
717int assign_server_and_queue(struct session *s)
718{
719 struct pendconn *p;
720 int err;
721
722 if (s->pend_pos)
723 return SRV_STATUS_INTERNAL;
724
Willy Tarreau7c669d72008-06-20 15:04:11 +0200725 err = SRV_STATUS_OK;
726 if (!(s->flags & SN_ASSIGNED)) {
727 err = assign_server(s);
728 if (s->prev_srv) {
729 /* This session was previously assigned to a server. We have to
730 * update the session's and the server's stats :
731 * - if the server changed :
732 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
733 * - set SN_REDISP if it was successfully redispatched
734 * - increment srv->redispatches and be->redispatches
735 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100736 */
737
Willy Tarreau7c669d72008-06-20 15:04:11 +0200738 if (s->prev_srv != s->srv) {
739 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
740 s->txn.flags &= ~TX_CK_MASK;
741 s->txn.flags |= TX_CK_DOWN;
742 }
743 s->flags |= SN_REDISP;
744 s->prev_srv->redispatches++;
745 s->be->redispatches++;
746 } else {
747 s->prev_srv->retries++;
748 s->be->retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100749 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100750 }
751 }
752
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753 switch (err) {
754 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200755 /* we have SN_ASSIGNED set */
756 if (!s->srv)
757 return SRV_STATUS_OK; /* dispatch or proxy mode */
758
759 /* If we already have a connection slot, no need to check any queue */
760 if (s->srv_conn == s->srv)
761 return SRV_STATUS_OK;
762
763 /* OK, this session already has an assigned server, but no
764 * connection slot yet. Either it is a redispatch, or it was
765 * assigned from persistence information (direct mode).
766 */
767 if ((s->flags & SN_REDIRECTABLE) && s->srv->rdr_len) {
768 /* server scheduled for redirection, and already assigned. We
769 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100770 */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200771 sess_change_server(s, s->srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100772 return SRV_STATUS_OK;
773 }
774
Willy Tarreau7c669d72008-06-20 15:04:11 +0200775 /* We might have to queue this session if the assigned server is full.
776 * We know we have to queue it into the server's queue, so if a maxqueue
777 * is set on the server, we must also check that the server's queue is
778 * not full, in which case we have to return FULL.
779 */
780 if (s->srv->maxconn &&
781 (s->srv->nbpend || s->srv->served >= srv_dynamic_maxconn(s->srv))) {
782
783 if (s->srv->maxqueue > 0 && s->srv->nbpend >= s->srv->maxqueue)
784 return SRV_STATUS_FULL;
785
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786 p = pendconn_add(s);
787 if (p)
788 return SRV_STATUS_QUEUED;
789 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200790 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200792
793 /* OK, we can use this server. Let's reserve our place */
794 sess_change_server(s, s->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795 return SRV_STATUS_OK;
796
797 case SRV_STATUS_FULL:
798 /* queue this session into the proxy's queue */
799 p = pendconn_add(s);
800 if (p)
801 return SRV_STATUS_QUEUED;
802 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200803 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804
805 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200806 return err;
807
Willy Tarreaubaaee002006-06-26 02:48:02 +0200808 case SRV_STATUS_INTERNAL:
809 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200810
Willy Tarreaubaaee002006-06-26 02:48:02 +0200811 default:
812 return SRV_STATUS_INTERNAL;
813 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100814}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200815
816/*
817 * This function initiates a connection to the server assigned to this session
818 * (s->srv, s->srv_addr). It will assign a server if none is assigned yet.
819 * It can return one of :
820 * - SN_ERR_NONE if everything's OK
821 * - SN_ERR_SRVTO if there are no more servers
822 * - SN_ERR_SRVCL if the connection was refused by the server
823 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
824 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
825 * - SN_ERR_INTERNAL for any other purely internal errors
826 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
827 */
828int connect_server(struct session *s)
829{
Willy Tarreau9650f372009-08-16 14:02:45 +0200830 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200831
832 if (!(s->flags & SN_ADDR_SET)) {
833 err = assign_server_address(s);
834 if (err != SRV_STATUS_OK)
835 return SN_ERR_INTERNAL;
836 }
837
Willy Tarreau9650f372009-08-16 14:02:45 +0200838 if (!s->req->cons->connect)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200839 return SN_ERR_INTERNAL;
Willy Tarreaud88edf22009-06-14 15:48:17 +0200840
Willy Tarreau9650f372009-08-16 14:02:45 +0200841 err = s->req->cons->connect(s->req->cons, s->be, s->srv,
842 (struct sockaddr *)&s->srv_addr,
843 (struct sockaddr *)&s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844
Willy Tarreau9650f372009-08-16 14:02:45 +0200845 if (err != SN_ERR_NONE)
846 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +0200847
Willy Tarreaubaaee002006-06-26 02:48:02 +0200848 if (s->srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +0100849 s->flags |= SN_CURR_SESS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200850 s->srv->cur_sess++;
851 if (s->srv->cur_sess > s->srv->cur_sess_max)
852 s->srv->cur_sess_max = s->srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +0100853 if (s->be->lbprm.server_take_conn)
854 s->be->lbprm.server_take_conn(s->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855 }
856
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 return SN_ERR_NONE; /* connection is OK */
858}
859
860
Willy Tarreaubaaee002006-06-26 02:48:02 +0200861/* This function performs the "redispatch" part of a connection attempt. It
862 * will assign a server if required, queue the connection if required, and
863 * handle errors that might arise at this level. It can change the server
864 * state. It will return 1 if it encounters an error, switches the server
865 * state, or has to queue a connection. Otherwise, it will return 0 indicating
866 * that the connection is ready to use.
867 */
868
869int srv_redispatch_connect(struct session *t)
870{
871 int conn_err;
872
873 /* We know that we don't have any connection pending, so we will
874 * try to get a new one, and wait in this state if it's queued
875 */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200876 redispatch:
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877 conn_err = assign_server_and_queue(t);
878 switch (conn_err) {
879 case SRV_STATUS_OK:
880 break;
881
Willy Tarreau7c669d72008-06-20 15:04:11 +0200882 case SRV_STATUS_FULL:
883 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
884 * and we can redispatch to another server, or it is not and we return
885 * 503. This only makes sense in DIRECT mode however, because normal LB
886 * algorithms would never select such a server, and hash algorithms
887 * would bring us on the same server again. Note that t->srv is set in
888 * this case.
889 */
890 if ((t->flags & SN_DIRECT) && (t->be->options & PR_O_REDISP)) {
891 t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
892 t->prev_srv = t->srv;
893 goto redispatch;
894 }
895
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200896 if (!t->req->cons->err_type) {
897 t->req->cons->err_type = SI_ET_QUEUE_ERR;
898 t->req->cons->err_loc = t->srv;
899 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200900
901 t->srv->failed_conns++;
902 t->be->failed_conns++;
903 return 1;
904
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905 case SRV_STATUS_NOSRV:
906 /* note: it is guaranteed that t->srv == NULL here */
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200907 if (!t->req->cons->err_type) {
908 t->req->cons->err_type = SI_ET_CONN_ERR;
909 t->req->cons->err_loc = NULL;
910 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100911
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200912 t->be->failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200913 return 1;
914
915 case SRV_STATUS_QUEUED:
Willy Tarreau35374672008-09-03 18:11:02 +0200916 t->req->cons->exp = tick_add_ifset(now_ms, t->be->timeout.queue);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200917 t->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918 /* do nothing else and do not wake any other session up */
919 return 1;
920
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 case SRV_STATUS_INTERNAL:
922 default:
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200923 if (!t->req->cons->err_type) {
924 t->req->cons->err_type = SI_ET_CONN_OTHER;
925 t->req->cons->err_loc = t->srv;
926 }
927
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 if (t->srv)
Willy Tarreau7f062c42009-03-05 18:43:00 +0100929 srv_inc_sess_ctr(t->srv);
Willy Tarreau98937b82007-12-10 15:05:42 +0100930 if (t->srv)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931 t->srv->failed_conns++;
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200932 t->be->failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933
934 /* release other sessions waiting for this server */
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200935 if (may_dequeue_tasks(t->srv, t->be))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200936 process_srv_queue(t->srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 return 1;
938 }
939 /* if we get here, it's because we got SRV_STATUS_OK, which also
940 * means that the connection has not been queued.
941 */
942 return 0;
943}
944
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200945int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100946 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200947 return px->down_time;
948
949 return now.tv_sec - px->last_change + px->down_time;
950}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200951
Willy Tarreaua0cbda62007-11-01 21:39:54 +0100952/* This function parses a "balance" statement in a backend section describing
953 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
954 * returns -1, it may write an error message into ther <err> buffer, for at
955 * most <errlen> bytes, trailing zero included. The trailing '\n' will not be
956 * written. The function must be called with <args> pointing to the first word
957 * after "balance".
958 */
959int backend_parse_balance(const char **args, char *err, int errlen, struct proxy *curproxy)
960{
961 if (!*(args[0])) {
962 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +0100963 curproxy->lbprm.algo &= ~BE_LB_ALGO;
964 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +0100965 return 0;
966 }
967
968 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +0100969 curproxy->lbprm.algo &= ~BE_LB_ALGO;
970 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +0100971 }
Willy Tarreau51406232008-03-10 22:04:20 +0100972 else if (!strcmp(args[0], "leastconn")) {
973 curproxy->lbprm.algo &= ~BE_LB_ALGO;
974 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
975 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +0100976 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +0100977 curproxy->lbprm.algo &= ~BE_LB_ALGO;
978 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +0100979 }
980 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +0200981 int arg = 1;
982
Willy Tarreau31682232007-11-29 15:38:04 +0100983 curproxy->lbprm.algo &= ~BE_LB_ALGO;
984 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +0200985
986 while (*args[arg]) {
987 if (!strcmp(args[arg], "len")) {
988 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
989 snprintf(err, errlen, "'balance uri len' expects a positive integer (got '%s').", args[arg+1]);
990 return -1;
991 }
992 curproxy->uri_len_limit = atoi(args[arg+1]);
993 arg += 2;
994 }
995 else if (!strcmp(args[arg], "depth")) {
996 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
997 snprintf(err, errlen, "'balance uri depth' expects a positive integer (got '%s').", args[arg+1]);
998 return -1;
999 }
1000 /* hint: we store the position of the ending '/' (depth+1) so
1001 * that we avoid a comparison while computing the hash.
1002 */
1003 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1004 arg += 2;
1005 }
1006 else {
1007 snprintf(err, errlen, "'balance uri' only accepts parameters 'len' and 'depth' (got '%s').", args[arg]);
1008 return -1;
1009 }
1010 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001011 }
Willy Tarreau01732802007-11-01 22:48:15 +01001012 else if (!strcmp(args[0], "url_param")) {
1013 if (!*args[1]) {
1014 snprintf(err, errlen, "'balance url_param' requires an URL parameter name.");
1015 return -1;
1016 }
Willy Tarreau31682232007-11-29 15:38:04 +01001017 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1018 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001019
1020 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001021 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001022 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001023 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001024 if (strcmp(args[2], "check_post")) {
1025 snprintf(err, errlen, "'balance url_param' only accepts check_post modifier.");
1026 return -1;
1027 }
1028 if (*args[3]) {
1029 /* TODO: maybe issue a warning if there is no value, no digits or too long */
1030 curproxy->url_param_post_limit = str2ui(args[3]);
1031 }
1032 /* if no limit, or faul value in args[3], then default to a moderate wordlen */
1033 if (!curproxy->url_param_post_limit)
1034 curproxy->url_param_post_limit = 48;
1035 else if ( curproxy->url_param_post_limit < 3 )
1036 curproxy->url_param_post_limit = 3; /* minimum example: S=3 or \r\nS=6& */
1037 }
Benoitaffb4812009-03-25 13:02:10 +01001038 }
1039 else if (!strncmp(args[0], "hdr(", 4)) {
1040 const char *beg, *end;
1041
1042 beg = args[0] + 4;
1043 end = strchr(beg, ')');
1044
1045 if (!end || end == beg) {
1046 snprintf(err, errlen, "'balance hdr(name)' requires an http header field name.");
1047 return -1;
1048 }
1049
1050 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1051 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1052
1053 free(curproxy->hh_name);
1054 curproxy->hh_len = end - beg;
1055 curproxy->hh_name = my_strndup(beg, end - beg);
1056 curproxy->hh_match_domain = 0;
1057
1058 if (*args[1]) {
1059 if (strcmp(args[1], "use_domain_only")) {
1060 snprintf(err, errlen, "'balance hdr(name)' only accepts 'use_domain_only' modifier.");
1061 return -1;
1062 }
1063 curproxy->hh_match_domain = 1;
1064 }
1065
Emeric Brun736aa232009-06-30 17:56:00 +02001066 }
1067 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1068 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1069 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1070
1071 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1072 const char *beg, *end;
1073
1074 beg = args[0] + 11;
1075 end = strchr(beg, ')');
1076
1077 if (!end || end == beg) {
1078 snprintf(err, errlen, "'balance rdp-cookie(name)' requires an rdp cookie name.");
1079 return -1;
1080 }
1081
1082 free(curproxy->hh_name);
1083 curproxy->hh_name = my_strndup(beg, end - beg);
1084 curproxy->hh_len = end - beg;
1085 }
1086 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1087 free(curproxy->hh_name);
1088 curproxy->hh_name = strdup("mstshash");
1089 curproxy->hh_len = strlen(curproxy->hh_name);
1090 }
1091 else { /* syntax */
1092 snprintf(err, errlen, "'balance rdp-cookie(name)' requires an rdp cookie name.");
1093 return -1;
1094 }
Willy Tarreau01732802007-11-01 22:48:15 +01001095 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001096 else {
Emeric Brun736aa232009-06-30 17:56:00 +02001097 snprintf(err, errlen, "'balance' only supports 'roundrobin', 'leastconn', 'source', 'uri', 'url_param', 'hdr(name)' and 'rdp-cookie(name)' options.");
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001098 return -1;
1099 }
1100 return 0;
1101}
1102
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001103
1104/************************************************************************/
1105/* All supported keywords must be declared here. */
1106/************************************************************************/
1107
1108/* set test->i to the number of enabled servers on the proxy */
1109static int
1110acl_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, int dir,
1111 struct acl_expr *expr, struct acl_test *test)
1112{
1113 test->flags = ACL_TEST_F_VOL_TEST;
1114 if (expr->arg_len) {
1115 /* another proxy was designated, we must look for it */
1116 for (px = proxy; px; px = px->next)
1117 if ((px->cap & PR_CAP_BE) && !strcmp(px->id, expr->arg.str))
1118 break;
1119 }
1120 if (!px)
1121 return 0;
1122
1123 if (px->srv_act)
1124 test->i = px->srv_act;
1125 else if (px->lbprm.fbck)
1126 test->i = 1;
1127 else
1128 test->i = px->srv_bck;
1129
1130 return 1;
1131}
1132
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001133/* set test->i to the number of enabled servers on the proxy */
1134static int
1135acl_fetch_connslots(struct proxy *px, struct session *l4, void *l7, int dir,
1136 struct acl_expr *expr, struct acl_test *test)
1137{
1138 struct server *iterator;
1139 test->flags = ACL_TEST_F_VOL_TEST;
1140 if (expr->arg_len) {
1141 /* another proxy was designated, we must look for it */
1142 for (px = proxy; px; px = px->next)
1143 if ((px->cap & PR_CAP_BE) && !strcmp(px->id, expr->arg.str))
1144 break;
1145 }
1146 if (!px)
1147 return 0;
1148
1149 test->i = 0;
1150 iterator = px->srv;
1151 while (iterator) {
1152 if ((iterator->state & 1) == 0) {
1153 iterator = iterator->next;
1154 continue;
1155 }
1156 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
1157 test->i = -1;
1158 return 1;
1159 }
1160
1161 test->i += (iterator->maxconn - iterator->cur_sess)
1162 + (iterator->maxqueue - iterator->nbpend);
1163 iterator = iterator->next;
1164 }
1165
1166 return 1;
1167}
1168
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001169/* set test->i to the number of connections per second reaching the frontend */
1170static int
1171acl_fetch_fe_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
1172 struct acl_expr *expr, struct acl_test *test)
1173{
1174 test->flags = ACL_TEST_F_VOL_TEST;
1175 if (expr->arg_len) {
1176 /* another proxy was designated, we must look for it */
1177 for (px = proxy; px; px = px->next)
1178 if ((px->cap & PR_CAP_FE) && !strcmp(px->id, expr->arg.str))
1179 break;
1180 }
1181 if (!px)
1182 return 0;
1183
1184 test->i = read_freq_ctr(&px->fe_sess_per_sec);
1185 return 1;
1186}
1187
1188/* set test->i to the number of connections per second reaching the backend */
1189static int
1190acl_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
1191 struct acl_expr *expr, struct acl_test *test)
1192{
1193 test->flags = ACL_TEST_F_VOL_TEST;
1194 if (expr->arg_len) {
1195 /* another proxy was designated, we must look for it */
1196 for (px = proxy; px; px = px->next)
1197 if ((px->cap & PR_CAP_BE) && !strcmp(px->id, expr->arg.str))
1198 break;
1199 }
1200 if (!px)
1201 return 0;
1202
1203 test->i = read_freq_ctr(&px->be_sess_per_sec);
1204 return 1;
1205}
1206
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001207
1208/* Note: must not be declared <const> as its list will be overwritten */
1209static struct acl_kw_list acl_kws = {{ },{
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001210 { "nbsrv", acl_parse_int, acl_fetch_nbsrv, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau3a8efeb2009-03-05 19:15:37 +01001211 { "connslots", acl_parse_int, acl_fetch_connslots, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001212 { "fe_sess_rate", acl_parse_int, acl_fetch_fe_sess_rate, acl_match_int, ACL_USE_NOTHING },
1213 { "be_sess_rate", acl_parse_int, acl_fetch_be_sess_rate, acl_match_int, ACL_USE_NOTHING },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001214 { NULL, NULL, NULL, NULL },
1215}};
1216
1217
1218__attribute__((constructor))
1219static void __backend_init(void)
1220{
1221 acl_register_keywords(&acl_kws);
1222}
1223
Willy Tarreaubaaee002006-06-26 02:48:02 +02001224/*
1225 * Local variables:
1226 * c-indent-level: 8
1227 * c-basic-offset: 8
1228 * End:
1229 */