blob: b8bf7dd666aaf03d8115fe5cf0b86cb75b835e75 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreauf09c6602012-02-13 17:12:08 +01004 * Copyright 2000-2012 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 Tarreau34db1082012-04-19 17:16:54 +020031#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032#include <proto/backend.h>
Willy Tarreaud1de8af2012-05-18 22:12:14 +020033#include <proto/buffers.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020034#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020035#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010036#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020037#include <proto/lb_fwlc.h>
38#include <proto/lb_fwrr.h>
39#include <proto/lb_map.h>
Willy Tarreau26d8c592012-05-07 18:12:14 +020040#include <proto/protocols.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020042#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010044#include <proto/server.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020045#include <proto/session.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020046#include <proto/sock_raw.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010047#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/task.h>
49
Willy Tarreaubaaee002006-06-26 02:48:02 +020050/*
51 * This function recounts the number of usable active and backup servers for
52 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010053 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010054 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010055 * this.
Willy Tarreaubaaee002006-06-26 02:48:02 +020056 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020057void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +020058{
59 struct server *srv;
60
Willy Tarreau20697042007-11-15 23:26:18 +010061 px->srv_act = px->srv_bck = 0;
62 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +010063 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +020064 for (srv = px->srv; srv != NULL; srv = srv->next) {
Willy Tarreaub625a082007-11-26 01:15:43 +010065 if (!srv_is_usable(srv->state, srv->eweight))
66 continue;
67
68 if (srv->state & SRV_BACKUP) {
69 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +010070 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +010071 px->lbprm.fbck = srv;
72 px->srv_bck++;
73 px->lbprm.tot_wbck += srv->eweight;
74 } else {
75 px->srv_act++;
76 px->lbprm.tot_wact += srv->eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +020077 }
78 }
Willy Tarreaub625a082007-11-26 01:15:43 +010079}
Willy Tarreau20697042007-11-15 23:26:18 +010080
Willy Tarreaub625a082007-11-26 01:15:43 +010081/* This function simply updates the backend's tot_weight and tot_used values
82 * after servers weights have been updated. It is designed to be used after
83 * recount_servers() or equivalent.
84 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020085void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +010086{
Willy Tarreau20697042007-11-15 23:26:18 +010087 if (px->srv_act) {
88 px->lbprm.tot_weight = px->lbprm.tot_wact;
89 px->lbprm.tot_used = px->srv_act;
90 }
Willy Tarreaub625a082007-11-26 01:15:43 +010091 else if (px->lbprm.fbck) {
92 /* use only the first backup server */
93 px->lbprm.tot_weight = px->lbprm.fbck->eweight;
94 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +010095 }
96 else {
Willy Tarreaub625a082007-11-26 01:15:43 +010097 px->lbprm.tot_weight = px->lbprm.tot_wbck;
98 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +010099 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100100}
101
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200102/*
103 * This function tries to find a running server for the proxy <px> following
104 * the source hash method. Depending on the number of active/backup servers,
105 * it will either look for active servers, or for backup servers.
106 * If any server is found, it will be returned. If no valid server is found,
107 * NULL is returned.
108 */
109struct server *get_server_sh(struct proxy *px, const char *addr, int len)
110{
111 unsigned int h, l;
112
113 if (px->lbprm.tot_weight == 0)
114 return NULL;
115
116 l = h = 0;
117
118 /* note: we won't hash if there's only one server left */
119 if (px->lbprm.tot_used == 1)
120 goto hash_done;
121
122 while ((l + sizeof (int)) <= len) {
123 h ^= ntohl(*(unsigned int *)(&addr[l]));
124 l += sizeof (int);
125 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100126 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
127 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200128 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200129 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
130 return chash_get_server_hash(px, h);
131 else
132 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200133}
134
135/*
136 * This function tries to find a running server for the proxy <px> following
137 * the URI hash method. In order to optimize cache hits, the hash computation
138 * ends at the question mark. Depending on the number of active/backup servers,
139 * it will either look for active servers, or for backup servers.
140 * If any server is found, it will be returned. If no valid server is found,
141 * NULL is returned.
142 *
143 * This code was contributed by Guillaume Dallaire, who also selected this hash
144 * algorithm out of a tens because it gave him the best results.
145 *
146 */
147struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
148{
149 unsigned long hash = 0;
150 int c;
151 int slashes = 0;
152
153 if (px->lbprm.tot_weight == 0)
154 return NULL;
155
156 /* note: we won't hash if there's only one server left */
157 if (px->lbprm.tot_used == 1)
158 goto hash_done;
159
160 if (px->uri_len_limit)
161 uri_len = MIN(uri_len, px->uri_len_limit);
162
163 while (uri_len--) {
164 c = *uri++;
165 if (c == '/') {
166 slashes++;
167 if (slashes == px->uri_dirs_depth1) /* depth+1 */
168 break;
169 }
170 else if (c == '?')
171 break;
172
173 hash = c + (hash << 6) + (hash << 16) - hash;
174 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100175 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
176 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200177 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200178 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
179 return chash_get_server_hash(px, hash);
180 else
181 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200182}
183
Willy Tarreau01732802007-11-01 22:48:15 +0100184/*
185 * This function tries to find a running server for the proxy <px> following
186 * the URL parameter hash method. It looks for a specific parameter in the
187 * URL and hashes it to compute the server ID. This is useful to optimize
188 * performance by avoiding bounces between servers in contexts where sessions
189 * are shared but cookies are not usable. If the parameter is not found, NULL
190 * is returned. If any server is found, it will be returned. If no valid server
191 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100192 */
193struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
194{
195 unsigned long hash = 0;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200196 const char *p;
197 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100198 int plen;
199
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200200 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100201 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100202 return NULL;
203
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200204 if ((p = memchr(uri, '?', uri_len)) == NULL)
205 return NULL;
206
Willy Tarreau01732802007-11-01 22:48:15 +0100207 p++;
208
209 uri_len -= (p - uri);
210 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200211 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100212
213 while (uri_len > plen) {
214 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200215 if (params[plen] == '=') {
216 if (memcmp(params, px->url_param_name, plen) == 0) {
217 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100218 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200219 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100220 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200221 p += plen + 1;
222 uri_len -= plen + 1;
223
Willy Tarreau01732802007-11-01 22:48:15 +0100224 while (uri_len && *p != '&') {
225 hash = *p + (hash << 6) + (hash << 16) - hash;
226 uri_len--;
227 p++;
228 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100229 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
230 hash = full_hash(hash);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200231 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
232 return chash_get_server_hash(px, hash);
233 else
234 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100235 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200236 }
237 /* skip to next parameter */
238 p = memchr(params, '&', uri_len);
239 if (!p)
240 return NULL;
241 p++;
242 uri_len -= (p - params);
243 params = p;
244 }
245 return NULL;
246}
247
248/*
249 * this does the same as the previous server_ph, but check the body contents
250 */
251struct server *get_server_ph_post(struct session *s)
252{
253 unsigned long hash = 0;
254 struct http_txn *txn = &s->txn;
255 struct buffer *req = s->req;
256 struct http_msg *msg = &txn->req;
257 struct proxy *px = s->be;
258 unsigned int plen = px->url_param_len;
Willy Tarreau124d9912011-03-01 20:30:48 +0100259 unsigned long len = msg->body_len;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200260 const char *params = b_ptr(req, (int)(msg->sov - req->o));
Willy Tarreau157dd632009-12-06 19:18:09 +0100261 const char *p = params;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200263 if (len > buffer_len(req) - (msg->sov - msg->som))
264 len = buffer_len(req) - (msg->sov - msg->som);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200265
Willy Tarreau157dd632009-12-06 19:18:09 +0100266 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 return NULL;
268
Willy Tarreau157dd632009-12-06 19:18:09 +0100269 if (px->lbprm.tot_weight == 0)
270 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200271
272 while (len > plen) {
273 /* Look for the parameter name followed by an equal symbol */
274 if (params[plen] == '=') {
275 if (memcmp(params, px->url_param_name, plen) == 0) {
276 /* OK, we have the parameter here at <params>, and
277 * the value after the equal sign, at <p>
278 * skip the equal symbol
279 */
280 p += plen + 1;
281 len -= plen + 1;
282
283 while (len && *p != '&') {
284 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100285 /* if in a POST, body must be URI encoded or it's not a URI.
286 * Do not interprete any possible binary data as a parameter.
287 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200288 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
289 break;
290 return NULL; /* oh, no; this is not uri-encoded.
291 * This body does not contain parameters.
292 */
293 }
294 hash = *p + (hash << 6) + (hash << 16) - hash;
295 len--;
296 p++;
297 /* should we break if vlen exceeds limit? */
298 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100299 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
300 hash = full_hash(hash);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200301 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
302 return chash_get_server_hash(px, hash);
303 else
304 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305 }
306 }
Willy Tarreau01732802007-11-01 22:48:15 +0100307 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200308 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100309 if (!p)
310 return NULL;
311 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200312 len -= (p - params);
313 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100314 }
315 return NULL;
316}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200317
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200318
Willy Tarreaubaaee002006-06-26 02:48:02 +0200319/*
Benoitaffb4812009-03-25 13:02:10 +0100320 * This function tries to find a running server for the proxy <px> following
321 * the Header parameter hash method. It looks for a specific parameter in the
322 * URL and hashes it to compute the server ID. This is useful to optimize
323 * performance by avoiding bounces between servers in contexts where sessions
324 * are shared but cookies are not usable. If the parameter is not found, NULL
325 * is returned. If any server is found, it will be returned. If no valid server
326 * is found, NULL is returned.
327 */
328struct server *get_server_hh(struct session *s)
329{
330 unsigned long hash = 0;
331 struct http_txn *txn = &s->txn;
332 struct http_msg *msg = &txn->req;
333 struct proxy *px = s->be;
334 unsigned int plen = px->hh_len;
335 unsigned long len;
336 struct hdr_ctx ctx;
337 const char *p;
338
339 /* tot_weight appears to mean srv_count */
340 if (px->lbprm.tot_weight == 0)
341 return NULL;
342
Benoitaffb4812009-03-25 13:02:10 +0100343 ctx.idx = 0;
344
345 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200346 http_find_header2(px->hh_name, plen, b_ptr(s->req, (int)(msg->sol - s->req->o)), &txn->hdr_idx, &ctx);
Benoitaffb4812009-03-25 13:02:10 +0100347
348 /* if the header is not found or empty, let's fallback to round robin */
349 if (!ctx.idx || !ctx.vlen)
350 return NULL;
351
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200352 /* note: we won't hash if there's only one server left */
353 if (px->lbprm.tot_used == 1)
354 goto hash_done;
355
Benoitaffb4812009-03-25 13:02:10 +0100356 /* Found a the hh_name in the headers.
357 * we will compute the hash based on this value ctx.val.
358 */
359 len = ctx.vlen;
360 p = (char *)ctx.line + ctx.val;
361 if (!px->hh_match_domain) {
362 while (len) {
363 hash = *p + (hash << 6) + (hash << 16) - hash;
364 len--;
365 p++;
366 }
367 } else {
368 int dohash = 0;
369 p += len - 1;
370 /* special computation, use only main domain name, not tld/host
371 * going back from the end of string, start hashing at first
372 * dot stop at next.
373 * This is designed to work with the 'Host' header, and requires
374 * a special option to activate this.
375 */
376 while (len) {
377 if (*p == '.') {
378 if (!dohash)
379 dohash = 1;
380 else
381 break;
382 } else {
383 if (dohash)
384 hash = *p + (hash << 6) + (hash << 16) - hash;
385 }
386 len--;
387 p--;
388 }
389 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100390 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
391 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200392 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200393 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
394 return chash_get_server_hash(px, hash);
395 else
396 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100397}
398
Willy Tarreau34db1082012-04-19 17:16:54 +0200399/* RDP Cookie HASH. */
Emeric Brun736aa232009-06-30 17:56:00 +0200400struct server *get_server_rch(struct session *s)
401{
402 unsigned long hash = 0;
403 struct proxy *px = s->be;
404 unsigned long len;
405 const char *p;
406 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200407 struct sample smp;
Willy Tarreau34db1082012-04-19 17:16:54 +0200408 struct arg args[2];
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200409 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200410
411 /* tot_weight appears to mean srv_count */
412 if (px->lbprm.tot_weight == 0)
413 return NULL;
414
Willy Tarreau37406352012-04-23 16:16:37 +0200415 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200416
Willy Tarreau34db1082012-04-19 17:16:54 +0200417 args[0].type = ARGT_STR;
418 args[0].data.str.str = px->hh_name;
419 args[0].data.str.len = px->hh_len;
420 args[1].type = ARGT_STOP;
421
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200422 b_rew(s->req, rewind = s->req->o);
423
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200424 ret = smp_fetch_rdp_cookie(px, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, args, &smp);
Willy Tarreauf853c462012-04-23 18:53:56 +0200425 len = smp.data.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100426
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200427 b_adv(s->req, rewind);
428
Willy Tarreau37406352012-04-23 16:16:37 +0200429 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200430 return NULL;
431
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200432 /* note: we won't hash if there's only one server left */
433 if (px->lbprm.tot_used == 1)
434 goto hash_done;
435
Emeric Brun736aa232009-06-30 17:56:00 +0200436 /* Found a the hh_name in the headers.
437 * we will compute the hash based on this value ctx.val.
438 */
Willy Tarreauf853c462012-04-23 18:53:56 +0200439 p = smp.data.str.str;
Emeric Brun736aa232009-06-30 17:56:00 +0200440 while (len) {
441 hash = *p + (hash << 6) + (hash << 16) - hash;
442 len--;
443 p++;
444 }
Willy Tarreau798a39c2010-11-24 15:04:29 +0100445 if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP)
446 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200447 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200448 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
449 return chash_get_server_hash(px, hash);
450 else
451 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200452}
Benoitaffb4812009-03-25 13:02:10 +0100453
454/*
Willy Tarreau7c669d72008-06-20 15:04:11 +0200455 * This function applies the load-balancing algorithm to the session, as
456 * defined by the backend it is assigned to. The session is then marked as
457 * 'assigned'.
458 *
459 * This function MAY NOT be called with SN_ASSIGNED already set. If the session
460 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100461 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200462 * The function tries to keep the original connection slot if it reconnects to
463 * the same server, otherwise it releases it and tries to offer it.
464 *
465 * It is illegal to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200466 *
467 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100468 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200469 * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED
470 * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200471 * SRV_STATUS_INTERNAL for other unrecoverable errors.
472 *
Willy Tarreau7c669d72008-06-20 15:04:11 +0200473 * Upon successful return, the session flag SN_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100474 * it does not need to be called anymore. This means that target_srv(&s->target)
475 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200476 *
477 */
478
479int assign_server(struct session *s)
480{
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100481
Willy Tarreau7c669d72008-06-20 15:04:11 +0200482 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100483 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200484 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100485
Simon Horman8effd3d2011-08-13 08:03:52 +0900486 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200487
Willy Tarreau7c669d72008-06-20 15:04:11 +0200488 err = SRV_STATUS_INTERNAL;
489 if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED))
490 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100491
Willy Tarreau827aee92011-03-10 16:55:02 +0100492 prev_srv = target_srv(&s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200493 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200494
Willy Tarreau7c669d72008-06-20 15:04:11 +0200495 /* We have to release any connection slot before applying any LB algo,
496 * otherwise we may erroneously end up with no available slot.
497 */
498 if (conn_slot)
499 sess_change_server(s, NULL);
500
Willy Tarreau827aee92011-03-10 16:55:02 +0100501 /* We will now try to find the good server and store it into <target_srv(&s->target)>.
502 * Note that <target_srv(&s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200503 * as well as if no server is available (check error code).
504 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100505
Willy Tarreau827aee92011-03-10 16:55:02 +0100506 srv = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100507 clear_target(&s->target);
Willy Tarreau664beb82011-03-10 11:38:29 +0100508
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200509 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200510 /* we must check if we have at least one server available */
511 if (!s->be->lbprm.tot_weight) {
512 err = SRV_STATUS_NOSRV;
513 goto out;
514 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200515
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200516 /* First check whether we need to fetch some data or simply call
517 * the LB lookup function. Only the hashing functions will need
518 * some input data in fact, and will support multiple algorithms.
519 */
520 switch (s->be->lbprm.algo & BE_LB_LKUP) {
521 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100522 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200523 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200524
Willy Tarreauf09c6602012-02-13 17:12:08 +0100525 case BE_LB_LKUP_FSTREE:
526 srv = fas_get_next_server(s->be, prev_srv);
527 break;
528
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200529 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100530 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200531 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200532
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200533 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200534 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200535 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200536 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100537 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200538 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100539 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200540 break;
541 }
542 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200543 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200544 err = SRV_STATUS_INTERNAL;
545 goto out;
546 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200547
548 switch (s->be->lbprm.algo & BE_LB_PARM) {
549 case BE_LB_HASH_SRC:
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200550 if (s->req->prod->addr.from.ss_family == AF_INET) {
551 srv = get_server_sh(s->be,
552 (void *)&((struct sockaddr_in *)&s->req->prod->addr.from)->sin_addr,
553 4);
554 }
555 else if (s->req->prod->addr.from.ss_family == AF_INET6) {
556 srv = get_server_sh(s->be,
557 (void *)&((struct sockaddr_in6 *)&s->req->prod->addr.from)->sin6_addr,
558 16);
559 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200560 else {
561 /* unknown IP family */
562 err = SRV_STATUS_INTERNAL;
563 goto out;
564 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200565 break;
566
567 case BE_LB_HASH_URI:
568 /* URI hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100569 if (s->txn.req.msg_state < HTTP_MSG_BODY)
570 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100571 srv = get_server_uh(s->be,
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200572 b_ptr(s->req, (int)(s->txn.req.sol + s->txn.req.sl.rq.u - s->req->o)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100573 s->txn.req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200574 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200575
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200576 case BE_LB_HASH_PRM:
577 /* URL Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100578 if (s->txn.req.msg_state < HTTP_MSG_BODY)
579 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100580
Willy Tarreau827aee92011-03-10 16:55:02 +0100581 srv = get_server_ph(s->be,
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200582 b_ptr(s->req, (int)(s->txn.req.sol + s->txn.req.sl.rq.u - s->req->o)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100583 s->txn.req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100584
Willy Tarreau827aee92011-03-10 16:55:02 +0100585 if (!srv && s->txn.meth == HTTP_METH_POST)
586 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200587 break;
Benoitaffb4812009-03-25 13:02:10 +0100588
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200589 case BE_LB_HASH_HDR:
590 /* Header Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100591 if (s->txn.req.msg_state < HTTP_MSG_BODY)
592 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100593 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200594 break;
595
596 case BE_LB_HASH_RDP:
597 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100598 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200599 break;
600
601 default:
602 /* unknown balancing algorithm */
603 err = SRV_STATUS_INTERNAL;
604 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100605 }
Emeric Brun736aa232009-06-30 17:56:00 +0200606
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200607 /* If the hashing parameter was not found, let's fall
608 * back to round robin on the map.
609 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100610 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200611 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100612 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200613 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100614 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200615 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200616
617 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200618 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200619
Willy Tarreau7c669d72008-06-20 15:04:11 +0200620 default:
621 /* unknown balancing algorithm */
622 err = SRV_STATUS_INTERNAL;
623 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200625
Willy Tarreau827aee92011-03-10 16:55:02 +0100626 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200627 err = SRV_STATUS_FULL;
628 goto out;
629 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100630 else if (srv != prev_srv) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100631 s->be->be_counters.cum_lbconn++;
Willy Tarreau827aee92011-03-10 16:55:02 +0100632 srv->counters.cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100633 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100634 set_target_server(&s->target, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200635 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200636 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau9e000c62011-03-10 14:03:36 +0100637 set_target_proxy(&s->target, s->be);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200638 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100639 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreau6471afb2011-09-23 10:54:59 +0200640 is_addr(&s->req->cons->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100641 /* in proxy mode, we need a valid destination address */
Willy Tarreau9e000c62011-03-10 14:03:36 +0100642 set_target_proxy(&s->target, s->be);
Willy Tarreau664beb82011-03-10 11:38:29 +0100643 }
644 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200645 err = SRV_STATUS_NOSRV;
646 goto out;
647 }
648
649 s->flags |= SN_ASSIGNED;
650 err = SRV_STATUS_OK;
651 out:
652
653 /* Either we take back our connection slot, or we offer it to someone
654 * else if we don't need it anymore.
655 */
656 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100657 if (conn_slot == srv) {
658 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200659 } else {
660 if (may_dequeue_tasks(conn_slot, s->be))
661 process_srv_queue(conn_slot);
662 }
663 }
664
665 out_err:
666 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667}
668
669
670/*
671 * This function assigns a server address to a session, and sets SN_ADDR_SET.
672 * The address is taken from the currently assigned server, or from the
673 * dispatch or transparent address.
674 *
675 * It may return :
676 * SRV_STATUS_OK if everything is OK.
677 * SRV_STATUS_INTERNAL for other unrecoverable errors.
678 *
679 * Upon successful return, the session flag SN_ADDR_SET is set. This flag is
680 * not cleared, so it's to the caller to clear it if required.
681 *
682 */
683int assign_server_address(struct session *s)
684{
685#ifdef DEBUG_FULL
686 fprintf(stderr,"assign_server_address : s=%p\n",s);
687#endif
688
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200689 if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200690 /* A server is necessarily known for this session */
691 if (!(s->flags & SN_ASSIGNED))
692 return SRV_STATUS_INTERNAL;
693
Willy Tarreau6471afb2011-09-23 10:54:59 +0200694 s->req->cons->addr.to = target_srv(&s->target)->addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200695
Willy Tarreau6471afb2011-09-23 10:54:59 +0200696 if (!is_addr(&s->req->cons->addr.to)) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200697 /* if the server has no address, we use the same address
698 * the client asked, which is handy for remapping ports
699 * locally on multiple addresses at once.
700 */
Willy Tarreau9b061e32012-04-07 18:03:52 +0200701 if (!(s->be->options & PR_O_TRANSP))
Willy Tarreau59b94792012-05-11 16:16:40 +0200702 si_get_to_addr(s->req->prod);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200703
Willy Tarreau6471afb2011-09-23 10:54:59 +0200704 if (s->req->prod->addr.to.ss_family == AF_INET) {
705 ((struct sockaddr_in *)&s->req->cons->addr.to)->sin_addr = ((struct sockaddr_in *)&s->req->prod->addr.to)->sin_addr;
706 } else if (s->req->prod->addr.to.ss_family == AF_INET6) {
707 ((struct sockaddr_in6 *)&s->req->cons->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&s->req->prod->addr.to)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200708 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200709 }
710
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711 /* if this server remaps proxied ports, we'll use
712 * the port the client connected to with an offset. */
Willy Tarreau827aee92011-03-10 16:55:02 +0100713 if (target_srv(&s->target)->state & SRV_MAPPORTS) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100714 int base_port;
715
Willy Tarreau9b061e32012-04-07 18:03:52 +0200716 if (!(s->be->options & PR_O_TRANSP))
Willy Tarreau59b94792012-05-11 16:16:40 +0200717 si_get_to_addr(s->req->prod);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100718
719 /* First, retrieve the port from the incoming connection */
Willy Tarreau6471afb2011-09-23 10:54:59 +0200720 base_port = get_host_port(&s->req->prod->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100721
722 /* Second, assign the outgoing connection's port */
Willy Tarreau6471afb2011-09-23 10:54:59 +0200723 base_port += get_host_port(&s->req->cons->addr.to);
724 set_host_port(&s->req->cons->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725 }
726 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200727 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728 /* connect to the defined dispatch addr */
Willy Tarreau6471afb2011-09-23 10:54:59 +0200729 s->req->cons->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730 }
Willy Tarreau4b1f8592008-12-23 23:13:55 +0100731 else if (s->be->options & PR_O_TRANSP) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau59b94792012-05-11 16:16:40 +0200733 si_get_to_addr(s->req->prod);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200734
Willy Tarreau6471afb2011-09-23 10:54:59 +0200735 if (s->req->prod->addr.to.ss_family == AF_INET || s->req->prod->addr.to.ss_family == AF_INET6) {
736 memcpy(&s->req->cons->addr.to, &s->req->prod->addr.to, MIN(sizeof(s->req->cons->addr.to), sizeof(s->req->prod->addr.to)));
Emeric Brunec810d12010-10-22 16:36:33 +0200737 }
Willy Tarreaubd414282008-01-19 13:46:35 +0100738 /* when we support IPv6 on the backend, we may add other tests */
739 //qfprintf(stderr, "Cannot get original server address.\n");
740 //return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200741 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100742 else if (s->be->options & PR_O_HTTP_PROXY) {
743 /* If HTTP PROXY option is set, then server is already assigned
744 * during incoming client request parsing. */
745 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100746 else {
747 /* no server and no LB algorithm ! */
748 return SRV_STATUS_INTERNAL;
749 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200750
751 s->flags |= SN_ADDR_SET;
752 return SRV_STATUS_OK;
753}
754
755
756/* This function assigns a server to session <s> if required, and can add the
757 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200758 * If ->srv_conn is set, the session is first released from the server.
759 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
760 * be called before any connection and after any retry or redispatch occurs.
761 *
762 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200763 *
764 * Returns :
765 *
766 * SRV_STATUS_OK if everything is OK.
Willy Tarreau827aee92011-03-10 16:55:02 +0100767 * SRV_STATUS_NOSRV if no server is available. target_srv(&s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768 * SRV_STATUS_QUEUED if the connection has been queued.
769 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100770 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200771 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772 * SRV_STATUS_INTERNAL for other unrecoverable errors.
773 *
774 */
775int assign_server_and_queue(struct session *s)
776{
777 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100778 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779 int err;
780
781 if (s->pend_pos)
782 return SRV_STATUS_INTERNAL;
783
Willy Tarreau7c669d72008-06-20 15:04:11 +0200784 err = SRV_STATUS_OK;
785 if (!(s->flags & SN_ASSIGNED)) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100786 struct server *prev_srv = target_srv(&s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100787
Willy Tarreau7c669d72008-06-20 15:04:11 +0200788 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100789 if (prev_srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200790 /* This session was previously assigned to a server. We have to
791 * update the session's and the server's stats :
792 * - if the server changed :
793 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
794 * - set SN_REDISP if it was successfully redispatched
795 * - increment srv->redispatches and be->redispatches
796 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100797 */
798
Willy Tarreau827aee92011-03-10 16:55:02 +0100799 if (prev_srv != target_srv(&s->target)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200800 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
801 s->txn.flags &= ~TX_CK_MASK;
802 s->txn.flags |= TX_CK_DOWN;
803 }
804 s->flags |= SN_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100805 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100806 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200807 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100808 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100809 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100810 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100811 }
812 }
813
Willy Tarreaubaaee002006-06-26 02:48:02 +0200814 switch (err) {
815 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200816 /* we have SN_ASSIGNED set */
Willy Tarreau827aee92011-03-10 16:55:02 +0100817 srv = target_srv(&s->target);
818 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200819 return SRV_STATUS_OK; /* dispatch or proxy mode */
820
821 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100822 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200823 return SRV_STATUS_OK;
824
825 /* OK, this session already has an assigned server, but no
826 * connection slot yet. Either it is a redispatch, or it was
827 * assigned from persistence information (direct mode).
828 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100829 if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200830 /* server scheduled for redirection, and already assigned. We
831 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100832 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100833 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100834 return SRV_STATUS_OK;
835 }
836
Willy Tarreau7c669d72008-06-20 15:04:11 +0200837 /* We might have to queue this session if the assigned server is full.
838 * We know we have to queue it into the server's queue, so if a maxqueue
839 * is set on the server, we must also check that the server's queue is
840 * not full, in which case we have to return FULL.
841 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100842 if (srv->maxconn &&
843 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200844
Willy Tarreau827aee92011-03-10 16:55:02 +0100845 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200846 return SRV_STATUS_FULL;
847
Willy Tarreaubaaee002006-06-26 02:48:02 +0200848 p = pendconn_add(s);
849 if (p)
850 return SRV_STATUS_QUEUED;
851 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200852 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200853 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200854
855 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100856 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 return SRV_STATUS_OK;
858
859 case SRV_STATUS_FULL:
860 /* queue this session into the proxy's queue */
861 p = pendconn_add(s);
862 if (p)
863 return SRV_STATUS_QUEUED;
864 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200865 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200866
867 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200868 return err;
869
Willy Tarreaubaaee002006-06-26 02:48:02 +0200870 case SRV_STATUS_INTERNAL:
871 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200872
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 default:
874 return SRV_STATUS_INTERNAL;
875 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100876}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877
Willy Tarreaub1d67742010-03-29 19:36:59 +0200878/* If an explicit source binding is specified on the server and/or backend, and
879 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau6471afb2011-09-23 10:54:59 +0200880 * assigned to the session's req->cons->addr.from entry.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200881 */
882static void assign_tproxy_address(struct session *s)
883{
884#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY)
Willy Tarreau827aee92011-03-10 16:55:02 +0100885 struct server *srv = target_srv(&s->target);
886
887 if (srv && srv->state & SRV_BIND_SRC) {
888 switch (srv->state & SRV_TPROXY_MASK) {
Willy Tarreaub1d67742010-03-29 19:36:59 +0200889 case SRV_TPROXY_ADDR:
Willy Tarreau6471afb2011-09-23 10:54:59 +0200890 s->req->cons->addr.from = srv->tproxy_addr;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200891 break;
892 case SRV_TPROXY_CLI:
893 case SRV_TPROXY_CIP:
Emeric Brunec810d12010-10-22 16:36:33 +0200894 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreau6471afb2011-09-23 10:54:59 +0200895 s->req->cons->addr.from = s->req->prod->addr.from;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200896 break;
Willy Tarreaubce70882009-09-07 11:51:47 +0200897 case SRV_TPROXY_DYN:
Willy Tarreau827aee92011-03-10 16:55:02 +0100898 if (srv->bind_hdr_occ) {
Willy Tarreau294c4732011-12-16 21:35:50 +0100899 char *vptr;
900 int vlen;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200901 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100902
Willy Tarreaubce70882009-09-07 11:51:47 +0200903 /* bind to the IP in a header */
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100904 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_family = AF_INET;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200905 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_port = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100906 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = 0;
907
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200908 b_rew(s->req, rewind = s->req->o);
Willy Tarreau294c4732011-12-16 21:35:50 +0100909 if (http_get_hdr(&s->txn.req, srv->bind_hdr_name, srv->bind_hdr_len,
910 &s->txn.hdr_idx, srv->bind_hdr_occ, NULL, &vptr, &vlen)) {
911 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr =
912 htonl(inetaddr_host_lim(vptr, vptr + vlen));
913 }
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200914 b_adv(s->req, rewind);
Willy Tarreaubce70882009-09-07 11:51:47 +0200915 }
916 break;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200917 default:
Willy Tarreau6471afb2011-09-23 10:54:59 +0200918 memset(&s->req->cons->addr.from, 0, sizeof(s->req->cons->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200919 }
920 }
921 else if (s->be->options & PR_O_BIND_SRC) {
922 switch (s->be->options & PR_O_TPXY_MASK) {
923 case PR_O_TPXY_ADDR:
Willy Tarreau6471afb2011-09-23 10:54:59 +0200924 s->req->cons->addr.from = s->be->tproxy_addr;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200925 break;
926 case PR_O_TPXY_CLI:
927 case PR_O_TPXY_CIP:
Emeric Brunec810d12010-10-22 16:36:33 +0200928 /* FIXME: what can we do if the client connects in IPv6 or socket unix? */
Willy Tarreau6471afb2011-09-23 10:54:59 +0200929 s->req->cons->addr.from = s->req->prod->addr.from;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200930 break;
Willy Tarreaubce70882009-09-07 11:51:47 +0200931 case PR_O_TPXY_DYN:
932 if (s->be->bind_hdr_occ) {
Willy Tarreau294c4732011-12-16 21:35:50 +0100933 char *vptr;
934 int vlen;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200935 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100936
Willy Tarreaubce70882009-09-07 11:51:47 +0200937 /* bind to the IP in a header */
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100938 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_family = AF_INET;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200939 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_port = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100940 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = 0;
941
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200942 b_rew(s->req, rewind = s->req->o);
Willy Tarreau294c4732011-12-16 21:35:50 +0100943 if (http_get_hdr(&s->txn.req, s->be->bind_hdr_name, s->be->bind_hdr_len,
944 &s->txn.hdr_idx, s->be->bind_hdr_occ, NULL, &vptr, &vlen)) {
945 ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr =
946 htonl(inetaddr_host_lim(vptr, vptr + vlen));
947 }
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200948 b_adv(s->req, rewind);
Willy Tarreaubce70882009-09-07 11:51:47 +0200949 }
950 break;
Willy Tarreaub1d67742010-03-29 19:36:59 +0200951 default:
Willy Tarreau6471afb2011-09-23 10:54:59 +0200952 memset(&s->req->cons->addr.from, 0, sizeof(s->req->cons->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200953 }
954 }
955#endif
956}
957
958
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959/*
960 * This function initiates a connection to the server assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +0200961 * (s->target, s->req->cons->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +0100962 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200963 * It can return one of :
964 * - SN_ERR_NONE if everything's OK
965 * - SN_ERR_SRVTO if there are no more servers
966 * - SN_ERR_SRVCL if the connection was refused by the server
967 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
968 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
969 * - SN_ERR_INTERNAL for any other purely internal errors
970 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
971 */
972int connect_server(struct session *s)
973{
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 struct server *srv;
Willy Tarreau9650f372009-08-16 14:02:45 +0200975 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200976
977 if (!(s->flags & SN_ADDR_SET)) {
978 err = assign_server_address(s);
979 if (err != SRV_STATUS_OK)
980 return SN_ERR_INTERNAL;
981 }
982
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200983 /* the target was only on the session, assign it to the SI now */
Willy Tarreau9e000c62011-03-10 14:03:36 +0100984 copy_target(&s->req->cons->target, &s->target);
Willy Tarreaud88edf22009-06-14 15:48:17 +0200985
Willy Tarreau26d8c592012-05-07 18:12:14 +0200986 /* set the correct protocol on the output stream interface */
Willy Tarreaud02394b2012-05-11 18:32:18 +0200987 if (s->target.type == TARG_TYPE_SERVER) {
Willy Tarreau26d8c592012-05-07 18:12:14 +0200988 s->req->cons->proto = target_srv(&s->target)->proto;
Willy Tarreaud02394b2012-05-11 18:32:18 +0200989 stream_interface_prepare(s->req->cons, target_srv(&s->target)->sock);
990 }
Willy Tarreau26d8c592012-05-07 18:12:14 +0200991 else if (s->target.type == TARG_TYPE_PROXY) {
Willy Tarreaud02394b2012-05-11 18:32:18 +0200992 /* proxies exclusively run on sock_raw right now */
Willy Tarreau26d8c592012-05-07 18:12:14 +0200993 s->req->cons->proto = protocol_by_family(s->req->cons->addr.to.ss_family);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200994 stream_interface_prepare(s->req->cons, &sock_raw);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200995 if (!s->req->cons->proto)
996 return SN_ERR_INTERNAL;
997 }
Willy Tarreaud02394b2012-05-11 18:32:18 +0200998 else
999 return SN_ERR_INTERNAL; /* how did we get there ? */
1000
1001 /* process the case where the server requires the PROXY protocol to be sent */
1002 s->req->cons->send_proxy_ofs = 0;
1003 if (s->target.type == TARG_TYPE_SERVER && (s->target.ptr.s->state & SRV_SEND_PROXY)) {
1004 s->req->cons->send_proxy_ofs = 1; /* must compute size */
1005 si_get_to_addr(s->req->prod);
1006 }
Willy Tarreau26d8c592012-05-07 18:12:14 +02001007
Willy Tarreaub1d67742010-03-29 19:36:59 +02001008 assign_tproxy_address(s);
1009
William Lallemandb7ff6a32012-03-02 14:35:21 +01001010 /* flag for logging source ip/port */
1011 if (s->fe->options2 & PR_O2_SRC_ADDR)
1012 s->req->cons->flags |= SI_FL_SRC_ADDR;
1013
Willy Tarreau26d8c592012-05-07 18:12:14 +02001014 err = s->req->cons->proto->connect(s->req->cons);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001015
Willy Tarreau9650f372009-08-16 14:02:45 +02001016 if (err != SN_ERR_NONE)
1017 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001018
Willy Tarreau827aee92011-03-10 16:55:02 +01001019 srv = target_srv(&s->target);
1020 if (srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +01001021 s->flags |= SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001022 srv->cur_sess++;
1023 if (srv->cur_sess > srv->counters.cur_sess_max)
1024 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001025 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001026 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001027 }
1028
Willy Tarreaubaaee002006-06-26 02:48:02 +02001029 return SN_ERR_NONE; /* connection is OK */
1030}
1031
1032
Willy Tarreaubaaee002006-06-26 02:48:02 +02001033/* This function performs the "redispatch" part of a connection attempt. It
1034 * will assign a server if required, queue the connection if required, and
1035 * handle errors that might arise at this level. It can change the server
1036 * state. It will return 1 if it encounters an error, switches the server
1037 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1038 * that the connection is ready to use.
1039 */
1040
1041int srv_redispatch_connect(struct session *t)
1042{
Willy Tarreau827aee92011-03-10 16:55:02 +01001043 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001044 int conn_err;
1045
1046 /* We know that we don't have any connection pending, so we will
1047 * try to get a new one, and wait in this state if it's queued
1048 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001049 redispatch:
Willy Tarreaubaaee002006-06-26 02:48:02 +02001050 conn_err = assign_server_and_queue(t);
Willy Tarreau827aee92011-03-10 16:55:02 +01001051 srv = target_srv(&t->target);
1052
Willy Tarreaubaaee002006-06-26 02:48:02 +02001053 switch (conn_err) {
1054 case SRV_STATUS_OK:
1055 break;
1056
Willy Tarreau7c669d72008-06-20 15:04:11 +02001057 case SRV_STATUS_FULL:
1058 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1059 * and we can redispatch to another server, or it is not and we return
1060 * 503. This only makes sense in DIRECT mode however, because normal LB
1061 * algorithms would never select such a server, and hash algorithms
Willy Tarreau827aee92011-03-10 16:55:02 +01001062 * would bring us on the same server again. Note that t->target is set
1063 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001064 */
Willy Tarreau4de91492010-01-22 19:10:05 +01001065 if (((t->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) &&
1066 (t->be->options & PR_O_REDISP)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001067 t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001068 goto redispatch;
1069 }
1070
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001071 if (!t->req->cons->err_type) {
1072 t->req->cons->err_type = SI_ET_QUEUE_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +01001073 t->req->cons->err_loc = srv;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001074 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001075
Willy Tarreau827aee92011-03-10 16:55:02 +01001076 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001077 t->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001078 return 1;
1079
Willy Tarreaubaaee002006-06-26 02:48:02 +02001080 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001081 /* note: it is guaranteed that srv == NULL here */
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001082 if (!t->req->cons->err_type) {
1083 t->req->cons->err_type = SI_ET_CONN_ERR;
1084 t->req->cons->err_loc = NULL;
1085 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001086
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001087 t->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001088 return 1;
1089
1090 case SRV_STATUS_QUEUED:
Willy Tarreau35374672008-09-03 18:11:02 +02001091 t->req->cons->exp = tick_add_ifset(now_ms, t->be->timeout.queue);
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001092 t->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001093 /* do nothing else and do not wake any other session up */
1094 return 1;
1095
Willy Tarreaubaaee002006-06-26 02:48:02 +02001096 case SRV_STATUS_INTERNAL:
1097 default:
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001098 if (!t->req->cons->err_type) {
1099 t->req->cons->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +01001100 t->req->cons->err_loc = srv;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001101 }
1102
Willy Tarreau827aee92011-03-10 16:55:02 +01001103 if (srv)
1104 srv_inc_sess_ctr(srv);
1105 if (srv)
1106 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001107 t->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001108
1109 /* release other sessions waiting for this server */
Willy Tarreau827aee92011-03-10 16:55:02 +01001110 if (may_dequeue_tasks(srv, t->be))
1111 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001112 return 1;
1113 }
1114 /* if we get here, it's because we got SRV_STATUS_OK, which also
1115 * means that the connection has not been queued.
1116 */
1117 return 0;
1118}
1119
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001120/* Apply RDP cookie persistence to the current session. For this, the function
1121 * tries to extract an RDP cookie from the request buffer, and look for the
1122 * matching server in the list. If the server is found, it is assigned to the
1123 * session. This always returns 1, and the analyser removes itself from the
1124 * list. Nothing is performed if a server was already assigned.
1125 */
1126int tcp_persist_rdp_cookie(struct session *s, struct buffer *req, int an_bit)
1127{
1128 struct proxy *px = s->be;
1129 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001130 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001131 struct server *srv = px->srv;
1132 struct sockaddr_in addr;
1133 char *p;
Willy Tarreau34db1082012-04-19 17:16:54 +02001134 struct arg args[2];
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001135
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001136 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001137 now_ms, __FUNCTION__,
1138 s,
1139 req,
1140 req->rex, req->wex,
1141 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001142 req->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001143 req->analysers);
1144
1145 if (s->flags & SN_ASSIGNED)
1146 goto no_cookie;
1147
Willy Tarreau37406352012-04-23 16:16:37 +02001148 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001149
Willy Tarreau34db1082012-04-19 17:16:54 +02001150 args[0].type = ARGT_STR;
1151 args[0].data.str.str = s->be->rdp_cookie_name;
1152 args[0].data.str.len = s->be->rdp_cookie_len;
1153 args[1].type = ARGT_STOP;
1154
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001155 ret = smp_fetch_rdp_cookie(px, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, args, &smp);
Willy Tarreauf853c462012-04-23 18:53:56 +02001156 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001157 goto no_cookie;
1158
1159 memset(&addr, 0, sizeof(addr));
1160 addr.sin_family = AF_INET;
1161
Willy Tarreau664092c2011-12-16 19:11:42 +01001162 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001163 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001164 if (*p != '.')
1165 goto no_cookie;
1166 p++;
1167 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1168 if (*p != '.')
1169 goto no_cookie;
1170
Willy Tarreau9e000c62011-03-10 14:03:36 +01001171 clear_target(&s->target);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001172 while (srv) {
1173 if (memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
1174 if ((srv->state & SRV_RUNNING) || (px->options & PR_O_PERSIST)) {
1175 /* we found the server and it is usable */
1176 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001177 set_target_server(&s->target, srv);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001178 break;
1179 }
1180 }
1181 srv = srv->next;
1182 }
1183
1184no_cookie:
1185 req->analysers &= ~an_bit;
1186 req->analyse_exp = TICK_ETERNITY;
1187 return 1;
1188}
1189
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001190int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001191 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001192 return px->down_time;
1193
1194 return now.tv_sec - px->last_change + px->down_time;
1195}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001196
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001197/*
1198 * This function returns a string containing the balancing
1199 * mode of the proxy in a format suitable for stats.
1200 */
1201
1202const char *backend_lb_algo_str(int algo) {
1203
1204 if (algo == BE_LB_ALGO_RR)
1205 return "roundrobin";
1206 else if (algo == BE_LB_ALGO_SRR)
1207 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001208 else if (algo == BE_LB_ALGO_FAS)
1209 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001210 else if (algo == BE_LB_ALGO_LC)
1211 return "leastconn";
1212 else if (algo == BE_LB_ALGO_SH)
1213 return "source";
1214 else if (algo == BE_LB_ALGO_UH)
1215 return "uri";
1216 else if (algo == BE_LB_ALGO_PH)
1217 return "url_param";
1218 else if (algo == BE_LB_ALGO_HH)
1219 return "hdr";
1220 else if (algo == BE_LB_ALGO_RCH)
1221 return "rdp-cookie";
1222 else
1223 return NULL;
1224}
1225
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001226/* This function parses a "balance" statement in a backend section describing
1227 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001228 * returns -1, it will write an error message into the <err> buffer which will
1229 * automatically be allocated and must be passed as NULL. The trailing '\n'
1230 * will not be written. The function must be called with <args> pointing to the
1231 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001232 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001233int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001234{
1235 if (!*(args[0])) {
1236 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001237 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1238 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001239 return 0;
1240 }
1241
1242 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001243 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1244 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001245 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001246 else if (!strcmp(args[0], "static-rr")) {
1247 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1248 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1249 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001250 else if (!strcmp(args[0], "first")) {
1251 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1252 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1253 }
Willy Tarreau51406232008-03-10 22:04:20 +01001254 else if (!strcmp(args[0], "leastconn")) {
1255 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1256 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1257 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001258 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001259 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1260 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001261 }
1262 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001263 int arg = 1;
1264
Willy Tarreau31682232007-11-29 15:38:04 +01001265 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1266 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001267
1268 while (*args[arg]) {
1269 if (!strcmp(args[arg], "len")) {
1270 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001271 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001272 return -1;
1273 }
1274 curproxy->uri_len_limit = atoi(args[arg+1]);
1275 arg += 2;
1276 }
1277 else if (!strcmp(args[arg], "depth")) {
1278 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001279 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001280 return -1;
1281 }
1282 /* hint: we store the position of the ending '/' (depth+1) so
1283 * that we avoid a comparison while computing the hash.
1284 */
1285 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1286 arg += 2;
1287 }
1288 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001289 memprintf(err, "%s only accepts parameters 'len' and 'depth' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001290 return -1;
1291 }
1292 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001293 }
Willy Tarreau01732802007-11-01 22:48:15 +01001294 else if (!strcmp(args[0], "url_param")) {
1295 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001296 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001297 return -1;
1298 }
Willy Tarreau31682232007-11-29 15:38:04 +01001299 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1300 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001301
1302 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001303 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001304 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001305 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001306 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001307 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001308 return -1;
1309 }
1310 if (*args[3]) {
1311 /* TODO: maybe issue a warning if there is no value, no digits or too long */
1312 curproxy->url_param_post_limit = str2ui(args[3]);
1313 }
1314 /* if no limit, or faul value in args[3], then default to a moderate wordlen */
1315 if (!curproxy->url_param_post_limit)
1316 curproxy->url_param_post_limit = 48;
1317 else if ( curproxy->url_param_post_limit < 3 )
1318 curproxy->url_param_post_limit = 3; /* minimum example: S=3 or \r\nS=6& */
1319 }
Benoitaffb4812009-03-25 13:02:10 +01001320 }
1321 else if (!strncmp(args[0], "hdr(", 4)) {
1322 const char *beg, *end;
1323
1324 beg = args[0] + 4;
1325 end = strchr(beg, ')');
1326
1327 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001328 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001329 return -1;
1330 }
1331
1332 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1333 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1334
1335 free(curproxy->hh_name);
1336 curproxy->hh_len = end - beg;
1337 curproxy->hh_name = my_strndup(beg, end - beg);
1338 curproxy->hh_match_domain = 0;
1339
1340 if (*args[1]) {
1341 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001342 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001343 return -1;
1344 }
1345 curproxy->hh_match_domain = 1;
1346 }
1347
Emeric Brun736aa232009-06-30 17:56:00 +02001348 }
1349 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1350 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1351 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1352
1353 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1354 const char *beg, *end;
1355
1356 beg = args[0] + 11;
1357 end = strchr(beg, ')');
1358
1359 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001360 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001361 return -1;
1362 }
1363
1364 free(curproxy->hh_name);
1365 curproxy->hh_name = my_strndup(beg, end - beg);
1366 curproxy->hh_len = end - beg;
1367 }
1368 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1369 free(curproxy->hh_name);
1370 curproxy->hh_name = strdup("mstshash");
1371 curproxy->hh_len = strlen(curproxy->hh_name);
1372 }
1373 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001374 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001375 return -1;
1376 }
Willy Tarreau01732802007-11-01 22:48:15 +01001377 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001378 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001379 memprintf(err, "only supports 'roundrobin', 'static-rr', 'leastconn', 'source', 'uri', 'url_param', 'hdr(name)' and 'rdp-cookie(name)' options.");
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001380 return -1;
1381 }
1382 return 0;
1383}
1384
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001385
1386/************************************************************************/
1387/* All supported keywords must be declared here. */
1388/************************************************************************/
1389
Willy Tarreau34db1082012-04-19 17:16:54 +02001390/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001391 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001392 * undefined behaviour.
1393 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001394static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001395acl_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001396 const struct arg *args, struct sample *smp)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001397{
Willy Tarreau37406352012-04-23 16:16:37 +02001398 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001399 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001400 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001401
1402 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001403 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001404 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001405 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001406 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001407 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001408
1409 return 1;
1410}
1411
Willy Tarreau37406352012-04-23 16:16:37 +02001412/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001413 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001414 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1415 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001416 */
1417static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001418acl_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001419 const struct arg *args, struct sample *smp)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001420{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001421 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001422
Willy Tarreau37406352012-04-23 16:16:37 +02001423 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001424 smp->type = SMP_T_BOOL;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001425 if (!(srv->state & SRV_MAINTAIN) &&
1426 (!(srv->state & SRV_CHECKED) || (srv->state & SRV_RUNNING)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001427 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001428 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001429 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001430 return 1;
1431}
1432
Willy Tarreau34db1082012-04-19 17:16:54 +02001433/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001434 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001435 * undefined behaviour.
1436 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001437static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001438acl_fetch_connslots(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001439 const struct arg *args, struct sample *smp)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001440{
1441 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001442
Willy Tarreau37406352012-04-23 16:16:37 +02001443 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001444 smp->type = SMP_T_UINT;
1445 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001446
Willy Tarreau24e32d82012-04-23 23:55:44 +02001447 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001448 if ((iterator->state & SRV_RUNNING) == 0)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001449 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001450
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001451 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001452 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001453 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001454 return 1;
1455 }
1456
Willy Tarreauf853c462012-04-23 18:53:56 +02001457 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001458 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001459 }
1460
1461 return 1;
1462}
1463
Willy Tarreaua5e37562011-12-16 17:06:15 +01001464/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001465static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001466acl_fetch_be_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001467 const struct arg *args, struct sample *smp)
Willy Tarreau37406352012-04-23 16:16:37 +02001468{
Willy Tarreauf853c462012-04-23 18:53:56 +02001469 smp->flags = SMP_F_VOL_TXN;
1470 smp->type = SMP_T_UINT;
1471 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001472 return 1;
1473}
1474
Willy Tarreaua5e37562011-12-16 17:06:15 +01001475/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001476static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001477acl_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001478 const struct arg *args, struct sample *smp)
Willy Tarreau37406352012-04-23 16:16:37 +02001479{
Willy Tarreau827aee92011-03-10 16:55:02 +01001480 if (!target_srv(&l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001481 return 0;
1482
Willy Tarreauf853c462012-04-23 18:53:56 +02001483 smp->type = SMP_T_UINT;
1484 smp->data.uint = target_srv(&l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001485
1486 return 1;
1487}
1488
Willy Tarreau34db1082012-04-19 17:16:54 +02001489/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001490 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001491 * undefined behaviour.
1492 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001493static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001494acl_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001495 const struct arg *args, struct sample *smp)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001496{
Willy Tarreau37406352012-04-23 16:16:37 +02001497 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001498 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001499 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001500 return 1;
1501}
1502
Willy Tarreau34db1082012-04-19 17:16:54 +02001503/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001504 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001505 * undefined behaviour.
1506 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001507static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001508acl_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001509 const struct arg *args, struct sample *smp)
Willy Tarreaua36af912009-10-10 12:02:45 +02001510{
Willy Tarreau37406352012-04-23 16:16:37 +02001511 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001512 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001513 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001514 return 1;
1515}
1516
Willy Tarreau34db1082012-04-19 17:16:54 +02001517/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001518 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001519 * undefined behaviour.
1520 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001521static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001522acl_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001523 const struct arg *args, struct sample *smp)
Willy Tarreaua36af912009-10-10 12:02:45 +02001524{
Willy Tarreau37406352012-04-23 16:16:37 +02001525 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001526 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001527 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001528 return 1;
1529}
1530
Willy Tarreaua5e37562011-12-16 17:06:15 +01001531/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001532 * by the number of running servers and rounded up. If there is no running
1533 * server, we return twice the total, just as if we had half a running server.
1534 * This is more or less correct anyway, since we expect the last server to come
1535 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001536 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001537 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001538 */
1539static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001540acl_fetch_avg_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001541 const struct arg *args, struct sample *smp)
Willy Tarreaua36af912009-10-10 12:02:45 +02001542{
1543 int nbsrv;
1544
Willy Tarreau37406352012-04-23 16:16:37 +02001545 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001546 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001547 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001548
1549 if (px->srv_act)
1550 nbsrv = px->srv_act;
1551 else if (px->lbprm.fbck)
1552 nbsrv = 1;
1553 else
1554 nbsrv = px->srv_bck;
1555
1556 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001557 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001558 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001559 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001560
1561 return 1;
1562}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001563
Willy Tarreau34db1082012-04-19 17:16:54 +02001564/* set temp integer to the number of concurrent connections on the server in the backend.
1565 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1566 * undefined behaviour.
1567 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001568static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001569acl_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001570 const struct arg *args, struct sample *smp)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001571{
Willy Tarreauf853c462012-04-23 18:53:56 +02001572 smp->flags = SMP_F_VOL_TEST;
1573 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001574 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001575 return 1;
1576}
1577
Willy Tarreau61612d42012-04-19 18:42:05 +02001578/* Note: must not be declared <const> as its list will be overwritten.
1579 * Please take care of keeping this list alphabetically sorted.
1580 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001581static struct acl_kw_list acl_kws = {{ },{
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001582 { "avg_queue", acl_parse_int, acl_fetch_avg_queue_size, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
1583 { "be_conn", acl_parse_int, acl_fetch_be_conn, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
Willy Tarreau61612d42012-04-19 18:42:05 +02001584 { "be_id", acl_parse_int, acl_fetch_be_id, acl_match_int, ACL_USE_NOTHING, 0 },
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001585 { "be_sess_rate", acl_parse_int, acl_fetch_be_sess_rate, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
1586 { "connslots", acl_parse_int, acl_fetch_connslots, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
1587 { "nbsrv", acl_parse_int, acl_fetch_nbsrv, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
1588 { "queue", acl_parse_int, acl_fetch_queue_size, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) },
Willy Tarreau61612d42012-04-19 18:42:05 +02001589 { "srv_conn", acl_parse_int, acl_fetch_srv_conn, acl_match_int, ACL_USE_NOTHING, ARG1(1,SRV) },
1590 { "srv_id", acl_parse_int, acl_fetch_srv_id, acl_match_int, ACL_USE_RTR_INTERNAL, 0 },
1591 { "srv_is_up", acl_parse_nothing, acl_fetch_srv_is_up, acl_match_nothing, ACL_USE_NOTHING, ARG1(1,SRV) },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001592 { NULL, NULL, NULL, NULL },
1593}};
1594
1595
1596__attribute__((constructor))
1597static void __backend_init(void)
1598{
1599 acl_register_keywords(&acl_kws);
1600}
1601
Willy Tarreaubaaee002006-06-26 02:48:02 +02001602/*
1603 * Local variables:
1604 * c-indent-level: 8
1605 * c-basic-offset: 8
1606 * End:
1607 */