blob: a8cf644c0d2704ea6299c2650679912348c8ad08 [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>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010029#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010033#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020034#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020036#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020037#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020038#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010039#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020040#include <proto/lb_fwlc.h>
41#include <proto/lb_fwrr.h>
42#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020043#include <proto/log.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010044#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010045#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020046#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020048#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020049#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010051#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010052#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020053#include <proto/stream.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020054#include <proto/raw_sock.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010055#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/task.h>
57
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050058int be_lastsession(const struct proxy *be)
59{
60 if (be->be_counters.last_sess)
61 return now.tv_sec - be->be_counters.last_sess;
62
63 return -1;
64}
65
Bhaskar98634f02013-10-29 23:30:51 -040066/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070067static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040068{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070069 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040070
71 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
72 case BE_LB_HFCN_DJB2:
73 hash = hash_djb2(key, len);
74 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010075 case BE_LB_HFCN_WT6:
76 hash = hash_wt6(key, len);
77 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010078 case BE_LB_HFCN_CRC32:
79 hash = hash_crc32(key, len);
80 break;
Bhaskar98634f02013-10-29 23:30:51 -040081 case BE_LB_HFCN_SDBM:
82 /* this is the default hash function */
83 default:
84 hash = hash_sdbm(key, len);
85 break;
86 }
87
88 return hash;
89}
90
Willy Tarreaubaaee002006-06-26 02:48:02 +020091/*
92 * This function recounts the number of usable active and backup servers for
93 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010094 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010095 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010096 * this.
Willy Tarreaubaaee002006-06-26 02:48:02 +020097 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020098void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +020099{
100 struct server *srv;
101
Willy Tarreau20697042007-11-15 23:26:18 +0100102 px->srv_act = px->srv_bck = 0;
103 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100104 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105 for (srv = px->srv; srv != NULL; srv = srv->next) {
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200106 if (!srv_is_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100107 continue;
108
Willy Tarreauc93cd162014-05-13 15:54:22 +0200109 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100110 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100111 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100112 px->lbprm.fbck = srv;
113 px->srv_bck++;
114 px->lbprm.tot_wbck += srv->eweight;
115 } else {
116 px->srv_act++;
117 px->lbprm.tot_wact += srv->eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 }
119 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100120}
Willy Tarreau20697042007-11-15 23:26:18 +0100121
Willy Tarreaub625a082007-11-26 01:15:43 +0100122/* This function simply updates the backend's tot_weight and tot_used values
123 * after servers weights have been updated. It is designed to be used after
124 * recount_servers() or equivalent.
125 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200126void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100127{
Willy Tarreau20697042007-11-15 23:26:18 +0100128 if (px->srv_act) {
129 px->lbprm.tot_weight = px->lbprm.tot_wact;
130 px->lbprm.tot_used = px->srv_act;
131 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100132 else if (px->lbprm.fbck) {
133 /* use only the first backup server */
134 px->lbprm.tot_weight = px->lbprm.fbck->eweight;
135 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100136 }
137 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100138 px->lbprm.tot_weight = px->lbprm.tot_wbck;
139 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100140 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100141}
142
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200143/*
144 * This function tries to find a running server for the proxy <px> following
145 * the source hash method. Depending on the number of active/backup servers,
146 * it will either look for active servers, or for backup servers.
147 * If any server is found, it will be returned. If no valid server is found,
148 * NULL is returned.
149 */
150struct server *get_server_sh(struct proxy *px, const char *addr, int len)
151{
152 unsigned int h, l;
153
154 if (px->lbprm.tot_weight == 0)
155 return NULL;
156
157 l = h = 0;
158
159 /* note: we won't hash if there's only one server left */
160 if (px->lbprm.tot_used == 1)
161 goto hash_done;
162
163 while ((l + sizeof (int)) <= len) {
164 h ^= ntohl(*(unsigned int *)(&addr[l]));
165 l += sizeof (int);
166 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500167 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100168 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200170 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
171 return chash_get_server_hash(px, h);
172 else
173 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200174}
175
176/*
177 * This function tries to find a running server for the proxy <px> following
178 * the URI hash method. In order to optimize cache hits, the hash computation
179 * ends at the question mark. Depending on the number of active/backup servers,
180 * it will either look for active servers, or for backup servers.
181 * If any server is found, it will be returned. If no valid server is found,
182 * NULL is returned.
183 *
184 * This code was contributed by Guillaume Dallaire, who also selected this hash
185 * algorithm out of a tens because it gave him the best results.
186 *
187 */
188struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
189{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700190 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200191 int c;
192 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400193 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200194
195 if (px->lbprm.tot_weight == 0)
196 return NULL;
197
198 /* note: we won't hash if there's only one server left */
199 if (px->lbprm.tot_used == 1)
200 goto hash_done;
201
202 if (px->uri_len_limit)
203 uri_len = MIN(uri_len, px->uri_len_limit);
204
Bhaskar98634f02013-10-29 23:30:51 -0400205 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200206 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200207 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208 if (c == '/') {
209 slashes++;
210 if (slashes == px->uri_dirs_depth1) /* depth+1 */
211 break;
212 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100213 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200214 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200215 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200216 }
Bhaskar98634f02013-10-29 23:30:51 -0400217
218 hash = gen_hash(px, start, (end - start));
219
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500220 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100221 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200222 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200223 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
224 return chash_get_server_hash(px, hash);
225 else
226 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200227}
228
Willy Tarreau01732802007-11-01 22:48:15 +0100229/*
230 * This function tries to find a running server for the proxy <px> following
231 * the URL parameter hash method. It looks for a specific parameter in the
232 * URL and hashes it to compute the server ID. This is useful to optimize
233 * performance by avoiding bounces between servers in contexts where sessions
234 * are shared but cookies are not usable. If the parameter is not found, NULL
235 * is returned. If any server is found, it will be returned. If no valid server
236 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100237 */
238struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
239{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700240 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400241 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200242 const char *p;
243 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100244 int plen;
245
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200246 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100247 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100248 return NULL;
249
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200250 if ((p = memchr(uri, '?', uri_len)) == NULL)
251 return NULL;
252
Willy Tarreau01732802007-11-01 22:48:15 +0100253 p++;
254
255 uri_len -= (p - uri);
256 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200257 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100258
259 while (uri_len > plen) {
260 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200261 if (params[plen] == '=') {
262 if (memcmp(params, px->url_param_name, plen) == 0) {
263 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100264 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200265 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100266 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400268 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200269 uri_len -= plen + 1;
270
Bhaskar98634f02013-10-29 23:30:51 -0400271 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100272 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400273 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100274 }
Bhaskar98634f02013-10-29 23:30:51 -0400275 hash = gen_hash(px, start, (end - start));
276
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500277 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100278 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400279
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200280 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
281 return chash_get_server_hash(px, hash);
282 else
283 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100284 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 }
286 /* skip to next parameter */
287 p = memchr(params, '&', uri_len);
288 if (!p)
289 return NULL;
290 p++;
291 uri_len -= (p - params);
292 params = p;
293 }
294 return NULL;
295}
296
297/*
298 * this does the same as the previous server_ph, but check the body contents
299 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200300struct server *get_server_ph_post(struct stream *s)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200301{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700302 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200303 struct http_txn *txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100304 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305 struct http_msg *msg = &txn->req;
306 struct proxy *px = s->be;
307 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200308 unsigned long len = http_body_bytes(msg);
Willy Tarreau0d090502014-04-17 20:31:44 +0200309 const char *params = b_ptr(req->buf, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100310 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400311 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200312
Willy Tarreau157dd632009-12-06 19:18:09 +0100313 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200314 return NULL;
315
Willy Tarreau157dd632009-12-06 19:18:09 +0100316 if (px->lbprm.tot_weight == 0)
317 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200318
319 while (len > plen) {
320 /* Look for the parameter name followed by an equal symbol */
321 if (params[plen] == '=') {
322 if (memcmp(params, px->url_param_name, plen) == 0) {
323 /* OK, we have the parameter here at <params>, and
324 * the value after the equal sign, at <p>
325 * skip the equal symbol
326 */
327 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400328 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 len -= plen + 1;
330
Bhaskar98634f02013-10-29 23:30:51 -0400331 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100333 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400334 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100335 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200336 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
337 break;
338 return NULL; /* oh, no; this is not uri-encoded.
339 * This body does not contain parameters.
340 */
341 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200342 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400343 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200344 /* should we break if vlen exceeds limit? */
345 }
Bhaskar98634f02013-10-29 23:30:51 -0400346 hash = gen_hash(px, start, (end - start));
347
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500348 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100349 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400350
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200351 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
352 return chash_get_server_hash(px, hash);
353 else
354 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200355 }
356 }
Willy Tarreau01732802007-11-01 22:48:15 +0100357 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100359 if (!p)
360 return NULL;
361 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 len -= (p - params);
363 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100364 }
365 return NULL;
366}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200368
Willy Tarreaubaaee002006-06-26 02:48:02 +0200369/*
Benoitaffb4812009-03-25 13:02:10 +0100370 * This function tries to find a running server for the proxy <px> following
371 * the Header parameter hash method. It looks for a specific parameter in the
372 * URL and hashes it to compute the server ID. This is useful to optimize
373 * performance by avoiding bounces between servers in contexts where sessions
374 * are shared but cookies are not usable. If the parameter is not found, NULL
375 * is returned. If any server is found, it will be returned. If no valid server
376 * is found, NULL is returned.
377 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200378struct server *get_server_hh(struct stream *s)
Benoitaffb4812009-03-25 13:02:10 +0100379{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700380 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200381 struct http_txn *txn = s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100382 struct proxy *px = s->be;
383 unsigned int plen = px->hh_len;
384 unsigned long len;
385 struct hdr_ctx ctx;
386 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400387 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100388
389 /* tot_weight appears to mean srv_count */
390 if (px->lbprm.tot_weight == 0)
391 return NULL;
392
Benoitaffb4812009-03-25 13:02:10 +0100393 ctx.idx = 0;
394
395 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100396 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 +0100397
398 /* if the header is not found or empty, let's fallback to round robin */
399 if (!ctx.idx || !ctx.vlen)
400 return NULL;
401
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200402 /* note: we won't hash if there's only one server left */
403 if (px->lbprm.tot_used == 1)
404 goto hash_done;
405
Benoitaffb4812009-03-25 13:02:10 +0100406 /* Found a the hh_name in the headers.
407 * we will compute the hash based on this value ctx.val.
408 */
409 len = ctx.vlen;
410 p = (char *)ctx.line + ctx.val;
411 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400412 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100413 } else {
414 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100415 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100416 /* special computation, use only main domain name, not tld/host
417 * going back from the end of string, start hashing at first
418 * dot stop at next.
419 * This is designed to work with the 'Host' header, and requires
420 * a special option to activate this.
421 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100422 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100423 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100424 if (dohash) {
425 /* Rewind the pointer until the previous char
426 * is a dot, this will allow to set the start
427 * position of the domain. */
428 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100429 break;
Benoitaffb4812009-03-25 13:02:10 +0100430 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100431 else if (*p == '.') {
432 /* The pointer is rewinded to the dot before the
433 * tld, we memorize the end of the domain and
434 * can enter the domain processing. */
435 end = p;
436 dohash = 1;
437 }
Benoitaffb4812009-03-25 13:02:10 +0100438 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100439 len--;
Benoitaffb4812009-03-25 13:02:10 +0100440 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100441 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400442 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100443 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500444 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100445 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200446 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200447 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
448 return chash_get_server_hash(px, hash);
449 else
450 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100451}
452
Willy Tarreau34db1082012-04-19 17:16:54 +0200453/* RDP Cookie HASH. */
Willy Tarreau87b09662015-04-03 00:22:06 +0200454struct server *get_server_rch(struct stream *s)
Emeric Brun736aa232009-06-30 17:56:00 +0200455{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700456 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200457 struct proxy *px = s->be;
458 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200459 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200460 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200461 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200462
463 /* tot_weight appears to mean srv_count */
464 if (px->lbprm.tot_weight == 0)
465 return NULL;
466
Willy Tarreau37406352012-04-23 16:16:37 +0200467 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200468
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100469 b_rew(s->req.buf, rewind = s->req.buf->o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200470
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200471 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreauf853c462012-04-23 18:53:56 +0200472 len = smp.data.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100473
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100474 b_adv(s->req.buf, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200475
Willy Tarreau37406352012-04-23 16:16:37 +0200476 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200477 return NULL;
478
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200479 /* note: we won't hash if there's only one server left */
480 if (px->lbprm.tot_used == 1)
481 goto hash_done;
482
Emeric Brun736aa232009-06-30 17:56:00 +0200483 /* Found a the hh_name in the headers.
484 * we will compute the hash based on this value ctx.val.
485 */
Bhaskar98634f02013-10-29 23:30:51 -0400486 hash = gen_hash(px, smp.data.str.str, len);
487
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500488 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100489 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200490 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200491 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
492 return chash_get_server_hash(px, hash);
493 else
494 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200495}
Benoitaffb4812009-03-25 13:02:10 +0100496
497/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200498 * This function applies the load-balancing algorithm to the stream, as
499 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200500 * 'assigned'.
501 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200502 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200503 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100504 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200505 * The function tries to keep the original connection slot if it reconnects to
506 * the same server, otherwise it releases it and tries to offer it.
507 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200508 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200509 *
510 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100511 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200512 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
513 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200514 * SRV_STATUS_INTERNAL for other unrecoverable errors.
515 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200516 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100517 * it does not need to be called anymore. This means that target_srv(&s->target)
518 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200519 *
520 */
521
Willy Tarreau87b09662015-04-03 00:22:06 +0200522int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200523{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200524 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200525 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100526 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200527 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100528
Simon Horman8effd3d2011-08-13 08:03:52 +0900529 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200530
Willy Tarreau7c669d72008-06-20 15:04:11 +0200531 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200532 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200533 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100534
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100535 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200536 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537
Willy Tarreau7c669d72008-06-20 15:04:11 +0200538 /* We have to release any connection slot before applying any LB algo,
539 * otherwise we may erroneously end up with no available slot.
540 */
541 if (conn_slot)
542 sess_change_server(s, NULL);
543
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100544 /* We will now try to find the good server and store it into <objt_server(s->target)>.
545 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200546 * as well as if no server is available (check error code).
547 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100548
Willy Tarreau827aee92011-03-10 16:55:02 +0100549 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100550 s->target = NULL;
Willy Tarreau350f4872014-11-28 14:42:25 +0100551 conn = objt_conn(s->si[1].end);
Willy Tarreau664beb82011-03-10 11:38:29 +0100552
Willy Tarreau068621e2013-12-23 15:11:25 +0100553 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100554 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100555 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Willy Tarreaueee5b512015-04-03 23:46:31 +0200556 ((s->txn && s->txn->flags & TX_PREFER_LAST) ||
Willy Tarreauc35362a2014-04-25 13:58:37 +0200557 ((s->be->options & PR_O_PREF_LAST) &&
558 (!s->be->max_ka_queue ||
559 server_has_room(__objt_server(conn->target)) ||
560 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200561 srv_is_usable(__objt_server(conn->target))) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200562 /* This stream was relying on a server in a previous request
Godbachf2dd68d2014-12-10 10:21:30 +0800563 * and the proxy has "option prefer-last-server" set, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100564 * let's try to reuse the same server.
565 */
566 srv = __objt_server(conn->target);
567 s->target = &srv->obj_type;
568 }
569 else if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200570 /* we must check if we have at least one server available */
571 if (!s->be->lbprm.tot_weight) {
572 err = SRV_STATUS_NOSRV;
573 goto out;
574 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200575
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200576 /* First check whether we need to fetch some data or simply call
577 * the LB lookup function. Only the hashing functions will need
578 * some input data in fact, and will support multiple algorithms.
579 */
580 switch (s->be->lbprm.algo & BE_LB_LKUP) {
581 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100582 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200583 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200584
Willy Tarreauf09c6602012-02-13 17:12:08 +0100585 case BE_LB_LKUP_FSTREE:
586 srv = fas_get_next_server(s->be, prev_srv);
587 break;
588
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200589 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100590 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200591 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200592
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200593 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200594 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200595 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200596 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100597 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200598 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100599 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200600 break;
601 }
602 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200603 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200604 err = SRV_STATUS_INTERNAL;
605 goto out;
606 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200607
608 switch (s->be->lbprm.algo & BE_LB_PARM) {
609 case BE_LB_HASH_SRC:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200610 conn = objt_conn(strm_sess(s)->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200611 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200612 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200613 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200614 4);
615 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200616 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200617 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200618 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200619 16);
620 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200621 else {
622 /* unknown IP family */
623 err = SRV_STATUS_INTERNAL;
624 goto out;
625 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200626 break;
627
628 case BE_LB_HASH_URI:
629 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200630 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100631 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100632 srv = get_server_uh(s->be,
Willy Tarreaueee5b512015-04-03 23:46:31 +0200633 b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
634 s->txn->req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200635 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200636
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200637 case BE_LB_HASH_PRM:
638 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200639 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100640 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100641
Willy Tarreau827aee92011-03-10 16:55:02 +0100642 srv = get_server_ph(s->be,
Willy Tarreaueee5b512015-04-03 23:46:31 +0200643 b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
644 s->txn->req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100645
Willy Tarreaueee5b512015-04-03 23:46:31 +0200646 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau827aee92011-03-10 16:55:02 +0100647 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200648 break;
Benoitaffb4812009-03-25 13:02:10 +0100649
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200650 case BE_LB_HASH_HDR:
651 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200652 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100653 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100654 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200655 break;
656
657 case BE_LB_HASH_RDP:
658 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100659 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200660 break;
661
662 default:
663 /* unknown balancing algorithm */
664 err = SRV_STATUS_INTERNAL;
665 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100666 }
Emeric Brun736aa232009-06-30 17:56:00 +0200667
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200668 /* If the hashing parameter was not found, let's fall
669 * back to round robin on the map.
670 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100671 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200672 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100673 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200674 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100675 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200676 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200677
678 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200679 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200680
Willy Tarreau7c669d72008-06-20 15:04:11 +0200681 default:
682 /* unknown balancing algorithm */
683 err = SRV_STATUS_INTERNAL;
684 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200685 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200686
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200688 err = SRV_STATUS_FULL;
689 goto out;
690 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100691 else if (srv != prev_srv) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100692 s->be->be_counters.cum_lbconn++;
Willy Tarreau827aee92011-03-10 16:55:02 +0100693 srv->counters.cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100694 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100695 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200696 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200697 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100698 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200699 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100700 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreau350f4872014-11-28 14:42:25 +0100701 (conn = objt_conn(s->si[1].end)) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200702 is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100703 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100704 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100705 }
706 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200707 err = SRV_STATUS_NOSRV;
708 goto out;
709 }
710
Willy Tarreaue7dff022015-04-03 01:14:29 +0200711 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200712 err = SRV_STATUS_OK;
713 out:
714
715 /* Either we take back our connection slot, or we offer it to someone
716 * else if we don't need it anymore.
717 */
718 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100719 if (conn_slot == srv) {
720 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200721 } else {
722 if (may_dequeue_tasks(conn_slot, s->be))
723 process_srv_queue(conn_slot);
724 }
725 }
726
727 out_err:
728 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200729}
730
Willy Tarreaubaaee002006-06-26 02:48:02 +0200731/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200732 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200733 * The address is taken from the currently assigned server, or from the
734 * dispatch or transparent address.
735 *
736 * It may return :
737 * SRV_STATUS_OK if everything is OK.
738 * SRV_STATUS_INTERNAL for other unrecoverable errors.
739 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200740 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200741 * not cleared, so it's to the caller to clear it if required.
742 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200743 * The caller is responsible for having already assigned a connection
744 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200745 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200746 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200747int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200748{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200749 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreau350f4872014-11-28 14:42:25 +0100750 struct connection *srv_conn = objt_conn(s->si[1].end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200751
Willy Tarreaubaaee002006-06-26 02:48:02 +0200752#ifdef DEBUG_FULL
753 fprintf(stderr,"assign_server_address : s=%p\n",s);
754#endif
755
Willy Tarreaue7dff022015-04-03 01:14:29 +0200756 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200757 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200758 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200759 return SRV_STATUS_INTERNAL;
760
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200761 srv_conn->addr.to = objt_server(s->target)->addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200762
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200763 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200764 /* if the server has no address, we use the same address
765 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200766 * locally on multiple addresses at once. Nothing is done
767 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200768 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200769 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200770
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200771 if (cli_conn->addr.to.ss_family == AF_INET) {
772 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
773 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
774 ((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 +0200775 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200776 }
777
Willy Tarreaubaaee002006-06-26 02:48:02 +0200778 /* if this server remaps proxied ports, we'll use
779 * the port the client connected to with an offset. */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200780 if ((objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100781 int base_port;
782
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200783 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100784
785 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200786 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100787
788 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200789 base_port += get_host_port(&srv_conn->addr.to);
790 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791 }
792 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200793 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200794 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200795 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200796 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200797 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200798 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200799 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200801 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
802 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100804 else if (s->be->options & PR_O_HTTP_PROXY) {
805 /* If HTTP PROXY option is set, then server is already assigned
806 * during incoming client request parsing. */
807 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100808 else {
809 /* no server and no LB algorithm ! */
810 return SRV_STATUS_INTERNAL;
811 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200812
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100813 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100814 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100815
Willy Tarreaue7dff022015-04-03 01:14:29 +0200816 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200817 return SRV_STATUS_OK;
818}
819
Willy Tarreau87b09662015-04-03 00:22:06 +0200820/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200822 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200823 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200824 * be called before any connection and after any retry or redispatch occurs.
825 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200826 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827 *
828 * Returns :
829 *
830 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100831 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 * SRV_STATUS_QUEUED if the connection has been queued.
833 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100834 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200835 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200836 * SRV_STATUS_INTERNAL for other unrecoverable errors.
837 *
838 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200839int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840{
841 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100842 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843 int err;
844
845 if (s->pend_pos)
846 return SRV_STATUS_INTERNAL;
847
Willy Tarreau7c669d72008-06-20 15:04:11 +0200848 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200849 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100850 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100851
Willy Tarreau7c669d72008-06-20 15:04:11 +0200852 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100853 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200854 /* This stream was previously assigned to a server. We have to
855 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200856 * - if the server changed :
857 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200858 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200859 * - increment srv->redispatches and be->redispatches
860 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100861 */
862
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100863 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200864 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
865 s->txn->flags &= ~TX_CK_MASK;
866 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200867 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200868 s->flags |= SF_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100869 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100870 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200871 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100872 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100873 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100874 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100875 }
876 }
877
Willy Tarreaubaaee002006-06-26 02:48:02 +0200878 switch (err) {
879 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200880 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100881 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100882 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200883 return SRV_STATUS_OK; /* dispatch or proxy mode */
884
885 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100886 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200887 return SRV_STATUS_OK;
888
Willy Tarreau87b09662015-04-03 00:22:06 +0200889 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200890 * connection slot yet. Either it is a redispatch, or it was
891 * assigned from persistence information (direct mode).
892 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200893 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200894 /* server scheduled for redirection, and already assigned. We
895 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100896 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100897 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100898 return SRV_STATUS_OK;
899 }
900
Willy Tarreau87b09662015-04-03 00:22:06 +0200901 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200902 * We know we have to queue it into the server's queue, so if a maxqueue
903 * is set on the server, we must also check that the server's queue is
904 * not full, in which case we have to return FULL.
905 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100906 if (srv->maxconn &&
907 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200908
Willy Tarreau827aee92011-03-10 16:55:02 +0100909 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200910 return SRV_STATUS_FULL;
911
Willy Tarreaubaaee002006-06-26 02:48:02 +0200912 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 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200918
919 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100920 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 return SRV_STATUS_OK;
922
923 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200924 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925 p = pendconn_add(s);
926 if (p)
927 return SRV_STATUS_QUEUED;
928 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200929 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930
931 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200932 return err;
933
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934 case SRV_STATUS_INTERNAL:
935 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200936
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 default:
938 return SRV_STATUS_INTERNAL;
939 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100940}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941
Willy Tarreaub1d67742010-03-29 19:36:59 +0200942/* If an explicit source binding is specified on the server and/or backend, and
943 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +0200944 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +0100945 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200946 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200947static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +0200948{
Pieter Baauwd551fb52013-05-08 22:49:23 +0200949#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100950 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100951 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200952 struct connection *cli_conn;
Willy Tarreau350f4872014-11-28 14:42:25 +0100953 struct connection *srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100954
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100955 if (srv && srv->conn_src.opts & CO_SRC_BIND)
956 src = &srv->conn_src;
957 else if (s->be->conn_src.opts & CO_SRC_BIND)
958 src = &s->be->conn_src;
959 else
960 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100961
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100962 switch (src->opts & CO_SRC_TPROXY_MASK) {
963 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200964 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100965 break;
966 case CO_SRC_TPROXY_CLI:
967 case CO_SRC_TPROXY_CIP:
968 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200969 cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200970 if (cli_conn)
971 srv_conn->addr.from = cli_conn->addr.from;
972 else
973 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100974 break;
975 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +0200976 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100977 char *vptr;
978 int vlen;
979 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100980
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100981 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200982 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
983 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
984 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100985
Willy Tarreaueee5b512015-04-03 23:46:31 +0200986 b_rew(s->req.buf, rewind = http_hdr_rewind(&s->txn->req));
987 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
988 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200989 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100990 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +0200991 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100992 b_adv(s->req.buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +0200993 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100994 break;
995 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200996 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200997 }
998#endif
999}
1000
1001
Willy Tarreaubaaee002006-06-26 02:48:02 +02001002/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001003 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001004 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001005 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001006 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001007 * - SF_ERR_NONE if everything's OK
1008 * - SF_ERR_SRVTO if there are no more servers
1009 * - SF_ERR_SRVCL if the connection was refused by the server
1010 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1011 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1012 * - SF_ERR_INTERNAL for any other purely internal errors
1013 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001014 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001015 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001016 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001017int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001018{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001019 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001020 struct connection *srv_conn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001021 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001022 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001023 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001024
Willy Tarreau350f4872014-11-28 14:42:25 +01001025 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau34601a82013-12-15 16:33:46 +01001026 if (srv_conn)
1027 reuse = s->target == srv_conn->target;
1028
1029 if (reuse) {
1030 /* Disable connection reuse if a dynamic source is used.
1031 * As long as we don't share connections between servers,
1032 * we don't need to disable connection reuse on no-idempotent
1033 * requests nor when PROXY protocol is used.
1034 */
1035 srv = objt_server(s->target);
1036 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1037 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1038 reuse = 0;
1039 }
1040 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1041 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1042 reuse = 0;
1043 }
1044 }
1045
Willy Tarreau350f4872014-11-28 14:42:25 +01001046 srv_conn = si_alloc_conn(&s->si[1], reuse);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001047 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001048 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001049
Willy Tarreaue7dff022015-04-03 01:14:29 +02001050 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001051 err = assign_server_address(s);
1052 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001053 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001054 }
1055
Willy Tarreauff605db2013-12-20 11:09:51 +01001056 if (!conn_xprt_ready(srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001057 /* the target was only on the stream, assign it to the SI now */
Willy Tarreauff605db2013-12-20 11:09:51 +01001058 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001059
Willy Tarreauff605db2013-12-20 11:09:51 +01001060 /* set the correct protocol on the output stream interface */
1061 if (objt_server(s->target)) {
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +01001062 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), objt_server(s->target)->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001063 }
1064 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1065 /* proxies exclusively run on raw_sock right now */
1066 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), &raw_sock);
Willy Tarreau350f4872014-11-28 14:42:25 +01001067 if (!objt_conn(s->si[1].end) || !objt_conn(s->si[1].end)->ctrl)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001068 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001069 }
1070 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001071 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001072
Willy Tarreauff605db2013-12-20 11:09:51 +01001073 /* process the case where the server requires the PROXY protocol to be sent */
1074 srv_conn->send_proxy_ofs = 0;
David Safb76832014-05-08 23:42:08 -04001075 if (objt_server(s->target) && objt_server(s->target)->pp_opts) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001076 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001077 cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreauff605db2013-12-20 11:09:51 +01001078 if (cli_conn)
1079 conn_get_to_addr(cli_conn);
1080 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001081
Willy Tarreau350f4872014-11-28 14:42:25 +01001082 si_attach_conn(&s->si[1], srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001083
Willy Tarreauff605db2013-12-20 11:09:51 +01001084 assign_tproxy_address(s);
1085 }
1086 else {
1087 /* the connection is being reused, just re-attach it */
Willy Tarreau350f4872014-11-28 14:42:25 +01001088 si_attach_conn(&s->si[1], srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001089 s->flags |= SF_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001090 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001091
William Lallemandb7ff6a32012-03-02 14:35:21 +01001092 /* flag for logging source ip/port */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001093 if (strm_sess(s)->fe->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001094 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001095
Willy Tarreau14f8e862012-08-30 22:23:13 +02001096 /* disable lingering */
1097 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001098 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001099
Willy Tarreau350f4872014-11-28 14:42:25 +01001100 err = si_connect(&s->si[1]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001101
Willy Tarreaue7dff022015-04-03 01:14:29 +02001102 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001103 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001104
Willy Tarreau14f8e862012-08-30 22:23:13 +02001105 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001106 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001107
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001108 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001109 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001110 s->flags |= SF_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001111 srv->cur_sess++;
1112 if (srv->cur_sess > srv->counters.cur_sess_max)
1113 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001114 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001115 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001116 }
1117
Willy Tarreaue7dff022015-04-03 01:14:29 +02001118 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001119}
1120
1121
Willy Tarreaubaaee002006-06-26 02:48:02 +02001122/* This function performs the "redispatch" part of a connection attempt. It
1123 * will assign a server if required, queue the connection if required, and
1124 * handle errors that might arise at this level. It can change the server
1125 * state. It will return 1 if it encounters an error, switches the server
1126 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1127 * that the connection is ready to use.
1128 */
1129
Willy Tarreau87b09662015-04-03 00:22:06 +02001130int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001131{
Willy Tarreau827aee92011-03-10 16:55:02 +01001132 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001133 int conn_err;
1134
1135 /* We know that we don't have any connection pending, so we will
1136 * try to get a new one, and wait in this state if it's queued
1137 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001138 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001139 conn_err = assign_server_and_queue(s);
1140 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001141
Willy Tarreaubaaee002006-06-26 02:48:02 +02001142 switch (conn_err) {
1143 case SRV_STATUS_OK:
1144 break;
1145
Willy Tarreau7c669d72008-06-20 15:04:11 +02001146 case SRV_STATUS_FULL:
1147 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1148 * and we can redispatch to another server, or it is not and we return
1149 * 503. This only makes sense in DIRECT mode however, because normal LB
1150 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001151 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001152 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001153 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001154 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001155 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001156 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001157 goto redispatch;
1158 }
1159
Willy Tarreau350f4872014-11-28 14:42:25 +01001160 if (!s->si[1].err_type) {
1161 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001162 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001163
Willy Tarreau827aee92011-03-10 16:55:02 +01001164 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001165 s->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001166 return 1;
1167
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001169 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001170 if (!s->si[1].err_type) {
1171 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001172 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001173
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001174 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001175 return 1;
1176
1177 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001178 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1179 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001180 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001181 return 1;
1182
Willy Tarreaubaaee002006-06-26 02:48:02 +02001183 case SRV_STATUS_INTERNAL:
1184 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001185 if (!s->si[1].err_type) {
1186 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001187 }
1188
Willy Tarreau827aee92011-03-10 16:55:02 +01001189 if (srv)
1190 srv_inc_sess_ctr(srv);
1191 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001192 srv_set_sess_last(srv);
1193 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001194 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001195 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001196
Willy Tarreau87b09662015-04-03 00:22:06 +02001197 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001198 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001199 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001200 return 1;
1201 }
1202 /* if we get here, it's because we got SRV_STATUS_OK, which also
1203 * means that the connection has not been queued.
1204 */
1205 return 0;
1206}
1207
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001208/* sends a log message when a backend goes down, and also sets last
1209 * change date.
1210 */
1211void set_backend_down(struct proxy *be)
1212{
1213 be->last_change = now.tv_sec;
1214 be->down_trans++;
1215
1216 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
1217 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1218}
1219
Willy Tarreau87b09662015-04-03 00:22:06 +02001220/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001221 * tries to extract an RDP cookie from the request buffer, and look for the
1222 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001223 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001224 * list. Nothing is performed if a server was already assigned.
1225 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001226int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001227{
1228 struct proxy *px = s->be;
1229 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001230 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001231 struct server *srv = px->srv;
1232 struct sockaddr_in addr;
1233 char *p;
1234
Willy Tarreau87b09662015-04-03 00:22:06 +02001235 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001236 now_ms, __FUNCTION__,
1237 s,
1238 req,
1239 req->rex, req->wex,
1240 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001241 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001242 req->analysers);
1243
Willy Tarreaue7dff022015-04-03 01:14:29 +02001244 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001245 goto no_cookie;
1246
Willy Tarreau37406352012-04-23 16:16:37 +02001247 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001248
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001249 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreauf853c462012-04-23 18:53:56 +02001250 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001251 goto no_cookie;
1252
1253 memset(&addr, 0, sizeof(addr));
1254 addr.sin_family = AF_INET;
1255
Willy Tarreau664092c2011-12-16 19:11:42 +01001256 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001257 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001258 if (*p != '.')
1259 goto no_cookie;
1260 p++;
1261 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1262 if (*p != '.')
1263 goto no_cookie;
1264
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001265 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001266 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001267 if (srv->addr.ss_family == AF_INET &&
1268 memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001269 if ((srv->state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001270 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001271 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001272 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001273 break;
1274 }
1275 }
1276 srv = srv->next;
1277 }
1278
1279no_cookie:
1280 req->analysers &= ~an_bit;
1281 req->analyse_exp = TICK_ETERNITY;
1282 return 1;
1283}
1284
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001285int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001286 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001287 return px->down_time;
1288
1289 return now.tv_sec - px->last_change + px->down_time;
1290}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001291
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001292/*
1293 * This function returns a string containing the balancing
1294 * mode of the proxy in a format suitable for stats.
1295 */
1296
1297const char *backend_lb_algo_str(int algo) {
1298
1299 if (algo == BE_LB_ALGO_RR)
1300 return "roundrobin";
1301 else if (algo == BE_LB_ALGO_SRR)
1302 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001303 else if (algo == BE_LB_ALGO_FAS)
1304 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001305 else if (algo == BE_LB_ALGO_LC)
1306 return "leastconn";
1307 else if (algo == BE_LB_ALGO_SH)
1308 return "source";
1309 else if (algo == BE_LB_ALGO_UH)
1310 return "uri";
1311 else if (algo == BE_LB_ALGO_PH)
1312 return "url_param";
1313 else if (algo == BE_LB_ALGO_HH)
1314 return "hdr";
1315 else if (algo == BE_LB_ALGO_RCH)
1316 return "rdp-cookie";
1317 else
1318 return NULL;
1319}
1320
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001321/* This function parses a "balance" statement in a backend section describing
1322 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001323 * returns -1, it will write an error message into the <err> buffer which will
1324 * automatically be allocated and must be passed as NULL. The trailing '\n'
1325 * will not be written. The function must be called with <args> pointing to the
1326 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001327 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001328int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001329{
1330 if (!*(args[0])) {
1331 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001332 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1333 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001334 return 0;
1335 }
1336
1337 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001338 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1339 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001340 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001341 else if (!strcmp(args[0], "static-rr")) {
1342 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1343 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1344 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001345 else if (!strcmp(args[0], "first")) {
1346 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1347 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1348 }
Willy Tarreau51406232008-03-10 22:04:20 +01001349 else if (!strcmp(args[0], "leastconn")) {
1350 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1351 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1352 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001353 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001354 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1355 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001356 }
1357 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001358 int arg = 1;
1359
Willy Tarreau31682232007-11-29 15:38:04 +01001360 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1361 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001362
Oskar Stolc8dc41842012-05-19 10:19:54 +01001363 curproxy->uri_whole = 0;
1364
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001365 while (*args[arg]) {
1366 if (!strcmp(args[arg], "len")) {
1367 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001368 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001369 return -1;
1370 }
1371 curproxy->uri_len_limit = atoi(args[arg+1]);
1372 arg += 2;
1373 }
1374 else if (!strcmp(args[arg], "depth")) {
1375 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001376 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001377 return -1;
1378 }
1379 /* hint: we store the position of the ending '/' (depth+1) so
1380 * that we avoid a comparison while computing the hash.
1381 */
1382 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1383 arg += 2;
1384 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001385 else if (!strcmp(args[arg], "whole")) {
1386 curproxy->uri_whole = 1;
1387 arg += 1;
1388 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001389 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001390 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001391 return -1;
1392 }
1393 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001394 }
Willy Tarreau01732802007-11-01 22:48:15 +01001395 else if (!strcmp(args[0], "url_param")) {
1396 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001397 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001398 return -1;
1399 }
Willy Tarreau31682232007-11-29 15:38:04 +01001400 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1401 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001402
1403 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001404 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001405 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001406 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001407 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001408 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001409 return -1;
1410 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001411 }
Benoitaffb4812009-03-25 13:02:10 +01001412 }
1413 else if (!strncmp(args[0], "hdr(", 4)) {
1414 const char *beg, *end;
1415
1416 beg = args[0] + 4;
1417 end = strchr(beg, ')');
1418
1419 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001420 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001421 return -1;
1422 }
1423
1424 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1425 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1426
1427 free(curproxy->hh_name);
1428 curproxy->hh_len = end - beg;
1429 curproxy->hh_name = my_strndup(beg, end - beg);
1430 curproxy->hh_match_domain = 0;
1431
1432 if (*args[1]) {
1433 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001434 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001435 return -1;
1436 }
1437 curproxy->hh_match_domain = 1;
1438 }
Emeric Brun736aa232009-06-30 17:56:00 +02001439 }
1440 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1441 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1442 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1443
1444 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1445 const char *beg, *end;
1446
1447 beg = args[0] + 11;
1448 end = strchr(beg, ')');
1449
1450 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001451 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001452 return -1;
1453 }
1454
1455 free(curproxy->hh_name);
1456 curproxy->hh_name = my_strndup(beg, end - beg);
1457 curproxy->hh_len = end - beg;
1458 }
1459 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1460 free(curproxy->hh_name);
1461 curproxy->hh_name = strdup("mstshash");
1462 curproxy->hh_len = strlen(curproxy->hh_name);
1463 }
1464 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001465 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001466 return -1;
1467 }
Willy Tarreau01732802007-11-01 22:48:15 +01001468 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001469 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001470 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 +01001471 return -1;
1472 }
1473 return 0;
1474}
1475
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001476
1477/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001478/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001479/************************************************************************/
1480
Willy Tarreau34db1082012-04-19 17:16:54 +02001481/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001482 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001483 * undefined behaviour.
1484 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001485static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001486smp_fetch_nbsrv(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001487 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001488{
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_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001491 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001492
1493 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001494 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001495 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001496 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001497 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001498 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001499
1500 return 1;
1501}
1502
Willy Tarreau37406352012-04-23 16:16:37 +02001503/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001504 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001505 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1506 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001507 */
1508static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001509smp_fetch_srv_is_up(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001510 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001511{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001512 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001513
Willy Tarreau37406352012-04-23 16:16:37 +02001514 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001515 smp->type = SMP_T_BOOL;
Willy Tarreau20125212014-05-13 19:44:56 +02001516 if (!(srv->admin & SRV_ADMF_MAINT) &&
Willy Tarreau892337c2014-05-13 23:41:20 +02001517 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->state != SRV_ST_STOPPED)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001518 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001519 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001520 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001521 return 1;
1522}
1523
Willy Tarreau34db1082012-04-19 17:16:54 +02001524/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001525 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001526 * undefined behaviour.
1527 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001528static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001529smp_fetch_connslots(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001530 const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001531{
1532 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001533
Willy Tarreau37406352012-04-23 16:16:37 +02001534 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001535 smp->type = SMP_T_UINT;
1536 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001537
Willy Tarreau24e32d82012-04-23 23:55:44 +02001538 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001539 if (iterator->state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001540 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001541
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001542 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001543 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001544 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001545 return 1;
1546 }
1547
Willy Tarreauf853c462012-04-23 18:53:56 +02001548 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001549 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001550 }
1551
1552 return 1;
1553}
1554
Willy Tarreaua5e37562011-12-16 17:06:15 +01001555/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001556static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001557smp_fetch_be_id(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001558 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001559{
Willy Tarreauf853c462012-04-23 18:53:56 +02001560 smp->flags = SMP_F_VOL_TXN;
1561 smp->type = SMP_T_UINT;
1562 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001563 return 1;
1564}
1565
Willy Tarreaua5e37562011-12-16 17:06:15 +01001566/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001567static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001568smp_fetch_srv_id(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001569 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001570{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001571 if (!objt_server(l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001572 return 0;
1573
Willy Tarreauf853c462012-04-23 18:53:56 +02001574 smp->type = SMP_T_UINT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001575 smp->data.uint = objt_server(l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001576
1577 return 1;
1578}
1579
Willy Tarreau34db1082012-04-19 17:16:54 +02001580/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001581 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001582 * undefined behaviour.
1583 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001584static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001585smp_fetch_be_sess_rate(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001586 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001587{
Willy Tarreau37406352012-04-23 16:16:37 +02001588 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001589 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001590 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001591 return 1;
1592}
1593
Willy Tarreau34db1082012-04-19 17:16:54 +02001594/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001595 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001596 * undefined behaviour.
1597 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001598static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001599smp_fetch_be_conn(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001600 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001601{
Willy Tarreau37406352012-04-23 16:16:37 +02001602 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001603 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001604 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001605 return 1;
1606}
1607
Willy Tarreau34db1082012-04-19 17:16:54 +02001608/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001609 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001610 * undefined behaviour.
1611 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001612static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001613smp_fetch_queue_size(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001614 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001615{
Willy Tarreau37406352012-04-23 16:16:37 +02001616 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001617 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001618 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001619 return 1;
1620}
1621
Willy Tarreaua5e37562011-12-16 17:06:15 +01001622/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001623 * by the number of running servers and rounded up. If there is no running
1624 * server, we return twice the total, just as if we had half a running server.
1625 * This is more or less correct anyway, since we expect the last server to come
1626 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001627 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001628 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001629 */
1630static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001631smp_fetch_avg_queue_size(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001632 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001633{
1634 int nbsrv;
1635
Willy Tarreau37406352012-04-23 16:16:37 +02001636 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001637 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001638 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001639
1640 if (px->srv_act)
1641 nbsrv = px->srv_act;
1642 else if (px->lbprm.fbck)
1643 nbsrv = 1;
1644 else
1645 nbsrv = px->srv_bck;
1646
1647 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001648 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001649 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001650 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001651
1652 return 1;
1653}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001654
Willy Tarreau34db1082012-04-19 17:16:54 +02001655/* set temp integer to the number of concurrent connections on the server in the backend.
1656 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1657 * undefined behaviour.
1658 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001659static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001660smp_fetch_srv_conn(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001661 const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001662{
Willy Tarreauf853c462012-04-23 18:53:56 +02001663 smp->flags = SMP_F_VOL_TEST;
1664 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001665 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001666 return 1;
1667}
1668
Tait Clarridge7896d522012-12-05 21:39:31 -05001669/* set temp integer to the number of enabled servers on the proxy.
1670 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1671 * undefined behaviour.
1672 */
1673static int
Willy Tarreau87b09662015-04-03 00:22:06 +02001674smp_fetch_srv_sess_rate(struct proxy *px, struct stream *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01001675 const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05001676{
1677 smp->flags = SMP_F_VOL_TEST;
1678 smp->type = SMP_T_UINT;
1679 smp->data.uint = read_freq_ctr(&args->data.srv->sess_per_sec);
1680 return 1;
1681}
1682
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001683
1684/* Note: must not be declared <const> as its list will be overwritten.
1685 * Please take care of keeping this list alphabetically sorted.
1686 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001687static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001688 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1689 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1690 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_UINT, SMP_USE_BKEND, },
1691 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1692 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1693 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1694 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1695 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1696 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_UINT, SMP_USE_SERVR, },
1697 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
1698 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1699 { /* END */ },
1700}};
1701
1702
Willy Tarreau61612d42012-04-19 18:42:05 +02001703/* Note: must not be declared <const> as its list will be overwritten.
1704 * Please take care of keeping this list alphabetically sorted.
1705 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001706static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001707 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001708}};
1709
1710
1711__attribute__((constructor))
1712static void __backend_init(void)
1713{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001714 sample_register_fetches(&smp_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001715 acl_register_keywords(&acl_kws);
1716}
1717
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718/*
1719 * Local variables:
1720 * c-indent-level: 8
1721 * c-basic-offset: 8
1722 * End:
1723 */