blob: 0912fd449cfdd0f17c95b0ecb8d3cfda1305d676 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 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 Tarreauc7e42382012-08-24 19:22:53 +020022#include <common/buffer.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020023#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020025#include <common/debug.h>
Bhaskar98634f02013-10-29 23:30:51 -040026#include <common/hash.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020027#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreaubaaee002006-06-26 02:48:02 +020030#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010032#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020033#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020035#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020036#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020037#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010038#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020039#include <proto/lb_fwlc.h>
40#include <proto/lb_fwrr.h>
41#include <proto/lb_map.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010042#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010043#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020044#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020046#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010048#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010049#include <proto/server.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020050#include <proto/session.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020051#include <proto/raw_sock.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010052#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/task.h>
54
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050055int be_lastsession(const struct proxy *be)
56{
57 if (be->be_counters.last_sess)
58 return now.tv_sec - be->be_counters.last_sess;
59
60 return -1;
61}
62
Bhaskar98634f02013-10-29 23:30:51 -040063/* helper function to invoke the correct hash method */
64static unsigned long gen_hash(const struct proxy* px, const char* key, unsigned long len)
65{
66 unsigned long hash;
67
68 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
69 case BE_LB_HFCN_DJB2:
70 hash = hash_djb2(key, len);
71 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010072 case BE_LB_HFCN_WT6:
73 hash = hash_wt6(key, len);
74 break;
Bhaskar98634f02013-10-29 23:30:51 -040075 case BE_LB_HFCN_SDBM:
76 /* this is the default hash function */
77 default:
78 hash = hash_sdbm(key, len);
79 break;
80 }
81
82 return hash;
83}
84
Willy Tarreaubaaee002006-06-26 02:48:02 +020085/*
86 * This function recounts the number of usable active and backup servers for
87 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010088 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010089 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010090 * this.
Willy Tarreaubaaee002006-06-26 02:48:02 +020091 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020092void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +020093{
94 struct server *srv;
95
Willy Tarreau20697042007-11-15 23:26:18 +010096 px->srv_act = px->srv_bck = 0;
97 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +010098 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +020099 for (srv = px->srv; srv != NULL; srv = srv->next) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 if (!srv_is_usable(srv->state, srv->eweight))
101 continue;
102
103 if (srv->state & SRV_BACKUP) {
104 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100105 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100106 px->lbprm.fbck = srv;
107 px->srv_bck++;
108 px->lbprm.tot_wbck += srv->eweight;
109 } else {
110 px->srv_act++;
111 px->lbprm.tot_wact += srv->eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112 }
113 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100114}
Willy Tarreau20697042007-11-15 23:26:18 +0100115
Willy Tarreaub625a082007-11-26 01:15:43 +0100116/* This function simply updates the backend's tot_weight and tot_used values
117 * after servers weights have been updated. It is designed to be used after
118 * recount_servers() or equivalent.
119 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200120void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100121{
Willy Tarreau20697042007-11-15 23:26:18 +0100122 if (px->srv_act) {
123 px->lbprm.tot_weight = px->lbprm.tot_wact;
124 px->lbprm.tot_used = px->srv_act;
125 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100126 else if (px->lbprm.fbck) {
127 /* use only the first backup server */
128 px->lbprm.tot_weight = px->lbprm.fbck->eweight;
129 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100130 }
131 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100132 px->lbprm.tot_weight = px->lbprm.tot_wbck;
133 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100134 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100135}
136
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200137/*
138 * This function tries to find a running server for the proxy <px> following
139 * the source hash method. Depending on the number of active/backup servers,
140 * it will either look for active servers, or for backup servers.
141 * If any server is found, it will be returned. If no valid server is found,
142 * NULL is returned.
143 */
144struct server *get_server_sh(struct proxy *px, const char *addr, int len)
145{
146 unsigned int h, l;
147
148 if (px->lbprm.tot_weight == 0)
149 return NULL;
150
151 l = h = 0;
152
153 /* note: we won't hash if there's only one server left */
154 if (px->lbprm.tot_used == 1)
155 goto hash_done;
156
157 while ((l + sizeof (int)) <= len) {
158 h ^= ntohl(*(unsigned int *)(&addr[l]));
159 l += sizeof (int);
160 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500161 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100162 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200163 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200164 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
165 return chash_get_server_hash(px, h);
166 else
167 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200168}
169
170/*
171 * This function tries to find a running server for the proxy <px> following
172 * the URI hash method. In order to optimize cache hits, the hash computation
173 * ends at the question mark. Depending on the number of active/backup servers,
174 * it will either look for active servers, or for backup servers.
175 * If any server is found, it will be returned. If no valid server is found,
176 * NULL is returned.
177 *
178 * This code was contributed by Guillaume Dallaire, who also selected this hash
179 * algorithm out of a tens because it gave him the best results.
180 *
181 */
182struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
183{
184 unsigned long hash = 0;
185 int c;
186 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400187 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200188
189 if (px->lbprm.tot_weight == 0)
190 return NULL;
191
192 /* note: we won't hash if there's only one server left */
193 if (px->lbprm.tot_used == 1)
194 goto hash_done;
195
196 if (px->uri_len_limit)
197 uri_len = MIN(uri_len, px->uri_len_limit);
198
Bhaskar98634f02013-10-29 23:30:51 -0400199 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200200 while (uri_len--) {
Bhaskar98634f02013-10-29 23:30:51 -0400201 c = *end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200202 if (c == '/') {
203 slashes++;
204 if (slashes == px->uri_dirs_depth1) /* depth+1 */
205 break;
206 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100207 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208 break;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209 }
Bhaskar98634f02013-10-29 23:30:51 -0400210
211 hash = gen_hash(px, start, (end - start));
212
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500213 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100214 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200215 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200216 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
217 return chash_get_server_hash(px, hash);
218 else
219 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200220}
221
Willy Tarreau01732802007-11-01 22:48:15 +0100222/*
223 * This function tries to find a running server for the proxy <px> following
224 * the URL parameter hash method. It looks for a specific parameter in the
225 * URL and hashes it to compute the server ID. This is useful to optimize
226 * performance by avoiding bounces between servers in contexts where sessions
227 * are shared but cookies are not usable. If the parameter is not found, NULL
228 * is returned. If any server is found, it will be returned. If no valid server
229 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100230 */
231struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
232{
233 unsigned long hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400234 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200235 const char *p;
236 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100237 int plen;
238
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200239 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100240 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100241 return NULL;
242
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200243 if ((p = memchr(uri, '?', uri_len)) == NULL)
244 return NULL;
245
Willy Tarreau01732802007-11-01 22:48:15 +0100246 p++;
247
248 uri_len -= (p - uri);
249 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200250 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100251
252 while (uri_len > plen) {
253 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200254 if (params[plen] == '=') {
255 if (memcmp(params, px->url_param_name, plen) == 0) {
256 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100257 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200258 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100259 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200260 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400261 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262 uri_len -= plen + 1;
263
Bhaskar98634f02013-10-29 23:30:51 -0400264 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100265 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400266 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100267 }
Bhaskar98634f02013-10-29 23:30:51 -0400268 hash = gen_hash(px, start, (end - start));
269
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500270 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100271 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400272
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200273 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
274 return chash_get_server_hash(px, hash);
275 else
276 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100277 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 }
279 /* skip to next parameter */
280 p = memchr(params, '&', uri_len);
281 if (!p)
282 return NULL;
283 p++;
284 uri_len -= (p - params);
285 params = p;
286 }
287 return NULL;
288}
289
290/*
291 * this does the same as the previous server_ph, but check the body contents
292 */
293struct server *get_server_ph_post(struct session *s)
294{
295 unsigned long hash = 0;
296 struct http_txn *txn = &s->txn;
Willy Tarreau7421efb2012-07-02 15:11:27 +0200297 struct channel *req = s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200298 struct http_msg *msg = &txn->req;
299 struct proxy *px = s->be;
300 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200301 unsigned long len = http_body_bytes(msg);
Willy Tarreau0d090502014-04-17 20:31:44 +0200302 const char *params = b_ptr(req->buf, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100303 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400304 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305
Willy Tarreau157dd632009-12-06 19:18:09 +0100306 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200307 return NULL;
308
Willy Tarreau157dd632009-12-06 19:18:09 +0100309 if (px->lbprm.tot_weight == 0)
310 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200311
312 while (len > plen) {
313 /* Look for the parameter name followed by an equal symbol */
314 if (params[plen] == '=') {
315 if (memcmp(params, px->url_param_name, plen) == 0) {
316 /* OK, we have the parameter here at <params>, and
317 * the value after the equal sign, at <p>
318 * skip the equal symbol
319 */
320 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400321 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200322 len -= plen + 1;
323
Bhaskar98634f02013-10-29 23:30:51 -0400324 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200325 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100326 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400327 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100328 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
330 break;
331 return NULL; /* oh, no; this is not uri-encoded.
332 * This body does not contain parameters.
333 */
334 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200335 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400336 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200337 /* should we break if vlen exceeds limit? */
338 }
Bhaskar98634f02013-10-29 23:30:51 -0400339 hash = gen_hash(px, start, (end - start));
340
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500341 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100342 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400343
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200344 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
345 return chash_get_server_hash(px, hash);
346 else
347 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200348 }
349 }
Willy Tarreau01732802007-11-01 22:48:15 +0100350 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200351 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100352 if (!p)
353 return NULL;
354 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200355 len -= (p - params);
356 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100357 }
358 return NULL;
359}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200361
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362/*
Benoitaffb4812009-03-25 13:02:10 +0100363 * This function tries to find a running server for the proxy <px> following
364 * the Header parameter hash method. It looks for a specific parameter in the
365 * URL and hashes it to compute the server ID. This is useful to optimize
366 * performance by avoiding bounces between servers in contexts where sessions
367 * are shared but cookies are not usable. If the parameter is not found, NULL
368 * is returned. If any server is found, it will be returned. If no valid server
369 * is found, NULL is returned.
370 */
371struct server *get_server_hh(struct session *s)
372{
373 unsigned long hash = 0;
374 struct http_txn *txn = &s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100375 struct proxy *px = s->be;
376 unsigned int plen = px->hh_len;
377 unsigned long len;
378 struct hdr_ctx ctx;
379 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400380 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100381
382 /* tot_weight appears to mean srv_count */
383 if (px->lbprm.tot_weight == 0)
384 return NULL;
385
Benoitaffb4812009-03-25 13:02:10 +0100386 ctx.idx = 0;
387
388 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau211cdec2014-04-17 20:18:08 +0200389 http_find_header2(px->hh_name, plen, b_ptr(s->req->buf, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
Benoitaffb4812009-03-25 13:02:10 +0100390
391 /* if the header is not found or empty, let's fallback to round robin */
392 if (!ctx.idx || !ctx.vlen)
393 return NULL;
394
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200395 /* note: we won't hash if there's only one server left */
396 if (px->lbprm.tot_used == 1)
397 goto hash_done;
398
Benoitaffb4812009-03-25 13:02:10 +0100399 /* Found a the hh_name in the headers.
400 * we will compute the hash based on this value ctx.val.
401 */
402 len = ctx.vlen;
403 p = (char *)ctx.line + ctx.val;
404 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400405 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100406 } else {
407 int dohash = 0;
408 p += len - 1;
Bhaskar98634f02013-10-29 23:30:51 -0400409 start = end = p;
Benoitaffb4812009-03-25 13:02:10 +0100410 /* special computation, use only main domain name, not tld/host
411 * going back from the end of string, start hashing at first
412 * dot stop at next.
413 * This is designed to work with the 'Host' header, and requires
414 * a special option to activate this.
415 */
416 while (len) {
417 if (*p == '.') {
Bhaskar98634f02013-10-29 23:30:51 -0400418 if (!dohash) {
Benoitaffb4812009-03-25 13:02:10 +0100419 dohash = 1;
Bhaskar98634f02013-10-29 23:30:51 -0400420 start = end = p - 1;
421 }
Benoitaffb4812009-03-25 13:02:10 +0100422 else
423 break;
424 } else {
425 if (dohash)
Bhaskar98634f02013-10-29 23:30:51 -0400426 start--;
Benoitaffb4812009-03-25 13:02:10 +0100427 }
428 len--;
429 p--;
430 }
Bhaskar98634f02013-10-29 23:30:51 -0400431 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100432 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500433 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100434 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200435 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200436 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
437 return chash_get_server_hash(px, hash);
438 else
439 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100440}
441
Willy Tarreau34db1082012-04-19 17:16:54 +0200442/* RDP Cookie HASH. */
Emeric Brun736aa232009-06-30 17:56:00 +0200443struct server *get_server_rch(struct session *s)
444{
445 unsigned long hash = 0;
446 struct proxy *px = s->be;
447 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200448 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200449 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200450 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200451
452 /* tot_weight appears to mean srv_count */
453 if (px->lbprm.tot_weight == 0)
454 return NULL;
455
Willy Tarreau37406352012-04-23 16:16:37 +0200456 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200457
Willy Tarreau9b28e032012-10-12 23:49:43 +0200458 b_rew(s->req->buf, rewind = s->req->buf->o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200459
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200460 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreauf853c462012-04-23 18:53:56 +0200461 len = smp.data.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100462
Willy Tarreau9b28e032012-10-12 23:49:43 +0200463 b_adv(s->req->buf, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200464
Willy Tarreau37406352012-04-23 16:16:37 +0200465 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200466 return NULL;
467
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200468 /* note: we won't hash if there's only one server left */
469 if (px->lbprm.tot_used == 1)
470 goto hash_done;
471
Emeric Brun736aa232009-06-30 17:56:00 +0200472 /* Found a the hh_name in the headers.
473 * we will compute the hash based on this value ctx.val.
474 */
Bhaskar98634f02013-10-29 23:30:51 -0400475 hash = gen_hash(px, smp.data.str.str, len);
476
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500477 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100478 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200479 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200480 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
481 return chash_get_server_hash(px, hash);
482 else
483 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200484}
Benoitaffb4812009-03-25 13:02:10 +0100485
486/*
Willy Tarreau7c669d72008-06-20 15:04:11 +0200487 * This function applies the load-balancing algorithm to the session, as
488 * defined by the backend it is assigned to. The session is then marked as
489 * 'assigned'.
490 *
491 * This function MAY NOT be called with SN_ASSIGNED already set. If the session
492 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100493 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200494 * The function tries to keep the original connection slot if it reconnects to
495 * the same server, otherwise it releases it and tries to offer it.
496 *
497 * It is illegal to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200498 *
499 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100500 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200501 * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED
502 * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200503 * SRV_STATUS_INTERNAL for other unrecoverable errors.
504 *
Willy Tarreau7c669d72008-06-20 15:04:11 +0200505 * Upon successful return, the session flag SN_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100506 * it does not need to be called anymore. This means that target_srv(&s->target)
507 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200508 *
509 */
510
511int assign_server(struct session *s)
512{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200513 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200514 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100515 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200516 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100517
Simon Horman8effd3d2011-08-13 08:03:52 +0900518 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200519
Willy Tarreau7c669d72008-06-20 15:04:11 +0200520 err = SRV_STATUS_INTERNAL;
521 if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED))
522 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100523
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100524 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200525 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526
Willy Tarreau7c669d72008-06-20 15:04:11 +0200527 /* We have to release any connection slot before applying any LB algo,
528 * otherwise we may erroneously end up with no available slot.
529 */
530 if (conn_slot)
531 sess_change_server(s, NULL);
532
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100533 /* We will now try to find the good server and store it into <objt_server(s->target)>.
534 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200535 * as well as if no server is available (check error code).
536 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100537
Willy Tarreau827aee92011-03-10 16:55:02 +0100538 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100539 s->target = NULL;
Willy Tarreau9420b122013-12-15 18:58:25 +0100540 conn = objt_conn(s->req->cons->end);
Willy Tarreau664beb82011-03-10 11:38:29 +0100541
Willy Tarreau068621e2013-12-23 15:11:25 +0100542 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100543 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100544 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Willy Tarreauc35362a2014-04-25 13:58:37 +0200545 ((s->txn.flags & TX_PREFER_LAST) ||
546 ((s->be->options & PR_O_PREF_LAST) &&
547 (!s->be->max_ka_queue ||
548 server_has_room(__objt_server(conn->target)) ||
549 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100550 srv_is_usable(__objt_server(conn->target)->state, __objt_server(conn->target)->eweight)) {
551 /* This session was relying on a server in a previous request
552 * and the proxy has "option prefer-current-server" set, so
553 * let's try to reuse the same server.
554 */
555 srv = __objt_server(conn->target);
556 s->target = &srv->obj_type;
557 }
558 else if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200559 /* we must check if we have at least one server available */
560 if (!s->be->lbprm.tot_weight) {
561 err = SRV_STATUS_NOSRV;
562 goto out;
563 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200565 /* First check whether we need to fetch some data or simply call
566 * the LB lookup function. Only the hashing functions will need
567 * some input data in fact, and will support multiple algorithms.
568 */
569 switch (s->be->lbprm.algo & BE_LB_LKUP) {
570 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100571 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200572 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200573
Willy Tarreauf09c6602012-02-13 17:12:08 +0100574 case BE_LB_LKUP_FSTREE:
575 srv = fas_get_next_server(s->be, prev_srv);
576 break;
577
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200578 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100579 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200580 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200581
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200582 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200583 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200584 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200585 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100586 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200587 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100588 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200589 break;
590 }
591 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200592 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 err = SRV_STATUS_INTERNAL;
594 goto out;
595 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200596
597 switch (s->be->lbprm.algo & BE_LB_PARM) {
598 case BE_LB_HASH_SRC:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200599 conn = objt_conn(s->req->prod->end);
600 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200601 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200602 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200603 4);
604 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200605 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200606 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200607 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200608 16);
609 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200610 else {
611 /* unknown IP family */
612 err = SRV_STATUS_INTERNAL;
613 goto out;
614 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200615 break;
616
617 case BE_LB_HASH_URI:
618 /* URI hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100619 if (s->txn.req.msg_state < HTTP_MSG_BODY)
620 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100621 srv = get_server_uh(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200622 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100623 s->txn.req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200624 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200625
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200626 case BE_LB_HASH_PRM:
627 /* URL Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100628 if (s->txn.req.msg_state < HTTP_MSG_BODY)
629 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100630
Willy Tarreau827aee92011-03-10 16:55:02 +0100631 srv = get_server_ph(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200632 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100633 s->txn.req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100634
Willy Tarreau827aee92011-03-10 16:55:02 +0100635 if (!srv && s->txn.meth == HTTP_METH_POST)
636 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200637 break;
Benoitaffb4812009-03-25 13:02:10 +0100638
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200639 case BE_LB_HASH_HDR:
640 /* Header Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100641 if (s->txn.req.msg_state < HTTP_MSG_BODY)
642 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100643 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200644 break;
645
646 case BE_LB_HASH_RDP:
647 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100648 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200649 break;
650
651 default:
652 /* unknown balancing algorithm */
653 err = SRV_STATUS_INTERNAL;
654 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100655 }
Emeric Brun736aa232009-06-30 17:56:00 +0200656
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200657 /* If the hashing parameter was not found, let's fall
658 * back to round robin on the map.
659 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100660 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200661 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100662 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200663 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100664 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200665 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200666
667 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200668 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200669
Willy Tarreau7c669d72008-06-20 15:04:11 +0200670 default:
671 /* unknown balancing algorithm */
672 err = SRV_STATUS_INTERNAL;
673 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200674 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200675
Willy Tarreau827aee92011-03-10 16:55:02 +0100676 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200677 err = SRV_STATUS_FULL;
678 goto out;
679 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100680 else if (srv != prev_srv) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100681 s->be->be_counters.cum_lbconn++;
Willy Tarreau827aee92011-03-10 16:55:02 +0100682 srv->counters.cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100683 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100684 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200685 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200686 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100687 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200688 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100689 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200690 (conn = objt_conn(s->req->cons->end)) &&
691 is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100692 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100693 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100694 }
695 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200696 err = SRV_STATUS_NOSRV;
697 goto out;
698 }
699
700 s->flags |= SN_ASSIGNED;
701 err = SRV_STATUS_OK;
702 out:
703
704 /* Either we take back our connection slot, or we offer it to someone
705 * else if we don't need it anymore.
706 */
707 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100708 if (conn_slot == srv) {
709 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200710 } else {
711 if (may_dequeue_tasks(conn_slot, s->be))
712 process_srv_queue(conn_slot);
713 }
714 }
715
716 out_err:
717 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200718}
719
720
721/*
722 * This function assigns a server address to a session, and sets SN_ADDR_SET.
723 * The address is taken from the currently assigned server, or from the
724 * dispatch or transparent address.
725 *
726 * It may return :
727 * SRV_STATUS_OK if everything is OK.
728 * SRV_STATUS_INTERNAL for other unrecoverable errors.
729 *
730 * Upon successful return, the session flag SN_ADDR_SET is set. This flag is
731 * not cleared, so it's to the caller to clear it if required.
732 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200733 * The caller is responsible for having already assigned a connection
734 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200735 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200736 */
737int assign_server_address(struct session *s)
738{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200739 struct connection *cli_conn = objt_conn(s->req->prod->end);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200740 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200741
Willy Tarreaubaaee002006-06-26 02:48:02 +0200742#ifdef DEBUG_FULL
743 fprintf(stderr,"assign_server_address : s=%p\n",s);
744#endif
745
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200746 if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200747 /* A server is necessarily known for this session */
748 if (!(s->flags & SN_ASSIGNED))
749 return SRV_STATUS_INTERNAL;
750
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200751 srv_conn->addr.to = objt_server(s->target)->addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200752
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200753 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200754 /* if the server has no address, we use the same address
755 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200756 * locally on multiple addresses at once. Nothing is done
757 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200758 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200759 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200760
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200761 if (cli_conn->addr.to.ss_family == AF_INET) {
762 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
763 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
764 ((struct sockaddr_in6 *)&srv_conn->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200765 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200766 }
767
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768 /* if this server remaps proxied ports, we'll use
769 * the port the client connected to with an offset. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200770 if ((objt_server(s->target)->state & SRV_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100771 int base_port;
772
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200773 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100774
775 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200776 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100777
778 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200779 base_port += get_host_port(&srv_conn->addr.to);
780 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781 }
782 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200783 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200784 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200785 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200787 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200788 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200789 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200790
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200791 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
792 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200793 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100794 else if (s->be->options & PR_O_HTTP_PROXY) {
795 /* If HTTP PROXY option is set, then server is already assigned
796 * during incoming client request parsing. */
797 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100798 else {
799 /* no server and no LB algorithm ! */
800 return SRV_STATUS_INTERNAL;
801 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200802
803 s->flags |= SN_ADDR_SET;
804 return SRV_STATUS_OK;
805}
806
807
808/* This function assigns a server to session <s> if required, and can add the
809 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200810 * If ->srv_conn is set, the session is first released from the server.
811 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
812 * be called before any connection and after any retry or redispatch occurs.
813 *
814 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200815 *
816 * Returns :
817 *
818 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100819 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820 * SRV_STATUS_QUEUED if the connection has been queued.
821 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100822 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200823 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824 * SRV_STATUS_INTERNAL for other unrecoverable errors.
825 *
826 */
827int assign_server_and_queue(struct session *s)
828{
829 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100830 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200831 int err;
832
833 if (s->pend_pos)
834 return SRV_STATUS_INTERNAL;
835
Willy Tarreau7c669d72008-06-20 15:04:11 +0200836 err = SRV_STATUS_OK;
837 if (!(s->flags & SN_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100838 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100839
Willy Tarreau7c669d72008-06-20 15:04:11 +0200840 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100841 if (prev_srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200842 /* This session was previously assigned to a server. We have to
843 * update the session's and the server's stats :
844 * - if the server changed :
845 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
846 * - set SN_REDISP if it was successfully redispatched
847 * - increment srv->redispatches and be->redispatches
848 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100849 */
850
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100851 if (prev_srv != objt_server(s->target)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200852 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
853 s->txn.flags &= ~TX_CK_MASK;
854 s->txn.flags |= TX_CK_DOWN;
855 }
856 s->flags |= SN_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100857 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100858 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200859 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100860 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100861 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100862 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100863 }
864 }
865
Willy Tarreaubaaee002006-06-26 02:48:02 +0200866 switch (err) {
867 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200868 /* we have SN_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100869 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100870 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200871 return SRV_STATUS_OK; /* dispatch or proxy mode */
872
873 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100874 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200875 return SRV_STATUS_OK;
876
877 /* OK, this session already has an assigned server, but no
878 * connection slot yet. Either it is a redispatch, or it was
879 * assigned from persistence information (direct mode).
880 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100881 if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200882 /* server scheduled for redirection, and already assigned. We
883 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100884 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100885 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100886 return SRV_STATUS_OK;
887 }
888
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 /* We might have to queue this session if the assigned server is full.
890 * We know we have to queue it into the server's queue, so if a maxqueue
891 * is set on the server, we must also check that the server's queue is
892 * not full, in which case we have to return FULL.
893 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100894 if (srv->maxconn &&
895 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200896
Willy Tarreau827aee92011-03-10 16:55:02 +0100897 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200898 return SRV_STATUS_FULL;
899
Willy Tarreaubaaee002006-06-26 02:48:02 +0200900 p = pendconn_add(s);
901 if (p)
902 return SRV_STATUS_QUEUED;
903 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200904 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200906
907 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100908 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909 return SRV_STATUS_OK;
910
911 case SRV_STATUS_FULL:
912 /* queue this session into the proxy's queue */
913 p = pendconn_add(s);
914 if (p)
915 return SRV_STATUS_QUEUED;
916 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200917 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918
919 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200920 return err;
921
Willy Tarreaubaaee002006-06-26 02:48:02 +0200922 case SRV_STATUS_INTERNAL:
923 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925 default:
926 return SRV_STATUS_INTERNAL;
927 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100928}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929
Willy Tarreaub1d67742010-03-29 19:36:59 +0200930/* If an explicit source binding is specified on the server and/or backend, and
931 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200932 * assigned to the session's pending connection. This function assumes that an
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200933 * outgoing connection has already been assigned to s->req->cons->end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200934 */
935static void assign_tproxy_address(struct session *s)
936{
Pieter Baauwd551fb52013-05-08 22:49:23 +0200937#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100938 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100939 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200940 struct connection *cli_conn;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200941 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100942
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100943 if (srv && srv->conn_src.opts & CO_SRC_BIND)
944 src = &srv->conn_src;
945 else if (s->be->conn_src.opts & CO_SRC_BIND)
946 src = &s->be->conn_src;
947 else
948 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100949
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100950 switch (src->opts & CO_SRC_TPROXY_MASK) {
951 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200952 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100953 break;
954 case CO_SRC_TPROXY_CLI:
955 case CO_SRC_TPROXY_CIP:
956 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200957 cli_conn = objt_conn(s->req->prod->end);
958 if (cli_conn)
959 srv_conn->addr.from = cli_conn->addr.from;
960 else
961 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100962 break;
963 case CO_SRC_TPROXY_DYN:
964 if (src->bind_hdr_occ) {
965 char *vptr;
966 int vlen;
967 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100968
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100969 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200970 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
971 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
972 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100973
Willy Tarreau211cdec2014-04-17 20:18:08 +0200974 b_rew(s->req->buf, rewind = http_hdr_rewind(&s->txn.req));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100975 if (http_get_hdr(&s->txn.req, src->bind_hdr_name, src->bind_hdr_len,
976 &s->txn.hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200977 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100978 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +0200979 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100980 b_adv(s->req->buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +0200981 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100982 break;
983 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200984 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200985 }
986#endif
987}
988
989
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990/*
991 * This function initiates a connection to the server assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +0200992 * (s->target, s->req->cons->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +0100993 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200994 * It can return one of :
995 * - SN_ERR_NONE if everything's OK
996 * - SN_ERR_SRVTO if there are no more servers
997 * - SN_ERR_SRVCL if the connection was refused by the server
998 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
999 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1000 * - SN_ERR_INTERNAL for any other purely internal errors
1001 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001002 * The server-facing stream interface is expected to hold a pre-allocated connection
1003 * in s->req->cons->conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004 */
1005int connect_server(struct session *s)
1006{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001007 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001008 struct connection *srv_conn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001009 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001010 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001011 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001012
Willy Tarreau34601a82013-12-15 16:33:46 +01001013 srv_conn = objt_conn(s->req->cons->end);
1014 if (srv_conn)
1015 reuse = s->target == srv_conn->target;
1016
1017 if (reuse) {
1018 /* Disable connection reuse if a dynamic source is used.
1019 * As long as we don't share connections between servers,
1020 * we don't need to disable connection reuse on no-idempotent
1021 * requests nor when PROXY protocol is used.
1022 */
1023 srv = objt_server(s->target);
1024 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1025 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1026 reuse = 0;
1027 }
1028 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1029 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1030 reuse = 0;
1031 }
1032 }
1033
1034 srv_conn = si_alloc_conn(s->req->cons, reuse);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001035 if (!srv_conn)
1036 return SN_ERR_RESOURCE;
1037
Willy Tarreaubaaee002006-06-26 02:48:02 +02001038 if (!(s->flags & SN_ADDR_SET)) {
1039 err = assign_server_address(s);
1040 if (err != SRV_STATUS_OK)
1041 return SN_ERR_INTERNAL;
1042 }
1043
Willy Tarreauff605db2013-12-20 11:09:51 +01001044 if (!conn_xprt_ready(srv_conn)) {
1045 /* the target was only on the session, assign it to the SI now */
1046 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001047
Willy Tarreauff605db2013-12-20 11:09:51 +01001048 /* set the correct protocol on the output stream interface */
1049 if (objt_server(s->target)) {
1050 conn_prepare(srv_conn, objt_server(s->target)->proto, objt_server(s->target)->xprt);
1051 }
1052 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1053 /* proxies exclusively run on raw_sock right now */
1054 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), &raw_sock);
1055 if (!objt_conn(s->req->cons->end) || !objt_conn(s->req->cons->end)->ctrl)
1056 return SN_ERR_INTERNAL;
1057 }
1058 else
1059 return SN_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001060
Willy Tarreauff605db2013-12-20 11:09:51 +01001061 /* process the case where the server requires the PROXY protocol to be sent */
1062 srv_conn->send_proxy_ofs = 0;
David Safb76832014-05-08 23:42:08 -04001063 if (objt_server(s->target) && objt_server(s->target)->pp_opts) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001064 srv_conn->send_proxy_ofs = 1; /* must compute size */
1065 cli_conn = objt_conn(s->req->prod->end);
1066 if (cli_conn)
1067 conn_get_to_addr(cli_conn);
1068 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001069
Willy Tarreauff605db2013-12-20 11:09:51 +01001070 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001071
Willy Tarreauff605db2013-12-20 11:09:51 +01001072 assign_tproxy_address(s);
1073 }
1074 else {
1075 /* the connection is being reused, just re-attach it */
1076 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau36346242014-02-24 18:26:30 +01001077 s->flags |= SN_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001078 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001079
William Lallemandb7ff6a32012-03-02 14:35:21 +01001080 /* flag for logging source ip/port */
1081 if (s->fe->options2 & PR_O2_SRC_ADDR)
1082 s->req->cons->flags |= SI_FL_SRC_ADDR;
1083
Willy Tarreau14f8e862012-08-30 22:23:13 +02001084 /* disable lingering */
1085 if (s->be->options & PR_O_TCP_NOLING)
1086 s->req->cons->flags |= SI_FL_NOLINGER;
1087
Willy Tarreau73b013b2012-05-21 16:31:45 +02001088 err = si_connect(s->req->cons);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001089
Willy Tarreau9650f372009-08-16 14:02:45 +02001090 if (err != SN_ERR_NONE)
1091 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001092
Willy Tarreau14f8e862012-08-30 22:23:13 +02001093 /* set connect timeout */
1094 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.connect);
1095
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001096 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001097 if (srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +01001098 s->flags |= SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001099 srv->cur_sess++;
1100 if (srv->cur_sess > srv->counters.cur_sess_max)
1101 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001102 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001103 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001104 }
1105
Willy Tarreaubaaee002006-06-26 02:48:02 +02001106 return SN_ERR_NONE; /* connection is OK */
1107}
1108
1109
Willy Tarreaubaaee002006-06-26 02:48:02 +02001110/* This function performs the "redispatch" part of a connection attempt. It
1111 * will assign a server if required, queue the connection if required, and
1112 * handle errors that might arise at this level. It can change the server
1113 * state. It will return 1 if it encounters an error, switches the server
1114 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1115 * that the connection is ready to use.
1116 */
1117
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001118int srv_redispatch_connect(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001119{
Willy Tarreau827aee92011-03-10 16:55:02 +01001120 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001121 int conn_err;
1122
1123 /* We know that we don't have any connection pending, so we will
1124 * try to get a new one, and wait in this state if it's queued
1125 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001126 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001127 conn_err = assign_server_and_queue(s);
1128 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001129
Willy Tarreaubaaee002006-06-26 02:48:02 +02001130 switch (conn_err) {
1131 case SRV_STATUS_OK:
1132 break;
1133
Willy Tarreau7c669d72008-06-20 15:04:11 +02001134 case SRV_STATUS_FULL:
1135 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1136 * and we can redispatch to another server, or it is not and we return
1137 * 503. This only makes sense in DIRECT mode however, because normal LB
1138 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001139 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001140 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001141 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001142 if (((s->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) &&
1143 (s->be->options & PR_O_REDISP)) {
1144 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001145 goto redispatch;
1146 }
1147
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001148 if (!s->req->cons->err_type) {
1149 s->req->cons->err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001150 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001151
Willy Tarreau827aee92011-03-10 16:55:02 +01001152 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001153 s->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001154 return 1;
1155
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001157 /* note: it is guaranteed that srv == NULL here */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001158 if (!s->req->cons->err_type) {
1159 s->req->cons->err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001160 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001161
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001162 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001163 return 1;
1164
1165 case SRV_STATUS_QUEUED:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001166 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1167 s->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168 /* do nothing else and do not wake any other session up */
1169 return 1;
1170
Willy Tarreaubaaee002006-06-26 02:48:02 +02001171 case SRV_STATUS_INTERNAL:
1172 default:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001173 if (!s->req->cons->err_type) {
1174 s->req->cons->err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001175 }
1176
Willy Tarreau827aee92011-03-10 16:55:02 +01001177 if (srv)
1178 srv_inc_sess_ctr(srv);
1179 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001180 srv_set_sess_last(srv);
1181 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001182 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001183 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001184
1185 /* release other sessions waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001186 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001187 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001188 return 1;
1189 }
1190 /* if we get here, it's because we got SRV_STATUS_OK, which also
1191 * means that the connection has not been queued.
1192 */
1193 return 0;
1194}
1195
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001196/* Apply RDP cookie persistence to the current session. For this, the function
1197 * tries to extract an RDP cookie from the request buffer, and look for the
1198 * matching server in the list. If the server is found, it is assigned to the
1199 * session. This always returns 1, and the analyser removes itself from the
1200 * list. Nothing is performed if a server was already assigned.
1201 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001202int tcp_persist_rdp_cookie(struct session *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001203{
1204 struct proxy *px = s->be;
1205 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001206 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001207 struct server *srv = px->srv;
1208 struct sockaddr_in addr;
1209 char *p;
1210
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001211 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 +02001212 now_ms, __FUNCTION__,
1213 s,
1214 req,
1215 req->rex, req->wex,
1216 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001217 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001218 req->analysers);
1219
1220 if (s->flags & SN_ASSIGNED)
1221 goto no_cookie;
1222
Willy Tarreau37406352012-04-23 16:16:37 +02001223 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001224
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001225 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreauf853c462012-04-23 18:53:56 +02001226 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001227 goto no_cookie;
1228
1229 memset(&addr, 0, sizeof(addr));
1230 addr.sin_family = AF_INET;
1231
Willy Tarreau664092c2011-12-16 19:11:42 +01001232 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001233 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001234 if (*p != '.')
1235 goto no_cookie;
1236 p++;
1237 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1238 if (*p != '.')
1239 goto no_cookie;
1240
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001241 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001242 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001243 if (srv->addr.ss_family == AF_INET &&
1244 memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001245 if ((srv->state & SRV_RUNNING) || (px->options & PR_O_PERSIST)) {
1246 /* we found the server and it is usable */
1247 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001248 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001249 break;
1250 }
1251 }
1252 srv = srv->next;
1253 }
1254
1255no_cookie:
1256 req->analysers &= ~an_bit;
1257 req->analyse_exp = TICK_ETERNITY;
1258 return 1;
1259}
1260
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001261int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001262 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001263 return px->down_time;
1264
1265 return now.tv_sec - px->last_change + px->down_time;
1266}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001267
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001268/*
1269 * This function returns a string containing the balancing
1270 * mode of the proxy in a format suitable for stats.
1271 */
1272
1273const char *backend_lb_algo_str(int algo) {
1274
1275 if (algo == BE_LB_ALGO_RR)
1276 return "roundrobin";
1277 else if (algo == BE_LB_ALGO_SRR)
1278 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001279 else if (algo == BE_LB_ALGO_FAS)
1280 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001281 else if (algo == BE_LB_ALGO_LC)
1282 return "leastconn";
1283 else if (algo == BE_LB_ALGO_SH)
1284 return "source";
1285 else if (algo == BE_LB_ALGO_UH)
1286 return "uri";
1287 else if (algo == BE_LB_ALGO_PH)
1288 return "url_param";
1289 else if (algo == BE_LB_ALGO_HH)
1290 return "hdr";
1291 else if (algo == BE_LB_ALGO_RCH)
1292 return "rdp-cookie";
1293 else
1294 return NULL;
1295}
1296
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001297/* This function parses a "balance" statement in a backend section describing
1298 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001299 * returns -1, it will write an error message into the <err> buffer which will
1300 * automatically be allocated and must be passed as NULL. The trailing '\n'
1301 * will not be written. The function must be called with <args> pointing to the
1302 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001303 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001304int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001305{
1306 if (!*(args[0])) {
1307 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001308 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1309 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001310 return 0;
1311 }
1312
1313 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001314 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1315 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001316 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001317 else if (!strcmp(args[0], "static-rr")) {
1318 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1319 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1320 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001321 else if (!strcmp(args[0], "first")) {
1322 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1323 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1324 }
Willy Tarreau51406232008-03-10 22:04:20 +01001325 else if (!strcmp(args[0], "leastconn")) {
1326 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1327 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1328 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001329 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001330 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1331 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001332 }
1333 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001334 int arg = 1;
1335
Willy Tarreau31682232007-11-29 15:38:04 +01001336 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1337 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001338
Oskar Stolc8dc41842012-05-19 10:19:54 +01001339 curproxy->uri_whole = 0;
1340
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001341 while (*args[arg]) {
1342 if (!strcmp(args[arg], "len")) {
1343 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001344 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001345 return -1;
1346 }
1347 curproxy->uri_len_limit = atoi(args[arg+1]);
1348 arg += 2;
1349 }
1350 else if (!strcmp(args[arg], "depth")) {
1351 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001352 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001353 return -1;
1354 }
1355 /* hint: we store the position of the ending '/' (depth+1) so
1356 * that we avoid a comparison while computing the hash.
1357 */
1358 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1359 arg += 2;
1360 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001361 else if (!strcmp(args[arg], "whole")) {
1362 curproxy->uri_whole = 1;
1363 arg += 1;
1364 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001365 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001366 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001367 return -1;
1368 }
1369 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001370 }
Willy Tarreau01732802007-11-01 22:48:15 +01001371 else if (!strcmp(args[0], "url_param")) {
1372 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001373 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001374 return -1;
1375 }
Willy Tarreau31682232007-11-29 15:38:04 +01001376 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1377 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001378
1379 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001380 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001381 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001382 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001383 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001384 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001385 return -1;
1386 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001387 }
Benoitaffb4812009-03-25 13:02:10 +01001388 }
1389 else if (!strncmp(args[0], "hdr(", 4)) {
1390 const char *beg, *end;
1391
1392 beg = args[0] + 4;
1393 end = strchr(beg, ')');
1394
1395 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001396 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001397 return -1;
1398 }
1399
1400 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1401 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1402
1403 free(curproxy->hh_name);
1404 curproxy->hh_len = end - beg;
1405 curproxy->hh_name = my_strndup(beg, end - beg);
1406 curproxy->hh_match_domain = 0;
1407
1408 if (*args[1]) {
1409 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001410 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001411 return -1;
1412 }
1413 curproxy->hh_match_domain = 1;
1414 }
Emeric Brun736aa232009-06-30 17:56:00 +02001415 }
1416 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1417 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1418 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1419
1420 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1421 const char *beg, *end;
1422
1423 beg = args[0] + 11;
1424 end = strchr(beg, ')');
1425
1426 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001427 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001428 return -1;
1429 }
1430
1431 free(curproxy->hh_name);
1432 curproxy->hh_name = my_strndup(beg, end - beg);
1433 curproxy->hh_len = end - beg;
1434 }
1435 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1436 free(curproxy->hh_name);
1437 curproxy->hh_name = strdup("mstshash");
1438 curproxy->hh_len = strlen(curproxy->hh_name);
1439 }
1440 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001441 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001442 return -1;
1443 }
Willy Tarreau01732802007-11-01 22:48:15 +01001444 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001445 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001446 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 +01001447 return -1;
1448 }
1449 return 0;
1450}
1451
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001452
1453/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001454/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001455/************************************************************************/
1456
Willy Tarreau34db1082012-04-19 17:16:54 +02001457/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001458 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001459 * undefined behaviour.
1460 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001461static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001462smp_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001463 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001464{
Willy Tarreau37406352012-04-23 16:16:37 +02001465 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001466 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001467 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001468
1469 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001470 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001471 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001472 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001473 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001474 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001475
1476 return 1;
1477}
1478
Willy Tarreau37406352012-04-23 16:16:37 +02001479/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001480 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001481 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1482 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001483 */
1484static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001485smp_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001486 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001487{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001488 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001489
Willy Tarreau37406352012-04-23 16:16:37 +02001490 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001491 smp->type = SMP_T_BOOL;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001492 if (!(srv->state & SRV_MAINTAIN) &&
Willy Tarreauff5ae352013-12-11 20:36:34 +01001493 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->state & SRV_RUNNING)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001494 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001495 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001496 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001497 return 1;
1498}
1499
Willy Tarreau34db1082012-04-19 17:16:54 +02001500/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001501 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001502 * undefined behaviour.
1503 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001504static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001505smp_fetch_connslots(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001506 const struct arg *args, struct sample *smp, const char *kw)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001507{
1508 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001509
Willy Tarreau37406352012-04-23 16:16:37 +02001510 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001511 smp->type = SMP_T_UINT;
1512 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001513
Willy Tarreau24e32d82012-04-23 23:55:44 +02001514 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001515 if ((iterator->state & SRV_RUNNING) == 0)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001516 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001517
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001518 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001519 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001520 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001521 return 1;
1522 }
1523
Willy Tarreauf853c462012-04-23 18:53:56 +02001524 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001525 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001526 }
1527
1528 return 1;
1529}
1530
Willy Tarreaua5e37562011-12-16 17:06:15 +01001531/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001532static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001533smp_fetch_be_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001534 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001535{
Willy Tarreauf853c462012-04-23 18:53:56 +02001536 smp->flags = SMP_F_VOL_TXN;
1537 smp->type = SMP_T_UINT;
1538 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001539 return 1;
1540}
1541
Willy Tarreaua5e37562011-12-16 17:06:15 +01001542/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001543static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001544smp_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001545 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001546{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001547 if (!objt_server(l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001548 return 0;
1549
Willy Tarreauf853c462012-04-23 18:53:56 +02001550 smp->type = SMP_T_UINT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001551 smp->data.uint = objt_server(l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001552
1553 return 1;
1554}
1555
Willy Tarreau34db1082012-04-19 17:16:54 +02001556/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001557 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001558 * undefined behaviour.
1559 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001560static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001561smp_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001562 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001563{
Willy Tarreau37406352012-04-23 16:16:37 +02001564 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001565 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001566 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001567 return 1;
1568}
1569
Willy Tarreau34db1082012-04-19 17:16:54 +02001570/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001571 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001572 * undefined behaviour.
1573 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001574static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001575smp_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001576 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001577{
Willy Tarreau37406352012-04-23 16:16:37 +02001578 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001579 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001580 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001581 return 1;
1582}
1583
Willy Tarreau34db1082012-04-19 17:16:54 +02001584/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001585 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001586 * undefined behaviour.
1587 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001588static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001589smp_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001590 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001591{
Willy Tarreau37406352012-04-23 16:16:37 +02001592 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001593 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001594 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001595 return 1;
1596}
1597
Willy Tarreaua5e37562011-12-16 17:06:15 +01001598/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001599 * by the number of running servers and rounded up. If there is no running
1600 * server, we return twice the total, just as if we had half a running server.
1601 * This is more or less correct anyway, since we expect the last server to come
1602 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001603 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001604 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001605 */
1606static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001607smp_fetch_avg_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001608 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001609{
1610 int nbsrv;
1611
Willy Tarreau37406352012-04-23 16:16:37 +02001612 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001613 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001614 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001615
1616 if (px->srv_act)
1617 nbsrv = px->srv_act;
1618 else if (px->lbprm.fbck)
1619 nbsrv = 1;
1620 else
1621 nbsrv = px->srv_bck;
1622
1623 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001624 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001625 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001626 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001627
1628 return 1;
1629}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001630
Willy Tarreau34db1082012-04-19 17:16:54 +02001631/* set temp integer to the number of concurrent connections on the server in the backend.
1632 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1633 * undefined behaviour.
1634 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001635static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001636smp_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001637 const struct arg *args, struct sample *smp, const char *kw)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001638{
Willy Tarreauf853c462012-04-23 18:53:56 +02001639 smp->flags = SMP_F_VOL_TEST;
1640 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001641 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001642 return 1;
1643}
1644
Tait Clarridge7896d522012-12-05 21:39:31 -05001645/* set temp integer to the number of enabled servers on the proxy.
1646 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1647 * undefined behaviour.
1648 */
1649static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001650smp_fetch_srv_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001651 const struct arg *args, struct sample *smp, const char *kw)
Tait Clarridge7896d522012-12-05 21:39:31 -05001652{
1653 smp->flags = SMP_F_VOL_TEST;
1654 smp->type = SMP_T_UINT;
1655 smp->data.uint = read_freq_ctr(&args->data.srv->sess_per_sec);
1656 return 1;
1657}
1658
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001659
1660/* Note: must not be declared <const> as its list will be overwritten.
1661 * Please take care of keeping this list alphabetically sorted.
1662 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001663static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001664 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1665 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1666 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_UINT, SMP_USE_BKEND, },
1667 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1668 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1669 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1670 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1671 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1672 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_UINT, SMP_USE_SERVR, },
1673 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
1674 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1675 { /* END */ },
1676}};
1677
1678
Willy Tarreau61612d42012-04-19 18:42:05 +02001679/* Note: must not be declared <const> as its list will be overwritten.
1680 * Please take care of keeping this list alphabetically sorted.
1681 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001682static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001683 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001684}};
1685
1686
1687__attribute__((constructor))
1688static void __backend_init(void)
1689{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001690 sample_register_fetches(&smp_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001691 acl_register_keywords(&acl_kws);
1692}
1693
Willy Tarreaubaaee002006-06-26 02:48:02 +02001694/*
1695 * Local variables:
1696 * c-indent-level: 8
1697 * c-basic-offset: 8
1698 * End:
1699 */