blob: cde3c2f40c8c30fdc4a11f7890a27f483751671d [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 Tarreau0108d902018-11-25 19:14:37 +010027#include <common/initcall.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020028#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010030#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreaubaaee002006-06-26 02:48:02 +020032#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010034#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020035#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020038#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020039#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010040#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020041#include <proto/lb_fwlc.h>
42#include <proto/lb_fwrr.h>
43#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020044#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020045#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010046#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010047#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020048#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020050#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020051#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010053#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010054#include <proto/server.h>
Olivier Houchard00cf70f2018-11-30 17:24:55 +010055#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020056#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010057#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/task.h>
59
Willy Tarreau732eac42015-07-09 11:40:25 +020060#ifdef USE_OPENSSL
61#include <proto/ssl_sock.h>
62#endif /* USE_OPENSSL */
63
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050064int be_lastsession(const struct proxy *be)
65{
66 if (be->be_counters.last_sess)
67 return now.tv_sec - be->be_counters.last_sess;
68
69 return -1;
70}
71
Bhaskar98634f02013-10-29 23:30:51 -040072/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040074{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040076
77 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
78 case BE_LB_HFCN_DJB2:
79 hash = hash_djb2(key, len);
80 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010081 case BE_LB_HFCN_WT6:
82 hash = hash_wt6(key, len);
83 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010084 case BE_LB_HFCN_CRC32:
85 hash = hash_crc32(key, len);
86 break;
Bhaskar98634f02013-10-29 23:30:51 -040087 case BE_LB_HFCN_SDBM:
88 /* this is the default hash function */
89 default:
90 hash = hash_sdbm(key, len);
91 break;
92 }
93
94 return hash;
95}
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097/*
98 * This function recounts the number of usable active and backup servers for
99 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100101 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 * This functions is designed to be called before server's weight and state
104 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200105 *
106 * threads: this is the caller responsibility to lock data. For now, this
107 * function is called from lb modules, so it should be ok. But if you need to
108 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200110void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111{
112 struct server *srv;
113
Willy Tarreau20697042007-11-15 23:26:18 +0100114 px->srv_act = px->srv_bck = 0;
115 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 continue;
120
Willy Tarreauc93cd162014-05-13 15:54:22 +0200121 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100123 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 px->lbprm.fbck = srv;
125 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400126 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200127 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 } else {
129 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400130 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200131 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 }
133 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100134}
Willy Tarreau20697042007-11-15 23:26:18 +0100135
Willy Tarreaub625a082007-11-26 01:15:43 +0100136/* This function simply updates the backend's tot_weight and tot_used values
137 * after servers weights have been updated. It is designed to be used after
138 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200139 *
140 * threads: this is the caller responsibility to lock data. For now, this
141 * function is called from lb modules, so it should be ok. But if you need to
142 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100143 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200144void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100145{
Willy Tarreau20697042007-11-15 23:26:18 +0100146 if (px->srv_act) {
147 px->lbprm.tot_weight = px->lbprm.tot_wact;
148 px->lbprm.tot_used = px->srv_act;
149 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 else if (px->lbprm.fbck) {
151 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100154 }
155 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100156 px->lbprm.tot_weight = px->lbprm.tot_wbck;
157 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100158 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100159}
160
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200161/*
162 * This function tries to find a running server for the proxy <px> following
163 * the source hash method. Depending on the number of active/backup servers,
164 * it will either look for active servers, or for backup servers.
165 * If any server is found, it will be returned. If no valid server is found,
166 * NULL is returned.
167 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200168static struct server *get_server_sh(struct proxy *px, const char *addr, int len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169{
170 unsigned int h, l;
171
172 if (px->lbprm.tot_weight == 0)
173 return NULL;
174
175 l = h = 0;
176
177 /* note: we won't hash if there's only one server left */
178 if (px->lbprm.tot_used == 1)
179 goto hash_done;
180
181 while ((l + sizeof (int)) <= len) {
182 h ^= ntohl(*(unsigned int *)(&addr[l]));
183 l += sizeof (int);
184 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500185 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100186 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200188 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
189 return chash_get_server_hash(px, h);
190 else
191 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200192}
193
194/*
195 * This function tries to find a running server for the proxy <px> following
196 * the URI hash method. In order to optimize cache hits, the hash computation
197 * ends at the question mark. Depending on the number of active/backup servers,
198 * it will either look for active servers, or for backup servers.
199 * If any server is found, it will be returned. If no valid server is found,
200 * NULL is returned.
201 *
202 * This code was contributed by Guillaume Dallaire, who also selected this hash
203 * algorithm out of a tens because it gave him the best results.
204 *
205 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200206static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200207{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700208 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209 int c;
210 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400211 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200212
213 if (px->lbprm.tot_weight == 0)
214 return NULL;
215
216 /* note: we won't hash if there's only one server left */
217 if (px->lbprm.tot_used == 1)
218 goto hash_done;
219
220 if (px->uri_len_limit)
221 uri_len = MIN(uri_len, px->uri_len_limit);
222
Bhaskar98634f02013-10-29 23:30:51 -0400223 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200224 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200225 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200226 if (c == '/') {
227 slashes++;
228 if (slashes == px->uri_dirs_depth1) /* depth+1 */
229 break;
230 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100231 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200232 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200233 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200234 }
Bhaskar98634f02013-10-29 23:30:51 -0400235
236 hash = gen_hash(px, start, (end - start));
237
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500238 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100239 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200240 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200241 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
242 return chash_get_server_hash(px, hash);
243 else
244 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200245}
246
Christopher Faulet5b517552017-06-09 14:17:53 +0200247/*
Willy Tarreau01732802007-11-01 22:48:15 +0100248 * This function tries to find a running server for the proxy <px> following
249 * the URL parameter hash method. It looks for a specific parameter in the
250 * URL and hashes it to compute the server ID. This is useful to optimize
251 * performance by avoiding bounces between servers in contexts where sessions
252 * are shared but cookies are not usable. If the parameter is not found, NULL
253 * is returned. If any server is found, it will be returned. If no valid server
254 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100255 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200256static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
Willy Tarreau01732802007-11-01 22:48:15 +0100257{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700258 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400259 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200260 const char *p;
261 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100262 int plen;
263
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200264 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100265 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100266 return NULL;
267
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200268 if ((p = memchr(uri, '?', uri_len)) == NULL)
269 return NULL;
270
Willy Tarreau01732802007-11-01 22:48:15 +0100271 p++;
272
273 uri_len -= (p - uri);
274 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200275 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100276
277 while (uri_len > plen) {
278 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200279 if (params[plen] == '=') {
280 if (memcmp(params, px->url_param_name, plen) == 0) {
281 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100282 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100284 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400286 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200287 uri_len -= plen + 1;
288
Bhaskar98634f02013-10-29 23:30:51 -0400289 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100290 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400291 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100292 }
Bhaskar98634f02013-10-29 23:30:51 -0400293 hash = gen_hash(px, start, (end - start));
294
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500295 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100296 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400297
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200298 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
299 return chash_get_server_hash(px, hash);
300 else
301 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100302 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200303 }
304 /* skip to next parameter */
305 p = memchr(params, '&', uri_len);
306 if (!p)
307 return NULL;
308 p++;
309 uri_len -= (p - params);
310 params = p;
311 }
312 return NULL;
313}
314
315/*
316 * this does the same as the previous server_ph, but check the body contents
317 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200318static struct server *get_server_ph_post(struct stream *s)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200319{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700320 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200321 struct http_txn *txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100322 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200323 struct http_msg *msg = &txn->req;
324 struct proxy *px = s->be;
325 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200326 unsigned long len = http_body_bytes(msg);
Willy Tarreau188e2302018-06-15 11:11:53 +0200327 const char *params = c_ptr(req, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100328 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400329 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200330
Willy Tarreau157dd632009-12-06 19:18:09 +0100331 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 return NULL;
333
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200334 if (len > b_wrap(&req->buf) - p)
335 len = b_wrap(&req->buf) - p;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200336
Willy Tarreau157dd632009-12-06 19:18:09 +0100337 if (px->lbprm.tot_weight == 0)
338 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200339
340 while (len > plen) {
341 /* Look for the parameter name followed by an equal symbol */
342 if (params[plen] == '=') {
343 if (memcmp(params, px->url_param_name, plen) == 0) {
344 /* OK, we have the parameter here at <params>, and
345 * the value after the equal sign, at <p>
346 * skip the equal symbol
347 */
348 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400349 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200350 len -= plen + 1;
351
Bhaskar98634f02013-10-29 23:30:51 -0400352 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200353 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100354 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400355 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100356 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200357 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
358 break;
359 return NULL; /* oh, no; this is not uri-encoded.
360 * This body does not contain parameters.
361 */
362 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200363 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400364 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200365 /* should we break if vlen exceeds limit? */
366 }
Bhaskar98634f02013-10-29 23:30:51 -0400367 hash = gen_hash(px, start, (end - start));
368
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500369 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100370 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400371
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200372 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
373 return chash_get_server_hash(px, hash);
374 else
375 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200376 }
377 }
Willy Tarreau01732802007-11-01 22:48:15 +0100378 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200379 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100380 if (!p)
381 return NULL;
382 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200383 len -= (p - params);
384 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100385 }
386 return NULL;
387}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200388
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200389
Willy Tarreaubaaee002006-06-26 02:48:02 +0200390/*
Benoitaffb4812009-03-25 13:02:10 +0100391 * This function tries to find a running server for the proxy <px> following
392 * the Header parameter hash method. It looks for a specific parameter in the
393 * URL and hashes it to compute the server ID. This is useful to optimize
394 * performance by avoiding bounces between servers in contexts where sessions
395 * are shared but cookies are not usable. If the parameter is not found, NULL
396 * is returned. If any server is found, it will be returned. If no valid server
397 * is found, NULL is returned.
398 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200399static struct server *get_server_hh(struct stream *s)
Benoitaffb4812009-03-25 13:02:10 +0100400{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700401 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200402 struct http_txn *txn = s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100403 struct proxy *px = s->be;
404 unsigned int plen = px->hh_len;
405 unsigned long len;
406 struct hdr_ctx ctx;
407 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400408 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100409
410 /* tot_weight appears to mean srv_count */
411 if (px->lbprm.tot_weight == 0)
412 return NULL;
413
Benoitaffb4812009-03-25 13:02:10 +0100414 ctx.idx = 0;
415
416 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau188e2302018-06-15 11:11:53 +0200417 http_find_header2(px->hh_name, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
Benoitaffb4812009-03-25 13:02:10 +0100418
419 /* if the header is not found or empty, let's fallback to round robin */
420 if (!ctx.idx || !ctx.vlen)
421 return NULL;
422
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200423 /* note: we won't hash if there's only one server left */
424 if (px->lbprm.tot_used == 1)
425 goto hash_done;
426
Benoitaffb4812009-03-25 13:02:10 +0100427 /* Found a the hh_name in the headers.
428 * we will compute the hash based on this value ctx.val.
429 */
430 len = ctx.vlen;
431 p = (char *)ctx.line + ctx.val;
432 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400433 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100434 } else {
435 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100436 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100437 /* special computation, use only main domain name, not tld/host
438 * going back from the end of string, start hashing at first
439 * dot stop at next.
440 * This is designed to work with the 'Host' header, and requires
441 * a special option to activate this.
442 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100443 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100444 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100445 if (dohash) {
446 /* Rewind the pointer until the previous char
447 * is a dot, this will allow to set the start
448 * position of the domain. */
449 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100450 break;
Benoitaffb4812009-03-25 13:02:10 +0100451 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100452 else if (*p == '.') {
453 /* The pointer is rewinded to the dot before the
454 * tld, we memorize the end of the domain and
455 * can enter the domain processing. */
456 end = p;
457 dohash = 1;
458 }
Benoitaffb4812009-03-25 13:02:10 +0100459 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100460 len--;
Benoitaffb4812009-03-25 13:02:10 +0100461 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100462 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400463 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100464 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500465 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100466 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200467 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200468 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
469 return chash_get_server_hash(px, hash);
470 else
471 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100472}
473
Willy Tarreau34db1082012-04-19 17:16:54 +0200474/* RDP Cookie HASH. */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200475static struct server *get_server_rch(struct stream *s)
Emeric Brun736aa232009-06-30 17:56:00 +0200476{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700477 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200478 struct proxy *px = s->be;
479 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200480 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200481 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200482 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200483
484 /* tot_weight appears to mean srv_count */
485 if (px->lbprm.tot_weight == 0)
486 return NULL;
487
Willy Tarreau37406352012-04-23 16:16:37 +0200488 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200489
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200490 rewind = co_data(&s->req);
491 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200492
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200493 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200494 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100495
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200496 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200497
Willy Tarreau37406352012-04-23 16:16:37 +0200498 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200499 return NULL;
500
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200501 /* note: we won't hash if there's only one server left */
502 if (px->lbprm.tot_used == 1)
503 goto hash_done;
504
Emeric Brun736aa232009-06-30 17:56:00 +0200505 /* Found a the hh_name in the headers.
506 * we will compute the hash based on this value ctx.val.
507 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200508 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400509
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500510 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100511 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200512 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200513 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
514 return chash_get_server_hash(px, hash);
515 else
516 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200517}
Christopher Faulet5b517552017-06-09 14:17:53 +0200518
Willy Tarreau760e81d2018-05-03 07:20:40 +0200519/* random value */
520static struct server *get_server_rnd(struct stream *s)
521{
522 unsigned int hash = 0;
523 struct proxy *px = s->be;
524
525 /* tot_weight appears to mean srv_count */
526 if (px->lbprm.tot_weight == 0)
527 return NULL;
528
529 /* ensure all 32 bits are covered as long as RAND_MAX >= 65535 */
530 hash = ((uint64_t)random() * ((uint64_t)RAND_MAX + 1)) ^ random();
531 return chash_get_server_hash(px, hash);
532}
533
Benoitaffb4812009-03-25 13:02:10 +0100534/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200535 * This function applies the load-balancing algorithm to the stream, as
536 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200537 * 'assigned'.
538 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200539 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200540 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100541 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200542 * The function tries to keep the original connection slot if it reconnects to
543 * the same server, otherwise it releases it and tries to offer it.
544 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200545 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200546 *
547 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100548 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200549 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
550 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551 * SRV_STATUS_INTERNAL for other unrecoverable errors.
552 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200553 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100554 * it does not need to be called anymore. This means that target_srv(&s->target)
555 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200556 *
557 */
558
Willy Tarreau87b09662015-04-03 00:22:06 +0200559int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200560{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200561 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200562 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100563 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200564 int err;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100565 int i;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100566
Simon Horman8effd3d2011-08-13 08:03:52 +0900567 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200568
Willy Tarreau7c669d72008-06-20 15:04:11 +0200569 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200570 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200571 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100572
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100573 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200574 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200575
Willy Tarreau7c669d72008-06-20 15:04:11 +0200576 /* We have to release any connection slot before applying any LB algo,
577 * otherwise we may erroneously end up with no available slot.
578 */
579 if (conn_slot)
580 sess_change_server(s, NULL);
581
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100582 /* We will now try to find the good server and store it into <objt_server(s->target)>.
583 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200584 * as well as if no server is available (check error code).
585 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100586
Willy Tarreau827aee92011-03-10 16:55:02 +0100587 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100588 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100589
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100590 for (i = 0; i < MAX_SRV_LIST; i++) {
591 list_for_each_entry(conn, &s->sess->srv_list[i].list, session_list) {
592 if (conn->flags & CO_FL_CONNECTED &&
593 objt_server(conn->target) &&
594 __objt_server(conn->target)->proxy == s->be &&
595 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
596 ((s->txn && s->txn->flags & TX_PREFER_LAST) ||
597 ((s->be->options & PR_O_PREF_LAST) &&
598 (!s->be->max_ka_queue ||
599 server_has_room(__objt_server(conn->target)) ||
600 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
601 srv_currently_usable(__objt_server(conn->target))) {
602 srv = __objt_server(conn->target);
603 s->target = &srv->obj_type;
604 goto out_ok;
605
606 }
607 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100608 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100609 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200610
Willy Tarreau7c669d72008-06-20 15:04:11 +0200611 /* we must check if we have at least one server available */
612 if (!s->be->lbprm.tot_weight) {
613 err = SRV_STATUS_NOSRV;
614 goto out;
615 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200616
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200617 /* First check whether we need to fetch some data or simply call
618 * the LB lookup function. Only the hashing functions will need
619 * some input data in fact, and will support multiple algorithms.
620 */
621 switch (s->be->lbprm.algo & BE_LB_LKUP) {
622 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100623 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200624 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200625
Willy Tarreauf09c6602012-02-13 17:12:08 +0100626 case BE_LB_LKUP_FSTREE:
627 srv = fas_get_next_server(s->be, prev_srv);
628 break;
629
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200630 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100631 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200632 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200633
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200634 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200635 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200636 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200637 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
638 srv = get_server_rnd(s);
639 else if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100640 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200641 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100642 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200643 break;
644 }
645 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200646 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200647 err = SRV_STATUS_INTERNAL;
648 goto out;
649 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200650
651 switch (s->be->lbprm.algo & BE_LB_PARM) {
652 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200653 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200654 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200655 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200656 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200657 4);
658 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200659 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200660 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200661 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200662 16);
663 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200664 else {
665 /* unknown IP family */
666 err = SRV_STATUS_INTERNAL;
667 goto out;
668 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200669 break;
670
671 case BE_LB_HASH_URI:
672 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200673 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100674 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100675 srv = get_server_uh(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200676 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200677 s->txn->req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200679
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200680 case BE_LB_HASH_PRM:
681 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200682 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100683 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100684
Willy Tarreau827aee92011-03-10 16:55:02 +0100685 srv = get_server_ph(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200686 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200687 s->txn->req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100688
Willy Tarreaueee5b512015-04-03 23:46:31 +0200689 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau827aee92011-03-10 16:55:02 +0100690 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200691 break;
Benoitaffb4812009-03-25 13:02:10 +0100692
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200693 case BE_LB_HASH_HDR:
694 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200695 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100696 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100697 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200698 break;
699
700 case BE_LB_HASH_RDP:
701 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100702 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200703 break;
704
705 default:
706 /* unknown balancing algorithm */
707 err = SRV_STATUS_INTERNAL;
708 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100709 }
Emeric Brun736aa232009-06-30 17:56:00 +0200710
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200711 /* If the hashing parameter was not found, let's fall
712 * back to round robin on the map.
713 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100714 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200715 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100716 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200717 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100718 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200719 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200720
721 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200722 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200723
Willy Tarreau7c669d72008-06-20 15:04:11 +0200724 default:
725 /* unknown balancing algorithm */
726 err = SRV_STATUS_INTERNAL;
727 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200729
Willy Tarreau827aee92011-03-10 16:55:02 +0100730 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200731 err = SRV_STATUS_FULL;
732 goto out;
733 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100734 else if (srv != prev_srv) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200735 HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +0200736 HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100737 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100738 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200739 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200740 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100741 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200742 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100743 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200744 conn && is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100745 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100746 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100747 }
748 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200749 err = SRV_STATUS_NOSRV;
750 goto out;
751 }
752
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100753out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200754 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200755 err = SRV_STATUS_OK;
756 out:
757
758 /* Either we take back our connection slot, or we offer it to someone
759 * else if we don't need it anymore.
760 */
761 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100762 if (conn_slot == srv) {
763 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200764 } else {
765 if (may_dequeue_tasks(conn_slot, s->be))
766 process_srv_queue(conn_slot);
767 }
768 }
769
770 out_err:
771 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772}
773
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200775 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776 * The address is taken from the currently assigned server, or from the
777 * dispatch or transparent address.
778 *
779 * It may return :
780 * SRV_STATUS_OK if everything is OK.
781 * SRV_STATUS_INTERNAL for other unrecoverable errors.
782 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200783 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200784 * not cleared, so it's to the caller to clear it if required.
785 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200786 * The caller is responsible for having already assigned a connection
787 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200788 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789 */
Olivier Houchard201b9f42018-11-21 00:16:29 +0100790int assign_server_address(struct stream *s, struct connection *srv_conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200792 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200793
Christopher Faulet56803b12017-11-24 16:06:18 +0100794 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795
Willy Tarreaue7dff022015-04-03 01:14:29 +0200796 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200797 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200798 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200799 return SRV_STATUS_INTERNAL;
800
Willy Tarreau1e582e52018-09-20 11:29:28 +0200801 srv_conn->addr.to = __objt_server(s->target)->addr;
802 set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200804 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200805 /* if the server has no address, we use the same address
806 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200807 * locally on multiple addresses at once. Nothing is done
808 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200809 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200810 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200811
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200812 if (cli_conn->addr.to.ss_family == AF_INET) {
813 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
814 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
815 ((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 +0200816 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200817 }
818
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 /* if this server remaps proxied ports, we'll use
820 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200821 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100822 int base_port;
823
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200824 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100825
826 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200827 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100828
829 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200830 base_port += get_host_port(&srv_conn->addr.to);
831 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 }
833 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200834 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200835 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200836 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200837 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200838 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200839 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200840 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200841
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200842 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
843 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100845 else if (s->be->options & PR_O_HTTP_PROXY) {
846 /* If HTTP PROXY option is set, then server is already assigned
847 * during incoming client request parsing. */
848 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100849 else {
850 /* no server and no LB algorithm ! */
851 return SRV_STATUS_INTERNAL;
852 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200853
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100854 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100855 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100856
Willy Tarreaue7dff022015-04-03 01:14:29 +0200857 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200858 return SRV_STATUS_OK;
859}
860
Willy Tarreau87b09662015-04-03 00:22:06 +0200861/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200862 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200863 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200864 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200865 * be called before any connection and after any retry or redispatch occurs.
866 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200867 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 *
869 * Returns :
870 *
871 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100872 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 * SRV_STATUS_QUEUED if the connection has been queued.
874 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100875 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200876 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877 * SRV_STATUS_INTERNAL for other unrecoverable errors.
878 *
879 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200880int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881{
882 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100883 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200884 int err;
885
886 if (s->pend_pos)
887 return SRV_STATUS_INTERNAL;
888
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200890 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100891 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100892
Willy Tarreau7c669d72008-06-20 15:04:11 +0200893 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100894 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200895 /* This stream was previously assigned to a server. We have to
896 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200897 * - if the server changed :
898 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200899 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200900 * - increment srv->redispatches and be->redispatches
901 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100902 */
903
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100904 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200905 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
906 s->txn->flags &= ~TX_CK_MASK;
907 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200908 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200909 s->flags |= SF_REDISP;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200910 HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200911 HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200912 } else {
Christopher Faulet29f77e82017-06-08 14:04:45 +0200913 HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200914 HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100915 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100916 }
917 }
918
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919 switch (err) {
920 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200921 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100922 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100923 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 return SRV_STATUS_OK; /* dispatch or proxy mode */
925
926 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100927 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200928 return SRV_STATUS_OK;
929
Willy Tarreau87b09662015-04-03 00:22:06 +0200930 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200931 * connection slot yet. Either it is a redispatch, or it was
932 * assigned from persistence information (direct mode).
933 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200934 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200935 /* server scheduled for redirection, and already assigned. We
936 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100937 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100938 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100939 return SRV_STATUS_OK;
940 }
941
Willy Tarreau87b09662015-04-03 00:22:06 +0200942 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200943 * We know we have to queue it into the server's queue, so if a maxqueue
944 * is set on the server, we must also check that the server's queue is
945 * not full, in which case we have to return FULL.
946 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100947 if (srv->maxconn &&
948 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200949
Willy Tarreau827aee92011-03-10 16:55:02 +0100950 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200951 return SRV_STATUS_FULL;
952
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953 p = pendconn_add(s);
954 if (p)
955 return SRV_STATUS_QUEUED;
956 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200957 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200959
960 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100961 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962 return SRV_STATUS_OK;
963
964 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200965 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966 p = pendconn_add(s);
967 if (p)
968 return SRV_STATUS_QUEUED;
969 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200970 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200971
972 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200973 return err;
974
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975 case SRV_STATUS_INTERNAL:
976 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200977
Willy Tarreaubaaee002006-06-26 02:48:02 +0200978 default:
979 return SRV_STATUS_INTERNAL;
980 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100981}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200982
Willy Tarreaub1d67742010-03-29 19:36:59 +0200983/* If an explicit source binding is specified on the server and/or backend, and
984 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +0200985 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +0100986 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200987 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200988static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +0200989{
Willy Tarreau29fbe512015-08-20 19:35:14 +0200990#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100991 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100992 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200993 struct connection *cli_conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200994 struct connection *srv_conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau827aee92011-03-10 16:55:02 +0100995
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100996 if (srv && srv->conn_src.opts & CO_SRC_BIND)
997 src = &srv->conn_src;
998 else if (s->be->conn_src.opts & CO_SRC_BIND)
999 src = &s->be->conn_src;
1000 else
1001 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001002
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001003 switch (src->opts & CO_SRC_TPROXY_MASK) {
1004 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001005 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001006 break;
1007 case CO_SRC_TPROXY_CLI:
1008 case CO_SRC_TPROXY_CIP:
1009 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001010 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001011 if (cli_conn)
1012 srv_conn->addr.from = cli_conn->addr.from;
1013 else
1014 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001015 break;
1016 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +02001017 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001018 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001019 size_t vlen;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001020 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001021
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001022 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001023 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1024 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1025 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +01001026
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001027 c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req));
Willy Tarreaueee5b512015-04-03 23:46:31 +02001028 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1029 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001030 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001031 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001032 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001033 c_adv(&s->req, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001034 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001035 break;
1036 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001037 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001038 }
1039#endif
1040}
1041
Lukas Tribusda95fd92018-11-25 13:21:27 +01001042#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001043/*
1044 * Pick the right mux once the connection is established, we should now have
1045 * an alpn if available, so we are now able to choose.
1046 */
1047static int conn_complete_server(struct connection *conn)
1048{
1049 struct conn_stream *cs = NULL;
1050 struct stream *s = conn->mux_ctx;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001051 struct server *srv;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001052
Olivier Houchard70d9b2f2018-11-29 16:57:32 +01001053 task_wakeup(s->task, TASK_WOKEN_IO);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001054 conn_clear_xprt_done_cb(conn);
1055 /* Verify if the connection just established. */
1056 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
1057 conn->flags |= CO_FL_CONNECTED;
1058
1059 if (!s)
1060 goto fail;
1061 if (conn->flags & CO_FL_ERROR)
1062 goto fail;
Olivier Houchardd76bd2d2018-11-29 16:58:49 +01001063 si_detach_endpoint(&s->si[1]);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001064 cs = si_alloc_cs(&s->si[1], conn);
1065 if (!cs)
1066 goto fail;
1067 if (conn_install_mux_be(conn, cs) < 0)
1068 goto fail;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001069 srv = objt_server(s->target);
1070 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1071 conn->mux->avail_streams(conn) > 0)
1072 LIST_ADD(&srv->idle_conns[tid], &conn->list);
1073
Olivier Houchard201b9f42018-11-21 00:16:29 +01001074 return 0;
1075
1076fail:
1077 if (cs)
1078 cs_free(cs);
1079 /* kill the connection now */
1080 conn_stop_tracking(conn);
1081 conn_full_close(conn);
1082 conn_free(conn);
1083 return -1;
1084}
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001085#endif
Olivier Houchard201b9f42018-11-21 00:16:29 +01001086
Willy Tarreaub1d67742010-03-29 19:36:59 +02001087
Willy Tarreaubaaee002006-06-26 02:48:02 +02001088/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001089 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001090 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001091 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001092 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001093 * - SF_ERR_NONE if everything's OK
1094 * - SF_ERR_SRVTO if there are no more servers
1095 * - SF_ERR_SRVCL if the connection was refused by the server
1096 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1097 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1098 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001099 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001100 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001101 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001102 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001103int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001104{
Olivier Houchard522eea72017-11-03 16:27:47 +01001105 struct connection *cli_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001106 struct connection *srv_conn = NULL;
1107 struct connection *old_conn = NULL;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001108 struct conn_stream *srv_cs;
Willy Tarreau827aee92011-03-10 16:55:02 +01001109 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001110 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001111 int err;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001112 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001113
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001114
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001115 for (i = 0; i < MAX_SRV_LIST; i++) {
1116 if (s->sess->srv_list[i].target == s->target) {
1117 list_for_each_entry(srv_conn, &s->sess->srv_list[i].list,
1118 session_list) {
1119 if (conn_xprt_ready(srv_conn) &&
1120 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1121 reuse = 1;
1122 break;
1123 }
1124 }
1125 }
1126 }
1127 if (!srv_conn) {
1128 for (i = 0; i < MAX_SRV_LIST; i++) {
1129 if (!LIST_ISEMPTY(&s->sess->srv_list[i].list)) {
1130 srv_conn = LIST_ELEM(&s->sess->srv_list[i].list,
1131 struct connection *, session_list);
1132 break;
1133 }
1134 }
1135 }
1136 old_conn = srv_conn;
1137
Willy Tarreau7b004922015-08-04 19:34:21 +02001138 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001139
Willy Tarreau8dff9982015-08-04 20:45:52 +02001140 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001141 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001142
Willy Tarreau449d74a2015-08-05 17:16:33 +02001143 /* Below we pick connections from the safe or idle lists based
1144 * on the strategy, the fact that this is a first or second
1145 * (retryable) request, with the indicated priority (1 or 2) :
1146 *
1147 * SAFE AGGR ALWS
1148 *
1149 * +-----+-----+ +-----+-----+ +-----+-----+
1150 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1151 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1152 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1153 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1154 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1155 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1156 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001157 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001158 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1159 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001160 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001161 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001162 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001163 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1164 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001165 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001166 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001167 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001168 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001169 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001170 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001171
Willy Tarreau449d74a2015-08-05 17:16:33 +02001172 /* If we've picked a connection from the pool, we now have to
1173 * detach it. We may have to get rid of the previous idle
1174 * connection we had, so for this we try to swap it with the
1175 * other owner's. That way it may remain alive for others to
1176 * pick.
1177 */
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001178 if (srv_conn)
Willy Tarreau8dff9982015-08-04 20:45:52 +02001179 reuse = 1;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001180 }
1181
Willy Tarreau34601a82013-12-15 16:33:46 +01001182 if (reuse) {
1183 /* Disable connection reuse if a dynamic source is used.
1184 * As long as we don't share connections between servers,
1185 * we don't need to disable connection reuse on no-idempotent
1186 * requests nor when PROXY protocol is used.
1187 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001188 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1189 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1190 reuse = 0;
1191 }
1192 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1193 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1194 reuse = 0;
1195 }
1196 }
1197
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001198 /* We're about to use another connection, let the mux know we're
1199 * done with this one
1200 */
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001201 if (old_conn != srv_conn || !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001202
1203 if (srv_conn && reuse) {
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001204 struct session *sess = srv_conn->owner;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001205
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001206 if (sess) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001207 if (old_conn &&
1208 !(old_conn->flags & CO_FL_PRIVATE) &&
Olivier Houcharda49d41a2018-11-29 18:03:21 +01001209 old_conn->mux != NULL &&
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001210 (old_conn->mux->avail_streams(old_conn) > 0) &&
1211 (srv_conn->mux->avail_streams(srv_conn) == 1)) {
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001212 LIST_DEL(&old_conn->session_list);
1213 LIST_INIT(&old_conn->session_list);
1214 session_add_conn(sess, old_conn, s->target);
1215 old_conn->owner = sess;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001216 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001217 }
1218
1219 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001220 }
1221
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001222 if (!reuse) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001223 srv_conn = conn_new();
1224 srv_cs = NULL;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001225 } else {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001226 if (srv_conn->mux->avail_streams(srv_conn) == 1) {
1227 /* No more streams available, remove it from the list */
1228 LIST_DEL(&srv_conn->list);
1229 LIST_INIT(&srv_conn->list);
1230 }
1231 srv_cs = srv_conn->mux->attach(srv_conn);
1232 if (srv_cs)
1233 si_attach_cs(&s->si[1], srv_cs);
1234 }
1235 if (srv_conn && old_conn != srv_conn) {
1236 srv_conn->owner = s->sess;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001237 LIST_DEL(&srv_conn->session_list);
1238 session_add_conn(s->sess, srv_conn, s->target);
Willy Tarreau323a2d92015-08-04 19:00:17 +02001239 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001240
Olivier Houchard201b9f42018-11-21 00:16:29 +01001241 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001242 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001243
Willy Tarreaue7dff022015-04-03 01:14:29 +02001244 if (!(s->flags & SF_ADDR_SET)) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001245 err = assign_server_address(s, srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001246 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001247 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001248 }
1249
Willy Tarreauff605db2013-12-20 11:09:51 +01001250 if (!conn_xprt_ready(srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001251 /* the target was only on the stream, assign it to the SI now */
Willy Tarreauff605db2013-12-20 11:09:51 +01001252 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001253
Willy Tarreauff605db2013-12-20 11:09:51 +01001254 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001255 if (srv)
Willy Tarreau7b004922015-08-04 19:34:21 +02001256 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001257 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1258 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001259 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Olivier Houchard12950162018-11-23 14:32:08 +01001260 if (!(srv_conn->ctrl))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001261 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001262 }
1263 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001264 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001265
Lukas Tribusda95fd92018-11-25 13:21:27 +01001266#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001267 if (!srv ||
1268 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1269 srv->mux_proto))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001270#endif
1271 {
1272 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1273 if (!srv_cs) {
1274 conn_free(srv_conn);
1275 return SF_ERR_RESOURCE;
1276 }
1277 if (conn_install_mux_be(srv_conn, srv_cs) < 0)
1278 return SF_ERR_INTERNAL;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001279 /* If we're doing http-reuse always, and the connection
1280 * is an http2 connection, add it to the available list,
1281 * so that others can use it right away.
1282 */
1283 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1284 srv_conn->mux->avail_streams(srv_conn) > 0)
1285 LIST_ADD(&srv->idle_conns[tid], &srv_conn->list);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001286 }
Lukas Tribusda95fd92018-11-25 13:21:27 +01001287#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001288 else {
1289 srv_conn->mux_ctx = s;
1290 /* Store the connection into the stream interface,
1291 * while we still don't have a mux, so that if the
1292 * stream is destroyed before the connection is
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001293 * established, we have a chance to destroy it even
1294 * if it is no longer referenced in the session.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001295 */
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001296 s->si[1].end = &srv_conn->obj_type;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001297 conn_set_xprt_done_cb(srv_conn, conn_complete_server);
1298 }
1299
1300#endif
1301
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001302
Willy Tarreauff605db2013-12-20 11:09:51 +01001303 /* process the case where the server requires the PROXY protocol to be sent */
1304 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001305 cli_conn = objt_conn(strm_orig(s));
1306
Willy Tarreau7b004922015-08-04 19:34:21 +02001307 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001308 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreauff605db2013-12-20 11:09:51 +01001309 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001310 if (cli_conn)
1311 conn_get_to_addr(cli_conn);
1312 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001313
Willy Tarreauff605db2013-12-20 11:09:51 +01001314 assign_tproxy_address(s);
1315 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001316 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001317 s->flags |= SF_SRV_REUSED;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001318
William Lallemandb7ff6a32012-03-02 14:35:21 +01001319 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001320 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001321 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001322
Willy Tarreau14f8e862012-08-30 22:23:13 +02001323 /* disable lingering */
1324 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001325 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001326
Olivier Houchard201b9f42018-11-21 00:16:29 +01001327 err = si_connect(&s->si[1], srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001328
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001329#ifdef USE_OPENSSL
Olivier Houchard522eea72017-11-03 16:27:47 +01001330 if (!reuse && cli_conn && srv &&
1331 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
1332 (cli_conn->flags & CO_FL_EARLY_DATA) &&
1333 !channel_is_empty(si_oc(&s->si[1])) &&
1334 srv_conn->flags & CO_FL_SSL_WAIT_HS) {
1335 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
1336 srv_conn->flags |= CO_FL_EARLY_SSL_HS;
1337 }
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001338#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001339
Willy Tarreaue7dff022015-04-03 01:14:29 +02001340 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001341 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001342
Willy Tarreau14f8e862012-08-30 22:23:13 +02001343 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001344 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001345
Willy Tarreau827aee92011-03-10 16:55:02 +01001346 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001347 int count;
1348
Willy Tarreaue7dff022015-04-03 01:14:29 +02001349 s->flags |= SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02001350 count = HA_ATOMIC_ADD(&srv->cur_sess, 1);
1351 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001352 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001353 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001354
1355#ifdef USE_OPENSSL
1356 if (srv->ssl_ctx.sni) {
1357 struct sample *smp;
1358 int rewind;
1359
1360 /* Tricky case : we have already scheduled the pending
1361 * HTTP request or TCP data for leaving. So in HTTP we
1362 * rewind exactly the headers, otherwise we rewind the
1363 * output data.
1364 */
Willy Tarreau6a445eb2018-06-19 07:04:45 +02001365 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001366 c_rew(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001367
1368 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, srv->ssl_ctx.sni, SMP_T_STR);
1369
1370 /* restore the pointers */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001371 c_adv(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001372
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001373 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001374 ssl_sock_set_servername(srv_conn,
1375 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001376 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001377 }
1378 }
1379#endif /* USE_OPENSSL */
1380
Willy Tarreaubaaee002006-06-26 02:48:02 +02001381 }
1382
Willy Tarreaue7dff022015-04-03 01:14:29 +02001383 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001384}
1385
1386
Willy Tarreaubaaee002006-06-26 02:48:02 +02001387/* This function performs the "redispatch" part of a connection attempt. It
1388 * will assign a server if required, queue the connection if required, and
1389 * handle errors that might arise at this level. It can change the server
1390 * state. It will return 1 if it encounters an error, switches the server
1391 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1392 * that the connection is ready to use.
1393 */
1394
Willy Tarreau87b09662015-04-03 00:22:06 +02001395int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001396{
Willy Tarreau827aee92011-03-10 16:55:02 +01001397 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001398 int conn_err;
1399
1400 /* We know that we don't have any connection pending, so we will
1401 * try to get a new one, and wait in this state if it's queued
1402 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001403 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001404 conn_err = assign_server_and_queue(s);
1405 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001406
Willy Tarreaubaaee002006-06-26 02:48:02 +02001407 switch (conn_err) {
1408 case SRV_STATUS_OK:
1409 break;
1410
Willy Tarreau7c669d72008-06-20 15:04:11 +02001411 case SRV_STATUS_FULL:
1412 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1413 * and we can redispatch to another server, or it is not and we return
1414 * 503. This only makes sense in DIRECT mode however, because normal LB
1415 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001416 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001417 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001418 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001419 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001420 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001421 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001422 goto redispatch;
1423 }
1424
Willy Tarreau350f4872014-11-28 14:42:25 +01001425 if (!s->si[1].err_type) {
1426 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001427 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001428
Christopher Faulet29f77e82017-06-08 14:04:45 +02001429 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001430 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001431 return 1;
1432
Willy Tarreaubaaee002006-06-26 02:48:02 +02001433 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001434 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001435 if (!s->si[1].err_type) {
1436 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001437 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001438
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001439 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001440 return 1;
1441
1442 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001443 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1444 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001445 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001446 return 1;
1447
Willy Tarreaubaaee002006-06-26 02:48:02 +02001448 case SRV_STATUS_INTERNAL:
1449 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001450 if (!s->si[1].err_type) {
1451 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001452 }
1453
Willy Tarreau827aee92011-03-10 16:55:02 +01001454 if (srv)
1455 srv_inc_sess_ctr(srv);
1456 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001457 srv_set_sess_last(srv);
1458 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001459 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001460 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001461
Willy Tarreau87b09662015-04-03 00:22:06 +02001462 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001463 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001464 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001465 return 1;
1466 }
1467 /* if we get here, it's because we got SRV_STATUS_OK, which also
1468 * means that the connection has not been queued.
1469 */
1470 return 0;
1471}
1472
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001473/* sends a log message when a backend goes down, and also sets last
1474 * change date.
1475 */
1476void set_backend_down(struct proxy *be)
1477{
1478 be->last_change = now.tv_sec;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001479 HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001480
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001481 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001482 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001483 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1484 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001485}
1486
Willy Tarreau87b09662015-04-03 00:22:06 +02001487/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001488 * tries to extract an RDP cookie from the request buffer, and look for the
1489 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001490 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001491 * list. Nothing is performed if a server was already assigned.
1492 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001493int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001494{
1495 struct proxy *px = s->be;
1496 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001497 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001498 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001499 uint16_t port;
1500 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001501 char *p;
1502
Christopher Faulet45073512018-07-20 10:16:29 +02001503 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001504 now_ms, __FUNCTION__,
1505 s,
1506 req,
1507 req->rex, req->wex,
1508 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001509 ci_data(req),
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001510 req->analysers);
1511
Willy Tarreaue7dff022015-04-03 01:14:29 +02001512 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001513 goto no_cookie;
1514
Willy Tarreau37406352012-04-23 16:16:37 +02001515 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001516
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001517 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001518 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001519 goto no_cookie;
1520
Willy Tarreau04276f32017-01-06 17:41:29 +01001521 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1522 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1523 * server's IP address in network order, and "port" is the integer corresponding to the
1524 * server's port in network order. Comments please Emeric.
1525 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001526 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001527 if (*p != '.')
1528 goto no_cookie;
1529 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001530
1531 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001532 if (*p != '.')
1533 goto no_cookie;
1534
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001535 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001536 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001537 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001538 port == srv->svc_port &&
1539 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001540 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001541 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001542 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001543 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001544 break;
1545 }
1546 }
1547 srv = srv->next;
1548 }
1549
1550no_cookie:
1551 req->analysers &= ~an_bit;
1552 req->analyse_exp = TICK_ETERNITY;
1553 return 1;
1554}
1555
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001556int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001557 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001558 return px->down_time;
1559
1560 return now.tv_sec - px->last_change + px->down_time;
1561}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001562
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001563/*
1564 * This function returns a string containing the balancing
1565 * mode of the proxy in a format suitable for stats.
1566 */
1567
1568const char *backend_lb_algo_str(int algo) {
1569
1570 if (algo == BE_LB_ALGO_RR)
1571 return "roundrobin";
1572 else if (algo == BE_LB_ALGO_SRR)
1573 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001574 else if (algo == BE_LB_ALGO_FAS)
1575 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001576 else if (algo == BE_LB_ALGO_LC)
1577 return "leastconn";
1578 else if (algo == BE_LB_ALGO_SH)
1579 return "source";
1580 else if (algo == BE_LB_ALGO_UH)
1581 return "uri";
1582 else if (algo == BE_LB_ALGO_PH)
1583 return "url_param";
1584 else if (algo == BE_LB_ALGO_HH)
1585 return "hdr";
1586 else if (algo == BE_LB_ALGO_RCH)
1587 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001588 else if (algo == BE_LB_ALGO_NONE)
1589 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001590 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001591 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001592}
1593
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001594/* This function parses a "balance" statement in a backend section describing
1595 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001596 * returns -1, it will write an error message into the <err> buffer which will
1597 * automatically be allocated and must be passed as NULL. The trailing '\n'
1598 * will not be written. The function must be called with <args> pointing to the
1599 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001600 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001601int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001602{
1603 if (!*(args[0])) {
1604 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001605 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1606 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001607 return 0;
1608 }
1609
1610 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001611 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1612 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001613 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001614 else if (!strcmp(args[0], "static-rr")) {
1615 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1616 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1617 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001618 else if (!strcmp(args[0], "first")) {
1619 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1620 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1621 }
Willy Tarreau51406232008-03-10 22:04:20 +01001622 else if (!strcmp(args[0], "leastconn")) {
1623 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1624 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1625 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02001626 else if (!strcmp(args[0], "random")) {
1627 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1628 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
1629 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001630 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001631 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1632 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001633 }
1634 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001635 int arg = 1;
1636
Willy Tarreau31682232007-11-29 15:38:04 +01001637 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1638 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001639
Oskar Stolc8dc41842012-05-19 10:19:54 +01001640 curproxy->uri_whole = 0;
1641
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001642 while (*args[arg]) {
1643 if (!strcmp(args[arg], "len")) {
1644 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001645 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001646 return -1;
1647 }
1648 curproxy->uri_len_limit = atoi(args[arg+1]);
1649 arg += 2;
1650 }
1651 else if (!strcmp(args[arg], "depth")) {
1652 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001653 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001654 return -1;
1655 }
1656 /* hint: we store the position of the ending '/' (depth+1) so
1657 * that we avoid a comparison while computing the hash.
1658 */
1659 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1660 arg += 2;
1661 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001662 else if (!strcmp(args[arg], "whole")) {
1663 curproxy->uri_whole = 1;
1664 arg += 1;
1665 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001666 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001667 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001668 return -1;
1669 }
1670 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001671 }
Willy Tarreau01732802007-11-01 22:48:15 +01001672 else if (!strcmp(args[0], "url_param")) {
1673 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001674 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001675 return -1;
1676 }
Willy Tarreau31682232007-11-29 15:38:04 +01001677 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1678 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001679
1680 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001681 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001682 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001683 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001684 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001685 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001686 return -1;
1687 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001688 }
Benoitaffb4812009-03-25 13:02:10 +01001689 }
1690 else if (!strncmp(args[0], "hdr(", 4)) {
1691 const char *beg, *end;
1692
1693 beg = args[0] + 4;
1694 end = strchr(beg, ')');
1695
1696 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001697 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001698 return -1;
1699 }
1700
1701 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1702 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1703
1704 free(curproxy->hh_name);
1705 curproxy->hh_len = end - beg;
1706 curproxy->hh_name = my_strndup(beg, end - beg);
1707 curproxy->hh_match_domain = 0;
1708
1709 if (*args[1]) {
1710 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001711 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001712 return -1;
1713 }
1714 curproxy->hh_match_domain = 1;
1715 }
Emeric Brun736aa232009-06-30 17:56:00 +02001716 }
1717 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1718 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1719 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1720
1721 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1722 const char *beg, *end;
1723
1724 beg = args[0] + 11;
1725 end = strchr(beg, ')');
1726
1727 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001728 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001729 return -1;
1730 }
1731
1732 free(curproxy->hh_name);
1733 curproxy->hh_name = my_strndup(beg, end - beg);
1734 curproxy->hh_len = end - beg;
1735 }
1736 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1737 free(curproxy->hh_name);
1738 curproxy->hh_name = strdup("mstshash");
1739 curproxy->hh_len = strlen(curproxy->hh_name);
1740 }
1741 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001742 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001743 return -1;
1744 }
Willy Tarreau01732802007-11-01 22:48:15 +01001745 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001746 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001747 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 +01001748 return -1;
1749 }
1750 return 0;
1751}
1752
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001753
1754/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001755/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001756/************************************************************************/
1757
Willy Tarreau34db1082012-04-19 17:16:54 +02001758/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001759 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001760 * undefined behaviour.
1761 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001762static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001763smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001764{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001765 struct proxy *px;
1766
Willy Tarreau37406352012-04-23 16:16:37 +02001767 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001768 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001769 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001770
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001771 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001772
1773 return 1;
1774}
1775
Willy Tarreau37406352012-04-23 16:16:37 +02001776/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001777 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001778 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1779 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001780 */
1781static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001782smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001783{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001784 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001785
Willy Tarreau37406352012-04-23 16:16:37 +02001786 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001787 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02001788 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
1789 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001790 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001791 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001792 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001793 return 1;
1794}
1795
Willy Tarreau34db1082012-04-19 17:16:54 +02001796/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001797 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001798 * undefined behaviour.
1799 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001800static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001801smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001802{
1803 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001804
Willy Tarreau37406352012-04-23 16:16:37 +02001805 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001806 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001807 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001808
Willy Tarreau24e32d82012-04-23 23:55:44 +02001809 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001810 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001811 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001812
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001813 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001814 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001815 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001816 return 1;
1817 }
1818
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001819 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001820 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001821 }
1822
1823 return 1;
1824}
1825
Willy Tarreaua5e37562011-12-16 17:06:15 +01001826/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001827static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001828smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001829{
Willy Tarreaube508f12016-03-10 11:47:01 +01001830 if (!smp->strm)
1831 return 0;
1832
Willy Tarreauf853c462012-04-23 18:53:56 +02001833 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001834 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001835 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001836 return 1;
1837}
1838
Marcin Deranekd2471c22016-12-12 14:08:05 +01001839/* set string to the name of the backend */
1840static int
1841smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1842{
1843 if (!smp->strm)
1844 return 0;
1845
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001846 smp->data.u.str.area = (char *)smp->strm->be->id;
1847 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01001848 return 0;
1849
1850 smp->data.type = SMP_T_STR;
1851 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001852 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01001853
1854 return 1;
1855}
1856
Willy Tarreaua5e37562011-12-16 17:06:15 +01001857/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001858static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001859smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001860{
Willy Tarreaube508f12016-03-10 11:47:01 +01001861 if (!smp->strm)
1862 return 0;
1863
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001864 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001865 return 0;
1866
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001867 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02001868 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001869
1870 return 1;
1871}
1872
Willy Tarreau34db1082012-04-19 17:16:54 +02001873/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001874 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001875 * undefined behaviour.
1876 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001877static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001878smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001879{
Willy Tarreau37406352012-04-23 16:16:37 +02001880 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001881 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001882 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001883 return 1;
1884}
1885
Willy Tarreau34db1082012-04-19 17:16:54 +02001886/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001887 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001888 * undefined behaviour.
1889 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001890static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001891smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001892{
Willy Tarreau37406352012-04-23 16:16:37 +02001893 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001894 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001895 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001896 return 1;
1897}
1898
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04001899/* set temp integer to the number of available connections across available
1900 * servers on the backend.
1901 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
1902 * undefined behaviour.
1903 */
1904static int
1905smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
1906{
1907 struct server *iterator;
1908 struct proxy *px;
1909 unsigned int maxconn;
1910
1911 smp->flags = SMP_F_VOL_TEST;
1912 smp->data.type = SMP_T_SINT;
1913 smp->data.u.sint = 0;
1914
1915 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
1916 if (iterator->cur_state == SRV_ST_STOPPED)
1917 continue;
1918
1919 px = iterator->proxy;
1920 if (!srv_currently_usable(iterator) ||
1921 ((iterator->flags & SRV_F_BACKUP) &&
1922 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
1923 continue;
1924
1925 if (iterator->maxconn == 0) {
1926 /* one active server is unlimited, return -1 */
1927 smp->data.u.sint = -1;
1928 return 1;
1929 }
1930
1931 maxconn = srv_dynamic_maxconn(iterator);
1932 if (maxconn > iterator->cur_sess)
1933 smp->data.u.sint += maxconn - iterator->cur_sess;
1934 }
1935
1936 return 1;
1937}
1938
Willy Tarreau34db1082012-04-19 17:16:54 +02001939/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001940 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001941 * undefined behaviour.
1942 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001943static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001944smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001945{
Willy Tarreau37406352012-04-23 16:16:37 +02001946 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001947 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001948 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001949 return 1;
1950}
1951
Willy Tarreaua5e37562011-12-16 17:06:15 +01001952/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001953 * by the number of running servers and rounded up. If there is no running
1954 * server, we return twice the total, just as if we had half a running server.
1955 * This is more or less correct anyway, since we expect the last server to come
1956 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001957 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001958 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001959 */
1960static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001961smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001962{
1963 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001964 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02001965
Willy Tarreau37406352012-04-23 16:16:37 +02001966 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001967 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001968 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001969
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001970 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02001971
1972 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001973 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001974 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001975 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001976
1977 return 1;
1978}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001979
Willy Tarreau34db1082012-04-19 17:16:54 +02001980/* set temp integer to the number of concurrent connections on the server in the backend.
1981 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1982 * undefined behaviour.
1983 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001984static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001985smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001986{
Willy Tarreauf853c462012-04-23 18:53:56 +02001987 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001988 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001989 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001990 return 1;
1991}
1992
Patrick Hemmer155e93e2018-06-14 18:01:35 -04001993/* set temp integer to the number of available connections on the server in the backend.
1994 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1995 * undefined behaviour.
1996 */
1997static int
1998smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
1999{
2000 unsigned int maxconn;
2001
2002 smp->flags = SMP_F_VOL_TEST;
2003 smp->data.type = SMP_T_SINT;
2004
2005 if (args->data.srv->maxconn == 0) {
2006 /* one active server is unlimited, return -1 */
2007 smp->data.u.sint = -1;
2008 return 1;
2009 }
2010
2011 maxconn = srv_dynamic_maxconn(args->data.srv);
2012 if (maxconn > args->data.srv->cur_sess)
2013 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2014 else
2015 smp->data.u.sint = 0;
2016
2017 return 1;
2018}
2019
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002020/* set temp integer to the number of connections pending in the server's queue.
2021 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2022 * undefined behaviour.
2023 */
2024static int
2025smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2026{
2027 smp->flags = SMP_F_VOL_TEST;
2028 smp->data.type = SMP_T_SINT;
2029 smp->data.u.sint = args->data.srv->nbpend;
2030 return 1;
2031}
2032
Tait Clarridge7896d522012-12-05 21:39:31 -05002033/* set temp integer to the number of enabled servers on the proxy.
2034 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2035 * undefined behaviour.
2036 */
2037static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002038smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002039{
2040 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002041 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002042 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002043 return 1;
2044}
2045
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002046static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2047{
2048
2049 struct proxy *px;
2050
2051 if (!smp_make_safe(smp))
2052 return 0;
2053
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002054 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002055 if (!px)
2056 return 0;
2057
2058 smp->data.type = SMP_T_SINT;
2059 smp->data.u.sint = be_usable_srv(px);
2060
2061 return 1;
2062}
2063
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002064
2065/* Note: must not be declared <const> as its list will be overwritten.
2066 * Please take care of keeping this list alphabetically sorted.
2067 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002068static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002069 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2070 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002071 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002072 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002073 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002074 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2075 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2076 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2077 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2078 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002079 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002080 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002081 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002082 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002083 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002084 { /* END */ },
2085}};
2086
Willy Tarreau0108d902018-11-25 19:14:37 +01002087INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2088
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002089/* Note: must not be declared <const> as its list will be overwritten */
2090static struct sample_conv_kw_list sample_conv_kws = {ILH, {
2091 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2092 { /* END */ },
2093}};
2094
Willy Tarreau0108d902018-11-25 19:14:37 +01002095INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002096
Willy Tarreau61612d42012-04-19 18:42:05 +02002097/* Note: must not be declared <const> as its list will be overwritten.
2098 * Please take care of keeping this list alphabetically sorted.
2099 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002100static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002101 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002102}};
2103
Willy Tarreau0108d902018-11-25 19:14:37 +01002104INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002105
Willy Tarreaubaaee002006-06-26 02:48:02 +02002106/*
2107 * Local variables:
2108 * c-indent-level: 8
2109 * c-basic-offset: 8
2110 * End:
2111 */