blob: 92d1016ebf45460d50d4538a37a2e79798c51762 [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>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010027#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010028#include <common/initcall.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010031#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010035#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020036#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020038#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020039#include <proto/frontend.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010040#include <proto/http_htx.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020041#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010042#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020043#include <proto/lb_fwlc.h>
44#include <proto/lb_fwrr.h>
45#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020046#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020047#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010048#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010049#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020050#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020052#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020053#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010055#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010056#include <proto/server.h>
Olivier Houchard00cf70f2018-11-30 17:24:55 +010057#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020058#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010059#include <proto/stream_interface.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020060#include <proto/ssl_sock.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020061#include <proto/task.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020062
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 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100167static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
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 Tarreau6c30be52019-01-14 17:07:39 +0100187 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100188 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200189 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,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100199 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
200 * the "whole" optional argument (boolean), the "len" argument (numeric) and
201 * the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200202 *
203 * This code was contributed by Guillaume Dallaire, who also selected this hash
204 * algorithm out of a tens because it gave him the best results.
205 *
206 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100207static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700209 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200210 int c;
211 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400212 const char *start, *end;
vend_natalie.chenfb928392019-12-09 14:43:49 +0800213 int depth = 1;
214 int orig_uri_len = uri_len;
215 const char *orig_start;
216 const char *p, *params;
217 int buflen = 0;
218 char *buf;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200219
220 if (px->lbprm.tot_weight == 0)
221 return NULL;
222
223 /* note: we won't hash if there's only one server left */
224 if (px->lbprm.tot_used == 1)
225 goto hash_done;
226
Willy Tarreaua9a72492019-01-14 16:14:15 +0100227 if (px->lbprm.arg_opt2) // "len"
228 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200229
vend_natalie.chenfb928392019-12-09 14:43:49 +0800230 orig_start = start = end = uri;
231 if (px->lbprm.arg_opt4 == 1) {
232 p = memchr(uri, '?', uri_len);
233 params = p;
234 if (p) {
235 p++;
236 uri_len = p - uri;
237 params = p;
238 if (p[7] == '=') {
239 if (memcmp(p, "service", 7) == 0) {
240 p += 8;
241 depth = 2;
242 }
243 }
244 }
245
246 end = uri + uri_len - 1;
247 while (uri_len--) {
248 c = *end;
249 if (c == '/') {
250 if (p == NULL)
251 p = end + 1;
252 slashes++;
253 if (slashes == depth)
254 break;
255 }
256 end--;
257 }
258 if (p != NULL && (!strncmp(p, "git-receive-pack", 16) || !strncmp(p, "git-upload-pack", 15))) {
259 // we have git request here
260 // get rid of redundant '/'
261 while ((end - start) > 1 && *(start+1) == '/')
262 start++;
263 while ((end - start) > 1 && *(end-1) == '/')
264 end--;
265 // get rid of trailing ".git"
266 if ((end - start) > 4 && strncmp(end-4, ".git", 4) == 0)
267 end -= 4;
268
269 hash = gen_hash(px, start, (end - start));
270 } else {
271 if (px->lbprm.arg_opt3 > 0){
272 // reset state
273 uri_len = orig_uri_len;
274 if (params != NULL)
275 uri_len = params - uri;
276 depth = px->lbprm.arg_opt3;
277 slashes = 0;
278 buf = (char *)malloc(uri_len);
279 orig_start = start = end = uri;
280 while (uri_len--) {
281 c = *end;
282 if (c == '/') {
283 if (slashes == 1 && end - start == 2) {
284 depth += 1;
285 orig_start = start = end;
286 }
287 slashes++;
288 if (slashes == depth - 1) {
289 if (memcmp(start, "/changes", end - start) != 0 && memcmp(start, "/projects", end - start) != 0)
290 break;
291 start = end;
292 p = start;
293 }
294 else if (slashes == depth) { /* depth+1 */
295 memcpy(buf + buflen, p, end - p);
296 buflen += (end - p);
297 break;
298 }
299 }
300 else if (c == '%') {
301 if (orig_start != start && uri_len > 2 && (memcmp(end, "%2F", 3) == 0 || memcmp(end, "%2f", 3) == 0)) {
302 memcpy(buf + buflen, p, end - p);
303 buflen += (end - p) + 1;
304 buf[buflen - 1] = '/';
305 p = end + 3;
306 }
307 }
308 else if (c == '~') {
309 if (orig_start != start) {
310 memcpy(buf + buflen, p, end - p);
311 buflen += (end - p);
312 break;
313 }
314 }
315 end++;
316 }
317 }
318 if (buflen > 0)
319 hash = gen_hash(px, buf, buflen);
320 if (buf != NULL)
321 free(buf);
322 if (buflen <= 0) /*let's fallback to round robin */
323 return NULL;
324 }
325 } else {
326 while (uri_len--) {
327 c = *end;
328 if (c == '/') {
329 slashes++;
330 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
331 break;
332 }
333 else if (c == '?' && !px->lbprm.arg_opt1) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200334 break;
vend_natalie.chenfb928392019-12-09 14:43:49 +0800335 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200336 }
Bhaskar98634f02013-10-29 23:30:51 -0400337
vend_natalie.chenfb928392019-12-09 14:43:49 +0800338 hash = gen_hash(px, start, (end - start));
339 }
Bhaskar98634f02013-10-29 23:30:51 -0400340
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500341 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100342 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200343 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100344 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100345 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200346 else
347 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200348}
349
Christopher Faulet5b517552017-06-09 14:17:53 +0200350/*
Willy Tarreau01732802007-11-01 22:48:15 +0100351 * This function tries to find a running server for the proxy <px> following
352 * the URL parameter hash method. It looks for a specific parameter in the
353 * URL and hashes it to compute the server ID. This is useful to optimize
354 * performance by avoiding bounces between servers in contexts where sessions
355 * are shared but cookies are not usable. If the parameter is not found, NULL
356 * is returned. If any server is found, it will be returned. If no valid server
357 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100358 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100359static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len, const struct server *avoid)
Willy Tarreau01732802007-11-01 22:48:15 +0100360{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700361 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400362 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200363 const char *p;
364 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100365 int plen;
366
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200367 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100368 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100369 return NULL;
370
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200371 if ((p = memchr(uri, '?', uri_len)) == NULL)
372 return NULL;
373
Willy Tarreau01732802007-11-01 22:48:15 +0100374 p++;
375
376 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100377 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200378 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100379
380 while (uri_len > plen) {
381 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200382 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100383 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100385 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200386 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100387 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400389 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200390 uri_len -= plen + 1;
391
Bhaskar98634f02013-10-29 23:30:51 -0400392 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100393 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400394 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100395 }
Bhaskar98634f02013-10-29 23:30:51 -0400396 hash = gen_hash(px, start, (end - start));
397
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500398 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100399 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400400
Willy Tarreau6c30be52019-01-14 17:07:39 +0100401 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100402 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200403 else
404 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100405 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200406 }
407 /* skip to next parameter */
408 p = memchr(params, '&', uri_len);
409 if (!p)
410 return NULL;
411 p++;
412 uri_len -= (p - params);
413 params = p;
414 }
415 return NULL;
416}
417
418/*
419 * this does the same as the previous server_ph, but check the body contents
420 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100421static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200422{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700423 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100424 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200425 struct proxy *px = s->be;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100426 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100427 unsigned long len;
428 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200429
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100430 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200431 return NULL;
432
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100433 if (!IS_HTX_STRM(s)) {
434 struct http_txn *txn = s->txn;
435 struct http_msg *msg = &txn->req;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200436
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100437 len = http_body_bytes(msg);
438 p = params = c_ptr(req, -http_data_rewind(msg));
439
440 if (len == 0)
441 return NULL;
442 if (len > b_wrap(&req->buf) - p)
443 len = b_wrap(&req->buf) - p;
444
445 }
446 else {
447 struct htx *htx = htxbuf(&req->buf);
448 struct htx_blk *blk;
449
450 p = params = NULL;
451 len = 0;
Christopher Fauleta3f15502019-05-13 15:27:23 +0200452 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100453 enum htx_blk_type type = htx_get_blk_type(blk);
454 struct ist v;
455
456 if (type != HTX_BLK_DATA)
457 continue;
458 v = htx_get_blk_value(htx, blk);
459 p = params = v.ptr;
460 len = v.len;
461 break;
462 }
463 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200464
465 while (len > plen) {
466 /* Look for the parameter name followed by an equal symbol */
467 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100468 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200469 /* OK, we have the parameter here at <params>, and
470 * the value after the equal sign, at <p>
471 * skip the equal symbol
472 */
473 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400474 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200475 len -= plen + 1;
476
Bhaskar98634f02013-10-29 23:30:51 -0400477 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200478 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100479 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400480 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100481 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200482 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
483 break;
484 return NULL; /* oh, no; this is not uri-encoded.
485 * This body does not contain parameters.
486 */
487 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200488 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400489 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200490 /* should we break if vlen exceeds limit? */
491 }
Bhaskar98634f02013-10-29 23:30:51 -0400492 hash = gen_hash(px, start, (end - start));
493
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500494 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100495 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400496
Willy Tarreau6c30be52019-01-14 17:07:39 +0100497 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100498 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200499 else
500 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200501 }
502 }
Willy Tarreau01732802007-11-01 22:48:15 +0100503 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200504 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100505 if (!p)
506 return NULL;
507 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200508 len -= (p - params);
509 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100510 }
511 return NULL;
512}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200513
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200514
Willy Tarreaubaaee002006-06-26 02:48:02 +0200515/*
Benoitaffb4812009-03-25 13:02:10 +0100516 * This function tries to find a running server for the proxy <px> following
517 * the Header parameter hash method. It looks for a specific parameter in the
518 * URL and hashes it to compute the server ID. This is useful to optimize
519 * performance by avoiding bounces between servers in contexts where sessions
520 * are shared but cookies are not usable. If the parameter is not found, NULL
521 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100522 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
523 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100524 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100525static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100526{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700527 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100528 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100529 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100530 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100531 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400532 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100533
534 /* tot_weight appears to mean srv_count */
535 if (px->lbprm.tot_weight == 0)
536 return NULL;
537
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200538 /* note: we won't hash if there's only one server left */
539 if (px->lbprm.tot_used == 1)
540 goto hash_done;
541
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100542 if (!IS_HTX_STRM(s)) {
543 struct http_txn *txn = s->txn;
544 struct hdr_ctx ctx = { .idx = 0 };
545
546 /* if the message is chunked, we skip the chunk size, but use the value as len */
547 http_find_header2(px->lbprm.arg_str, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)),
548 &txn->hdr_idx, &ctx);
549
550 /* if the header is not found or empty, let's fallback to round robin */
551 if (!ctx.idx || !ctx.vlen)
552 return NULL;
553
554 /* Found the param_name in the headers.
555 * we will compute the hash based on this value ctx.val.
556 */
557 len = ctx.vlen;
558 p = (char *)ctx.line + ctx.val;
559 }
560 else {
561 struct htx *htx = htxbuf(&s->req.buf);
562 struct http_hdr_ctx ctx = { .blk = NULL };
563
564 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
565
566 /* if the header is not found or empty, let's fallback to round robin */
567 if (!ctx.blk || !ctx.value.len)
568 return NULL;
569
570 /* Found a the param_name in the headers.
571 * we will compute the hash based on this value ctx.val.
572 */
573 len = ctx.value.len;
574 p = ctx.value.ptr;
575 }
576
Willy Tarreau9fed8582019-01-14 16:04:54 +0100577 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400578 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100579 } else {
580 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100581 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100582 /* special computation, use only main domain name, not tld/host
583 * going back from the end of string, start hashing at first
584 * dot stop at next.
585 * This is designed to work with the 'Host' header, and requires
586 * a special option to activate this.
587 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100588 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100589 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100590 if (dohash) {
591 /* Rewind the pointer until the previous char
592 * is a dot, this will allow to set the start
593 * position of the domain. */
594 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100595 break;
Benoitaffb4812009-03-25 13:02:10 +0100596 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100597 else if (*p == '.') {
598 /* The pointer is rewinded to the dot before the
599 * tld, we memorize the end of the domain and
600 * can enter the domain processing. */
601 end = p;
602 dohash = 1;
603 }
Benoitaffb4812009-03-25 13:02:10 +0100604 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100605 len--;
Benoitaffb4812009-03-25 13:02:10 +0100606 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100607 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400608 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100609 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500610 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100611 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200612 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100613 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100614 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200615 else
616 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100617}
618
Willy Tarreau34db1082012-04-19 17:16:54 +0200619/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100620static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200621{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700622 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200623 struct proxy *px = s->be;
624 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200625 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200626 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200627 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200628
629 /* tot_weight appears to mean srv_count */
630 if (px->lbprm.tot_weight == 0)
631 return NULL;
632
Willy Tarreau37406352012-04-23 16:16:37 +0200633 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200634
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200635 rewind = co_data(&s->req);
636 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200637
Willy Tarreau484ff072019-01-14 15:28:53 +0100638 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200639 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100640
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200641 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200642
Willy Tarreau37406352012-04-23 16:16:37 +0200643 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200644 return NULL;
645
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200646 /* note: we won't hash if there's only one server left */
647 if (px->lbprm.tot_used == 1)
648 goto hash_done;
649
Willy Tarreau484ff072019-01-14 15:28:53 +0100650 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200651 * we will compute the hash based on this value ctx.val.
652 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200653 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400654
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500655 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100656 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200657 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100658 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100659 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200660 else
661 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200662}
Christopher Faulet5b517552017-06-09 14:17:53 +0200663
Willy Tarreau760e81d2018-05-03 07:20:40 +0200664/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100665static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200666{
667 unsigned int hash = 0;
668 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100669 struct server *prev, *curr;
670 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200671
672 /* tot_weight appears to mean srv_count */
673 if (px->lbprm.tot_weight == 0)
674 return NULL;
675
Willy Tarreau21c741a2019-01-14 18:14:27 +0100676 curr = NULL;
677 do {
678 prev = curr;
Willy Tarreau511213f2020-03-08 17:31:39 +0100679 hash = ha_random32();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100680 curr = chash_get_server_hash(px, hash, avoid);
681 if (!curr)
682 break;
683
684 /* compare the new server to the previous best choice and pick
685 * the one with the least currently served requests.
686 */
687 if (prev && prev != curr &&
688 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
689 curr = prev;
690 } while (--draws > 0);
691
692 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200693}
694
Benoitaffb4812009-03-25 13:02:10 +0100695/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200696 * This function applies the load-balancing algorithm to the stream, as
697 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200698 * 'assigned'.
699 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200700 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200701 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100702 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200703 * The function tries to keep the original connection slot if it reconnects to
704 * the same server, otherwise it releases it and tries to offer it.
705 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200706 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200707 *
708 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100709 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200710 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
711 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200712 * SRV_STATUS_INTERNAL for other unrecoverable errors.
713 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200714 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100715 * it does not need to be called anymore. This means that target_srv(&s->target)
716 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200717 *
718 */
719
Willy Tarreau87b09662015-04-03 00:22:06 +0200720int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200721{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100722 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200723 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100724 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200725 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100726
Simon Horman8effd3d2011-08-13 08:03:52 +0900727 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728
Willy Tarreau7c669d72008-06-20 15:04:11 +0200729 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200730 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200731 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100732
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100733 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200734 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200735
Willy Tarreau7c669d72008-06-20 15:04:11 +0200736 /* We have to release any connection slot before applying any LB algo,
737 * otherwise we may erroneously end up with no available slot.
738 */
739 if (conn_slot)
740 sess_change_server(s, NULL);
741
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100742 /* We will now try to find the good server and store it into <objt_server(s->target)>.
743 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200744 * as well as if no server is available (check error code).
745 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100746
Willy Tarreau827aee92011-03-10 16:55:02 +0100747 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100748 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100749
Olivier Houchardba4fff52018-12-01 14:40:40 +0100750 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200751 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100752 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100753 struct sess_srv_list *srv_list;
754 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
755 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100756
757 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200758 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100759 (!s->be->max_ka_queue ||
760 server_has_room(tmpsrv) || (
761 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
762 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100763 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100764 if (conn->flags & CO_FL_CONNECTED) {
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100765
Olivier Houchardba4fff52018-12-01 14:40:40 +0100766 srv = tmpsrv;
767 s->target = &srv->obj_type;
Christopher Fauletc3db7c12020-07-01 18:56:30 +0200768 if (conn->flags & CO_FL_SESS_IDLE) {
769 conn->flags &= ~CO_FL_SESS_IDLE;
770 s->sess->idle_conns--;
771 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100772 goto out_ok;
773 }
774 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100775 }
776 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100777 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100778 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200779
Willy Tarreau7c669d72008-06-20 15:04:11 +0200780 /* we must check if we have at least one server available */
781 if (!s->be->lbprm.tot_weight) {
782 err = SRV_STATUS_NOSRV;
783 goto out;
784 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200786 /* First check whether we need to fetch some data or simply call
787 * the LB lookup function. Only the hashing functions will need
788 * some input data in fact, and will support multiple algorithms.
789 */
790 switch (s->be->lbprm.algo & BE_LB_LKUP) {
791 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100792 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200793 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200794
Willy Tarreauf09c6602012-02-13 17:12:08 +0100795 case BE_LB_LKUP_FSTREE:
796 srv = fas_get_next_server(s->be, prev_srv);
797 break;
798
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200799 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100800 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200801 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200802
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200803 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200804 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200805 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200806 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100807 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100808 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100809 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200810 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100811 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200812 break;
813 }
814 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200815 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200816 err = SRV_STATUS_INTERNAL;
817 goto out;
818 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200819
820 switch (s->be->lbprm.algo & BE_LB_PARM) {
821 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200822 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200823 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200824 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200825 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100826 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200827 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200828 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200829 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200830 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100831 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200832 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200833 else {
834 /* unknown IP family */
835 err = SRV_STATUS_INTERNAL;
836 goto out;
837 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200838 break;
839
840 case BE_LB_HASH_URI:
841 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200842 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100843 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100844 if (!IS_HTX_STRM(s))
845 srv = get_server_uh(s->be,
846 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
847 s->txn->req.sl.rq.u_l, prev_srv);
848 else {
849 struct ist uri;
850
Christopher Faulet297fbb42019-05-13 14:41:27 +0200851 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100852 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
853 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200854 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200855
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200856 case BE_LB_HASH_PRM:
857 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200858 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100859 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100860
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100861 if (!IS_HTX_STRM(s))
862 srv = get_server_ph(s->be,
863 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
864 s->txn->req.sl.rq.u_l, prev_srv);
865 else {
866 struct ist uri;
867
Christopher Faulet297fbb42019-05-13 14:41:27 +0200868 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100869 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
870 }
Willy Tarreau61a21a32011-03-01 20:35:49 +0100871
Willy Tarreaueee5b512015-04-03 23:46:31 +0200872 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau59884a62019-01-02 14:48:31 +0100873 srv = get_server_ph_post(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200874 break;
Benoitaffb4812009-03-25 13:02:10 +0100875
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200876 case BE_LB_HASH_HDR:
877 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200878 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100879 break;
Willy Tarreau59884a62019-01-02 14:48:31 +0100880 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200881 break;
882
883 case BE_LB_HASH_RDP:
884 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100885 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200886 break;
887
888 default:
889 /* unknown balancing algorithm */
890 err = SRV_STATUS_INTERNAL;
891 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100892 }
Emeric Brun736aa232009-06-30 17:56:00 +0200893
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200894 /* If the hashing parameter was not found, let's fall
895 * back to round robin on the map.
896 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100897 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100898 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100899 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200900 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100901 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200902 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200903
904 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200905 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200906
Willy Tarreau7c669d72008-06-20 15:04:11 +0200907 default:
908 /* unknown balancing algorithm */
909 err = SRV_STATUS_INTERNAL;
910 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200912
Willy Tarreau827aee92011-03-10 16:55:02 +0100913 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200914 err = SRV_STATUS_FULL;
915 goto out;
916 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100917 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100918 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
919 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100920 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100921 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200922 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200923 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100924 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100926 else if ((s->be->options & PR_O_HTTP_PROXY)) {
927 conn = cs_conn(objt_cs(s->si[1].end));
928
929 if (conn && is_addr(&conn->addr.to)) {
930 /* in proxy mode, we need a valid destination address */
931 s->target = &s->be->obj_type;
932 } else {
933 err = SRV_STATUS_NOSRV;
934 goto out;
935 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100936 }
937 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200938 err = SRV_STATUS_NOSRV;
939 goto out;
940 }
941
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100942out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200943 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200944 err = SRV_STATUS_OK;
945 out:
946
947 /* Either we take back our connection slot, or we offer it to someone
948 * else if we don't need it anymore.
949 */
950 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100951 if (conn_slot == srv) {
952 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200953 } else {
954 if (may_dequeue_tasks(conn_slot, s->be))
955 process_srv_queue(conn_slot);
956 }
957 }
958
959 out_err:
960 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961}
962
Willy Tarreaubaaee002006-06-26 02:48:02 +0200963/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200964 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965 * The address is taken from the currently assigned server, or from the
966 * dispatch or transparent address.
967 *
968 * It may return :
969 * SRV_STATUS_OK if everything is OK.
970 * SRV_STATUS_INTERNAL for other unrecoverable errors.
971 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200972 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200973 * not cleared, so it's to the caller to clear it if required.
974 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200975 * The caller is responsible for having already assigned a connection
976 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200977 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200978 */
Olivier Houchard201b9f42018-11-21 00:16:29 +0100979int assign_server_address(struct stream *s, struct connection *srv_conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200980{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200981 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200982
Christopher Faulet56803b12017-11-24 16:06:18 +0100983 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200984
Willy Tarreaue7dff022015-04-03 01:14:29 +0200985 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200986 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200987 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200988 return SRV_STATUS_INTERNAL;
989
Willy Tarreau1e582e52018-09-20 11:29:28 +0200990 srv_conn->addr.to = __objt_server(s->target)->addr;
991 set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200992
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200993 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200994 /* if the server has no address, we use the same address
995 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200996 * locally on multiple addresses at once. Nothing is done
997 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200998 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200999 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +02001000
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001001 if (cli_conn->addr.to.ss_family == AF_INET) {
1002 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
1003 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
1004 ((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 +02001005 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +02001006 }
1007
Willy Tarreaubaaee002006-06-26 02:48:02 +02001008 /* if this server remaps proxied ports, we'll use
1009 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +02001010 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +01001011 int base_port;
1012
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001013 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +01001014
1015 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001016 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +01001017
1018 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001019 base_port += get_host_port(&srv_conn->addr.to);
1020 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001021 }
1022 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001023 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001024 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001025 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001026 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001027 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001028 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001029 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001030
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001031 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
1032 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001033 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001034 else if (s->be->options & PR_O_HTTP_PROXY) {
1035 /* If HTTP PROXY option is set, then server is already assigned
1036 * during incoming client request parsing. */
1037 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +01001038 else {
1039 /* no server and no LB algorithm ! */
1040 return SRV_STATUS_INTERNAL;
1041 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001042
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001043 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +01001044 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001045
Willy Tarreaue7dff022015-04-03 01:14:29 +02001046 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001047 return SRV_STATUS_OK;
1048}
1049
Willy Tarreau87b09662015-04-03 00:22:06 +02001050/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +02001051 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +02001052 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +02001053 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +02001054 * be called before any connection and after any retry or redispatch occurs.
1055 *
Willy Tarreau87b09662015-04-03 00:22:06 +02001056 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001057 *
1058 * Returns :
1059 *
1060 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001061 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001062 * SRV_STATUS_QUEUED if the connection has been queued.
1063 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +01001064 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +02001065 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001066 * SRV_STATUS_INTERNAL for other unrecoverable errors.
1067 *
1068 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001069int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001070{
1071 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +01001072 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001073 int err;
1074
1075 if (s->pend_pos)
1076 return SRV_STATUS_INTERNAL;
1077
Willy Tarreau7c669d72008-06-20 15:04:11 +02001078 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001079 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001080 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +01001081
Willy Tarreau7c669d72008-06-20 15:04:11 +02001082 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +01001083 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001084 /* This stream was previously assigned to a server. We have to
1085 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +02001086 * - if the server changed :
1087 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +02001088 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +02001089 * - increment srv->redispatches and be->redispatches
1090 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001091 */
1092
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001093 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02001094 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
1095 s->txn->flags &= ~TX_CK_MASK;
1096 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001097 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02001098 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +01001099 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
1100 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001101 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001102 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
1103 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001104 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001105 }
1106 }
1107
Willy Tarreaubaaee002006-06-26 02:48:02 +02001108 switch (err) {
1109 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +02001110 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001111 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001112 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001113 return SRV_STATUS_OK; /* dispatch or proxy mode */
1114
1115 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +01001116 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001117 return SRV_STATUS_OK;
1118
Willy Tarreau87b09662015-04-03 00:22:06 +02001119 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +02001120 * connection slot yet. Either it is a redispatch, or it was
1121 * assigned from persistence information (direct mode).
1122 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001123 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001124 /* server scheduled for redirection, and already assigned. We
1125 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +01001126 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001127 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +01001128 return SRV_STATUS_OK;
1129 }
1130
Willy Tarreau87b09662015-04-03 00:22:06 +02001131 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001132 * We know we have to queue it into the server's queue, so if a maxqueue
1133 * is set on the server, we must also check that the server's queue is
1134 * not full, in which case we have to return FULL.
1135 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001136 if (srv->maxconn &&
1137 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001138
Willy Tarreau827aee92011-03-10 16:55:02 +01001139 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001140 return SRV_STATUS_FULL;
1141
Willy Tarreaubaaee002006-06-26 02:48:02 +02001142 p = pendconn_add(s);
1143 if (p)
1144 return SRV_STATUS_QUEUED;
1145 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001146 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001147 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001148
1149 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001150 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001151 return SRV_STATUS_OK;
1152
1153 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001154 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001155 p = pendconn_add(s);
1156 if (p)
1157 return SRV_STATUS_QUEUED;
1158 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001159 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001160
1161 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001162 return err;
1163
Willy Tarreaubaaee002006-06-26 02:48:02 +02001164 case SRV_STATUS_INTERNAL:
1165 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001166
Willy Tarreaubaaee002006-06-26 02:48:02 +02001167 default:
1168 return SRV_STATUS_INTERNAL;
1169 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001170}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001171
Willy Tarreaub1d67742010-03-29 19:36:59 +02001172/* If an explicit source binding is specified on the server and/or backend, and
1173 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001174 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001175 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001176 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001177static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001178{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001179#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001180 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001181 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001182 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001183 struct connection *srv_conn;
1184
1185 if (objt_cs(s->si[1].end))
1186 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1187 else
1188 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001189
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001190 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1191 src = &srv->conn_src;
1192 else if (s->be->conn_src.opts & CO_SRC_BIND)
1193 src = &s->be->conn_src;
1194 else
1195 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001196
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001197 switch (src->opts & CO_SRC_TPROXY_MASK) {
1198 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001199 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001200 break;
1201 case CO_SRC_TPROXY_CLI:
1202 case CO_SRC_TPROXY_CIP:
1203 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001204 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001205 if (cli_conn)
1206 srv_conn->addr.from = cli_conn->addr.from;
1207 else
1208 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001209 break;
1210 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +02001211 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001212 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001213 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001214
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001215 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001216 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1217 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1218 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001219 if (!IS_HTX_STRM(s)) {
1220 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001221
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001222 c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req));
1223 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1224 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1225 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
1226 htonl(inetaddr_host_lim(vptr, vptr + vlen));
1227 }
1228 c_adv(&s->req, rewind);
1229 }
1230 else {
1231 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1232 ist2(src->bind_hdr_name, src->bind_hdr_len),
1233 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1234 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
1235 htonl(inetaddr_host_lim(vptr, vptr + vlen));
1236 }
Willy Tarreaubce70882009-09-07 11:51:47 +02001237 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001238 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001239 break;
1240 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001241 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001242 }
1243#endif
1244}
1245
Lukas Tribusda95fd92018-11-25 13:21:27 +01001246#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001247/*
1248 * Pick the right mux once the connection is established, we should now have
Willy Tarreau94031d32018-12-19 14:36:29 +01001249 * an alpn if available, so we are now able to choose. In this specific case
1250 * the connection's context is &si[i].end.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001251 */
1252static int conn_complete_server(struct connection *conn)
1253{
1254 struct conn_stream *cs = NULL;
Willy Tarreau94031d32018-12-19 14:36:29 +01001255 struct stream *s = container_of(conn->ctx, struct stream, si[1].end);
Olivier Houchardbf024f02018-11-29 17:08:53 +01001256 struct server *srv;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001257
Olivier Houchard70d9b2f2018-11-29 16:57:32 +01001258 task_wakeup(s->task, TASK_WOKEN_IO);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001259 conn_clear_xprt_done_cb(conn);
1260 /* Verify if the connection just established. */
1261 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
1262 conn->flags |= CO_FL_CONNECTED;
1263
Olivier Houchard201b9f42018-11-21 00:16:29 +01001264 if (conn->flags & CO_FL_ERROR)
1265 goto fail;
Olivier Houchardd76bd2d2018-11-29 16:58:49 +01001266 si_detach_endpoint(&s->si[1]);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001267 cs = si_alloc_cs(&s->si[1], conn);
1268 if (!cs)
1269 goto fail;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001270 if (conn_install_mux_be(conn, cs, s->sess) < 0)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001271 goto fail;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001272 srv = objt_server(s->target);
Olivier Houchard7aec9ed2018-12-14 19:31:51 +01001273 if (srv && ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
Olivier Houchardbf024f02018-11-29 17:08:53 +01001274 conn->mux->avail_streams(conn) > 0)
1275 LIST_ADD(&srv->idle_conns[tid], &conn->list);
1276
Olivier Houchard201b9f42018-11-21 00:16:29 +01001277 return 0;
1278
1279fail:
Willy Tarreaud8220132019-01-28 16:33:35 +01001280 si_detach_endpoint(&s->si[1]);
1281
Olivier Houchard201b9f42018-11-21 00:16:29 +01001282 if (cs)
1283 cs_free(cs);
1284 /* kill the connection now */
1285 conn_stop_tracking(conn);
1286 conn_full_close(conn);
1287 conn_free(conn);
Olivier Houchard4f417512018-12-27 18:59:46 +01001288 /* Let process_stream know it went wrong */
1289 s->si[1].flags |= SI_FL_ERR;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001290 return -1;
1291}
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001292#endif
Olivier Houchard201b9f42018-11-21 00:16:29 +01001293
Willy Tarreaub1d67742010-03-29 19:36:59 +02001294
Willy Tarreaubaaee002006-06-26 02:48:02 +02001295/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001296 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001297 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001298 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001299 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001300 * - SF_ERR_NONE if everything's OK
1301 * - SF_ERR_SRVTO if there are no more servers
1302 * - SF_ERR_SRVCL if the connection was refused by the server
1303 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1304 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1305 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001306 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001307 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001308 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001309 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001310int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001311{
Olivier Houchard522eea72017-11-03 16:27:47 +01001312 struct connection *cli_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001313 struct connection *srv_conn = NULL;
1314 struct connection *old_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001315 struct conn_stream *srv_cs = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001316 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001317 int reuse = 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001318 int reuse_orphan = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001319 int init_mux = 0;
Olivier Houchard4dc85532019-01-29 15:50:38 +01001320 int alloced_cs = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001321 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001323
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001324 /* Some, such as http_proxy and the LUA, create their connection and
1325 * conn_stream manually, so if we already have a conn_stream, try
1326 * to use it.
1327 */
1328 srv_cs = objt_cs(s->si[1].end);
Olivier Houchard9ef51552019-01-28 15:33:15 +01001329 if (!srv_cs)
1330 srv_conn = objt_conn(s->si[1].end);
1331 else
1332 srv_conn = cs_conn(srv_cs);
1333
1334 if (srv_conn) {
1335 if (!srv_conn->target || srv_conn->target == s->target) {
1336 srv_conn->flags &= ~(CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH);
1337 if (srv_cs)
Willy Tarreau7bb39d72019-06-03 14:23:33 +02001338 srv_cs->flags &= ~(CS_FL_ERROR | CS_FL_EOS);
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001339 reuse = 1;
Olivier Houchard9ef51552019-01-28 15:33:15 +01001340 old_conn = srv_conn;
1341 } else {
1342 srv_conn = NULL;
Olivier Houcharda9da4672019-07-08 16:30:32 +02001343 srv_cs = NULL;
Olivier Houchard9ef51552019-01-28 15:33:15 +01001344 si_release_endpoint(&s->si[1]);
Olivier Houchardac1ce6f2018-12-08 19:08:48 +01001345 }
Olivier Houchard9ef51552019-01-28 15:33:15 +01001346 }
1347
1348 if (!old_conn) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001349 struct sess_srv_list *srv_list;
1350 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
1351 if (srv_list->target == s->target) {
1352 list_for_each_entry(srv_conn, &srv_list->conn_list,
Olivier Houchard2442f682018-12-01 17:03:38 +01001353 session_list) {
1354 if (conn_xprt_ready(srv_conn) &&
1355 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1356 reuse = 1;
1357 break;
1358 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001359 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001360 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001361 }
1362 }
Olivier Houchardc3fa6382018-12-27 15:29:53 +01001363 if (reuse == 0) {
1364 srv_conn = NULL;
Olivier Houchard351411f2018-12-27 17:20:54 +01001365 if (!LIST_ISEMPTY(&s->sess->srv_list)) {
1366 srv_list = LIST_ELEM(s->sess->srv_list.n,
1367 struct sess_srv_list *, srv_list);
1368 if (!LIST_ISEMPTY(&srv_list->conn_list))
1369 srv_conn = LIST_ELEM(srv_list->conn_list.n,
1370 struct connection *, session_list);
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001371 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001372
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001373 }
1374 }
1375 old_conn = srv_conn;
1376
Willy Tarreau7b004922015-08-04 19:34:21 +02001377 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001378
Willy Tarreau8dff9982015-08-04 20:45:52 +02001379 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001380 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001381
Willy Tarreau449d74a2015-08-05 17:16:33 +02001382 /* Below we pick connections from the safe or idle lists based
1383 * on the strategy, the fact that this is a first or second
1384 * (retryable) request, with the indicated priority (1 or 2) :
1385 *
1386 * SAFE AGGR ALWS
1387 *
1388 * +-----+-----+ +-----+-----+ +-----+-----+
1389 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1390 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1391 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1392 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1393 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1394 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1395 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001396 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001397 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1398 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001399 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001400 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001401 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001402 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1403 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001404 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001405 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001406 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001407 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001408 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001409 } else if (srv->idle_orphan_conns && !LIST_ISEMPTY(&srv->idle_orphan_conns[tid]) &&
1410 (((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) ||
1411 (((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
1412 s->txn && (s->txn->flags & TX_NOT_FIRST)))) {
Olivier Houchard7f1bc312019-01-22 16:11:03 +01001413 srv_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid],
Willy Tarreauc912f942019-02-28 16:06:56 +01001414 struct connection *, list);
1415 if (srv_conn)
Olivier Houchard7f1bc312019-01-22 16:11:03 +01001416 reuse_orphan = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001417 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001418
Willy Tarreau449d74a2015-08-05 17:16:33 +02001419 /* If we've picked a connection from the pool, we now have to
1420 * detach it. We may have to get rid of the previous idle
1421 * connection we had, so for this we try to swap it with the
1422 * other owner's. That way it may remain alive for others to
1423 * pick.
1424 */
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001425 if (srv_conn)
Willy Tarreau8dff9982015-08-04 20:45:52 +02001426 reuse = 1;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001427 }
1428
Willy Tarreau34601a82013-12-15 16:33:46 +01001429 if (reuse) {
1430 /* Disable connection reuse if a dynamic source is used.
1431 * As long as we don't share connections between servers,
1432 * we don't need to disable connection reuse on no-idempotent
1433 * requests nor when PROXY protocol is used.
1434 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001435 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1436 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1437 reuse = 0;
1438 }
1439 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1440 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1441 reuse = 0;
1442 }
1443 }
Olivier Houchard14fcc2e2019-06-05 13:55:01 +02001444 if (((!reuse || (srv_conn && !(srv_conn->flags & CO_FL_CONNECTED)))
Christopher Faulet88e47652019-09-13 10:01:36 +02001445 && ha_used_fds > global.tune.pool_high_count) && srv && srv->idle_orphan_conns) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001446 struct connection *tokill_conn;
1447
1448 /* We can't reuse a connection, and e have more FDs than deemd
1449 * acceptable, attempt to kill an idling connection
1450 */
1451 /* First, try from our own idle list */
1452 tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid],
1453 struct connection *, list);
1454 if (tokill_conn)
1455 tokill_conn->mux->destroy(tokill_conn->ctx);
1456 /* If not, iterate over other thread's idling pool, and try to grab one */
1457 else {
1458 int i;
1459
1460 for (i = 0; i < global.nbthread; i++) {
1461 if (i == tid)
1462 continue;
Willy Tarreau08e2b412019-05-26 11:50:08 +02001463
1464 // just silence stupid gcc which reports an absurd
1465 // out-of-bounds warning for <i> which is always
1466 // exactly zero without threads, but it seems to
1467 // see it possibly larger.
1468 ALREADY_CHECKED(i);
1469
Olivier Houchard7fcbd372019-12-30 18:15:40 +01001470 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001471 tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[i],
1472 struct connection *, list);
1473 if (tokill_conn) {
1474 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1475
1476 LIST_ADDQ_LOCKED(&toremove_connections[i],
1477 &tokill_conn->list);
1478 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
Olivier Houchardf77ca892020-01-31 17:22:08 +01001479 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001480 break;
1481 }
Olivier Houchard7fcbd372019-12-30 18:15:40 +01001482 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001483 }
1484 }
1485
1486 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001487 /* If we're really reusing the connection, remove it from the orphan
1488 * list and add it back to the idle list.
1489 */
Christopher Faulet46451d62019-04-19 15:39:22 +02001490 if (reuse) {
1491 if (reuse_orphan) {
1492 srv_conn->idle_time = 0;
1493 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1494 __ha_barrier_atomic_store();
1495 srv->curr_idle_thr[tid]--;
1496 LIST_ADDQ(&srv->idle_conns[tid], &srv_conn->list);
1497 }
1498 else {
1499 if (srv_conn->flags & CO_FL_SESS_IDLE) {
1500 struct session *sess = srv_conn->owner;
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001501
Christopher Faulet46451d62019-04-19 15:39:22 +02001502 srv_conn->flags &= ~CO_FL_SESS_IDLE;
1503 sess->idle_conns--;
1504 }
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001505 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001506 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001507
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001508 /* We're about to use another connection, let the mux know we're
1509 * done with this one
1510 */
Olivier Houchardc685d702018-12-28 16:20:25 +01001511 if (old_conn != srv_conn && old_conn && reuse && !reuse_orphan) {
1512 struct session *sess = srv_conn->owner;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001513
Olivier Houchardc685d702018-12-28 16:20:25 +01001514 if (sess) {
1515 if (old_conn && !(old_conn->flags & CO_FL_PRIVATE) &&
1516 old_conn->mux != NULL) {
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001517 if (old_conn->flags & CO_FL_SESS_IDLE)
1518 s->sess->idle_conns--;
Olivier Houchardc685d702018-12-28 16:20:25 +01001519 session_unown_conn(s->sess, old_conn);
1520 old_conn->owner = sess;
Willy Tarreau3c4e19f2019-02-01 11:54:23 +01001521 if (!session_add_conn(sess, old_conn, old_conn->target)) {
Olivier Houcharda48237f2019-05-02 12:04:15 +02001522 old_conn->flags &= ~CO_FL_SESS_IDLE;
Olivier Houchardc685d702018-12-28 16:20:25 +01001523 old_conn->owner = NULL;
Christopher Faulet73c12072019-04-08 11:23:22 +02001524 old_conn->mux->destroy(old_conn->ctx);
Olivier Houchardc685d702018-12-28 16:20:25 +01001525 } else
1526 session_check_idle_conn(sess, old_conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001527 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001528 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001529 }
1530
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001531 if (reuse) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001532 /* We already created a cs earlier when using http_proxy, so
1533 * only create a new one if we don't have one already.
1534 */
Olivier Houchard9ef51552019-01-28 15:33:15 +01001535 if (!srv_cs && srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001536 int avail = srv_conn->mux->avail_streams(srv_conn);
1537
1538 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001539 /* No more streams available, remove it from the list */
1540 LIST_DEL(&srv_conn->list);
1541 LIST_INIT(&srv_conn->list);
1542 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001543
1544 if (avail >= 1) {
1545 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard4dc85532019-01-29 15:50:38 +01001546 if (srv_cs) {
1547 alloced_cs = 1;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001548 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard4dc85532019-01-29 15:50:38 +01001549 } else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001550 srv_conn = NULL;
1551 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001552 else
1553 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001554 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001555 /* otherwise srv_conn is left intact */
1556 }
1557 else
1558 srv_conn = NULL;
1559
1560 /* no reuse or failed to reuse the connection above, pick a new one */
1561 if (!srv_conn) {
Christopher Faulete8d24232020-07-07 22:25:19 +02001562 s->flags &= ~SF_ADDR_SET;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001563 srv_conn = conn_new();
Willy Tarreau1da41ec2019-02-01 16:38:48 +01001564 if (srv_conn)
1565 srv_conn->target = s->target;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001566 srv_cs = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001567 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001568
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001569 if (srv_conn && old_conn != srv_conn) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001570 if (srv_conn->owner)
1571 session_unown_conn(srv_conn->owner, srv_conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001572 srv_conn->owner = s->sess;
Willy Tarreau3c4e19f2019-02-01 11:54:23 +01001573 if (!session_add_conn(s->sess, srv_conn, srv_conn->target)) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001574 /* If we failed to attach the connection, detach the
1575 * conn_stream, possibly destroying the connection */
Olivier Houchard4dc85532019-01-29 15:50:38 +01001576 if (alloced_cs)
1577 si_release_endpoint(&s->si[1]);
Olivier Houchard351411f2018-12-27 17:20:54 +01001578 srv_conn->owner = NULL;
Olivier Houchard26da3232019-01-29 16:05:02 +01001579 if (srv_conn->mux && !srv_add_to_idle_list(objt_server(srv_conn->target), srv_conn))
Olivier Houchard351411f2018-12-27 17:20:54 +01001580 /* The server doesn't want it, let's kill the connection right away */
Christopher Faulet73c12072019-04-08 11:23:22 +02001581 srv_conn->mux->destroy(srv_conn->ctx);
Olivier Houchard351411f2018-12-27 17:20:54 +01001582 srv_conn = NULL;
1583
1584 }
Willy Tarreau323a2d92015-08-04 19:00:17 +02001585 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001586
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001587 if (!srv_conn) {
1588 if (srv_conn)
1589 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001590 return SF_ERR_RESOURCE;
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001591 }
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001592
Willy Tarreaue7dff022015-04-03 01:14:29 +02001593 if (!(s->flags & SF_ADDR_SET)) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001594 err = assign_server_address(s, srv_conn);
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001595 if (err != SRV_STATUS_OK) {
1596 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001597 return SF_ERR_INTERNAL;
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001598 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001599 }
1600
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001601 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001602 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001603 if (srv)
Willy Tarreau7b004922015-08-04 19:34:21 +02001604 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001605 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1606 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001607 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001608 if (!(srv_conn->ctrl)) {
1609 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001610 return SF_ERR_INTERNAL;
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001611 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001612 }
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001613 else {
1614 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001615 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc73eaba2020-03-20 14:26:32 +01001616 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001617
Lukas Tribusda95fd92018-11-25 13:21:27 +01001618#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001619 if (!srv ||
Christopher Faulet6bd4ee12020-07-30 09:10:36 +02001620 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1621 srv->mux_proto || s->be->mode != PR_MODE_HTTP))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001622#endif
1623 {
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001624 srv_cs = objt_cs(s->si[1].end);
1625 if (!srv_cs || srv_cs->conn != srv_conn)
1626 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001627 if (!srv_cs) {
1628 conn_free(srv_conn);
1629 return SF_ERR_RESOURCE;
1630 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001631 init_mux = 1;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001632 }
Lukas Tribusda95fd92018-11-25 13:21:27 +01001633#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001634 else {
Willy Tarreau94031d32018-12-19 14:36:29 +01001635 srv_conn->ctx = &s->si[1].end;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001636 /* Store the connection into the stream interface,
1637 * while we still don't have a mux, so that if the
1638 * stream is destroyed before the connection is
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001639 * established, we have a chance to destroy it even
1640 * if it is no longer referenced in the session.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001641 */
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001642 s->si[1].end = &srv_conn->obj_type;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001643 conn_set_xprt_done_cb(srv_conn, conn_complete_server);
1644 }
1645
1646#endif
1647
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001648
Willy Tarreauff605db2013-12-20 11:09:51 +01001649 /* process the case where the server requires the PROXY protocol to be sent */
1650 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001651 cli_conn = objt_conn(strm_orig(s));
1652
Willy Tarreau7b004922015-08-04 19:34:21 +02001653 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001654 srv_conn->flags |= CO_FL_PRIVATE;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001655 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001656 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001657 if (cli_conn)
1658 conn_get_to_addr(cli_conn);
1659 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001660
Willy Tarreauff605db2013-12-20 11:09:51 +01001661 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001662
1663 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1664 srv_conn->send_proxy_ofs = 1;
1665 srv_conn->flags |= CO_FL_SOCKS4;
1666 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001667 }
Willy Tarreau926c4fc2020-05-07 17:46:56 +02001668 else if (!srv_conn->mux) {
1669 /* No mux? We possibly asked for ALPN during a first failed
1670 * attempt and are trying to start again from this connection,
1671 * thus we have nothing to do.
1672 */
1673 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001674 else if (!conn_xprt_ready(srv_conn)) {
1675 if (srv_conn->mux->reset)
1676 srv_conn->mux->reset(srv_conn);
1677 }
Olivier Houchard36deb212019-10-25 17:00:54 +02001678 else {
1679 /* Only consider we're doing reuse if the connection was
1680 * ready.
1681 */
1682 if (srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1683 s->flags |= SF_SRV_REUSED;
1684 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001685
William Lallemandb7ff6a32012-03-02 14:35:21 +01001686 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001687 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001688 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001689
Willy Tarreau14f8e862012-08-30 22:23:13 +02001690 /* disable lingering */
1691 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001692 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001693
Willy Tarreauf1573842018-12-14 11:35:36 +01001694 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001695 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001696 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001697 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001698 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001699 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001700 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001701 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001702 }
1703
Olivier Houchard201b9f42018-11-21 00:16:29 +01001704 err = si_connect(&s->si[1], srv_conn);
Willy Tarreaud9b35d92019-07-18 16:18:20 +02001705 if (err != SF_ERR_NONE)
1706 return err;
1707
Olivier Houchard5cd62172019-01-04 15:52:26 +01001708 /* We have to defer the mux initialization until after si_connect()
1709 * has been called, as we need the xprt to have been properly
1710 * initialized, or any attempt to recv during the mux init may
1711 * fail, and flag the connection as CO_FL_ERROR.
1712 */
1713 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001714 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1715 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001716 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001717 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001718 /* If we're doing http-reuse always, and the connection
1719 * is an http2 connection, add it to the available list,
1720 * so that others can use it right away.
1721 */
1722 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1723 srv_conn->mux->avail_streams(srv_conn) > 0)
1724 LIST_ADD(&srv->idle_conns[tid], &srv_conn->list);
1725 }
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001726 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1727 * if so, add our handshake pseudo-XPRT now.
1728 */
Olivier Houchardfc4c35a2019-06-24 18:19:40 +02001729 if ((srv_conn->flags & CO_FL_HANDSHAKE_NOSSL)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001730 if (xprt_add_hs(srv_conn) < 0) {
1731 conn_full_close(srv_conn);
1732 return SF_ERR_INTERNAL;
1733 }
1734 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001735
Willy Tarreaubaaee002006-06-26 02:48:02 +02001736
Willy Tarreau5db847a2019-05-09 14:13:35 +02001737#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001738
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001739 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001740 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001741 /* Only attempt to use early data if either the client sent
1742 * early data, so that we know it can handle a 425, or if
1743 * we are allwoed to retry requests on early data failure, and
1744 * it's our first try
1745 */
1746 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1747 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1748 s->si[1].conn_retries == s->be->conn_retries)) &&
1749 !channel_is_empty(si_oc(&s->si[1])) &&
1750 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001751 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001752#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001753
Willy Tarreau14f8e862012-08-30 22:23:13 +02001754 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001755 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001756
Willy Tarreau827aee92011-03-10 16:55:02 +01001757 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001758 int count;
1759
Willy Tarreaue7dff022015-04-03 01:14:29 +02001760 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001761 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001762 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001763 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001764 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001765
1766#ifdef USE_OPENSSL
1767 if (srv->ssl_ctx.sni) {
1768 struct sample *smp;
1769 int rewind;
1770
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001771 if (!IS_HTX_STRM(s)) {
1772 /* Tricky case : we have already scheduled the pending
1773 * HTTP request or TCP data for leaving. So in HTTP we
1774 * rewind exactly the headers, otherwise we rewind the
1775 * output data.
1776 */
1777 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req);
1778 c_rew(&s->req, rewind);
1779
1780 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1781 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau732eac42015-07-09 11:40:25 +02001782
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001783 /* restore the pointers */
1784 c_adv(&s->req, rewind);
1785 }
1786 else {
1787 /* rewind the output data. */
1788 rewind = co_data(&s->req);
1789 c_rew(&s->req, rewind);
1790
1791 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1792 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau732eac42015-07-09 11:40:25 +02001793
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001794 /* restore the pointers */
1795 c_adv(&s->req, rewind);
1796 }
Willy Tarreau732eac42015-07-09 11:40:25 +02001797
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001798 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001799 ssl_sock_set_servername(srv_conn,
1800 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001801 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001802 }
1803 }
1804#endif /* USE_OPENSSL */
1805
Willy Tarreaubaaee002006-06-26 02:48:02 +02001806 }
1807
Willy Tarreaue7dff022015-04-03 01:14:29 +02001808 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001809}
1810
1811
Willy Tarreaubaaee002006-06-26 02:48:02 +02001812/* This function performs the "redispatch" part of a connection attempt. It
1813 * will assign a server if required, queue the connection if required, and
1814 * handle errors that might arise at this level. It can change the server
1815 * state. It will return 1 if it encounters an error, switches the server
1816 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1817 * that the connection is ready to use.
1818 */
1819
Willy Tarreau87b09662015-04-03 00:22:06 +02001820int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821{
Willy Tarreau827aee92011-03-10 16:55:02 +01001822 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001823 int conn_err;
1824
1825 /* We know that we don't have any connection pending, so we will
1826 * try to get a new one, and wait in this state if it's queued
1827 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001828 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001829 conn_err = assign_server_and_queue(s);
1830 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001831
Willy Tarreaubaaee002006-06-26 02:48:02 +02001832 switch (conn_err) {
1833 case SRV_STATUS_OK:
1834 break;
1835
Willy Tarreau7c669d72008-06-20 15:04:11 +02001836 case SRV_STATUS_FULL:
1837 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1838 * and we can redispatch to another server, or it is not and we return
1839 * 503. This only makes sense in DIRECT mode however, because normal LB
1840 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001841 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001842 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001843 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001844 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001845 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001846 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001847 goto redispatch;
1848 }
1849
Willy Tarreau350f4872014-11-28 14:42:25 +01001850 if (!s->si[1].err_type) {
1851 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001852 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001853
Olivier Houchard237f7812019-03-08 18:49:07 +01001854 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1855 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001856 return 1;
1857
Willy Tarreaubaaee002006-06-26 02:48:02 +02001858 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001859 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001860 if (!s->si[1].err_type) {
1861 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001862 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001863
Olivier Houchard237f7812019-03-08 18:49:07 +01001864 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865 return 1;
1866
1867 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001868 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1869 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001870 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001871 return 1;
1872
Willy Tarreaubaaee002006-06-26 02:48:02 +02001873 case SRV_STATUS_INTERNAL:
1874 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001875 if (!s->si[1].err_type) {
1876 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001877 }
1878
Willy Tarreau827aee92011-03-10 16:55:02 +01001879 if (srv)
1880 srv_inc_sess_ctr(srv);
1881 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001882 srv_set_sess_last(srv);
1883 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001884 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1885 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001886
Willy Tarreau87b09662015-04-03 00:22:06 +02001887 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001888 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001889 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001890 return 1;
1891 }
1892 /* if we get here, it's because we got SRV_STATUS_OK, which also
1893 * means that the connection has not been queued.
1894 */
1895 return 0;
1896}
1897
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001898/* sends a log message when a backend goes down, and also sets last
1899 * change date.
1900 */
1901void set_backend_down(struct proxy *be)
1902{
1903 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01001904 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001905
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001906 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001907 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001908 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1909 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001910}
1911
Willy Tarreau87b09662015-04-03 00:22:06 +02001912/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001913 * tries to extract an RDP cookie from the request buffer, and look for the
1914 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001915 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001916 * list. Nothing is performed if a server was already assigned.
1917 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001918int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001919{
1920 struct proxy *px = s->be;
1921 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001922 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001923 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001924 uint16_t port;
1925 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001926 char *p;
1927
Christopher Faulet45073512018-07-20 10:16:29 +02001928 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 +02001929 now_ms, __FUNCTION__,
1930 s,
1931 req,
1932 req->rex, req->wex,
1933 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001934 ci_data(req),
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001935 req->analysers);
1936
Willy Tarreaue7dff022015-04-03 01:14:29 +02001937 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001938 goto no_cookie;
1939
Willy Tarreau37406352012-04-23 16:16:37 +02001940 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001941
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001942 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001943 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001944 goto no_cookie;
1945
Willy Tarreau04276f32017-01-06 17:41:29 +01001946 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1947 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1948 * server's IP address in network order, and "port" is the integer corresponding to the
1949 * server's port in network order. Comments please Emeric.
1950 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001951 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001952 if (*p != '.')
1953 goto no_cookie;
1954 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001955
1956 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001957 if (*p != '.')
1958 goto no_cookie;
1959
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001960 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001961 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001962 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001963 port == srv->svc_port &&
1964 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001965 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001966 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001967 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001968 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001969 break;
1970 }
1971 }
1972 srv = srv->next;
1973 }
1974
1975no_cookie:
1976 req->analysers &= ~an_bit;
1977 req->analyse_exp = TICK_ETERNITY;
1978 return 1;
1979}
1980
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001981int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001982 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001983 return px->down_time;
1984
1985 return now.tv_sec - px->last_change + px->down_time;
1986}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001987
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001988/*
1989 * This function returns a string containing the balancing
1990 * mode of the proxy in a format suitable for stats.
1991 */
1992
1993const char *backend_lb_algo_str(int algo) {
1994
1995 if (algo == BE_LB_ALGO_RR)
1996 return "roundrobin";
1997 else if (algo == BE_LB_ALGO_SRR)
1998 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001999 else if (algo == BE_LB_ALGO_FAS)
2000 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002001 else if (algo == BE_LB_ALGO_LC)
2002 return "leastconn";
2003 else if (algo == BE_LB_ALGO_SH)
2004 return "source";
2005 else if (algo == BE_LB_ALGO_UH)
2006 return "uri";
2007 else if (algo == BE_LB_ALGO_PH)
2008 return "url_param";
2009 else if (algo == BE_LB_ALGO_HH)
2010 return "hdr";
2011 else if (algo == BE_LB_ALGO_RCH)
2012 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002013 else if (algo == BE_LB_ALGO_NONE)
2014 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002015 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002016 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002017}
2018
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002019/* This function parses a "balance" statement in a backend section describing
2020 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002021 * returns -1, it will write an error message into the <err> buffer which will
2022 * automatically be allocated and must be passed as NULL. The trailing '\n'
2023 * will not be written. The function must be called with <args> pointing to the
2024 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002025 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002026int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002027{
2028 if (!*(args[0])) {
2029 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002030 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2031 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002032 return 0;
2033 }
2034
2035 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002036 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2037 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002038 }
Willy Tarreau9757a382009-10-03 12:56:50 +02002039 else if (!strcmp(args[0], "static-rr")) {
2040 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2041 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2042 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01002043 else if (!strcmp(args[0], "first")) {
2044 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2045 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2046 }
Willy Tarreau51406232008-03-10 22:04:20 +01002047 else if (!strcmp(args[0], "leastconn")) {
2048 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2049 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2050 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002051 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002052 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2053 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002054 curproxy->lbprm.arg_opt1 = 2;
2055
2056 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2057 const char *beg;
2058 char *end;
2059
2060 beg = args[0] + 7;
2061 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2062
2063 if (*end != ')') {
2064 if (!*end)
2065 memprintf(err, "random : missing closing parenthesis.");
2066 else
2067 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2068 return -1;
2069 }
2070
2071 if (curproxy->lbprm.arg_opt1 < 1) {
2072 memprintf(err, "random : number of draws must be at least 1.");
2073 return -1;
2074 }
2075 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002076 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002077 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002078 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2079 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002080 }
2081 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002082 int arg = 1;
2083
Willy Tarreau31682232007-11-29 15:38:04 +01002084 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2085 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreaua9a72492019-01-14 16:14:15 +01002086 curproxy->lbprm.arg_opt1 = 0; // "whole"
2087 curproxy->lbprm.arg_opt2 = 0; // "len"
2088 curproxy->lbprm.arg_opt3 = 0; // "depth"
vend_natalie.chenfb928392019-12-09 14:43:49 +08002089 curproxy->lbprm.arg_opt4 = 0; // "gerrit"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002090
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002091 while (*args[arg]) {
2092 if (!strcmp(args[arg], "len")) {
2093 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002094 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002095 return -1;
2096 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002097 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002098 arg += 2;
2099 }
2100 else if (!strcmp(args[arg], "depth")) {
2101 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002102 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002103 return -1;
2104 }
2105 /* hint: we store the position of the ending '/' (depth+1) so
2106 * that we avoid a comparison while computing the hash.
2107 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002108 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002109 arg += 2;
2110 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01002111 else if (!strcmp(args[arg], "whole")) {
Willy Tarreaua9a72492019-01-14 16:14:15 +01002112 curproxy->lbprm.arg_opt1 = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002113 arg += 1;
2114 }
vend_natalie.chenfb928392019-12-09 14:43:49 +08002115 else if (!strcmp(args[arg], "gerrit")) {
2116 if (!*args[arg+1] || (atoi(args[arg+1]) < 0)) {
2117 memprintf(err, "%s : '%s' expects a non negative integer (got '%s').", args[0], args[arg], args[arg+1]);
2118 return -1;
2119 }
2120 curproxy->lbprm.arg_opt4 = 1;
2121 // 0 means whole uri
2122 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]);
2123 arg += 2;
2124 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002125 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01002126 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002127 return -1;
2128 }
2129 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002130 }
Willy Tarreau01732802007-11-01 22:48:15 +01002131 else if (!strcmp(args[0], "url_param")) {
2132 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002133 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002134 return -1;
2135 }
Willy Tarreau31682232007-11-29 15:38:04 +01002136 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2137 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002138
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002139 free(curproxy->lbprm.arg_str);
2140 curproxy->lbprm.arg_str = strdup(args[1]);
2141 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002142 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002143 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002144 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002145 return -1;
2146 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002147 }
Benoitaffb4812009-03-25 13:02:10 +01002148 }
2149 else if (!strncmp(args[0], "hdr(", 4)) {
2150 const char *beg, *end;
2151
2152 beg = args[0] + 4;
2153 end = strchr(beg, ')');
2154
2155 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002156 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002157 return -1;
2158 }
2159
2160 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2161 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2162
Willy Tarreau484ff072019-01-14 15:28:53 +01002163 free(curproxy->lbprm.arg_str);
2164 curproxy->lbprm.arg_len = end - beg;
2165 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002166 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002167
2168 if (*args[1]) {
2169 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002170 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002171 return -1;
2172 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002173 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002174 }
Emeric Brun736aa232009-06-30 17:56:00 +02002175 }
2176 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2177 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2178 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2179
2180 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2181 const char *beg, *end;
2182
2183 beg = args[0] + 11;
2184 end = strchr(beg, ')');
2185
2186 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002187 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002188 return -1;
2189 }
2190
Willy Tarreau484ff072019-01-14 15:28:53 +01002191 free(curproxy->lbprm.arg_str);
2192 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2193 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002194 }
2195 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002196 free(curproxy->lbprm.arg_str);
2197 curproxy->lbprm.arg_str = strdup("mstshash");
2198 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002199 }
2200 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002201 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002202 return -1;
2203 }
Willy Tarreau01732802007-11-01 22:48:15 +01002204 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002205 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002206 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 +01002207 return -1;
2208 }
2209 return 0;
2210}
2211
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002212
2213/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002214/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002215/************************************************************************/
2216
Willy Tarreau34db1082012-04-19 17:16:54 +02002217/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002218 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002219 * undefined behaviour.
2220 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002221static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002222smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002223{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002224 struct proxy *px;
2225
Willy Tarreau37406352012-04-23 16:16:37 +02002226 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002227 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002228 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002229
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002230 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002231
2232 return 1;
2233}
2234
Willy Tarreau37406352012-04-23 16:16:37 +02002235/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002236 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002237 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2238 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002239 */
2240static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002241smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002242{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002243 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002244
Willy Tarreau37406352012-04-23 16:16:37 +02002245 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002246 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002247 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2248 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002249 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002250 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002251 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002252 return 1;
2253}
2254
Willy Tarreau34db1082012-04-19 17:16:54 +02002255/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002256 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002257 * undefined behaviour.
2258 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002259static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002260smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002261{
2262 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002263
Willy Tarreau37406352012-04-23 16:16:37 +02002264 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002265 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002266 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002267
Willy Tarreau24e32d82012-04-23 23:55:44 +02002268 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002269 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002270 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002271
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002272 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002273 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002274 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002275 return 1;
2276 }
2277
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002278 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002279 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002280 }
2281
2282 return 1;
2283}
2284
Willy Tarreaua5e37562011-12-16 17:06:15 +01002285/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002286static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002287smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002288{
Willy Tarreaube508f12016-03-10 11:47:01 +01002289 if (!smp->strm)
2290 return 0;
2291
Willy Tarreauf853c462012-04-23 18:53:56 +02002292 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002293 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002294 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002295 return 1;
2296}
2297
Marcin Deranekd2471c22016-12-12 14:08:05 +01002298/* set string to the name of the backend */
2299static int
2300smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2301{
2302 if (!smp->strm)
2303 return 0;
2304
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002305 smp->data.u.str.area = (char *)smp->strm->be->id;
2306 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002307 return 0;
2308
2309 smp->data.type = SMP_T_STR;
2310 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002311 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002312
2313 return 1;
2314}
2315
Willy Tarreaua5e37562011-12-16 17:06:15 +01002316/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002317static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002318smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002319{
Willy Tarreaube508f12016-03-10 11:47:01 +01002320 if (!smp->strm)
2321 return 0;
2322
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002323 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01002324 return 0;
2325
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002326 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02002327 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002328
2329 return 1;
2330}
2331
Willy Tarreau34db1082012-04-19 17:16:54 +02002332/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002333 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002334 * undefined behaviour.
2335 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002336static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002337smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002338{
Willy Tarreau37406352012-04-23 16:16:37 +02002339 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002340 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002341 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002342 return 1;
2343}
2344
Willy Tarreau34db1082012-04-19 17:16:54 +02002345/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002346 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002347 * undefined behaviour.
2348 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002349static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002350smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002351{
Willy Tarreau37406352012-04-23 16:16:37 +02002352 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002353 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002354 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002355 return 1;
2356}
2357
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002358/* set temp integer to the number of available connections across available
2359 * servers on the backend.
2360 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2361 * undefined behaviour.
2362 */
2363static int
2364smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2365{
2366 struct server *iterator;
2367 struct proxy *px;
2368 unsigned int maxconn;
2369
2370 smp->flags = SMP_F_VOL_TEST;
2371 smp->data.type = SMP_T_SINT;
2372 smp->data.u.sint = 0;
2373
2374 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2375 if (iterator->cur_state == SRV_ST_STOPPED)
2376 continue;
2377
2378 px = iterator->proxy;
2379 if (!srv_currently_usable(iterator) ||
2380 ((iterator->flags & SRV_F_BACKUP) &&
2381 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2382 continue;
2383
2384 if (iterator->maxconn == 0) {
2385 /* one active server is unlimited, return -1 */
2386 smp->data.u.sint = -1;
2387 return 1;
2388 }
2389
2390 maxconn = srv_dynamic_maxconn(iterator);
2391 if (maxconn > iterator->cur_sess)
2392 smp->data.u.sint += maxconn - iterator->cur_sess;
2393 }
2394
2395 return 1;
2396}
2397
Willy Tarreau34db1082012-04-19 17:16:54 +02002398/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002399 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002400 * undefined behaviour.
2401 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002402static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002403smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002404{
Willy Tarreau37406352012-04-23 16:16:37 +02002405 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002406 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002407 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002408 return 1;
2409}
2410
Willy Tarreaua5e37562011-12-16 17:06:15 +01002411/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002412 * by the number of running servers and rounded up. If there is no running
2413 * server, we return twice the total, just as if we had half a running server.
2414 * This is more or less correct anyway, since we expect the last server to come
2415 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002416 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002417 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002418 */
2419static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002420smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002421{
2422 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002423 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002424
Willy Tarreau37406352012-04-23 16:16:37 +02002425 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002426 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002427 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002428
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002429 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002430
2431 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002432 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002433 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002434 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002435
2436 return 1;
2437}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002438
Willy Tarreau34db1082012-04-19 17:16:54 +02002439/* set temp integer to the number of concurrent connections on the server in the backend.
2440 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2441 * undefined behaviour.
2442 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002443static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002444smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002445{
Willy Tarreauf853c462012-04-23 18:53:56 +02002446 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002447 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002448 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002449 return 1;
2450}
2451
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002452/* set temp integer to the number of available connections on the server in the backend.
2453 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2454 * undefined behaviour.
2455 */
2456static int
2457smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2458{
2459 unsigned int maxconn;
2460
2461 smp->flags = SMP_F_VOL_TEST;
2462 smp->data.type = SMP_T_SINT;
2463
2464 if (args->data.srv->maxconn == 0) {
2465 /* one active server is unlimited, return -1 */
2466 smp->data.u.sint = -1;
2467 return 1;
2468 }
2469
2470 maxconn = srv_dynamic_maxconn(args->data.srv);
2471 if (maxconn > args->data.srv->cur_sess)
2472 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2473 else
2474 smp->data.u.sint = 0;
2475
2476 return 1;
2477}
2478
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002479/* set temp integer to the number of connections pending in the server's queue.
2480 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2481 * undefined behaviour.
2482 */
2483static int
2484smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2485{
2486 smp->flags = SMP_F_VOL_TEST;
2487 smp->data.type = SMP_T_SINT;
2488 smp->data.u.sint = args->data.srv->nbpend;
2489 return 1;
2490}
2491
Tait Clarridge7896d522012-12-05 21:39:31 -05002492/* set temp integer to the number of enabled servers on the proxy.
2493 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2494 * undefined behaviour.
2495 */
2496static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002497smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002498{
2499 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002500 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002501 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002502 return 1;
2503}
2504
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002505static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2506{
2507
2508 struct proxy *px;
2509
2510 if (!smp_make_safe(smp))
2511 return 0;
2512
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002513 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002514 if (!px)
2515 return 0;
2516
2517 smp->data.type = SMP_T_SINT;
2518 smp->data.u.sint = be_usable_srv(px);
2519
2520 return 1;
2521}
2522
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002523
2524/* Note: must not be declared <const> as its list will be overwritten.
2525 * Please take care of keeping this list alphabetically sorted.
2526 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002527static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002528 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2529 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002530 { "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 +02002531 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002532 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002533 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2534 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2535 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2536 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2537 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002538 { "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 +02002539 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002540 { "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 +02002541 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002542 { "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 +01002543 { /* END */ },
2544}};
2545
Willy Tarreau0108d902018-11-25 19:14:37 +01002546INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2547
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002548/* Note: must not be declared <const> as its list will be overwritten */
2549static struct sample_conv_kw_list sample_conv_kws = {ILH, {
2550 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2551 { /* END */ },
2552}};
2553
Willy Tarreau0108d902018-11-25 19:14:37 +01002554INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002555
Willy Tarreau61612d42012-04-19 18:42:05 +02002556/* Note: must not be declared <const> as its list will be overwritten.
2557 * Please take care of keeping this list alphabetically sorted.
2558 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002559static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002560 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002561}};
2562
Willy Tarreau0108d902018-11-25 19:14:37 +01002563INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002564
Willy Tarreaubaaee002006-06-26 02:48:02 +02002565/*
2566 * Local variables:
2567 * c-indent-level: 8
2568 * c-basic-offset: 8
2569 * End:
2570 */