blob: 9c3ae0e1a81c99572d979c9131c0a90f21e5df63 [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
756 * locally on multiple addresses at once.
757 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200758 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200759
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200760 if (cli_conn->addr.to.ss_family == AF_INET) {
761 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
762 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
763 ((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 +0200764 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200765 }
766
Willy Tarreaubaaee002006-06-26 02:48:02 +0200767 /* if this server remaps proxied ports, we'll use
768 * the port the client connected to with an offset. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200769 if ((objt_server(s->target)->state & SRV_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100770 int base_port;
771
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200772 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100773
774 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200775 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100776
777 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200778 base_port += get_host_port(&srv_conn->addr.to);
779 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200780 }
781 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200782 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200783 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200784 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200786 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200788 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200790 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
791 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200792 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100793 else if (s->be->options & PR_O_HTTP_PROXY) {
794 /* If HTTP PROXY option is set, then server is already assigned
795 * during incoming client request parsing. */
796 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100797 else {
798 /* no server and no LB algorithm ! */
799 return SRV_STATUS_INTERNAL;
800 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801
802 s->flags |= SN_ADDR_SET;
803 return SRV_STATUS_OK;
804}
805
806
807/* This function assigns a server to session <s> if required, and can add the
808 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200809 * If ->srv_conn is set, the session is first released from the server.
810 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
811 * be called before any connection and after any retry or redispatch occurs.
812 *
813 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200814 *
815 * Returns :
816 *
817 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100818 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 * SRV_STATUS_QUEUED if the connection has been queued.
820 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100821 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200822 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823 * SRV_STATUS_INTERNAL for other unrecoverable errors.
824 *
825 */
826int assign_server_and_queue(struct session *s)
827{
828 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100829 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200830 int err;
831
832 if (s->pend_pos)
833 return SRV_STATUS_INTERNAL;
834
Willy Tarreau7c669d72008-06-20 15:04:11 +0200835 err = SRV_STATUS_OK;
836 if (!(s->flags & SN_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100837 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100838
Willy Tarreau7c669d72008-06-20 15:04:11 +0200839 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100840 if (prev_srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200841 /* This session was previously assigned to a server. We have to
842 * update the session's and the server's stats :
843 * - if the server changed :
844 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
845 * - set SN_REDISP if it was successfully redispatched
846 * - increment srv->redispatches and be->redispatches
847 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100848 */
849
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100850 if (prev_srv != objt_server(s->target)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200851 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
852 s->txn.flags &= ~TX_CK_MASK;
853 s->txn.flags |= TX_CK_DOWN;
854 }
855 s->flags |= SN_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100856 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100857 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200858 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100859 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100860 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100861 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100862 }
863 }
864
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865 switch (err) {
866 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200867 /* we have SN_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100868 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100869 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200870 return SRV_STATUS_OK; /* dispatch or proxy mode */
871
872 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100873 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200874 return SRV_STATUS_OK;
875
876 /* OK, this session already has an assigned server, but no
877 * connection slot yet. Either it is a redispatch, or it was
878 * assigned from persistence information (direct mode).
879 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100880 if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200881 /* server scheduled for redirection, and already assigned. We
882 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100883 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100884 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100885 return SRV_STATUS_OK;
886 }
887
Willy Tarreau7c669d72008-06-20 15:04:11 +0200888 /* We might have to queue this session if the assigned server is full.
889 * We know we have to queue it into the server's queue, so if a maxqueue
890 * is set on the server, we must also check that the server's queue is
891 * not full, in which case we have to return FULL.
892 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100893 if (srv->maxconn &&
894 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200895
Willy Tarreau827aee92011-03-10 16:55:02 +0100896 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200897 return SRV_STATUS_FULL;
898
Willy Tarreaubaaee002006-06-26 02:48:02 +0200899 p = pendconn_add(s);
900 if (p)
901 return SRV_STATUS_QUEUED;
902 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200903 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200904 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200905
906 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100907 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200908 return SRV_STATUS_OK;
909
910 case SRV_STATUS_FULL:
911 /* queue this session into the proxy's queue */
912 p = pendconn_add(s);
913 if (p)
914 return SRV_STATUS_QUEUED;
915 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200916 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917
918 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200919 return err;
920
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 case SRV_STATUS_INTERNAL:
922 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200923
Willy Tarreaubaaee002006-06-26 02:48:02 +0200924 default:
925 return SRV_STATUS_INTERNAL;
926 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100927}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928
Willy Tarreaub1d67742010-03-29 19:36:59 +0200929/* If an explicit source binding is specified on the server and/or backend, and
930 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200931 * assigned to the session's pending connection. This function assumes that an
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200932 * outgoing connection has already been assigned to s->req->cons->end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200933 */
934static void assign_tproxy_address(struct session *s)
935{
Pieter Baauwd551fb52013-05-08 22:49:23 +0200936#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100937 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100938 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200939 struct connection *cli_conn;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200940 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100941
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100942 if (srv && srv->conn_src.opts & CO_SRC_BIND)
943 src = &srv->conn_src;
944 else if (s->be->conn_src.opts & CO_SRC_BIND)
945 src = &s->be->conn_src;
946 else
947 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100948
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100949 switch (src->opts & CO_SRC_TPROXY_MASK) {
950 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200951 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100952 break;
953 case CO_SRC_TPROXY_CLI:
954 case CO_SRC_TPROXY_CIP:
955 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200956 cli_conn = objt_conn(s->req->prod->end);
957 if (cli_conn)
958 srv_conn->addr.from = cli_conn->addr.from;
959 else
960 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100961 break;
962 case CO_SRC_TPROXY_DYN:
963 if (src->bind_hdr_occ) {
964 char *vptr;
965 int vlen;
966 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100967
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100968 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200969 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
970 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
971 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100972
Willy Tarreau211cdec2014-04-17 20:18:08 +0200973 b_rew(s->req->buf, rewind = http_hdr_rewind(&s->txn.req));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100974 if (http_get_hdr(&s->txn.req, src->bind_hdr_name, src->bind_hdr_len,
975 &s->txn.hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200976 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100977 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +0200978 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100979 b_adv(s->req->buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +0200980 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100981 break;
982 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200983 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200984 }
985#endif
986}
987
988
Willy Tarreaubaaee002006-06-26 02:48:02 +0200989/*
990 * This function initiates a connection to the server assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +0200991 * (s->target, s->req->cons->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +0100992 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200993 * It can return one of :
994 * - SN_ERR_NONE if everything's OK
995 * - SN_ERR_SRVTO if there are no more servers
996 * - SN_ERR_SRVCL if the connection was refused by the server
997 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
998 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
999 * - SN_ERR_INTERNAL for any other purely internal errors
1000 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001001 * The server-facing stream interface is expected to hold a pre-allocated connection
1002 * in s->req->cons->conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001003 */
1004int connect_server(struct session *s)
1005{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001006 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001007 struct connection *srv_conn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001008 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001009 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001010 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001011
Willy Tarreau34601a82013-12-15 16:33:46 +01001012 srv_conn = objt_conn(s->req->cons->end);
1013 if (srv_conn)
1014 reuse = s->target == srv_conn->target;
1015
1016 if (reuse) {
1017 /* Disable connection reuse if a dynamic source is used.
1018 * As long as we don't share connections between servers,
1019 * we don't need to disable connection reuse on no-idempotent
1020 * requests nor when PROXY protocol is used.
1021 */
1022 srv = objt_server(s->target);
1023 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1024 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1025 reuse = 0;
1026 }
1027 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1028 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1029 reuse = 0;
1030 }
1031 }
1032
1033 srv_conn = si_alloc_conn(s->req->cons, reuse);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001034 if (!srv_conn)
1035 return SN_ERR_RESOURCE;
1036
Willy Tarreaubaaee002006-06-26 02:48:02 +02001037 if (!(s->flags & SN_ADDR_SET)) {
1038 err = assign_server_address(s);
1039 if (err != SRV_STATUS_OK)
1040 return SN_ERR_INTERNAL;
1041 }
1042
Willy Tarreauff605db2013-12-20 11:09:51 +01001043 if (!conn_xprt_ready(srv_conn)) {
1044 /* the target was only on the session, assign it to the SI now */
1045 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001046
Willy Tarreauff605db2013-12-20 11:09:51 +01001047 /* set the correct protocol on the output stream interface */
1048 if (objt_server(s->target)) {
1049 conn_prepare(srv_conn, objt_server(s->target)->proto, objt_server(s->target)->xprt);
1050 }
1051 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1052 /* proxies exclusively run on raw_sock right now */
1053 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), &raw_sock);
1054 if (!objt_conn(s->req->cons->end) || !objt_conn(s->req->cons->end)->ctrl)
1055 return SN_ERR_INTERNAL;
1056 }
1057 else
1058 return SN_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001059
Willy Tarreauff605db2013-12-20 11:09:51 +01001060 /* process the case where the server requires the PROXY protocol to be sent */
1061 srv_conn->send_proxy_ofs = 0;
David Safb76832014-05-08 23:42:08 -04001062 if (objt_server(s->target) && objt_server(s->target)->pp_opts) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001063 srv_conn->send_proxy_ofs = 1; /* must compute size */
1064 cli_conn = objt_conn(s->req->prod->end);
1065 if (cli_conn)
1066 conn_get_to_addr(cli_conn);
1067 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001068
Willy Tarreauff605db2013-12-20 11:09:51 +01001069 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001070
Willy Tarreauff605db2013-12-20 11:09:51 +01001071 assign_tproxy_address(s);
1072 }
1073 else {
1074 /* the connection is being reused, just re-attach it */
1075 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau36346242014-02-24 18:26:30 +01001076 s->flags |= SN_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001077 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001078
William Lallemandb7ff6a32012-03-02 14:35:21 +01001079 /* flag for logging source ip/port */
1080 if (s->fe->options2 & PR_O2_SRC_ADDR)
1081 s->req->cons->flags |= SI_FL_SRC_ADDR;
1082
Willy Tarreau14f8e862012-08-30 22:23:13 +02001083 /* disable lingering */
1084 if (s->be->options & PR_O_TCP_NOLING)
1085 s->req->cons->flags |= SI_FL_NOLINGER;
1086
Willy Tarreau73b013b2012-05-21 16:31:45 +02001087 err = si_connect(s->req->cons);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001088
Willy Tarreau9650f372009-08-16 14:02:45 +02001089 if (err != SN_ERR_NONE)
1090 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001091
Willy Tarreau14f8e862012-08-30 22:23:13 +02001092 /* set connect timeout */
1093 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.connect);
1094
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001095 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001096 if (srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +01001097 s->flags |= SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001098 srv->cur_sess++;
1099 if (srv->cur_sess > srv->counters.cur_sess_max)
1100 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001101 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001102 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001103 }
1104
Willy Tarreaubaaee002006-06-26 02:48:02 +02001105 return SN_ERR_NONE; /* connection is OK */
1106}
1107
1108
Willy Tarreaubaaee002006-06-26 02:48:02 +02001109/* This function performs the "redispatch" part of a connection attempt. It
1110 * will assign a server if required, queue the connection if required, and
1111 * handle errors that might arise at this level. It can change the server
1112 * state. It will return 1 if it encounters an error, switches the server
1113 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1114 * that the connection is ready to use.
1115 */
1116
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001117int srv_redispatch_connect(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001118{
Willy Tarreau827aee92011-03-10 16:55:02 +01001119 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001120 int conn_err;
1121
1122 /* We know that we don't have any connection pending, so we will
1123 * try to get a new one, and wait in this state if it's queued
1124 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001125 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001126 conn_err = assign_server_and_queue(s);
1127 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001128
Willy Tarreaubaaee002006-06-26 02:48:02 +02001129 switch (conn_err) {
1130 case SRV_STATUS_OK:
1131 break;
1132
Willy Tarreau7c669d72008-06-20 15:04:11 +02001133 case SRV_STATUS_FULL:
1134 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1135 * and we can redispatch to another server, or it is not and we return
1136 * 503. This only makes sense in DIRECT mode however, because normal LB
1137 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001138 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001139 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001140 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001141 if (((s->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) &&
1142 (s->be->options & PR_O_REDISP)) {
1143 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001144 goto redispatch;
1145 }
1146
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001147 if (!s->req->cons->err_type) {
1148 s->req->cons->err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001149 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001150
Willy Tarreau827aee92011-03-10 16:55:02 +01001151 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001152 s->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001153 return 1;
1154
Willy Tarreaubaaee002006-06-26 02:48:02 +02001155 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001156 /* note: it is guaranteed that srv == NULL here */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001157 if (!s->req->cons->err_type) {
1158 s->req->cons->err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001159 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001160
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001161 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001162 return 1;
1163
1164 case SRV_STATUS_QUEUED:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001165 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1166 s->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001167 /* do nothing else and do not wake any other session up */
1168 return 1;
1169
Willy Tarreaubaaee002006-06-26 02:48:02 +02001170 case SRV_STATUS_INTERNAL:
1171 default:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001172 if (!s->req->cons->err_type) {
1173 s->req->cons->err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001174 }
1175
Willy Tarreau827aee92011-03-10 16:55:02 +01001176 if (srv)
1177 srv_inc_sess_ctr(srv);
1178 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001179 srv_set_sess_last(srv);
1180 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001181 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001182 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001183
1184 /* release other sessions waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001185 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001186 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001187 return 1;
1188 }
1189 /* if we get here, it's because we got SRV_STATUS_OK, which also
1190 * means that the connection has not been queued.
1191 */
1192 return 0;
1193}
1194
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001195/* Apply RDP cookie persistence to the current session. For this, the function
1196 * tries to extract an RDP cookie from the request buffer, and look for the
1197 * matching server in the list. If the server is found, it is assigned to the
1198 * session. This always returns 1, and the analyser removes itself from the
1199 * list. Nothing is performed if a server was already assigned.
1200 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001201int tcp_persist_rdp_cookie(struct session *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001202{
1203 struct proxy *px = s->be;
1204 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001205 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001206 struct server *srv = px->srv;
1207 struct sockaddr_in addr;
1208 char *p;
1209
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001210 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 +02001211 now_ms, __FUNCTION__,
1212 s,
1213 req,
1214 req->rex, req->wex,
1215 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001216 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001217 req->analysers);
1218
1219 if (s->flags & SN_ASSIGNED)
1220 goto no_cookie;
1221
Willy Tarreau37406352012-04-23 16:16:37 +02001222 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001223
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001224 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreauf853c462012-04-23 18:53:56 +02001225 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001226 goto no_cookie;
1227
1228 memset(&addr, 0, sizeof(addr));
1229 addr.sin_family = AF_INET;
1230
Willy Tarreau664092c2011-12-16 19:11:42 +01001231 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001232 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001233 if (*p != '.')
1234 goto no_cookie;
1235 p++;
1236 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1237 if (*p != '.')
1238 goto no_cookie;
1239
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001240 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001241 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001242 if (srv->addr.ss_family == AF_INET &&
1243 memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001244 if ((srv->state & SRV_RUNNING) || (px->options & PR_O_PERSIST)) {
1245 /* we found the server and it is usable */
1246 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001247 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001248 break;
1249 }
1250 }
1251 srv = srv->next;
1252 }
1253
1254no_cookie:
1255 req->analysers &= ~an_bit;
1256 req->analyse_exp = TICK_ETERNITY;
1257 return 1;
1258}
1259
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001260int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001261 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001262 return px->down_time;
1263
1264 return now.tv_sec - px->last_change + px->down_time;
1265}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001266
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001267/*
1268 * This function returns a string containing the balancing
1269 * mode of the proxy in a format suitable for stats.
1270 */
1271
1272const char *backend_lb_algo_str(int algo) {
1273
1274 if (algo == BE_LB_ALGO_RR)
1275 return "roundrobin";
1276 else if (algo == BE_LB_ALGO_SRR)
1277 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001278 else if (algo == BE_LB_ALGO_FAS)
1279 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001280 else if (algo == BE_LB_ALGO_LC)
1281 return "leastconn";
1282 else if (algo == BE_LB_ALGO_SH)
1283 return "source";
1284 else if (algo == BE_LB_ALGO_UH)
1285 return "uri";
1286 else if (algo == BE_LB_ALGO_PH)
1287 return "url_param";
1288 else if (algo == BE_LB_ALGO_HH)
1289 return "hdr";
1290 else if (algo == BE_LB_ALGO_RCH)
1291 return "rdp-cookie";
1292 else
1293 return NULL;
1294}
1295
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001296/* This function parses a "balance" statement in a backend section describing
1297 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001298 * returns -1, it will write an error message into the <err> buffer which will
1299 * automatically be allocated and must be passed as NULL. The trailing '\n'
1300 * will not be written. The function must be called with <args> pointing to the
1301 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001302 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001303int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001304{
1305 if (!*(args[0])) {
1306 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001307 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1308 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001309 return 0;
1310 }
1311
1312 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001313 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1314 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001315 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001316 else if (!strcmp(args[0], "static-rr")) {
1317 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1318 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1319 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001320 else if (!strcmp(args[0], "first")) {
1321 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1322 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1323 }
Willy Tarreau51406232008-03-10 22:04:20 +01001324 else if (!strcmp(args[0], "leastconn")) {
1325 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1326 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1327 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001328 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001329 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1330 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001331 }
1332 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001333 int arg = 1;
1334
Willy Tarreau31682232007-11-29 15:38:04 +01001335 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1336 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001337
Oskar Stolc8dc41842012-05-19 10:19:54 +01001338 curproxy->uri_whole = 0;
1339
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001340 while (*args[arg]) {
1341 if (!strcmp(args[arg], "len")) {
1342 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001343 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001344 return -1;
1345 }
1346 curproxy->uri_len_limit = atoi(args[arg+1]);
1347 arg += 2;
1348 }
1349 else if (!strcmp(args[arg], "depth")) {
1350 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001351 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001352 return -1;
1353 }
1354 /* hint: we store the position of the ending '/' (depth+1) so
1355 * that we avoid a comparison while computing the hash.
1356 */
1357 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1358 arg += 2;
1359 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001360 else if (!strcmp(args[arg], "whole")) {
1361 curproxy->uri_whole = 1;
1362 arg += 1;
1363 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001364 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001365 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001366 return -1;
1367 }
1368 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001369 }
Willy Tarreau01732802007-11-01 22:48:15 +01001370 else if (!strcmp(args[0], "url_param")) {
1371 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001372 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001373 return -1;
1374 }
Willy Tarreau31682232007-11-29 15:38:04 +01001375 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1376 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001377
1378 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001379 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001380 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001381 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001382 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001383 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001384 return -1;
1385 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001386 }
Benoitaffb4812009-03-25 13:02:10 +01001387 }
1388 else if (!strncmp(args[0], "hdr(", 4)) {
1389 const char *beg, *end;
1390
1391 beg = args[0] + 4;
1392 end = strchr(beg, ')');
1393
1394 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001395 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001396 return -1;
1397 }
1398
1399 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1400 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1401
1402 free(curproxy->hh_name);
1403 curproxy->hh_len = end - beg;
1404 curproxy->hh_name = my_strndup(beg, end - beg);
1405 curproxy->hh_match_domain = 0;
1406
1407 if (*args[1]) {
1408 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001409 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001410 return -1;
1411 }
1412 curproxy->hh_match_domain = 1;
1413 }
Emeric Brun736aa232009-06-30 17:56:00 +02001414 }
1415 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1416 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1417 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1418
1419 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1420 const char *beg, *end;
1421
1422 beg = args[0] + 11;
1423 end = strchr(beg, ')');
1424
1425 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001426 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001427 return -1;
1428 }
1429
1430 free(curproxy->hh_name);
1431 curproxy->hh_name = my_strndup(beg, end - beg);
1432 curproxy->hh_len = end - beg;
1433 }
1434 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1435 free(curproxy->hh_name);
1436 curproxy->hh_name = strdup("mstshash");
1437 curproxy->hh_len = strlen(curproxy->hh_name);
1438 }
1439 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001440 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001441 return -1;
1442 }
Willy Tarreau01732802007-11-01 22:48:15 +01001443 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001444 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001445 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 +01001446 return -1;
1447 }
1448 return 0;
1449}
1450
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001451
1452/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001453/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001454/************************************************************************/
1455
Willy Tarreau34db1082012-04-19 17:16:54 +02001456/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001457 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001458 * undefined behaviour.
1459 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001460static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001461smp_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001462 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001463{
Willy Tarreau37406352012-04-23 16:16:37 +02001464 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001465 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001466 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001467
1468 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001469 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001470 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001471 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001472 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001473 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001474
1475 return 1;
1476}
1477
Willy Tarreau37406352012-04-23 16:16:37 +02001478/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001479 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001480 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1481 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001482 */
1483static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001484smp_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001485 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001486{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001487 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001488
Willy Tarreau37406352012-04-23 16:16:37 +02001489 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001490 smp->type = SMP_T_BOOL;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001491 if (!(srv->state & SRV_MAINTAIN) &&
Willy Tarreauff5ae352013-12-11 20:36:34 +01001492 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->state & SRV_RUNNING)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001493 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001494 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001495 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001496 return 1;
1497}
1498
Willy Tarreau34db1082012-04-19 17:16:54 +02001499/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001500 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001501 * undefined behaviour.
1502 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001503static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001504smp_fetch_connslots(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001505 const struct arg *args, struct sample *smp, const char *kw)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001506{
1507 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001508
Willy Tarreau37406352012-04-23 16:16:37 +02001509 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001510 smp->type = SMP_T_UINT;
1511 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001512
Willy Tarreau24e32d82012-04-23 23:55:44 +02001513 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001514 if ((iterator->state & SRV_RUNNING) == 0)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001515 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001516
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001517 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001518 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001519 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001520 return 1;
1521 }
1522
Willy Tarreauf853c462012-04-23 18:53:56 +02001523 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001524 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001525 }
1526
1527 return 1;
1528}
1529
Willy Tarreaua5e37562011-12-16 17:06:15 +01001530/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001531static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001532smp_fetch_be_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001533 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001534{
Willy Tarreauf853c462012-04-23 18:53:56 +02001535 smp->flags = SMP_F_VOL_TXN;
1536 smp->type = SMP_T_UINT;
1537 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001538 return 1;
1539}
1540
Willy Tarreaua5e37562011-12-16 17:06:15 +01001541/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001542static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001543smp_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001544 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001545{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001546 if (!objt_server(l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001547 return 0;
1548
Willy Tarreauf853c462012-04-23 18:53:56 +02001549 smp->type = SMP_T_UINT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001550 smp->data.uint = objt_server(l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001551
1552 return 1;
1553}
1554
Willy Tarreau34db1082012-04-19 17:16:54 +02001555/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001556 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001557 * undefined behaviour.
1558 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001559static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001560smp_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001561 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001562{
Willy Tarreau37406352012-04-23 16:16:37 +02001563 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001564 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001565 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001566 return 1;
1567}
1568
Willy Tarreau34db1082012-04-19 17:16:54 +02001569/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001570 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001571 * undefined behaviour.
1572 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001573static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001574smp_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001575 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001576{
Willy Tarreau37406352012-04-23 16:16:37 +02001577 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001578 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001579 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001580 return 1;
1581}
1582
Willy Tarreau34db1082012-04-19 17:16:54 +02001583/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001584 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001585 * undefined behaviour.
1586 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001587static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001588smp_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001589 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001590{
Willy Tarreau37406352012-04-23 16:16:37 +02001591 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001592 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001593 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001594 return 1;
1595}
1596
Willy Tarreaua5e37562011-12-16 17:06:15 +01001597/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001598 * by the number of running servers and rounded up. If there is no running
1599 * server, we return twice the total, just as if we had half a running server.
1600 * This is more or less correct anyway, since we expect the last server to come
1601 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001602 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001603 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001604 */
1605static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001606smp_fetch_avg_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001607 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001608{
1609 int nbsrv;
1610
Willy Tarreau37406352012-04-23 16:16:37 +02001611 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001612 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001613 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001614
1615 if (px->srv_act)
1616 nbsrv = px->srv_act;
1617 else if (px->lbprm.fbck)
1618 nbsrv = 1;
1619 else
1620 nbsrv = px->srv_bck;
1621
1622 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001623 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001624 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001625 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001626
1627 return 1;
1628}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001629
Willy Tarreau34db1082012-04-19 17:16:54 +02001630/* set temp integer to the number of concurrent connections on the server in the backend.
1631 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1632 * undefined behaviour.
1633 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001634static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001635smp_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001636 const struct arg *args, struct sample *smp, const char *kw)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001637{
Willy Tarreauf853c462012-04-23 18:53:56 +02001638 smp->flags = SMP_F_VOL_TEST;
1639 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001640 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001641 return 1;
1642}
1643
Tait Clarridge7896d522012-12-05 21:39:31 -05001644/* set temp integer to the number of enabled servers on the proxy.
1645 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1646 * undefined behaviour.
1647 */
1648static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001649smp_fetch_srv_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001650 const struct arg *args, struct sample *smp, const char *kw)
Tait Clarridge7896d522012-12-05 21:39:31 -05001651{
1652 smp->flags = SMP_F_VOL_TEST;
1653 smp->type = SMP_T_UINT;
1654 smp->data.uint = read_freq_ctr(&args->data.srv->sess_per_sec);
1655 return 1;
1656}
1657
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001658
1659/* Note: must not be declared <const> as its list will be overwritten.
1660 * Please take care of keeping this list alphabetically sorted.
1661 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001662static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001663 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1664 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1665 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_UINT, SMP_USE_BKEND, },
1666 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1667 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1668 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1669 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1670 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1671 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_UINT, SMP_USE_SERVR, },
1672 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
1673 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1674 { /* END */ },
1675}};
1676
1677
Willy Tarreau61612d42012-04-19 18:42:05 +02001678/* Note: must not be declared <const> as its list will be overwritten.
1679 * Please take care of keeping this list alphabetically sorted.
1680 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001681static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001682 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001683}};
1684
1685
1686__attribute__((constructor))
1687static void __backend_init(void)
1688{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001689 sample_register_fetches(&smp_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001690 acl_register_keywords(&acl_kws);
1691}
1692
Willy Tarreaubaaee002006-06-26 02:48:02 +02001693/*
1694 * Local variables:
1695 * c-indent-level: 8
1696 * c-basic-offset: 8
1697 * End:
1698 */