blob: fa01a7d240f73be8382577ccca981e968f4fabac [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>
Willy Tarreau87b09662015-04-03 00:22:06 +020055#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010056#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020057#include <proto/task.h>
58
Willy Tarreau732eac42015-07-09 11:40:25 +020059#ifdef USE_OPENSSL
60#include <proto/ssl_sock.h>
61#endif /* USE_OPENSSL */
62
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050063int be_lastsession(const struct proxy *be)
64{
65 if (be->be_counters.last_sess)
66 return now.tv_sec - be->be_counters.last_sess;
67
68 return -1;
69}
70
Bhaskar98634f02013-10-29 23:30:51 -040071/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070072static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040073{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070074 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040075
76 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
77 case BE_LB_HFCN_DJB2:
78 hash = hash_djb2(key, len);
79 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010080 case BE_LB_HFCN_WT6:
81 hash = hash_wt6(key, len);
82 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010083 case BE_LB_HFCN_CRC32:
84 hash = hash_crc32(key, len);
85 break;
Bhaskar98634f02013-10-29 23:30:51 -040086 case BE_LB_HFCN_SDBM:
87 /* this is the default hash function */
88 default:
89 hash = hash_sdbm(key, len);
90 break;
91 }
92
93 return hash;
94}
95
Willy Tarreaubaaee002006-06-26 02:48:02 +020096/*
97 * This function recounts the number of usable active and backup servers for
98 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010099 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100100 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100101 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200102 * This functions is designed to be called before server's weight and state
103 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200104 *
105 * threads: this is the caller responsibility to lock data. For now, this
106 * function is called from lb modules, so it should be ok. But if you need to
107 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200109void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110{
111 struct server *srv;
112
Willy Tarreau20697042007-11-15 23:26:18 +0100113 px->srv_act = px->srv_bck = 0;
114 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100115 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200117 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100118 continue;
119
Willy Tarreauc93cd162014-05-13 15:54:22 +0200120 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100122 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100123 px->lbprm.fbck = srv;
124 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400125 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200126 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100127 } else {
128 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400129 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200130 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 }
132 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100133}
Willy Tarreau20697042007-11-15 23:26:18 +0100134
Willy Tarreaub625a082007-11-26 01:15:43 +0100135/* This function simply updates the backend's tot_weight and tot_used values
136 * after servers weights have been updated. It is designed to be used after
137 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200138 *
139 * threads: this is the caller responsibility to lock data. For now, this
140 * function is called from lb modules, so it should be ok. But if you need to
141 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100142 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200143void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100144{
Willy Tarreau20697042007-11-15 23:26:18 +0100145 if (px->srv_act) {
146 px->lbprm.tot_weight = px->lbprm.tot_wact;
147 px->lbprm.tot_used = px->srv_act;
148 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100149 else if (px->lbprm.fbck) {
150 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200151 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100152 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100153 }
154 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100155 px->lbprm.tot_weight = px->lbprm.tot_wbck;
156 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100157 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100158}
159
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200160/*
161 * This function tries to find a running server for the proxy <px> following
162 * the source hash method. Depending on the number of active/backup servers,
163 * it will either look for active servers, or for backup servers.
164 * If any server is found, it will be returned. If no valid server is found,
165 * NULL is returned.
166 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200167static struct server *get_server_sh(struct proxy *px, const char *addr, int len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200168{
169 unsigned int h, l;
170
171 if (px->lbprm.tot_weight == 0)
172 return NULL;
173
174 l = h = 0;
175
176 /* note: we won't hash if there's only one server left */
177 if (px->lbprm.tot_used == 1)
178 goto hash_done;
179
180 while ((l + sizeof (int)) <= len) {
181 h ^= ntohl(*(unsigned int *)(&addr[l]));
182 l += sizeof (int);
183 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500184 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100185 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200186 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200187 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
188 return chash_get_server_hash(px, h);
189 else
190 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200191}
192
193/*
194 * This function tries to find a running server for the proxy <px> following
195 * the URI hash method. In order to optimize cache hits, the hash computation
196 * ends at the question mark. Depending on the number of active/backup servers,
197 * it will either look for active servers, or for backup servers.
198 * If any server is found, it will be returned. If no valid server is found,
199 * NULL is returned.
200 *
201 * This code was contributed by Guillaume Dallaire, who also selected this hash
202 * algorithm out of a tens because it gave him the best results.
203 *
204 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200205static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200206{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700207 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208 int c;
209 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400210 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211
212 if (px->lbprm.tot_weight == 0)
213 return NULL;
214
215 /* note: we won't hash if there's only one server left */
216 if (px->lbprm.tot_used == 1)
217 goto hash_done;
218
219 if (px->uri_len_limit)
220 uri_len = MIN(uri_len, px->uri_len_limit);
221
Bhaskar98634f02013-10-29 23:30:51 -0400222 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200224 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200225 if (c == '/') {
226 slashes++;
227 if (slashes == px->uri_dirs_depth1) /* depth+1 */
228 break;
229 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100230 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200232 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200233 }
Bhaskar98634f02013-10-29 23:30:51 -0400234
235 hash = gen_hash(px, start, (end - start));
236
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500237 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100238 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200239 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200240 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
241 return chash_get_server_hash(px, hash);
242 else
243 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200244}
245
Christopher Faulet5b517552017-06-09 14:17:53 +0200246/*
Willy Tarreau01732802007-11-01 22:48:15 +0100247 * This function tries to find a running server for the proxy <px> following
248 * the URL parameter hash method. It looks for a specific parameter in the
249 * URL and hashes it to compute the server ID. This is useful to optimize
250 * performance by avoiding bounces between servers in contexts where sessions
251 * are shared but cookies are not usable. If the parameter is not found, NULL
252 * is returned. If any server is found, it will be returned. If no valid server
253 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100254 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200255static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
Willy Tarreau01732802007-11-01 22:48:15 +0100256{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700257 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400258 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200259 const char *p;
260 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100261 int plen;
262
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100264 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100265 return NULL;
266
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 if ((p = memchr(uri, '?', uri_len)) == NULL)
268 return NULL;
269
Willy Tarreau01732802007-11-01 22:48:15 +0100270 p++;
271
272 uri_len -= (p - uri);
273 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200274 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100275
276 while (uri_len > plen) {
277 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 if (params[plen] == '=') {
279 if (memcmp(params, px->url_param_name, plen) == 0) {
280 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100281 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100283 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400285 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 uri_len -= plen + 1;
287
Bhaskar98634f02013-10-29 23:30:51 -0400288 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100289 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400290 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100291 }
Bhaskar98634f02013-10-29 23:30:51 -0400292 hash = gen_hash(px, start, (end - start));
293
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500294 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100295 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400296
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200297 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
298 return chash_get_server_hash(px, hash);
299 else
300 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100301 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200302 }
303 /* skip to next parameter */
304 p = memchr(params, '&', uri_len);
305 if (!p)
306 return NULL;
307 p++;
308 uri_len -= (p - params);
309 params = p;
310 }
311 return NULL;
312}
313
314/*
315 * this does the same as the previous server_ph, but check the body contents
316 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200317static struct server *get_server_ph_post(struct stream *s)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200318{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700319 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200320 struct http_txn *txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100321 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200322 struct http_msg *msg = &txn->req;
323 struct proxy *px = s->be;
324 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200325 unsigned long len = http_body_bytes(msg);
Willy Tarreau188e2302018-06-15 11:11:53 +0200326 const char *params = c_ptr(req, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100327 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400328 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329
Willy Tarreau157dd632009-12-06 19:18:09 +0100330 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200331 return NULL;
332
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200333 if (len > b_wrap(&req->buf) - p)
334 len = b_wrap(&req->buf) - p;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200335
Willy Tarreau157dd632009-12-06 19:18:09 +0100336 if (px->lbprm.tot_weight == 0)
337 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200338
339 while (len > plen) {
340 /* Look for the parameter name followed by an equal symbol */
341 if (params[plen] == '=') {
342 if (memcmp(params, px->url_param_name, plen) == 0) {
343 /* OK, we have the parameter here at <params>, and
344 * the value after the equal sign, at <p>
345 * skip the equal symbol
346 */
347 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400348 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200349 len -= plen + 1;
350
Bhaskar98634f02013-10-29 23:30:51 -0400351 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200352 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100353 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400354 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100355 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200356 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
357 break;
358 return NULL; /* oh, no; this is not uri-encoded.
359 * This body does not contain parameters.
360 */
361 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400363 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200364 /* should we break if vlen exceeds limit? */
365 }
Bhaskar98634f02013-10-29 23:30:51 -0400366 hash = gen_hash(px, start, (end - start));
367
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500368 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100369 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400370
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200371 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
372 return chash_get_server_hash(px, hash);
373 else
374 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200375 }
376 }
Willy Tarreau01732802007-11-01 22:48:15 +0100377 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200378 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100379 if (!p)
380 return NULL;
381 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200382 len -= (p - params);
383 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100384 }
385 return NULL;
386}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388
Willy Tarreaubaaee002006-06-26 02:48:02 +0200389/*
Benoitaffb4812009-03-25 13:02:10 +0100390 * This function tries to find a running server for the proxy <px> following
391 * the Header parameter hash method. It looks for a specific parameter in the
392 * URL and hashes it to compute the server ID. This is useful to optimize
393 * performance by avoiding bounces between servers in contexts where sessions
394 * are shared but cookies are not usable. If the parameter is not found, NULL
395 * is returned. If any server is found, it will be returned. If no valid server
396 * is found, NULL is returned.
397 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200398static struct server *get_server_hh(struct stream *s)
Benoitaffb4812009-03-25 13:02:10 +0100399{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700400 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200401 struct http_txn *txn = s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100402 struct proxy *px = s->be;
403 unsigned int plen = px->hh_len;
404 unsigned long len;
405 struct hdr_ctx ctx;
406 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400407 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100408
409 /* tot_weight appears to mean srv_count */
410 if (px->lbprm.tot_weight == 0)
411 return NULL;
412
Benoitaffb4812009-03-25 13:02:10 +0100413 ctx.idx = 0;
414
415 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau188e2302018-06-15 11:11:53 +0200416 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 +0100417
418 /* if the header is not found or empty, let's fallback to round robin */
419 if (!ctx.idx || !ctx.vlen)
420 return NULL;
421
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200422 /* note: we won't hash if there's only one server left */
423 if (px->lbprm.tot_used == 1)
424 goto hash_done;
425
Benoitaffb4812009-03-25 13:02:10 +0100426 /* Found a the hh_name in the headers.
427 * we will compute the hash based on this value ctx.val.
428 */
429 len = ctx.vlen;
430 p = (char *)ctx.line + ctx.val;
431 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400432 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100433 } else {
434 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100435 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100436 /* special computation, use only main domain name, not tld/host
437 * going back from the end of string, start hashing at first
438 * dot stop at next.
439 * This is designed to work with the 'Host' header, and requires
440 * a special option to activate this.
441 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100442 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100443 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100444 if (dohash) {
445 /* Rewind the pointer until the previous char
446 * is a dot, this will allow to set the start
447 * position of the domain. */
448 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100449 break;
Benoitaffb4812009-03-25 13:02:10 +0100450 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100451 else if (*p == '.') {
452 /* The pointer is rewinded to the dot before the
453 * tld, we memorize the end of the domain and
454 * can enter the domain processing. */
455 end = p;
456 dohash = 1;
457 }
Benoitaffb4812009-03-25 13:02:10 +0100458 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100459 len--;
Benoitaffb4812009-03-25 13:02:10 +0100460 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100461 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400462 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100463 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500464 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100465 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200466 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200467 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
468 return chash_get_server_hash(px, hash);
469 else
470 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100471}
472
Willy Tarreau34db1082012-04-19 17:16:54 +0200473/* RDP Cookie HASH. */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200474static struct server *get_server_rch(struct stream *s)
Emeric Brun736aa232009-06-30 17:56:00 +0200475{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700476 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200477 struct proxy *px = s->be;
478 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200479 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200480 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200481 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200482
483 /* tot_weight appears to mean srv_count */
484 if (px->lbprm.tot_weight == 0)
485 return NULL;
486
Willy Tarreau37406352012-04-23 16:16:37 +0200487 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200488
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200489 rewind = co_data(&s->req);
490 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200491
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200492 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200493 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100494
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200495 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200496
Willy Tarreau37406352012-04-23 16:16:37 +0200497 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200498 return NULL;
499
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200500 /* note: we won't hash if there's only one server left */
501 if (px->lbprm.tot_used == 1)
502 goto hash_done;
503
Emeric Brun736aa232009-06-30 17:56:00 +0200504 /* Found a the hh_name in the headers.
505 * we will compute the hash based on this value ctx.val.
506 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200507 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400508
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500509 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100510 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200511 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200512 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
513 return chash_get_server_hash(px, hash);
514 else
515 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200516}
Christopher Faulet5b517552017-06-09 14:17:53 +0200517
Willy Tarreau760e81d2018-05-03 07:20:40 +0200518/* random value */
519static struct server *get_server_rnd(struct stream *s)
520{
521 unsigned int hash = 0;
522 struct proxy *px = s->be;
523
524 /* tot_weight appears to mean srv_count */
525 if (px->lbprm.tot_weight == 0)
526 return NULL;
527
528 /* ensure all 32 bits are covered as long as RAND_MAX >= 65535 */
529 hash = ((uint64_t)random() * ((uint64_t)RAND_MAX + 1)) ^ random();
530 return chash_get_server_hash(px, hash);
531}
532
Benoitaffb4812009-03-25 13:02:10 +0100533/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200534 * This function applies the load-balancing algorithm to the stream, as
535 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200536 * 'assigned'.
537 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200538 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200539 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100540 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200541 * The function tries to keep the original connection slot if it reconnects to
542 * the same server, otherwise it releases it and tries to offer it.
543 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200544 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545 *
546 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100547 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200548 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
549 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200550 * SRV_STATUS_INTERNAL for other unrecoverable errors.
551 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200552 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100553 * it does not need to be called anymore. This means that target_srv(&s->target)
554 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200555 *
556 */
557
Willy Tarreau87b09662015-04-03 00:22:06 +0200558int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200559{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200560 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200561 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100562 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200563 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100564
Simon Horman8effd3d2011-08-13 08:03:52 +0900565 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200566
Willy Tarreau7c669d72008-06-20 15:04:11 +0200567 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200568 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200569 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100570
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100571 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200572 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200573
Willy Tarreau7c669d72008-06-20 15:04:11 +0200574 /* We have to release any connection slot before applying any LB algo,
575 * otherwise we may erroneously end up with no available slot.
576 */
577 if (conn_slot)
578 sess_change_server(s, NULL);
579
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100580 /* We will now try to find the good server and store it into <objt_server(s->target)>.
581 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200582 * as well as if no server is available (check error code).
583 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100584
Willy Tarreau827aee92011-03-10 16:55:02 +0100585 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100586 s->target = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100587 conn = s->sess->srv_conn;
Willy Tarreau664beb82011-03-10 11:38:29 +0100588
Willy Tarreau068621e2013-12-23 15:11:25 +0100589 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100590 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100591 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Lukas Tribus80512b12018-10-27 20:07:40 +0200592 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Willy Tarreaueee5b512015-04-03 23:46:31 +0200593 ((s->txn && s->txn->flags & TX_PREFER_LAST) ||
Willy Tarreauc35362a2014-04-25 13:58:37 +0200594 ((s->be->options & PR_O_PREF_LAST) &&
595 (!s->be->max_ka_queue ||
596 server_has_room(__objt_server(conn->target)) ||
597 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200598 srv_currently_usable(__objt_server(conn->target))) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200599 /* This stream was relying on a server in a previous request
Olivier Doucet1ca1b6f2017-01-02 11:48:57 +0100600 * and the proxy has "option prefer-last-server" set
601 * and balance algorithm dont tell us to do otherwise, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100602 * let's try to reuse the same server.
603 */
604 srv = __objt_server(conn->target);
605 s->target = &srv->obj_type;
606 }
607 else if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200608
Willy Tarreau7c669d72008-06-20 15:04:11 +0200609 /* we must check if we have at least one server available */
610 if (!s->be->lbprm.tot_weight) {
611 err = SRV_STATUS_NOSRV;
612 goto out;
613 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200614
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200615 /* First check whether we need to fetch some data or simply call
616 * the LB lookup function. Only the hashing functions will need
617 * some input data in fact, and will support multiple algorithms.
618 */
619 switch (s->be->lbprm.algo & BE_LB_LKUP) {
620 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100621 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200622 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200623
Willy Tarreauf09c6602012-02-13 17:12:08 +0100624 case BE_LB_LKUP_FSTREE:
625 srv = fas_get_next_server(s->be, prev_srv);
626 break;
627
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200628 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100629 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200630 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200631
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200632 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200633 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200634 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200635 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
636 srv = get_server_rnd(s);
637 else if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100638 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200639 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100640 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200641 break;
642 }
643 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200644 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200645 err = SRV_STATUS_INTERNAL;
646 goto out;
647 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200648
649 switch (s->be->lbprm.algo & BE_LB_PARM) {
650 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200651 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200652 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200653 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200654 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200655 4);
656 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200657 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200658 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200659 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200660 16);
661 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200662 else {
663 /* unknown IP family */
664 err = SRV_STATUS_INTERNAL;
665 goto out;
666 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200667 break;
668
669 case BE_LB_HASH_URI:
670 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200671 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100672 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100673 srv = get_server_uh(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200674 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200675 s->txn->req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200676 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200677
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678 case BE_LB_HASH_PRM:
679 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200680 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100681 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100682
Willy Tarreau827aee92011-03-10 16:55:02 +0100683 srv = get_server_ph(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200684 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200685 s->txn->req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100686
Willy Tarreaueee5b512015-04-03 23:46:31 +0200687 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau827aee92011-03-10 16:55:02 +0100688 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200689 break;
Benoitaffb4812009-03-25 13:02:10 +0100690
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200691 case BE_LB_HASH_HDR:
692 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200693 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100694 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100695 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200696 break;
697
698 case BE_LB_HASH_RDP:
699 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100700 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200701 break;
702
703 default:
704 /* unknown balancing algorithm */
705 err = SRV_STATUS_INTERNAL;
706 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100707 }
Emeric Brun736aa232009-06-30 17:56:00 +0200708
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200709 /* If the hashing parameter was not found, let's fall
710 * back to round robin on the map.
711 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100712 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200713 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100714 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200715 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100716 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200717 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200718
719 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200720 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200721
Willy Tarreau7c669d72008-06-20 15:04:11 +0200722 default:
723 /* unknown balancing algorithm */
724 err = SRV_STATUS_INTERNAL;
725 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200726 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200727
Willy Tarreau827aee92011-03-10 16:55:02 +0100728 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200729 err = SRV_STATUS_FULL;
730 goto out;
731 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100732 else if (srv != prev_srv) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200733 HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +0200734 HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100735 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100736 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200737 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200738 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100739 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200740 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100741 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200742 conn && is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100743 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100744 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100745 }
746 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200747 err = SRV_STATUS_NOSRV;
748 goto out;
749 }
750
Willy Tarreaue7dff022015-04-03 01:14:29 +0200751 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200752 err = SRV_STATUS_OK;
753 out:
754
755 /* Either we take back our connection slot, or we offer it to someone
756 * else if we don't need it anymore.
757 */
758 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100759 if (conn_slot == srv) {
760 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200761 } else {
762 if (may_dequeue_tasks(conn_slot, s->be))
763 process_srv_queue(conn_slot);
764 }
765 }
766
767 out_err:
768 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200769}
770
Willy Tarreaubaaee002006-06-26 02:48:02 +0200771/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200772 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200773 * The address is taken from the currently assigned server, or from the
774 * dispatch or transparent address.
775 *
776 * It may return :
777 * SRV_STATUS_OK if everything is OK.
778 * SRV_STATUS_INTERNAL for other unrecoverable errors.
779 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200780 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781 * not cleared, so it's to the caller to clear it if required.
782 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200783 * The caller is responsible for having already assigned a connection
784 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200785 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786 */
Olivier Houchard201b9f42018-11-21 00:16:29 +0100787int assign_server_address(struct stream *s, struct connection *srv_conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200788{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200789 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200790
Christopher Faulet56803b12017-11-24 16:06:18 +0100791 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200792
Willy Tarreaue7dff022015-04-03 01:14:29 +0200793 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200794 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200795 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200796 return SRV_STATUS_INTERNAL;
797
Willy Tarreau1e582e52018-09-20 11:29:28 +0200798 srv_conn->addr.to = __objt_server(s->target)->addr;
799 set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200801 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200802 /* if the server has no address, we use the same address
803 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200804 * locally on multiple addresses at once. Nothing is done
805 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200806 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200807 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200808
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200809 if (cli_conn->addr.to.ss_family == AF_INET) {
810 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
811 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
812 ((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 +0200813 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200814 }
815
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816 /* if this server remaps proxied ports, we'll use
817 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200818 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100819 int base_port;
820
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200821 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100822
823 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200824 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100825
826 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200827 base_port += get_host_port(&srv_conn->addr.to);
828 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200829 }
830 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200831 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200833 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200834 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200835 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200836 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200837 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200838
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200839 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
840 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200841 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100842 else if (s->be->options & PR_O_HTTP_PROXY) {
843 /* If HTTP PROXY option is set, then server is already assigned
844 * during incoming client request parsing. */
845 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100846 else {
847 /* no server and no LB algorithm ! */
848 return SRV_STATUS_INTERNAL;
849 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200850
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100851 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100852 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100853
Willy Tarreaue7dff022015-04-03 01:14:29 +0200854 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855 return SRV_STATUS_OK;
856}
857
Willy Tarreau87b09662015-04-03 00:22:06 +0200858/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200860 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200861 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200862 * be called before any connection and after any retry or redispatch occurs.
863 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200864 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865 *
866 * Returns :
867 *
868 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100869 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200870 * SRV_STATUS_QUEUED if the connection has been queued.
871 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100872 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200873 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200874 * SRV_STATUS_INTERNAL for other unrecoverable errors.
875 *
876 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200877int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200878{
879 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100880 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881 int err;
882
883 if (s->pend_pos)
884 return SRV_STATUS_INTERNAL;
885
Willy Tarreau7c669d72008-06-20 15:04:11 +0200886 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200887 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100888 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100889
Willy Tarreau7c669d72008-06-20 15:04:11 +0200890 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100891 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200892 /* This stream was previously assigned to a server. We have to
893 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200894 * - if the server changed :
895 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200896 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200897 * - increment srv->redispatches and be->redispatches
898 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100899 */
900
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100901 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200902 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
903 s->txn->flags &= ~TX_CK_MASK;
904 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200905 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200906 s->flags |= SF_REDISP;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200907 HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200908 HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200909 } else {
Christopher Faulet29f77e82017-06-08 14:04:45 +0200910 HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200911 HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100912 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100913 }
914 }
915
Willy Tarreaubaaee002006-06-26 02:48:02 +0200916 switch (err) {
917 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200918 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100919 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100920 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200921 return SRV_STATUS_OK; /* dispatch or proxy mode */
922
923 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100924 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200925 return SRV_STATUS_OK;
926
Willy Tarreau87b09662015-04-03 00:22:06 +0200927 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200928 * connection slot yet. Either it is a redispatch, or it was
929 * assigned from persistence information (direct mode).
930 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200931 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200932 /* server scheduled for redirection, and already assigned. We
933 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100934 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100935 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100936 return SRV_STATUS_OK;
937 }
938
Willy Tarreau87b09662015-04-03 00:22:06 +0200939 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200940 * We know we have to queue it into the server's queue, so if a maxqueue
941 * is set on the server, we must also check that the server's queue is
942 * not full, in which case we have to return FULL.
943 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100944 if (srv->maxconn &&
945 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200946
Willy Tarreau827aee92011-03-10 16:55:02 +0100947 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200948 return SRV_STATUS_FULL;
949
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950 p = pendconn_add(s);
951 if (p)
952 return SRV_STATUS_QUEUED;
953 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200954 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200955 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200956
957 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100958 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959 return SRV_STATUS_OK;
960
961 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200962 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200963 p = pendconn_add(s);
964 if (p)
965 return SRV_STATUS_QUEUED;
966 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200967 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200968
969 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200970 return err;
971
Willy Tarreaubaaee002006-06-26 02:48:02 +0200972 case SRV_STATUS_INTERNAL:
973 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200974
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975 default:
976 return SRV_STATUS_INTERNAL;
977 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100978}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200979
Willy Tarreaub1d67742010-03-29 19:36:59 +0200980/* If an explicit source binding is specified on the server and/or backend, and
981 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +0200982 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +0100983 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200984 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200985static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +0200986{
Willy Tarreau29fbe512015-08-20 19:35:14 +0200987#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100988 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100989 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200990 struct connection *cli_conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200991 struct connection *srv_conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau827aee92011-03-10 16:55:02 +0100992
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100993 if (srv && srv->conn_src.opts & CO_SRC_BIND)
994 src = &srv->conn_src;
995 else if (s->be->conn_src.opts & CO_SRC_BIND)
996 src = &s->be->conn_src;
997 else
998 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100999
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001000 switch (src->opts & CO_SRC_TPROXY_MASK) {
1001 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001002 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001003 break;
1004 case CO_SRC_TPROXY_CLI:
1005 case CO_SRC_TPROXY_CIP:
1006 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001007 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001008 if (cli_conn)
1009 srv_conn->addr.from = cli_conn->addr.from;
1010 else
1011 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001012 break;
1013 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +02001014 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001015 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001016 size_t vlen;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001017 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001018
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001019 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001020 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1021 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1022 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +01001023
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001024 c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req));
Willy Tarreaueee5b512015-04-03 23:46:31 +02001025 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1026 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001027 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001028 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001029 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001030 c_adv(&s->req, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001031 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001032 break;
1033 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001034 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001035 }
1036#endif
1037}
1038
Lukas Tribusda95fd92018-11-25 13:21:27 +01001039#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001040/*
1041 * Pick the right mux once the connection is established, we should now have
1042 * an alpn if available, so we are now able to choose.
1043 */
1044static int conn_complete_server(struct connection *conn)
1045{
1046 struct conn_stream *cs = NULL;
1047 struct stream *s = conn->mux_ctx;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001048 struct server *srv;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001049
Olivier Houchard70d9b2f2018-11-29 16:57:32 +01001050 task_wakeup(s->task, TASK_WOKEN_IO);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001051 conn_clear_xprt_done_cb(conn);
1052 /* Verify if the connection just established. */
1053 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
1054 conn->flags |= CO_FL_CONNECTED;
1055
1056 if (!s)
1057 goto fail;
1058 if (conn->flags & CO_FL_ERROR)
1059 goto fail;
Olivier Houchardd76bd2d2018-11-29 16:58:49 +01001060 si_detach_endpoint(&s->si[1]);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001061 cs = si_alloc_cs(&s->si[1], conn);
1062 if (!cs)
1063 goto fail;
1064 if (conn_install_mux_be(conn, cs) < 0)
1065 goto fail;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001066 srv = objt_server(s->target);
1067 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1068 conn->mux->avail_streams(conn) > 0)
1069 LIST_ADD(&srv->idle_conns[tid], &conn->list);
1070
Olivier Houchard201b9f42018-11-21 00:16:29 +01001071 return 0;
1072
1073fail:
1074 if (cs)
1075 cs_free(cs);
1076 /* kill the connection now */
1077 conn_stop_tracking(conn);
1078 conn_full_close(conn);
1079 conn_free(conn);
1080 return -1;
1081}
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001082#endif
Olivier Houchard201b9f42018-11-21 00:16:29 +01001083
Willy Tarreaub1d67742010-03-29 19:36:59 +02001084
Willy Tarreaubaaee002006-06-26 02:48:02 +02001085/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001086 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001087 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001088 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001089 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001090 * - SF_ERR_NONE if everything's OK
1091 * - SF_ERR_SRVTO if there are no more servers
1092 * - SF_ERR_SRVCL if the connection was refused by the server
1093 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1094 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1095 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001096 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001097 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001098 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001099 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001100int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001101{
Olivier Houchard522eea72017-11-03 16:27:47 +01001102 struct connection *cli_conn = NULL;
Willy Tarreau34601a82013-12-15 16:33:46 +01001103 struct connection *srv_conn;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001104 struct connection *old_conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001105 struct conn_stream *srv_cs;
Willy Tarreau827aee92011-03-10 16:55:02 +01001106 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001107 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001108 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001109
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001110
Willy Tarreau7b004922015-08-04 19:34:21 +02001111 srv = objt_server(s->target);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001112 old_conn = srv_conn = s->sess->srv_conn;
Olivier Houchard47e9a1a2018-11-07 17:55:19 +01001113 if (srv_conn)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001114 reuse = (s->target == srv_conn->target) &&
Olivier Houcharda49d41a2018-11-29 18:03:21 +01001115 conn_xprt_ready(srv_conn) && srv_conn->mux &&
1116 (srv_conn->mux->avail_streams(srv_conn) > 0);
Willy Tarreau34601a82013-12-15 16:33:46 +01001117
Willy Tarreau8dff9982015-08-04 20:45:52 +02001118 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001119 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001120
Willy Tarreau449d74a2015-08-05 17:16:33 +02001121 /* Below we pick connections from the safe or idle lists based
1122 * on the strategy, the fact that this is a first or second
1123 * (retryable) request, with the indicated priority (1 or 2) :
1124 *
1125 * SAFE AGGR ALWS
1126 *
1127 * +-----+-----+ +-----+-----+ +-----+-----+
1128 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1129 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1130 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1131 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1132 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1133 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1134 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001135 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001136 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1137 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001138 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001139 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001140 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001141 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1142 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001143 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001144 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001145 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001146 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001147 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001148 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001149
Willy Tarreau449d74a2015-08-05 17:16:33 +02001150 /* If we've picked a connection from the pool, we now have to
1151 * detach it. We may have to get rid of the previous idle
1152 * connection we had, so for this we try to swap it with the
1153 * other owner's. That way it may remain alive for others to
1154 * pick.
1155 */
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001156 if (srv_conn)
Willy Tarreau8dff9982015-08-04 20:45:52 +02001157 reuse = 1;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001158 }
1159
Willy Tarreau34601a82013-12-15 16:33:46 +01001160 if (reuse) {
1161 /* Disable connection reuse if a dynamic source is used.
1162 * As long as we don't share connections between servers,
1163 * we don't need to disable connection reuse on no-idempotent
1164 * requests nor when PROXY protocol is used.
1165 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001166 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1167 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1168 reuse = 0;
1169 }
1170 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1171 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1172 reuse = 0;
1173 }
1174 }
1175
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001176 /* We're about to use another connection, let the mux know we're
1177 * done with this one
1178 */
1179 if (old_conn != srv_conn) {
1180 int did_switch = 0;
1181
1182 if (srv_conn && reuse) {
1183 struct session *sess;
1184 int count = 0;
1185
1186 /*
1187 * If we're attempting to reuse a connection, and
1188 * the new connection has only one user, and there
1189 * are no more streams available, attempt to give
1190 * it our old connection
1191 */
1192 list_for_each_entry(sess, &srv_conn->session_list,
1193 conn_list) {
1194 count++;
1195 if (count > 1)
1196 break;
1197 }
1198 if (count == 1) {
1199 sess = LIST_ELEM(srv_conn->session_list.n,
1200 struct session *, conn_list);
1201 LIST_DEL(&sess->conn_list);
1202 if (old_conn &&
1203 !(old_conn->flags & CO_FL_PRIVATE) &&
Olivier Houcharda49d41a2018-11-29 18:03:21 +01001204 old_conn->mux != NULL &&
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001205 (old_conn->mux->avail_streams(old_conn) > 0) &&
1206 (srv_conn->mux->avail_streams(srv_conn) == 1)) {
1207 LIST_ADDQ(&old_conn->session_list, &sess->conn_list);
1208 sess->srv_conn = old_conn;
Olivier Houcharda49d41a2018-11-29 18:03:21 +01001209 did_switch = 1;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001210 } else {
1211 LIST_INIT(&sess->conn_list);
1212 sess->srv_conn = NULL;
1213 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001214 }
1215
1216 }
1217 /*
1218 * We didn't manage to give our old connection, destroy it
1219 */
1220 if (old_conn && !did_switch) {
1221 old_conn->owner = NULL;
Olivier Houcharda30a40b2018-11-29 18:04:12 +01001222 LIST_DEL(&old_conn->list);
1223 LIST_INIT(&old_conn->list);
1224 if (old_conn->mux)
1225 old_conn->mux->destroy(old_conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001226 old_conn = NULL;
1227 }
1228 }
1229
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001230 if (!reuse) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001231 srv_conn = conn_new();
1232 srv_cs = NULL;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001233 } else {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001234 if (srv_conn->mux->avail_streams(srv_conn) == 1) {
1235 /* No more streams available, remove it from the list */
1236 LIST_DEL(&srv_conn->list);
1237 LIST_INIT(&srv_conn->list);
1238 }
1239 srv_cs = srv_conn->mux->attach(srv_conn);
1240 if (srv_cs)
1241 si_attach_cs(&s->si[1], srv_cs);
1242 }
1243 if (srv_conn && old_conn != srv_conn) {
1244 srv_conn->owner = s->sess;
1245 s->sess->srv_conn = srv_conn;
1246 LIST_DEL(&s->sess->conn_list);
1247 LIST_ADDQ(&srv_conn->session_list, &s->sess->conn_list);
Willy Tarreau323a2d92015-08-04 19:00:17 +02001248 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001249
Olivier Houchard201b9f42018-11-21 00:16:29 +01001250 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001251 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001252
Willy Tarreaue7dff022015-04-03 01:14:29 +02001253 if (!(s->flags & SF_ADDR_SET)) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001254 err = assign_server_address(s, srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001255 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001256 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001257 }
1258
Willy Tarreauff605db2013-12-20 11:09:51 +01001259 if (!conn_xprt_ready(srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001260 /* the target was only on the stream, assign it to the SI now */
Willy Tarreauff605db2013-12-20 11:09:51 +01001261 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001262
Willy Tarreauff605db2013-12-20 11:09:51 +01001263 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001264 if (srv)
Willy Tarreau7b004922015-08-04 19:34:21 +02001265 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001266 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1267 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001268 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Olivier Houchard12950162018-11-23 14:32:08 +01001269 if (!(srv_conn->ctrl))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001270 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001271 }
1272 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001273 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001274
Lukas Tribusda95fd92018-11-25 13:21:27 +01001275#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001276 if (!srv ||
1277 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1278 srv->mux_proto))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001279#endif
1280 {
1281 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1282 if (!srv_cs) {
1283 conn_free(srv_conn);
1284 return SF_ERR_RESOURCE;
1285 }
1286 if (conn_install_mux_be(srv_conn, srv_cs) < 0)
1287 return SF_ERR_INTERNAL;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001288 /* If we're doing http-reuse always, and the connection
1289 * is an http2 connection, add it to the available list,
1290 * so that others can use it right away.
1291 */
1292 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1293 srv_conn->mux->avail_streams(srv_conn) > 0)
1294 LIST_ADD(&srv->idle_conns[tid], &srv_conn->list);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001295 }
Lukas Tribusda95fd92018-11-25 13:21:27 +01001296#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001297 else {
1298 srv_conn->mux_ctx = s;
1299 /* Store the connection into the stream interface,
1300 * while we still don't have a mux, so that if the
1301 * stream is destroyed before the connection is
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001302 * established, we have a chance to destroy it even
1303 * if it is no longer referenced in the session.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001304 */
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001305 s->si[1].end = &srv_conn->obj_type;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001306 conn_set_xprt_done_cb(srv_conn, conn_complete_server);
1307 }
1308
1309#endif
1310
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001311
Willy Tarreauff605db2013-12-20 11:09:51 +01001312 /* process the case where the server requires the PROXY protocol to be sent */
1313 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001314 cli_conn = objt_conn(strm_orig(s));
1315
Willy Tarreau7b004922015-08-04 19:34:21 +02001316 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001317 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreauff605db2013-12-20 11:09:51 +01001318 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001319 if (cli_conn)
1320 conn_get_to_addr(cli_conn);
1321 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001322
Willy Tarreauff605db2013-12-20 11:09:51 +01001323 assign_tproxy_address(s);
1324 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001325 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001326 s->flags |= SF_SRV_REUSED;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001327
William Lallemandb7ff6a32012-03-02 14:35:21 +01001328 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001329 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001330 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001331
Willy Tarreau14f8e862012-08-30 22:23:13 +02001332 /* disable lingering */
1333 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001334 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001335
Olivier Houchard201b9f42018-11-21 00:16:29 +01001336 err = si_connect(&s->si[1], srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001337
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001338#ifdef USE_OPENSSL
Olivier Houchard522eea72017-11-03 16:27:47 +01001339 if (!reuse && cli_conn && srv &&
1340 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
1341 (cli_conn->flags & CO_FL_EARLY_DATA) &&
1342 !channel_is_empty(si_oc(&s->si[1])) &&
1343 srv_conn->flags & CO_FL_SSL_WAIT_HS) {
1344 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
1345 srv_conn->flags |= CO_FL_EARLY_SSL_HS;
1346 }
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001347#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001348
Willy Tarreaue7dff022015-04-03 01:14:29 +02001349 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001350 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001351
Willy Tarreau14f8e862012-08-30 22:23:13 +02001352 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001353 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001354
Willy Tarreau827aee92011-03-10 16:55:02 +01001355 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001356 int count;
1357
Willy Tarreaue7dff022015-04-03 01:14:29 +02001358 s->flags |= SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02001359 count = HA_ATOMIC_ADD(&srv->cur_sess, 1);
1360 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001361 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001362 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001363
1364#ifdef USE_OPENSSL
1365 if (srv->ssl_ctx.sni) {
1366 struct sample *smp;
1367 int rewind;
1368
1369 /* Tricky case : we have already scheduled the pending
1370 * HTTP request or TCP data for leaving. So in HTTP we
1371 * rewind exactly the headers, otherwise we rewind the
1372 * output data.
1373 */
Willy Tarreau6a445eb2018-06-19 07:04:45 +02001374 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001375 c_rew(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001376
1377 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, srv->ssl_ctx.sni, SMP_T_STR);
1378
1379 /* restore the pointers */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001380 c_adv(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001381
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001382 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001383 ssl_sock_set_servername(srv_conn,
1384 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001385 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001386 }
1387 }
1388#endif /* USE_OPENSSL */
1389
Willy Tarreaubaaee002006-06-26 02:48:02 +02001390 }
1391
Willy Tarreaue7dff022015-04-03 01:14:29 +02001392 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001393}
1394
1395
Willy Tarreaubaaee002006-06-26 02:48:02 +02001396/* This function performs the "redispatch" part of a connection attempt. It
1397 * will assign a server if required, queue the connection if required, and
1398 * handle errors that might arise at this level. It can change the server
1399 * state. It will return 1 if it encounters an error, switches the server
1400 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1401 * that the connection is ready to use.
1402 */
1403
Willy Tarreau87b09662015-04-03 00:22:06 +02001404int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001405{
Willy Tarreau827aee92011-03-10 16:55:02 +01001406 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001407 int conn_err;
1408
1409 /* We know that we don't have any connection pending, so we will
1410 * try to get a new one, and wait in this state if it's queued
1411 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001412 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001413 conn_err = assign_server_and_queue(s);
1414 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001415
Willy Tarreaubaaee002006-06-26 02:48:02 +02001416 switch (conn_err) {
1417 case SRV_STATUS_OK:
1418 break;
1419
Willy Tarreau7c669d72008-06-20 15:04:11 +02001420 case SRV_STATUS_FULL:
1421 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1422 * and we can redispatch to another server, or it is not and we return
1423 * 503. This only makes sense in DIRECT mode however, because normal LB
1424 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001425 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001426 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001427 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001428 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001429 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001430 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001431 goto redispatch;
1432 }
1433
Willy Tarreau350f4872014-11-28 14:42:25 +01001434 if (!s->si[1].err_type) {
1435 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001436 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001437
Christopher Faulet29f77e82017-06-08 14:04:45 +02001438 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001439 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001440 return 1;
1441
Willy Tarreaubaaee002006-06-26 02:48:02 +02001442 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001443 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001444 if (!s->si[1].err_type) {
1445 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001446 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001447
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001448 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001449 return 1;
1450
1451 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001452 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1453 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001454 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001455 return 1;
1456
Willy Tarreaubaaee002006-06-26 02:48:02 +02001457 case SRV_STATUS_INTERNAL:
1458 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001459 if (!s->si[1].err_type) {
1460 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001461 }
1462
Willy Tarreau827aee92011-03-10 16:55:02 +01001463 if (srv)
1464 srv_inc_sess_ctr(srv);
1465 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001466 srv_set_sess_last(srv);
1467 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001468 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001469 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001470
Willy Tarreau87b09662015-04-03 00:22:06 +02001471 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001472 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001473 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001474 return 1;
1475 }
1476 /* if we get here, it's because we got SRV_STATUS_OK, which also
1477 * means that the connection has not been queued.
1478 */
1479 return 0;
1480}
1481
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001482/* sends a log message when a backend goes down, and also sets last
1483 * change date.
1484 */
1485void set_backend_down(struct proxy *be)
1486{
1487 be->last_change = now.tv_sec;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001488 HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001489
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001490 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001492 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1493 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001494}
1495
Willy Tarreau87b09662015-04-03 00:22:06 +02001496/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001497 * tries to extract an RDP cookie from the request buffer, and look for the
1498 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001499 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001500 * list. Nothing is performed if a server was already assigned.
1501 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001502int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001503{
1504 struct proxy *px = s->be;
1505 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001506 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001507 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001508 uint16_t port;
1509 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001510 char *p;
1511
Christopher Faulet45073512018-07-20 10:16:29 +02001512 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 +02001513 now_ms, __FUNCTION__,
1514 s,
1515 req,
1516 req->rex, req->wex,
1517 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001518 ci_data(req),
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001519 req->analysers);
1520
Willy Tarreaue7dff022015-04-03 01:14:29 +02001521 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001522 goto no_cookie;
1523
Willy Tarreau37406352012-04-23 16:16:37 +02001524 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001525
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001526 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001527 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001528 goto no_cookie;
1529
Willy Tarreau04276f32017-01-06 17:41:29 +01001530 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1531 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1532 * server's IP address in network order, and "port" is the integer corresponding to the
1533 * server's port in network order. Comments please Emeric.
1534 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001535 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001536 if (*p != '.')
1537 goto no_cookie;
1538 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001539
1540 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001541 if (*p != '.')
1542 goto no_cookie;
1543
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001544 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001545 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001546 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001547 port == srv->svc_port &&
1548 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001549 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001550 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001551 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001552 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001553 break;
1554 }
1555 }
1556 srv = srv->next;
1557 }
1558
1559no_cookie:
1560 req->analysers &= ~an_bit;
1561 req->analyse_exp = TICK_ETERNITY;
1562 return 1;
1563}
1564
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001565int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001566 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001567 return px->down_time;
1568
1569 return now.tv_sec - px->last_change + px->down_time;
1570}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001571
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001572/*
1573 * This function returns a string containing the balancing
1574 * mode of the proxy in a format suitable for stats.
1575 */
1576
1577const char *backend_lb_algo_str(int algo) {
1578
1579 if (algo == BE_LB_ALGO_RR)
1580 return "roundrobin";
1581 else if (algo == BE_LB_ALGO_SRR)
1582 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001583 else if (algo == BE_LB_ALGO_FAS)
1584 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001585 else if (algo == BE_LB_ALGO_LC)
1586 return "leastconn";
1587 else if (algo == BE_LB_ALGO_SH)
1588 return "source";
1589 else if (algo == BE_LB_ALGO_UH)
1590 return "uri";
1591 else if (algo == BE_LB_ALGO_PH)
1592 return "url_param";
1593 else if (algo == BE_LB_ALGO_HH)
1594 return "hdr";
1595 else if (algo == BE_LB_ALGO_RCH)
1596 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001597 else if (algo == BE_LB_ALGO_NONE)
1598 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001599 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001600 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001601}
1602
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001603/* This function parses a "balance" statement in a backend section describing
1604 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001605 * returns -1, it will write an error message into the <err> buffer which will
1606 * automatically be allocated and must be passed as NULL. The trailing '\n'
1607 * will not be written. The function must be called with <args> pointing to the
1608 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001609 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001610int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001611{
1612 if (!*(args[0])) {
1613 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001614 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1615 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001616 return 0;
1617 }
1618
1619 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001620 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1621 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001622 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001623 else if (!strcmp(args[0], "static-rr")) {
1624 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1625 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1626 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001627 else if (!strcmp(args[0], "first")) {
1628 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1629 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1630 }
Willy Tarreau51406232008-03-10 22:04:20 +01001631 else if (!strcmp(args[0], "leastconn")) {
1632 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1633 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1634 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02001635 else if (!strcmp(args[0], "random")) {
1636 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1637 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
1638 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001639 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001640 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1641 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001642 }
1643 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001644 int arg = 1;
1645
Willy Tarreau31682232007-11-29 15:38:04 +01001646 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1647 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001648
Oskar Stolc8dc41842012-05-19 10:19:54 +01001649 curproxy->uri_whole = 0;
1650
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001651 while (*args[arg]) {
1652 if (!strcmp(args[arg], "len")) {
1653 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001654 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001655 return -1;
1656 }
1657 curproxy->uri_len_limit = atoi(args[arg+1]);
1658 arg += 2;
1659 }
1660 else if (!strcmp(args[arg], "depth")) {
1661 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001662 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001663 return -1;
1664 }
1665 /* hint: we store the position of the ending '/' (depth+1) so
1666 * that we avoid a comparison while computing the hash.
1667 */
1668 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1669 arg += 2;
1670 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001671 else if (!strcmp(args[arg], "whole")) {
1672 curproxy->uri_whole = 1;
1673 arg += 1;
1674 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001675 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001676 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001677 return -1;
1678 }
1679 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001680 }
Willy Tarreau01732802007-11-01 22:48:15 +01001681 else if (!strcmp(args[0], "url_param")) {
1682 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001683 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001684 return -1;
1685 }
Willy Tarreau31682232007-11-29 15:38:04 +01001686 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1687 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001688
1689 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001690 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001691 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001692 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001693 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001694 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001695 return -1;
1696 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001697 }
Benoitaffb4812009-03-25 13:02:10 +01001698 }
1699 else if (!strncmp(args[0], "hdr(", 4)) {
1700 const char *beg, *end;
1701
1702 beg = args[0] + 4;
1703 end = strchr(beg, ')');
1704
1705 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001706 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001707 return -1;
1708 }
1709
1710 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1711 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1712
1713 free(curproxy->hh_name);
1714 curproxy->hh_len = end - beg;
1715 curproxy->hh_name = my_strndup(beg, end - beg);
1716 curproxy->hh_match_domain = 0;
1717
1718 if (*args[1]) {
1719 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001720 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001721 return -1;
1722 }
1723 curproxy->hh_match_domain = 1;
1724 }
Emeric Brun736aa232009-06-30 17:56:00 +02001725 }
1726 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1727 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1728 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1729
1730 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1731 const char *beg, *end;
1732
1733 beg = args[0] + 11;
1734 end = strchr(beg, ')');
1735
1736 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001737 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001738 return -1;
1739 }
1740
1741 free(curproxy->hh_name);
1742 curproxy->hh_name = my_strndup(beg, end - beg);
1743 curproxy->hh_len = end - beg;
1744 }
1745 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1746 free(curproxy->hh_name);
1747 curproxy->hh_name = strdup("mstshash");
1748 curproxy->hh_len = strlen(curproxy->hh_name);
1749 }
1750 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001751 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001752 return -1;
1753 }
Willy Tarreau01732802007-11-01 22:48:15 +01001754 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001755 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001756 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 +01001757 return -1;
1758 }
1759 return 0;
1760}
1761
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001762
1763/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001764/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001765/************************************************************************/
1766
Willy Tarreau34db1082012-04-19 17:16:54 +02001767/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001768 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001769 * undefined behaviour.
1770 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001771static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001772smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001773{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001774 struct proxy *px;
1775
Willy Tarreau37406352012-04-23 16:16:37 +02001776 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001777 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001778 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001779
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001780 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001781
1782 return 1;
1783}
1784
Willy Tarreau37406352012-04-23 16:16:37 +02001785/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001786 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001787 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1788 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001789 */
1790static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001791smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001792{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001793 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001794
Willy Tarreau37406352012-04-23 16:16:37 +02001795 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001796 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02001797 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
1798 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001799 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001800 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001801 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001802 return 1;
1803}
1804
Willy Tarreau34db1082012-04-19 17:16:54 +02001805/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001806 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001807 * undefined behaviour.
1808 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001809static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001810smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001811{
1812 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001813
Willy Tarreau37406352012-04-23 16:16:37 +02001814 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001815 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001816 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001817
Willy Tarreau24e32d82012-04-23 23:55:44 +02001818 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001819 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001820 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001821
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001822 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001823 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001824 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001825 return 1;
1826 }
1827
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001828 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001829 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001830 }
1831
1832 return 1;
1833}
1834
Willy Tarreaua5e37562011-12-16 17:06:15 +01001835/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001836static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001837smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001838{
Willy Tarreaube508f12016-03-10 11:47:01 +01001839 if (!smp->strm)
1840 return 0;
1841
Willy Tarreauf853c462012-04-23 18:53:56 +02001842 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001843 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001844 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001845 return 1;
1846}
1847
Marcin Deranekd2471c22016-12-12 14:08:05 +01001848/* set string to the name of the backend */
1849static int
1850smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1851{
1852 if (!smp->strm)
1853 return 0;
1854
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001855 smp->data.u.str.area = (char *)smp->strm->be->id;
1856 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01001857 return 0;
1858
1859 smp->data.type = SMP_T_STR;
1860 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001861 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01001862
1863 return 1;
1864}
1865
Willy Tarreaua5e37562011-12-16 17:06:15 +01001866/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001867static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001868smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001869{
Willy Tarreaube508f12016-03-10 11:47:01 +01001870 if (!smp->strm)
1871 return 0;
1872
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001873 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001874 return 0;
1875
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001876 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02001877 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001878
1879 return 1;
1880}
1881
Willy Tarreau34db1082012-04-19 17:16:54 +02001882/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001883 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001884 * undefined behaviour.
1885 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001886static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001887smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001888{
Willy Tarreau37406352012-04-23 16:16:37 +02001889 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001890 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001891 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001892 return 1;
1893}
1894
Willy Tarreau34db1082012-04-19 17:16:54 +02001895/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001896 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001897 * undefined behaviour.
1898 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001899static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001900smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001901{
Willy Tarreau37406352012-04-23 16:16:37 +02001902 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001903 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001904 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001905 return 1;
1906}
1907
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04001908/* set temp integer to the number of available connections across available
1909 * servers on the backend.
1910 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
1911 * undefined behaviour.
1912 */
1913static int
1914smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
1915{
1916 struct server *iterator;
1917 struct proxy *px;
1918 unsigned int maxconn;
1919
1920 smp->flags = SMP_F_VOL_TEST;
1921 smp->data.type = SMP_T_SINT;
1922 smp->data.u.sint = 0;
1923
1924 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
1925 if (iterator->cur_state == SRV_ST_STOPPED)
1926 continue;
1927
1928 px = iterator->proxy;
1929 if (!srv_currently_usable(iterator) ||
1930 ((iterator->flags & SRV_F_BACKUP) &&
1931 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
1932 continue;
1933
1934 if (iterator->maxconn == 0) {
1935 /* one active server is unlimited, return -1 */
1936 smp->data.u.sint = -1;
1937 return 1;
1938 }
1939
1940 maxconn = srv_dynamic_maxconn(iterator);
1941 if (maxconn > iterator->cur_sess)
1942 smp->data.u.sint += maxconn - iterator->cur_sess;
1943 }
1944
1945 return 1;
1946}
1947
Willy Tarreau34db1082012-04-19 17:16:54 +02001948/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001949 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001950 * undefined behaviour.
1951 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001952static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001953smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001954{
Willy Tarreau37406352012-04-23 16:16:37 +02001955 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001956 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001957 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001958 return 1;
1959}
1960
Willy Tarreaua5e37562011-12-16 17:06:15 +01001961/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001962 * by the number of running servers and rounded up. If there is no running
1963 * server, we return twice the total, just as if we had half a running server.
1964 * This is more or less correct anyway, since we expect the last server to come
1965 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001966 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001967 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001968 */
1969static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001970smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001971{
1972 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001973 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02001974
Willy Tarreau37406352012-04-23 16:16:37 +02001975 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001976 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001977 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001978
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001979 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02001980
1981 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001982 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001983 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001984 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001985
1986 return 1;
1987}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001988
Willy Tarreau34db1082012-04-19 17:16:54 +02001989/* set temp integer to the number of concurrent connections on the server in the backend.
1990 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1991 * undefined behaviour.
1992 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001993static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001994smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001995{
Willy Tarreauf853c462012-04-23 18:53:56 +02001996 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001997 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001998 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001999 return 1;
2000}
2001
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002002/* set temp integer to the number of available connections on the server in the backend.
2003 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2004 * undefined behaviour.
2005 */
2006static int
2007smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2008{
2009 unsigned int maxconn;
2010
2011 smp->flags = SMP_F_VOL_TEST;
2012 smp->data.type = SMP_T_SINT;
2013
2014 if (args->data.srv->maxconn == 0) {
2015 /* one active server is unlimited, return -1 */
2016 smp->data.u.sint = -1;
2017 return 1;
2018 }
2019
2020 maxconn = srv_dynamic_maxconn(args->data.srv);
2021 if (maxconn > args->data.srv->cur_sess)
2022 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2023 else
2024 smp->data.u.sint = 0;
2025
2026 return 1;
2027}
2028
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002029/* set temp integer to the number of connections pending in the server's queue.
2030 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2031 * undefined behaviour.
2032 */
2033static int
2034smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2035{
2036 smp->flags = SMP_F_VOL_TEST;
2037 smp->data.type = SMP_T_SINT;
2038 smp->data.u.sint = args->data.srv->nbpend;
2039 return 1;
2040}
2041
Tait Clarridge7896d522012-12-05 21:39:31 -05002042/* set temp integer to the number of enabled servers on the proxy.
2043 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2044 * undefined behaviour.
2045 */
2046static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002047smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002048{
2049 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002050 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002051 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002052 return 1;
2053}
2054
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002055static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2056{
2057
2058 struct proxy *px;
2059
2060 if (!smp_make_safe(smp))
2061 return 0;
2062
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002063 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002064 if (!px)
2065 return 0;
2066
2067 smp->data.type = SMP_T_SINT;
2068 smp->data.u.sint = be_usable_srv(px);
2069
2070 return 1;
2071}
2072
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002073
2074/* Note: must not be declared <const> as its list will be overwritten.
2075 * Please take care of keeping this list alphabetically sorted.
2076 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002077static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002078 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2079 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002080 { "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 +02002081 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002082 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002083 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2084 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2085 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2086 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2087 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002088 { "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 +02002089 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002090 { "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 +02002091 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002092 { "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 +01002093 { /* END */ },
2094}};
2095
Willy Tarreau0108d902018-11-25 19:14:37 +01002096INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2097
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002098/* Note: must not be declared <const> as its list will be overwritten */
2099static struct sample_conv_kw_list sample_conv_kws = {ILH, {
2100 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2101 { /* END */ },
2102}};
2103
Willy Tarreau0108d902018-11-25 19:14:37 +01002104INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002105
Willy Tarreau61612d42012-04-19 18:42:05 +02002106/* Note: must not be declared <const> as its list will be overwritten.
2107 * Please take care of keeping this list alphabetically sorted.
2108 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002109static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002110 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002111}};
2112
Willy Tarreau0108d902018-11-25 19:14:37 +01002113INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002114
Willy Tarreaubaaee002006-06-26 02:48:02 +02002115/*
2116 * Local variables:
2117 * c-indent-level: 8
2118 * c-basic-offset: 8
2119 * End:
2120 */