blob: 552929d831d42f4a56bb2000e4b7099106910f43 [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <stdio.h>
15#include <stdlib.h>
16#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010017#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020018#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040019#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreau63617db2021-10-06 18:23:40 +020021#include <import/ebmbtree.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020024#include <haproxy/acl.h>
25#include <haproxy/activity.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/arg.h>
27#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020028#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020029#include <haproxy/check.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020030#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020032#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020033#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020034#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020035#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020036#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020037#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020038#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020039#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020040#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020041#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020042#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020044#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020045#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/proto_tcp.h>
47#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020048#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020049#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/sample.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020051#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020052#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020053#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020054#include <haproxy/ssl_sock.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020055#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020056#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020057#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020058#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020059#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020060#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020061
Christopher Fauleteea8fc72019-11-05 16:18:10 +010062#define TRACE_SOURCE &trace_strm
63
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050064int be_lastsession(const struct proxy *be)
65{
66 if (be->be_counters.last_sess)
Willy Tarreau69530f52023-04-28 09:16:15 +020067 return ns_to_sec(now_ns) - be->be_counters.last_sess;
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050068
69 return -1;
70}
71
Bhaskar98634f02013-10-29 23:30:51 -040072/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040074{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040076
77 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
78 case BE_LB_HFCN_DJB2:
79 hash = hash_djb2(key, len);
80 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010081 case BE_LB_HFCN_WT6:
82 hash = hash_wt6(key, len);
83 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010084 case BE_LB_HFCN_CRC32:
85 hash = hash_crc32(key, len);
86 break;
Bhaskar98634f02013-10-29 23:30:51 -040087 case BE_LB_HFCN_SDBM:
88 /* this is the default hash function */
89 default:
90 hash = hash_sdbm(key, len);
91 break;
92 }
93
94 return hash;
95}
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097/*
98 * This function recounts the number of usable active and backup servers for
99 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100101 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 * This functions is designed to be called before server's weight and state
104 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200105 *
106 * threads: this is the caller responsibility to lock data. For now, this
107 * function is called from lb modules, so it should be ok. But if you need to
108 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200110void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111{
112 struct server *srv;
113
Willy Tarreau20697042007-11-15 23:26:18 +0100114 px->srv_act = px->srv_bck = 0;
115 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 continue;
120
Willy Tarreauc93cd162014-05-13 15:54:22 +0200121 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100123 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 px->lbprm.fbck = srv;
125 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400126 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200127 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 } else {
129 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400130 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200131 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 }
133 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100134}
Willy Tarreau20697042007-11-15 23:26:18 +0100135
Willy Tarreaub625a082007-11-26 01:15:43 +0100136/* This function simply updates the backend's tot_weight and tot_used values
137 * after servers weights have been updated. It is designed to be used after
138 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200139 *
140 * threads: this is the caller responsibility to lock data. For now, this
141 * function is called from lb modules, so it should be ok. But if you need to
142 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100143 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200144void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100145{
Willy Tarreau20697042007-11-15 23:26:18 +0100146 if (px->srv_act) {
147 px->lbprm.tot_weight = px->lbprm.tot_wact;
148 px->lbprm.tot_used = px->srv_act;
149 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 else if (px->lbprm.fbck) {
151 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100154 }
155 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100156 px->lbprm.tot_weight = px->lbprm.tot_wbck;
157 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100158 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100159}
160
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200161/*
162 * This function tries to find a running server for the proxy <px> following
163 * the source hash method. Depending on the number of active/backup servers,
164 * it will either look for active servers, or for backup servers.
165 * If any server is found, it will be returned. If no valid server is found,
166 * NULL is returned.
167 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100168static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169{
170 unsigned int h, l;
171
172 if (px->lbprm.tot_weight == 0)
173 return NULL;
174
175 l = h = 0;
176
177 /* note: we won't hash if there's only one server left */
178 if (px->lbprm.tot_used == 1)
179 goto hash_done;
180
181 while ((l + sizeof (int)) <= len) {
182 h ^= ntohl(*(unsigned int *)(&addr[l]));
183 l += sizeof (int);
184 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500185 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100186 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100188 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100189 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200190 else
191 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200192}
193
194/*
195 * This function tries to find a running server for the proxy <px> following
196 * the URI hash method. In order to optimize cache hits, the hash computation
197 * ends at the question mark. Depending on the number of active/backup servers,
198 * it will either look for active servers, or for backup servers.
199 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100200 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200201 * the "whole" optional argument (boolean, bit0), the "len" argument (numeric)
202 * and the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200203 *
204 * This code was contributed by Guillaume Dallaire, who also selected this hash
205 * algorithm out of a tens because it gave him the best results.
206 *
207 */
Natalie Chen84b78692021-09-10 13:13:19 +0800208struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700210 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211 int c;
212 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400213 const char *start, *end;
vend_natalie.chenb749f592019-12-09 14:43:49 +0800214 int depth = 1;
215 int orig_uri_len = uri_len;
216 const char *orig_start;
217 const char *p, *params;
218 int buflen = 0;
219 char *buf;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200220
221 if (px->lbprm.tot_weight == 0)
222 return NULL;
223
224 /* note: we won't hash if there's only one server left */
225 if (px->lbprm.tot_used == 1)
226 goto hash_done;
227
Willy Tarreaua9a72492019-01-14 16:14:15 +0100228 if (px->lbprm.arg_opt2) // "len"
229 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200230
vend_natalie.chenb749f592019-12-09 14:43:49 +0800231 orig_start = start = end = uri;
232 if (px->lbprm.arg_opt4 == 1) {
233 p = memchr(uri, '?', uri_len);
234 params = p;
235 if (p) {
236 p++;
237 uri_len = p - uri;
238 params = p;
239 if (p[7] == '=') {
240 if (memcmp(p, "service", 7) == 0) {
241 p += 8;
242 depth = 2;
243 }
244 }
245 }
246
247 end = uri + uri_len - 1;
248 while (uri_len--) {
249 c = *end;
250 if (c == '/') {
251 if (p == NULL)
252 p = end + 1;
253 slashes++;
254 if (slashes == depth)
255 break;
256 }
257 end--;
258 }
259 if (p != NULL && (!strncmp(p, "git-receive-pack", 16) || !strncmp(p, "git-upload-pack", 15))) {
260 if (!strncmp(start, "/a/", 3) || !strncmp(start, "/p/", 3))
261 start += 2;
262 // we have git request here
263 // get rid of redundant '/'
264 while ((end - start) > 1 && *(start+1) == '/')
265 start++;
266 while ((end - start) > 1 && *(end-1) == '/')
267 end--;
268 // get rid of trailing ".git"
269 if ((end - start) > 4 && strncmp(end-4, ".git", 4) == 0)
270 end -= 4;
271 // get rid of redundant '/'
272 while ((end - start) > 1 && *(end-1) == '/')
273 end--;
274 hash = gen_hash(px, start, (end - start));
275 } else {
276 if (px->lbprm.arg_opt3 > 0){
277 // reset state
278 uri_len = orig_uri_len;
279 if (params != NULL)
280 uri_len = params - uri;
281 depth = px->lbprm.arg_opt3;
282 slashes = 0;
283 buf = (char *)malloc(uri_len);
284 orig_start = start = end = uri;
285 while (uri_len--) {
286 c = *end;
287 if (c == '/') {
288 if (slashes == 1 && end - start == 2) {
289 depth += 1;
290 orig_start = start = end;
291 }
292 slashes++;
293 if (slashes == depth - 1) {
294 if (memcmp(start, "/changes", end - start) != 0 && memcmp(start, "/projects", end - start) != 0)
295 break;
296 start = end;
297 p = start;
298 }
299 else if (slashes == depth) { /* depth+1 */
300 memcpy(buf + buflen, p, end - p);
301 buflen += (end - p);
302 break;
303 }
304 }
305 else if (c == '%') {
306 if (orig_start != start && uri_len > 2 && (memcmp(end, "%2F", 3) == 0 || memcmp(end, "%2f", 3) == 0)) {
307 memcpy(buf + buflen, p, end - p);
308 buflen += (end - p) + 1;
309 buf[buflen - 1] = '/';
310 p = end + 3;
311 }
312 }
313 else if (c == '~') {
314 if (orig_start != start) {
315 memcpy(buf + buflen, p, end - p);
316 buflen += (end - p);
317 break;
318 }
319 }
320 end++;
321 }
322 }
natalie052ae012024-11-07 12:54:54 +0800323 if (uri_len < 0 && *(end-1) != '?' && slashes == depth - 1) {
324 memcpy(buf + buflen, p, end - p);
325 buflen += (end - p);
326 }
vend_natalie.chenb749f592019-12-09 14:43:49 +0800327 if (buflen > 0)
328 hash = gen_hash(px, buf, buflen);
329 if (buf != NULL)
330 free(buf);
331 if (buflen <= 0) /*let's fallback to round robin */
332 return NULL;
333 }
334 } else {
335 while (uri_len--) {
336 c = *end;
337 if (c == '/') {
338 slashes++;
339 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
340 break;
341 }
natalie003480d2024-11-06 18:08:36 +0800342 else if (c == '?') // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200343 break;
vend_natalie.chenb749f592019-12-09 14:43:49 +0800344 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200345 }
Bhaskar98634f02013-10-29 23:30:51 -0400346
vend_natalie.chenb749f592019-12-09 14:43:49 +0800347 hash = gen_hash(px, start, (end - start));
348 }
Bhaskar98634f02013-10-29 23:30:51 -0400349
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500350 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100351 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200352 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100353 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100354 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200355 else
356 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200357}
358
Christopher Faulet5b517552017-06-09 14:17:53 +0200359/*
Willy Tarreau01732802007-11-01 22:48:15 +0100360 * This function tries to find a running server for the proxy <px> following
361 * the URL parameter hash method. It looks for a specific parameter in the
362 * URL and hashes it to compute the server ID. This is useful to optimize
363 * performance by avoiding bounces between servers in contexts where sessions
364 * are shared but cookies are not usable. If the parameter is not found, NULL
365 * is returned. If any server is found, it will be returned. If no valid server
366 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100367 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100368static 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 +0100369{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700370 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400371 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200372 const char *p;
373 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100374 int plen;
375
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200376 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100377 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100378 return NULL;
379
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200380 if ((p = memchr(uri, '?', uri_len)) == NULL)
381 return NULL;
382
Willy Tarreau01732802007-11-01 22:48:15 +0100383 p++;
384
385 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100386 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200387 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100388
389 while (uri_len > plen) {
390 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200391 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100392 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200393 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100394 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200395 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100396 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200397 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400398 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200399 uri_len -= plen + 1;
400
Bhaskar98634f02013-10-29 23:30:51 -0400401 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100402 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400403 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100404 }
Bhaskar98634f02013-10-29 23:30:51 -0400405 hash = gen_hash(px, start, (end - start));
406
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500407 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100408 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400409
Willy Tarreau6c30be52019-01-14 17:07:39 +0100410 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100411 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200412 else
413 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100414 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200415 }
416 /* skip to next parameter */
417 p = memchr(params, '&', uri_len);
418 if (!p)
419 return NULL;
420 p++;
421 uri_len -= (p - params);
422 params = p;
423 }
424 return NULL;
425}
426
427/*
428 * this does the same as the previous server_ph, but check the body contents
429 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100430static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200431{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700432 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100433 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200434 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200435 struct htx *htx = htxbuf(&req->buf);
436 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100437 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100438 unsigned long len;
439 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200440
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100441 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200442 return NULL;
443
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200444 p = params = NULL;
445 len = 0;
446 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
447 enum htx_blk_type type = htx_get_blk_type(blk);
448 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200449
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200450 if (type != HTX_BLK_DATA)
451 continue;
452 v = htx_get_blk_value(htx, blk);
453 p = params = v.ptr;
454 len = v.len;
455 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100456 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200457
458 while (len > plen) {
459 /* Look for the parameter name followed by an equal symbol */
460 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100461 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200462 /* OK, we have the parameter here at <params>, and
463 * the value after the equal sign, at <p>
464 * skip the equal symbol
465 */
466 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400467 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200468 len -= plen + 1;
469
Bhaskar98634f02013-10-29 23:30:51 -0400470 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200471 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100472 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400473 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100474 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200475 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
476 break;
477 return NULL; /* oh, no; this is not uri-encoded.
478 * This body does not contain parameters.
479 */
480 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200481 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400482 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200483 /* should we break if vlen exceeds limit? */
484 }
Bhaskar98634f02013-10-29 23:30:51 -0400485 hash = gen_hash(px, start, (end - start));
486
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500487 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100488 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400489
Willy Tarreau6c30be52019-01-14 17:07:39 +0100490 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100491 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200492 else
493 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200494 }
495 }
Willy Tarreau01732802007-11-01 22:48:15 +0100496 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200497 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100498 if (!p)
499 return NULL;
500 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200501 len -= (p - params);
502 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100503 }
504 return NULL;
505}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200506
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200507
Willy Tarreaubaaee002006-06-26 02:48:02 +0200508/*
Benoitaffb4812009-03-25 13:02:10 +0100509 * This function tries to find a running server for the proxy <px> following
510 * the Header parameter hash method. It looks for a specific parameter in the
511 * URL and hashes it to compute the server ID. This is useful to optimize
512 * performance by avoiding bounces between servers in contexts where sessions
513 * are shared but cookies are not usable. If the parameter is not found, NULL
514 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100515 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
516 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100517 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100518static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100519{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700520 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100521 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100522 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100523 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100524 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400525 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200526 struct htx *htx = htxbuf(&s->req.buf);
527 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100528
529 /* tot_weight appears to mean srv_count */
530 if (px->lbprm.tot_weight == 0)
531 return NULL;
532
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200533 /* note: we won't hash if there's only one server left */
534 if (px->lbprm.tot_used == 1)
535 goto hash_done;
536
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200537 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100538
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200539 /* if the header is not found or empty, let's fallback to round robin */
540 if (!ctx.blk || !ctx.value.len)
541 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100542
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200543 /* Found a the param_name in the headers.
544 * we will compute the hash based on this value ctx.val.
545 */
546 len = ctx.value.len;
547 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100548
Willy Tarreau9fed8582019-01-14 16:04:54 +0100549 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400550 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100551 } else {
552 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100553 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100554 /* special computation, use only main domain name, not tld/host
555 * going back from the end of string, start hashing at first
556 * dot stop at next.
557 * This is designed to work with the 'Host' header, and requires
558 * a special option to activate this.
559 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100560 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100561 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100562 if (dohash) {
563 /* Rewind the pointer until the previous char
564 * is a dot, this will allow to set the start
565 * position of the domain. */
566 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100567 break;
Benoitaffb4812009-03-25 13:02:10 +0100568 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100569 else if (*p == '.') {
570 /* The pointer is rewinded to the dot before the
571 * tld, we memorize the end of the domain and
572 * can enter the domain processing. */
573 end = p;
574 dohash = 1;
575 }
Benoitaffb4812009-03-25 13:02:10 +0100576 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100577 len--;
Benoitaffb4812009-03-25 13:02:10 +0100578 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100579 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400580 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100581 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500582 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100583 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200584 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100585 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100586 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200587 else
588 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100589}
590
Willy Tarreau34db1082012-04-19 17:16:54 +0200591/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100592static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200593{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700594 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200595 struct proxy *px = s->be;
596 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200597 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200598 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200599 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200600
601 /* tot_weight appears to mean srv_count */
602 if (px->lbprm.tot_weight == 0)
603 return NULL;
604
Willy Tarreau37406352012-04-23 16:16:37 +0200605 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200606
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200607 rewind = co_data(&s->req);
608 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200609
Willy Tarreau484ff072019-01-14 15:28:53 +0100610 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200611 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100612
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200613 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200614
Willy Tarreau37406352012-04-23 16:16:37 +0200615 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200616 return NULL;
617
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200618 /* note: we won't hash if there's only one server left */
619 if (px->lbprm.tot_used == 1)
620 goto hash_done;
621
Willy Tarreau484ff072019-01-14 15:28:53 +0100622 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200623 * we will compute the hash based on this value ctx.val.
624 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200625 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400626
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500627 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100628 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200629 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100630 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100631 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200632 else
633 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200634}
Christopher Faulet5b517552017-06-09 14:17:53 +0200635
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +0200636/* sample expression HASH. Returns NULL if the sample is not found or if there
637 * are no server, relying on the caller to fall back to round robin instead.
638 */
639static struct server *get_server_expr(struct stream *s, const struct server *avoid)
640{
641 struct proxy *px = s->be;
642 struct sample *smp;
643 unsigned int hash = 0;
644
645 if (px->lbprm.tot_weight == 0)
646 return NULL;
647
648 /* note: no need to hash if there's only one server left */
649 if (px->lbprm.tot_used == 1)
650 goto hash_done;
651
652 smp = sample_fetch_as_type(px, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, px->lbprm.expr, SMP_T_BIN);
653 if (!smp)
654 return NULL;
655
656 /* We have the desired data. Let's hash it according to the configured
657 * options and algorithm.
658 */
659 hash = gen_hash(px, smp->data.u.str.area, smp->data.u.str.data);
660
661 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
662 hash = full_hash(hash);
663 hash_done:
664 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
665 return chash_get_server_hash(px, hash, avoid);
666 else
667 return map_get_server_hash(px, hash);
668}
669
Willy Tarreau760e81d2018-05-03 07:20:40 +0200670/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100671static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200672{
673 unsigned int hash = 0;
674 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100675 struct server *prev, *curr;
676 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200677
678 /* tot_weight appears to mean srv_count */
679 if (px->lbprm.tot_weight == 0)
680 return NULL;
681
Willy Tarreau21c741a2019-01-14 18:14:27 +0100682 curr = NULL;
683 do {
684 prev = curr;
Ubuntu1adaddb2021-03-01 07:57:54 +0000685 hash = statistical_prng();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100686 curr = chash_get_server_hash(px, hash, avoid);
687 if (!curr)
688 break;
689
690 /* compare the new server to the previous best choice and pick
691 * the one with the least currently served requests.
692 */
693 if (prev && prev != curr &&
694 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
695 curr = prev;
696 } while (--draws > 0);
697
Willy Tarreaub88ae182020-09-29 16:58:30 +0200698 /* if the selected server is full, pretend we have none so that we reach
699 * the backend's queue instead.
700 */
701 if (curr &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200702 (curr->queue.length || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr))))
Willy Tarreaub88ae182020-09-29 16:58:30 +0200703 curr = NULL;
704
Willy Tarreau21c741a2019-01-14 18:14:27 +0100705 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200706}
707
Benoitaffb4812009-03-25 13:02:10 +0100708/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200709 * This function applies the load-balancing algorithm to the stream, as
710 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200711 * 'assigned'.
712 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200713 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200714 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100715 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200716 * The function tries to keep the original connection slot if it reconnects to
717 * the same server, otherwise it releases it and tries to offer it.
718 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200719 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200720 *
721 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100722 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200723 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
724 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725 * SRV_STATUS_INTERNAL for other unrecoverable errors.
726 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200727 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100728 * it does not need to be called anymore. This means that target_srv(&s->target)
729 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730 *
731 */
732
Willy Tarreau87b09662015-04-03 00:22:06 +0200733int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200734{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100735 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200736 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100737 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200738 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100739
Willy Tarreau7c669d72008-06-20 15:04:11 +0200740 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200741 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200742 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100743
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100744 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200745 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200746
Willy Tarreau7c669d72008-06-20 15:04:11 +0200747 /* We have to release any connection slot before applying any LB algo,
748 * otherwise we may erroneously end up with no available slot.
749 */
750 if (conn_slot)
751 sess_change_server(s, NULL);
752
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100753 /* We will now try to find the good server and store it into <objt_server(s->target)>.
754 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200755 * as well as if no server is available (check error code).
756 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100757
Willy Tarreau827aee92011-03-10 16:55:02 +0100758 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100759 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100760
Olivier Houchardba4fff52018-12-01 14:40:40 +0100761 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200762 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100763 (s->be->options & PR_O_PREF_LAST))) {
Amaury Denoyelle926a5612024-03-14 11:24:10 +0100764 struct sess_priv_conns *pconns;
765 list_for_each_entry(pconns, &s->sess->priv_conns, sess_el) {
766 struct server *tmpsrv = objt_server(pconns->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100767
768 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200769 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100770 (!s->be->max_ka_queue ||
771 server_has_room(tmpsrv) || (
Willy Tarreaua0570452021-06-18 09:30:30 +0200772 tmpsrv->queue.length + 1 < s->be->max_ka_queue))) &&
Olivier Houchardba4fff52018-12-01 14:40:40 +0100773 srv_currently_usable(tmpsrv)) {
Amaury Denoyelle926a5612024-03-14 11:24:10 +0100774 list_for_each_entry(conn, &pconns->conn_list, sess_el) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100775 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100776 srv = tmpsrv;
777 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200778 if (conn->flags & CO_FL_SESS_IDLE) {
779 conn->flags &= ~CO_FL_SESS_IDLE;
780 s->sess->idle_conns--;
781 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100782 goto out_ok;
783 }
784 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100785 }
786 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100787 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200788
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200789 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200790 /* we must check if we have at least one server available */
791 if (!s->be->lbprm.tot_weight) {
792 err = SRV_STATUS_NOSRV;
793 goto out;
794 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200796 /* if there's some queue on the backend, with certain algos we
797 * know it's because all servers are full.
798 */
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200799 if (s->be->queue.length && s->be->queue.length != s->be->beconn &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200800 (((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_FAS)|| // first
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200801 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
802 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
803 err = SRV_STATUS_FULL;
804 goto out;
805 }
806
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200807 /* First check whether we need to fetch some data or simply call
808 * the LB lookup function. Only the hashing functions will need
809 * some input data in fact, and will support multiple algorithms.
810 */
811 switch (s->be->lbprm.algo & BE_LB_LKUP) {
812 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100813 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200814 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200815
Willy Tarreauf09c6602012-02-13 17:12:08 +0100816 case BE_LB_LKUP_FSTREE:
817 srv = fas_get_next_server(s->be, prev_srv);
818 break;
819
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200820 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100821 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200822 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200823
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200824 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200825 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200826 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau5ffb0452021-06-22 17:31:51 +0200827 /* static-rr (map) or random (chash) */
Willy Tarreau760e81d2018-05-03 07:20:40 +0200828 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100829 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200830 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100831 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200832 break;
833 }
834 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200835 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200836 err = SRV_STATUS_INTERNAL;
837 goto out;
838 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200839
840 switch (s->be->lbprm.algo & BE_LB_PARM) {
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200841 const struct sockaddr_storage *src;
842
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200843 case BE_LB_HASH_SRC:
Willy Tarreaud68ff012022-05-27 08:57:21 +0200844 src = sc_src(s->scf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200845 if (src && src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200846 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200847 (void *)&((struct sockaddr_in *)src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100848 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200849 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200850 else if (src && src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200851 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200852 (void *)&((struct sockaddr_in6 *)src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100853 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200854 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200855 break;
856
857 case BE_LB_HASH_URI:
858 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200859 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100860 struct ist uri;
861
Christopher Faulet297fbb42019-05-13 14:41:27 +0200862 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200863 if (s->be->lbprm.arg_opt1 & 2) {
Amaury Denoyellec453f952021-07-06 11:40:12 +0200864 struct http_uri_parser parser =
865 http_uri_parser_init(uri);
866
867 uri = http_parse_path(&parser);
Tim Duesterhus7b5777d2021-03-02 18:57:28 +0100868 if (!isttest(uri))
Willy Tarreau57a37412020-09-23 08:56:29 +0200869 uri = ist("");
870 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100871 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
872 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200873 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200874
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200875 case BE_LB_HASH_PRM:
876 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200877 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100878 struct ist uri;
879
Christopher Faulet297fbb42019-05-13 14:41:27 +0200880 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100881 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100882
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200883 if (!srv && s->txn->meth == HTTP_METH_POST)
884 srv = get_server_ph_post(s, prev_srv);
885 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200886 break;
Benoitaffb4812009-03-25 13:02:10 +0100887
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200888 case BE_LB_HASH_HDR:
889 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200890 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
891 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200892 break;
893
894 case BE_LB_HASH_RDP:
895 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100896 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200897 break;
898
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +0200899 case BE_LB_HASH_SMP:
900 /* sample expression hashing */
901 srv = get_server_expr(s, prev_srv);
902 break;
903
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200904 default:
905 /* unknown balancing algorithm */
906 err = SRV_STATUS_INTERNAL;
907 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100908 }
Emeric Brun736aa232009-06-30 17:56:00 +0200909
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200910 /* If the hashing parameter was not found, let's fall
911 * back to round robin on the map.
912 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100913 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100914 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100915 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200916 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100917 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200918 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200919
920 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200921 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200922
Willy Tarreau7c669d72008-06-20 15:04:11 +0200923 default:
924 /* unknown balancing algorithm */
925 err = SRV_STATUS_INTERNAL;
926 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200928
Willy Tarreau827aee92011-03-10 16:55:02 +0100929 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200930 err = SRV_STATUS_FULL;
931 goto out;
932 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100933 else if (srv != prev_srv) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200934 _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn);
935 _HA_ATOMIC_INC(&srv->counters.cum_lbconn);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100936 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100937 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200938 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200939 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100940 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100942 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200943 err = SRV_STATUS_NOSRV;
944 goto out;
945 }
946
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100947out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200948 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200949 err = SRV_STATUS_OK;
950 out:
951
952 /* Either we take back our connection slot, or we offer it to someone
953 * else if we don't need it anymore.
954 */
955 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100956 if (conn_slot == srv) {
957 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200958 } else {
959 if (may_dequeue_tasks(conn_slot, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +0200960 process_srv_queue(conn_slot);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200961 }
962 }
963
964 out_err:
965 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966}
967
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100968/* Allocate an address for the destination endpoint
Willy Tarreaubaaee002006-06-26 02:48:02 +0200969 * The address is taken from the currently assigned server, or from the
970 * dispatch or transparent address.
971 *
Willy Tarreaub3f0d422022-05-02 16:20:36 +0200972 * Returns SRV_STATUS_OK on success. Does nothing if the address was
973 * already set.
Amaury Denoyellef7bdf002021-01-21 09:40:19 +0100974 * On error, no address is allocated and SRV_STATUS_INTERNAL is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975 */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100976static int alloc_dst_address(struct sockaddr_storage **ss,
977 struct server *srv, struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200978{
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200979 const struct sockaddr_storage *dst;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200980
Willy Tarreaub3f0d422022-05-02 16:20:36 +0200981 if (*ss)
982 return SRV_STATUS_OK;
983
Willy Tarreaue7dff022015-04-03 01:14:29 +0200984 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200985 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200986 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200987 return SRV_STATUS_INTERNAL;
988
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100989 if (!sockaddr_alloc(ss, NULL, 0))
990 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200991
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100992 **ss = srv->addr;
993 set_host_port(*ss, srv->svc_port);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100994 if (!is_addr(*ss)) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200995 /* if the server has no address, we use the same address
996 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200997 * locally on multiple addresses at once. Nothing is done
998 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200999 */
Willy Tarreaud68ff012022-05-27 08:57:21 +02001000 dst = sc_dst(s->scf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001001 if (dst && dst->ss_family == AF_INET) {
Christopher Fauletae305612021-03-01 11:33:59 +01001002 ((struct sockaddr_in *)*ss)->sin_family = AF_INET;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +01001003 ((struct sockaddr_in *)*ss)->sin_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001004 ((struct sockaddr_in *)dst)->sin_addr;
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001005 } else if (dst && dst->ss_family == AF_INET6) {
Christopher Fauletae305612021-03-01 11:33:59 +01001006 ((struct sockaddr_in6 *)*ss)->sin6_family = AF_INET6;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +01001007 ((struct sockaddr_in6 *)*ss)->sin6_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001008 ((struct sockaddr_in6 *)dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +02001009 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +02001010 }
1011
Willy Tarreaubaaee002006-06-26 02:48:02 +02001012 /* if this server remaps proxied ports, we'll use
1013 * the port the client connected to with an offset. */
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001014 if ((srv->flags & SRV_F_MAPPORTS)) {
David du Colombier6f5ccb12011-03-10 22:26:24 +01001015 int base_port;
1016
Willy Tarreaud68ff012022-05-27 08:57:21 +02001017 dst = sc_dst(s->scf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001018 if (dst) {
1019 /* First, retrieve the port from the incoming connection */
1020 base_port = get_host_port(dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +01001021
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001022 /* Second, assign the outgoing connection's port */
1023 base_port += get_host_port(*ss);
1024 set_host_port(*ss, base_port);
1025 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001026 }
1027 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02001028 else if (s->be->options & PR_O_DISPATCH) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +01001029 if (!sockaddr_alloc(ss, NULL, 0))
1030 return SRV_STATUS_INTERNAL;
1031
Willy Tarreaubaaee002006-06-26 02:48:02 +02001032 /* connect to the defined dispatch addr */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +01001033 **ss = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001034 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001035 else if ((s->be->options & PR_O_TRANSP)) {
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001036 if (!sockaddr_alloc(ss, NULL, 0))
Amaury Denoyelle68cf3952021-01-11 15:24:31 +01001037 return SRV_STATUS_INTERNAL;
1038
Willy Tarreaubaaee002006-06-26 02:48:02 +02001039 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaud68ff012022-05-27 08:57:21 +02001040 dst = sc_dst(s->scf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +01001041 if (dst && (dst->ss_family == AF_INET || dst->ss_family == AF_INET6))
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001042 **ss = *dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001043 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +01001044 else {
1045 /* no server and no LB algorithm ! */
1046 return SRV_STATUS_INTERNAL;
1047 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001048
Willy Tarreaubaaee002006-06-26 02:48:02 +02001049 return SRV_STATUS_OK;
1050}
1051
Willy Tarreau87b09662015-04-03 00:22:06 +02001052/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +02001053 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +02001054 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +02001055 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +02001056 * be called before any connection and after any retry or redispatch occurs.
1057 *
Willy Tarreau87b09662015-04-03 00:22:06 +02001058 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001059 *
1060 * Returns :
1061 *
1062 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001063 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001064 * SRV_STATUS_QUEUED if the connection has been queued.
1065 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +01001066 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +02001067 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001068 * SRV_STATUS_INTERNAL for other unrecoverable errors.
1069 *
1070 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001071int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001072{
1073 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +01001074 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001075 int err;
1076
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02001077 balance_again:
Willy Tarreaubaaee002006-06-26 02:48:02 +02001078 if (s->pend_pos)
1079 return SRV_STATUS_INTERNAL;
1080
Willy Tarreau7c669d72008-06-20 15:04:11 +02001081 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001082 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001083 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +01001084
Willy Tarreau7c669d72008-06-20 15:04:11 +02001085 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +01001086 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001087 /* This stream was previously assigned to a server. We have to
1088 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +02001089 * - if the server changed :
1090 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +02001091 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +02001092 * - increment srv->redispatches and be->redispatches
1093 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001094 */
1095
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001096 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02001097 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
1098 s->txn->flags &= ~TX_CK_MASK;
1099 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001100 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02001101 s->flags |= SF_REDISP;
Willy Tarreau4781b152021-04-06 13:53:36 +02001102 _HA_ATOMIC_INC(&prev_srv->counters.redispatches);
1103 _HA_ATOMIC_INC(&s->be->be_counters.redispatches);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001104 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001105 _HA_ATOMIC_INC(&prev_srv->counters.retries);
1106 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001107 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001108 }
1109 }
1110
Willy Tarreaubaaee002006-06-26 02:48:02 +02001111 switch (err) {
1112 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +02001113 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001114 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001115 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001116 return SRV_STATUS_OK; /* dispatch or proxy mode */
1117
1118 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +01001119 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001120 return SRV_STATUS_OK;
1121
Willy Tarreau87b09662015-04-03 00:22:06 +02001122 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +02001123 * connection slot yet. Either it is a redispatch, or it was
1124 * assigned from persistence information (direct mode).
1125 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001126 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001127 /* server scheduled for redirection, and already assigned. We
1128 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +01001129 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001130 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +01001131 return SRV_STATUS_OK;
1132 }
1133
Willy Tarreau87b09662015-04-03 00:22:06 +02001134 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001135 * We know we have to queue it into the server's queue, so if a maxqueue
1136 * is set on the server, we must also check that the server's queue is
1137 * not full, in which case we have to return FULL.
1138 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001139 if (srv->maxconn &&
Willy Tarreaua0570452021-06-18 09:30:30 +02001140 (srv->queue.length || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001141
Willy Tarreaua0570452021-06-18 09:30:30 +02001142 if (srv->maxqueue > 0 && srv->queue.length >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001143 return SRV_STATUS_FULL;
1144
Willy Tarreaubaaee002006-06-26 02:48:02 +02001145 p = pendconn_add(s);
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02001146 if (p) {
1147 /* There's a TOCTOU here: it may happen that between the
1148 * moment we decided to queue the request and the moment
1149 * it was done, the last active request on the server
1150 * ended and no new one will be able to dequeue that one.
1151 * Since we already have our server we don't care, this
1152 * will be handled by the caller which will check for
1153 * this condition and will immediately dequeue it if
1154 * possible.
1155 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156 return SRV_STATUS_QUEUED;
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02001157 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001158 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001159 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001160 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001161
1162 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001163 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001164 return SRV_STATUS_OK;
1165
1166 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001167 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168 p = pendconn_add(s);
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02001169 if (p) {
1170 /* There's a TOCTOU here: it may happen that between the
1171 * moment we decided to queue the request and the moment
1172 * it was done, the last active request in the backend
1173 * ended and no new one will be able to dequeue that one.
1174 * This is more visible with maxconn 1 where it can
1175 * happen 1/1000 times, though the vast majority are
1176 * correctly recovered from. Since it's so rare and we
1177 * have no server assigned, the best solution in this
1178 * case is to detect the condition, dequeue our request
1179 * and balance it again.
1180 */
1181 if (unlikely(pendconn_must_try_again(p)))
1182 goto balance_again;
1183
Willy Tarreaubaaee002006-06-26 02:48:02 +02001184 return SRV_STATUS_QUEUED;
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02001185 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001186 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001187 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001188
1189 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001190 return err;
1191
Willy Tarreaubaaee002006-06-26 02:48:02 +02001192 case SRV_STATUS_INTERNAL:
1193 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001194
Willy Tarreaubaaee002006-06-26 02:48:02 +02001195 default:
1196 return SRV_STATUS_INTERNAL;
1197 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001198}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001199
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001200/* Allocate an address for source binding on the specified server or backend.
1201 * The allocation is only performed if the connection is intended to be used
1202 * with transparent mode.
1203 *
1204 * Returns SRV_STATUS_OK if no transparent mode or the address was successfully
Willy Tarreaub3f0d422022-05-02 16:20:36 +02001205 * allocated. Otherwise returns SRV_STATUS_INTERNAL. Does nothing if the
1206 * address was already allocated.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001207 */
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001208static int alloc_bind_address(struct sockaddr_storage **ss,
1209 struct server *srv, struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001210{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001211#if defined(CONFIG_HAP_TRANSPARENT)
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001212 const struct sockaddr_storage *addr;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001213 struct conn_src *src = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001214 struct sockaddr_in *sin;
1215 char *vptr;
1216 size_t vlen;
1217#endif
Olivier Houchard09a0f032019-01-17 15:59:13 +01001218
Willy Tarreaub3f0d422022-05-02 16:20:36 +02001219 if (*ss)
1220 return SRV_STATUS_OK;
Willy Tarreau827aee92011-03-10 16:55:02 +01001221
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001222#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001223 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1224 src = &srv->conn_src;
1225 else if (s->be->conn_src.opts & CO_SRC_BIND)
1226 src = &s->be->conn_src;
Willy Tarreau294c4732011-12-16 21:35:50 +01001227
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001228 /* no transparent mode, no need to allocate an address, returns OK */
1229 if (!src)
1230 return SRV_STATUS_OK;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001231
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001232 switch (src->opts & CO_SRC_TPROXY_MASK) {
1233 case CO_SRC_TPROXY_ADDR:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001234 if (!sockaddr_alloc(ss, NULL, 0))
1235 return SRV_STATUS_INTERNAL;
1236
1237 **ss = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001238 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001239
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001240 case CO_SRC_TPROXY_CLI:
1241 case CO_SRC_TPROXY_CIP:
1242 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud68ff012022-05-27 08:57:21 +02001243 addr = sc_src(s->scf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001244 if (!addr)
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001245 return SRV_STATUS_INTERNAL;
1246
1247 if (!sockaddr_alloc(ss, NULL, 0))
1248 return SRV_STATUS_INTERNAL;
1249
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001250 **ss = *addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001251 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001252
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001253 case CO_SRC_TPROXY_DYN:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001254 if (!src->bind_hdr_occ || !IS_HTX_STRM(s))
1255 return SRV_STATUS_INTERNAL;
Willy Tarreau294c4732011-12-16 21:35:50 +01001256
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001257 if (!sockaddr_alloc(ss, NULL, 0))
1258 return SRV_STATUS_INTERNAL;
1259
1260 /* bind to the IP in a header */
1261 sin = (struct sockaddr_in *)*ss;
1262 sin->sin_family = AF_INET;
1263 sin->sin_port = 0;
1264 sin->sin_addr.s_addr = 0;
1265 if (!http_get_htx_hdr(htxbuf(&s->req.buf),
1266 ist2(src->bind_hdr_name, src->bind_hdr_len),
1267 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1268 sockaddr_free(ss);
1269 return SRV_STATUS_INTERNAL;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001270 }
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001271
1272 sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001273 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001274
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001275 default:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001276 ;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001277 }
1278#endif
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001279
1280 return SRV_STATUS_OK;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001281}
1282
Olivier Houchard566df302020-03-06 18:18:56 +01001283/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001284 * (safe or idle connections). The <is_safe> argument means what type of
1285 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001286 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001287static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001288{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001289 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001290 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001291 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001292 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001293
1294 /* We need to lock even if this is our own list, because another
1295 * thread may be trying to migrate that connection, and we don't want
1296 * to end up with two threads using the same connection.
1297 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001298 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001299 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001300 conn = srv_lookup_conn(is_safe ? &srv->per_thr[tid].safe_conns : &srv->per_thr[tid].idle_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001301 if (conn)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001302 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001303
1304 /* If we failed to pick a connection from the idle list, let's try again with
1305 * the safe list.
1306 */
1307 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001308 conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001309 if (conn) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001310 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001311 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001312 }
1313 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001314 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001315
1316 /* If we found a connection in our own list, and we don't have to
1317 * steal one from another thread, then we're done.
1318 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001319 if (conn)
1320 goto done;
1321
Willy Tarreau76cc6992020-07-01 18:49:24 +02001322 /* pool sharing globally disabled ? */
1323 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1324 goto done;
1325
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001326 /* Are we allowed to pick from another thread ? We'll still try
1327 * it if we're running low on FDs as we don't want to create
1328 * extra conns in this case, otherwise we can give up if we have
1329 * too few idle conns.
1330 */
1331 if (srv->curr_idle_conns < srv->low_idle_conns &&
1332 ha_used_fds < global.tune.pool_low_count)
1333 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001334
Willy Tarreau364f25a2020-07-01 15:55:30 +02001335 /* Lookup all other threads for an idle connection, starting from last
Willy Tarreau15c55002022-07-07 09:12:45 +02001336 * unvisited thread, but always staying in the same group.
Willy Tarreau364f25a2020-07-01 15:55:30 +02001337 */
Willy Tarreauc21a1872022-11-21 14:14:06 +01001338 stop = srv->per_tgrp[tgid - 1].next_takeover;
Willy Tarreau15c55002022-07-07 09:12:45 +02001339 if (stop >= tg->count)
1340 stop %= tg->count;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001341
Willy Tarreau15c55002022-07-07 09:12:45 +02001342 stop += tg->base;
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001343 i = stop;
1344 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001345 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001346 continue;
1347
Ubuntub1adf032021-03-01 06:22:17 +00001348 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1349 continue;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001350 conn = srv_lookup_conn(is_safe ? &srv->per_thr[i].safe_conns : &srv->per_thr[i].idle_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001351 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001352 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001353 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001354 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Olivier Houchard566df302020-03-06 18:18:56 +01001355 found = 1;
1356 break;
1357 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001358
1359 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001360 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001361
1362 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001363 conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001364 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001365 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001366 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001367 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Willy Tarreau0d587112020-07-01 15:04:38 +02001368 found = 1;
1369 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001370 break;
1371 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001372
1373 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001374 }
1375 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001376 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau15c55002022-07-07 09:12:45 +02001377 } while (!found && (i = (i + 1 == tg->base + tg->count) ? tg->base : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001378
1379 if (!found)
1380 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001381 done:
1382 if (conn) {
Willy Tarreauc21a1872022-11-21 14:14:06 +01001383 _HA_ATOMIC_STORE(&srv->per_tgrp[tgid - 1].next_takeover, (i + 1 == tg->base + tg->count) ? tg->base : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001384
1385 srv_use_conn(srv, conn);
1386
Willy Tarreau4781b152021-04-06 13:53:36 +02001387 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
1388 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
1389 _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001390 conn->flags &= ~CO_FL_LIST_MASK;
1391 __ha_barrier_atomic_store();
1392
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001393 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1394 conn->mux->flags & MX_FL_HOL_RISK) {
1395 /* attach the connection to the session private list
1396 */
1397 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001398 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001399 }
1400 else {
Willy Tarreau85223482022-09-29 20:32:43 +02001401 eb64_insert(&srv->per_thr[tid].avail_conns,
1402 &conn->hash_node->node);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001403 }
Olivier Houchard566df302020-03-06 18:18:56 +01001404 }
1405 return conn;
1406}
1407
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001408static int do_connect_server(struct stream *s, struct connection *conn)
1409{
1410 int ret = SF_ERR_NONE;
1411 int conn_flags = 0;
1412
1413 if (unlikely(!conn || !conn->ctrl || !conn->ctrl->connect))
1414 return SF_ERR_INTERNAL;
1415
1416 if (!channel_is_empty(&s->res))
1417 conn_flags |= CONNECT_HAS_DATA;
1418 if (s->conn_retries == s->be->conn_retries)
1419 conn_flags |= CONNECT_CAN_USE_TFO;
1420 if (!conn_ctrl_ready(conn) || !conn_xprt_ready(conn)) {
1421 ret = conn->ctrl->connect(conn, conn_flags);
1422 if (ret != SF_ERR_NONE)
1423 return ret;
1424
1425 /* we're in the process of establishing a connection */
Willy Tarreau026e8fb2022-05-17 19:47:17 +02001426 s->scb->state = SC_ST_CON;
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001427 }
1428 else {
1429 /* try to reuse the existing connection, it will be
1430 * confirmed once we can send on it.
1431 */
1432 /* Is the connection really ready ? */
1433 if (conn->mux->ctl(conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
Willy Tarreau026e8fb2022-05-17 19:47:17 +02001434 s->scb->state = SC_ST_RDY;
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001435 else
Willy Tarreau026e8fb2022-05-17 19:47:17 +02001436 s->scb->state = SC_ST_CON;
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001437 }
1438
1439 /* needs src ip/port for logging */
1440 if (s->flags & SF_SRC_ADDR)
1441 conn_get_src(conn);
1442
1443 return ret;
1444}
1445
Willy Tarreaubaaee002006-06-26 02:48:02 +02001446/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001447 * This function initiates a connection to the server assigned to this stream
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001448 * (s->target, (s->scb)->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001449 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001450 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001451 * - SF_ERR_NONE if everything's OK
1452 * - SF_ERR_SRVTO if there are no more servers
1453 * - SF_ERR_SRVCL if the connection was refused by the server
1454 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1455 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1456 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001457 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau4596fe22022-05-17 19:07:51 +02001458 * The server-facing stream connector is expected to hold a pre-allocated connection.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001459 */
Christopher Fauletc983b212022-01-13 09:53:00 +01001460static int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001461{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001462 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001463 struct connection *srv_conn = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001464 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001465 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001466 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001467 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001468 int err;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001469#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001470 struct sample *sni_smp = NULL;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001471#endif
Willy Tarreaub3f0d422022-05-02 16:20:36 +02001472 struct sockaddr_storage *bind_addr = NULL;
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001473 int proxy_line_ret;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001474 int64_t hash = 0;
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001475 struct conn_hash_params hash_params;
1476
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001477 /* in standard configuration, srv will be valid
1478 * it can be NULL for dispatch mode or transparent backend */
1479 srv = objt_server(s->target);
1480
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001481 err = alloc_dst_address(&s->scb->dst, srv, s);
Willy Tarreau03bd3952022-05-02 16:36:47 +02001482 if (err != SRV_STATUS_OK)
1483 return SF_ERR_INTERNAL;
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001484
1485 err = alloc_bind_address(&bind_addr, srv, s);
1486 if (err != SRV_STATUS_OK)
1487 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001488
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001489#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001490 if (srv && srv->ssl_ctx.sni) {
1491 sni_smp = sample_fetch_as_type(s->be, s->sess, s,
1492 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1493 srv->ssl_ctx.sni, SMP_T_STR);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001494 }
1495#endif
Amaury Denoyelle4c098002021-02-17 15:59:02 +01001496
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001497 /* do not reuse if mode is not http */
1498 if (!IS_HTX_STRM(s)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001499 DBG_TRACE_STATE("skip idle connections reuse: no htx", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001500 goto skip_reuse;
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001501 }
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001502
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001503 /* disable reuse if websocket stream and the protocol to use is not the
1504 * same as the main protocol of the server.
1505 */
1506 if (unlikely(s->flags & SF_WEBSOCKET) && srv) {
1507 if (!srv_check_reuse_ws(srv)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001508 DBG_TRACE_STATE("skip idle connections reuse: websocket stream", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001509 goto skip_reuse;
1510 }
1511 }
1512
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001513 /* first, set unique connection parameters and then calculate hash */
1514 memset(&hash_params, 0, sizeof(hash_params));
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001515
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001516 /* 1. target */
1517 hash_params.target = s->target;
1518
1519#ifdef USE_OPENSSL
1520 /* 2. sni
1521 * only test if the sample is not null as smp_make_safe (called before
1522 * ssl_sock_set_servername) can only fails if this is not the case
1523 */
1524 if (sni_smp) {
1525 hash_params.sni_prehash =
1526 conn_hash_prehash(sni_smp->data.u.str.area,
1527 sni_smp->data.u.str.data);
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001528 }
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001529#endif /* USE_OPENSSL */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001530
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001531 /* 3. destination address */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001532 if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS))
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001533 hash_params.dst_addr = s->scb->dst;
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001534
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001535 /* 4. source address */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001536 hash_params.src_addr = bind_addr;
1537
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001538 /* 5. proxy protocol */
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001539 if (srv && srv->pp_opts) {
1540 proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s);
1541 if (proxy_line_ret) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001542 hash_params.proxy_prehash =
1543 conn_hash_prehash(trash.area, proxy_line_ret);
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001544 }
1545 }
1546
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001547 hash = conn_calculate_hash(&hash_params);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001548
Willy Tarreaub0821862019-07-18 19:26:11 +02001549 /* first, search for a matching connection in the session's idle conns */
Amaury Denoyelle293dcc42021-01-25 10:29:35 +01001550 srv_conn = session_get_conn(s->sess, s->target, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001551 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001552 DBG_TRACE_STATE("reuse connection from session", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001553 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001554 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001555
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001556 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001557 /* Below we pick connections from the safe, idle or
1558 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001559 * on the strategy, the fact that this is a first or second
1560 * (retryable) request, with the indicated priority (1 or 2) :
1561 *
1562 * SAFE AGGR ALWS
1563 *
1564 * +-----+-----+ +-----+-----+ +-----+-----+
1565 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1566 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1567 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1568 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1569 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1570 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001571 *
1572 * Idle conns are necessarily looked up on the same thread so
1573 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001574 */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001575 if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) {
1576 srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001577 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001578 DBG_TRACE_STATE("reuse connection from avail", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001579 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001580 }
Willy Tarreau449d74a2015-08-05 17:16:33 +02001581 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001582
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001583 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001584 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001585 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1586 const int idle = srv->curr_idle_nb > 0;
1587 const int safe = srv->curr_safe_nb > 0;
Willy Tarreauecb40b22022-09-01 19:58:58 +02001588 const int retry_safe = (s->be->retry_type & (PR_RE_CONN_FAILED | PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) ==
1589 (PR_RE_CONN_FAILED | PR_RE_DISCONNECTED | PR_RE_TIMEOUT);
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001590
1591 /* second column of the tables above,
1592 * search for an idle then safe conn */
Willy Tarreauecb40b22022-09-01 19:58:58 +02001593 if (not_first_req || retry_safe) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001594 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001595 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001596 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001597 /* first column of the tables above */
1598 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1599 /* search for a safe conn */
1600 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001601 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001602
1603 /* search for an idle conn if no safe conn found
1604 * on always reuse mode */
1605 if (!srv_conn &&
1606 reuse_mode == PR_O_REUSE_ALWS && idle) {
1607 /* TODO conn_backend_get should not check the
1608 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001609 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001610 }
Olivier Houchard566df302020-03-06 18:18:56 +01001611 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001612
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001613 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001614 DBG_TRACE_STATE("reuse connection from idle/safe", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Olivier Houchard566df302020-03-06 18:18:56 +01001615 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001616 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001617 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001618 }
1619
Willy Tarreaub0821862019-07-18 19:26:11 +02001620
1621 /* here reuse might have been set above, indicating srv_conn finally
1622 * is OK.
1623 */
Willy Tarreaub0821862019-07-18 19:26:11 +02001624
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001625 if (ha_used_fds > global.tune.pool_high_count && srv) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001626 struct connection *tokill_conn = NULL;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001627 struct conn_hash_node *conn_node = NULL;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001628 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001629
1630 /* We can't reuse a connection, and e have more FDs than deemd
1631 * acceptable, attempt to kill an idling connection
1632 */
1633 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001634 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001635 node = ebmb_first(&srv->per_thr[tid].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001636 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001637 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1638 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001639 ebmb_delete(node);
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001640 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1641
1642 /* Release the idle lock before calling mux->destroy.
1643 * It will in turn call srv_release_conn through
1644 * conn_free which also uses it.
1645 */
Olivier Houchard88698d92019-04-16 19:07:22 +02001646 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001647 }
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001648 else {
1649 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1650 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001651
Olivier Houchard88698d92019-04-16 19:07:22 +02001652 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001653 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001654 int i;
1655
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001656 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001657 // just silence stupid gcc which reports an absurd
1658 // out-of-bounds warning for <i> which is always
1659 // exactly zero without threads, but it seems to
1660 // see it possibly larger.
1661 ALREADY_CHECKED(i);
1662
Willy Tarreau9b9f8472021-03-26 20:52:10 +01001663 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1664 continue;
1665
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001666 node = ebmb_first(&srv->per_thr[i].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001667 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001668 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1669 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001670 ebmb_delete(node);
1671 }
1672
1673 if (!tokill_conn) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001674 node = ebmb_first(&srv->per_thr[i].safe_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001675 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001676 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1677 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001678 ebmb_delete(node);
1679 }
1680 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001681 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001682
Olivier Houchard88698d92019-04-16 19:07:22 +02001683 if (tokill_conn) {
1684 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1685
Willy Tarreau2b718102021-04-21 07:32:39 +02001686 MT_LIST_APPEND(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001687 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001688 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001689 break;
1690 }
1691 }
1692 }
1693
1694 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001695
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001696 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001697 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001698 int avail = srv_conn->mux->avail_streams(srv_conn);
1699
1700 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001701 /* No more streams available, remove it from the list */
Christopher Faulet7ae48a72022-04-22 17:56:24 +02001702 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001703 conn_delete_from_tree(&srv_conn->hash_node->node);
Christopher Faulet7ae48a72022-04-22 17:56:24 +02001704 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard2442f682018-12-01 17:03:38 +01001705 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001706
1707 if (avail >= 1) {
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001708 if (srv_conn->mux->attach(srv_conn, s->scb->sedesc, s->sess) == -1) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001709 srv_conn = NULL;
Willy Tarreau19c65a92022-05-27 08:49:24 +02001710 if (sc_reset_endp(s->scb) < 0)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001711 return SF_ERR_INTERNAL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001712 sc_ep_clr(s->scb, ~SE_FL_DETACHED);
Christopher Faulet13a35e52021-12-20 15:34:16 +01001713 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001714 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001715 else
1716 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001717 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001718 /* otherwise srv_conn is left intact */
1719 }
1720 else
1721 srv_conn = NULL;
1722
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001723skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001724 /* no reuse or failed to reuse the connection above, pick a new one */
1725 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001726 srv_conn = conn_new(s->target);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001727 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001728 DBG_TRACE_STATE("alloc new be connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001729 srv_conn->owner = s->sess;
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001730
1731 /* connection will be attached to the session if
1732 * http-reuse mode is never or it is not targeted to a
1733 * server */
1734 if (reuse_mode == PR_O_REUSE_NEVR || !srv)
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001735 conn_set_private(srv_conn);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001736
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001737 /* assign bind_addr to srv_conn */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001738 srv_conn->src = bind_addr;
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001739 bind_addr = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001740
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001741 if (!sockaddr_alloc(&srv_conn->dst, 0, 0)) {
1742 conn_free(srv_conn);
1743 return SF_ERR_RESOURCE;
1744 }
Amaury Denoyelleaee4fdb2021-10-20 15:22:20 +02001745
Willy Tarreau85223482022-09-29 20:32:43 +02001746 srv_conn->hash_node->node.key = hash;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001747 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001748 }
1749
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001750 /* if bind_addr is non NULL free it */
1751 sockaddr_free(&bind_addr);
1752
1753 /* srv_conn is still NULL only on allocation failure */
1754 if (!srv_conn)
1755 return SF_ERR_RESOURCE;
1756
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001757 /* copy the target address into the connection */
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001758 *srv_conn->dst = *s->scb->dst;
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001759
1760 /* Copy network namespace from client connection */
1761 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1762
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001763 if (!srv_conn->xprt) {
Willy Tarreau4596fe22022-05-17 19:07:51 +02001764 /* set the correct protocol on the output stream connector */
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001765 if (srv) {
Willy Tarreau14e7f292021-10-27 17:41:07 +02001766 if (conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), srv->xprt)) {
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001767 conn_free(srv_conn);
1768 return SF_ERR_INTERNAL;
1769 }
1770 } else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1771 int ret;
1772
Willy Tarreauff605db2013-12-20 11:09:51 +01001773 /* proxies exclusively run on raw_sock right now */
Willy Tarreau14e7f292021-10-27 17:41:07 +02001774 ret = conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), xprt_get(XPRT_RAW));
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001775 if (ret < 0 || !(srv_conn->ctrl)) {
Olivier Houchardc0caac22020-03-20 14:26:32 +01001776 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001777 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001778 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001779 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001780 else {
1781 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001782 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001783 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001784
Willy Tarreau19c65a92022-05-27 08:49:24 +02001785 if (sc_attach_mux(s->scb, NULL, srv_conn) < 0) {
Christopher Faulet070b91b2022-03-31 19:27:18 +02001786 conn_free(srv_conn);
1787 return SF_ERR_INTERNAL; /* how did we get there ? */
1788 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001789 srv_conn->ctx = s->scb;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001790
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001791#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001792 if (!srv ||
Christopher Fauletb4de4202020-07-30 09:10:36 +02001793 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001794 srv->mux_proto || !IS_HTX_STRM(s)))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001795#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001796 init_mux = 1;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001797
Willy Tarreauff605db2013-12-20 11:09:51 +01001798 /* process the case where the server requires the PROXY protocol to be sent */
1799 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001800
Willy Tarreau7b004922015-08-04 19:34:21 +02001801 if (srv && srv->pp_opts) {
Alexander Liu2a54bb72019-05-22 19:44:48 +08001802 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001803 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001804 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001805
Alexander Liu2a54bb72019-05-22 19:44:48 +08001806 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1807 srv_conn->send_proxy_ofs = 1;
1808 srv_conn->flags |= CO_FL_SOCKS4;
1809 }
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001810
1811#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1812 /* if websocket stream, try to update connection ALPN. */
1813 if (unlikely(s->flags & SF_WEBSOCKET) &&
1814 srv && srv->use_ssl && srv->ssl_ctx.alpn_str) {
1815 char *alpn = "";
1816 int force = 0;
1817
1818 switch (srv->ws) {
1819 case SRV_WS_AUTO:
1820 alpn = "\x08http/1.1";
1821 force = 0;
1822 break;
1823 case SRV_WS_H1:
1824 alpn = "\x08http/1.1";
1825 force = 1;
1826 break;
1827 case SRV_WS_H2:
1828 alpn = "\x02h2";
1829 force = 1;
1830 break;
1831 }
1832
1833 if (!conn_update_alpn(srv_conn, ist(alpn), force))
Christopher Faulet62e75742022-03-31 09:16:34 +02001834 DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001835 }
1836#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001837 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001838 else {
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001839 s->flags |= SF_SRV_REUSED;
1840
Amaury Denoyelled7faa3d2021-03-05 15:27:41 +01001841 /* Currently there seems to be no known cases of xprt ready
1842 * without the mux installed here.
1843 */
1844 BUG_ON(!srv_conn->mux);
1845
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001846 if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY))
1847 s->flags |= SF_SRV_REUSED_ANTICIPATED;
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001848 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001849
William Lallemandb7ff6a32012-03-02 14:35:21 +01001850 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001851 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Christopher Fauletd1391382022-03-30 16:26:39 +02001852 s->flags |= SF_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001853
Willy Tarreau14f8e862012-08-30 22:23:13 +02001854 /* disable lingering */
1855 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreaucb041662022-05-17 19:44:42 +02001856 s->scb->flags |= SC_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001857
Willy Tarreauf1573842018-12-14 11:35:36 +01001858 if (s->flags & SF_SRV_REUSED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001859 _HA_ATOMIC_INC(&s->be->be_counters.reuse);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001860 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001861 _HA_ATOMIC_INC(&srv->counters.reuse);
Willy Tarreauf1573842018-12-14 11:35:36 +01001862 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001863 _HA_ATOMIC_INC(&s->be->be_counters.connect);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001864 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001865 _HA_ATOMIC_INC(&srv->counters.connect);
Willy Tarreauf1573842018-12-14 11:35:36 +01001866 }
1867
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001868 err = do_connect_server(s, srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001869 if (err != SF_ERR_NONE)
1870 return err;
1871
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001872#ifdef USE_OPENSSL
Amaury Denoyelle655dec82021-06-01 17:04:10 +02001873 if (!(s->flags & SF_SRV_REUSED)) {
1874 if (smp_make_safe(sni_smp))
1875 ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area);
1876 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001877#endif /* USE_OPENSSL */
1878
Willy Tarreaua3b17562020-07-31 08:39:31 +02001879 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1880 * if so, add our handshake pseudo-XPRT now.
1881 */
1882 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1883 if (xprt_add_hs(srv_conn) < 0) {
1884 conn_full_close(srv_conn);
1885 return SF_ERR_INTERNAL;
1886 }
1887 }
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001888 conn_xprt_start(srv_conn);
Willy Tarreaua3b17562020-07-31 08:39:31 +02001889
Olivier Houchard5cd62172019-01-04 15:52:26 +01001890 /* We have to defer the mux initialization until after si_connect()
1891 * has been called, as we need the xprt to have been properly
1892 * initialized, or any attempt to recv during the mux init may
1893 * fail, and flag the connection as CO_FL_ERROR.
1894 */
1895 if (init_mux) {
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001896 const struct mux_ops *alt_mux =
1897 likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv);
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001898 if (conn_install_mux_be(srv_conn, s->scb, s->sess, alt_mux) < 0) {
Olivier Houchard74931142019-01-29 19:11:16 +01001899 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001900 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001901 }
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001902 if (IS_HTX_STRM(s)) {
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001903 /* If we're doing http-reuse always, and the connection
1904 * is not private with available streams (an http2
1905 * connection), add it to the available list, so that
1906 * others can use it right away. If the connection is
1907 * private or we're doing http-reuse safe and the mux
1908 * protocol supports multiplexing, add it in the
1909 * session server list.
1910 */
1911 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1912 !(srv_conn->flags & CO_FL_PRIVATE) &&
1913 srv_conn->mux->avail_streams(srv_conn) > 0) {
Willy Tarreau85223482022-09-29 20:32:43 +02001914 eb64_insert(&srv->per_thr[tid].avail_conns, &srv_conn->hash_node->node);
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001915 }
1916 else if (srv_conn->flags & CO_FL_PRIVATE ||
1917 (reuse_mode == PR_O_REUSE_SAFE &&
1918 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1919 /* If it fail now, the same will be done in mux->detach() callback */
1920 session_add_conn(s->sess, srv_conn, srv_conn->target);
1921 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001922 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001923 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001924
Willy Tarreaub1310492021-08-30 09:35:18 +02001925#if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001926
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001927 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001928 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001929 /* Only attempt to use early data if either the client sent
1930 * early data, so that we know it can handle a 425, or if
1931 * we are allwoed to retry requests on early data failure, and
1932 * it's our first try
1933 */
1934 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
Christopher Faulet731c8e62022-03-29 16:08:44 +02001935 ((s->be->retry_type & PR_RE_EARLY_ERROR) && !s->conn_retries)) &&
Willy Tarreau40a9c322022-05-18 15:55:18 +02001936 !channel_is_empty(sc_oc(s->scb)) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001937 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001938 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001939#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001940
Willy Tarreau14f8e862012-08-30 22:23:13 +02001941 /* set connect timeout */
Christopher Fauletae024ce2022-03-29 19:02:31 +02001942 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001943
Willy Tarreau827aee92011-03-10 16:55:02 +01001944 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001945 int count;
1946
Willy Tarreaue7dff022015-04-03 01:14:29 +02001947 s->flags |= SF_CURR_SESS;
Willy Tarreau1db42732021-04-06 11:44:07 +02001948 count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001949 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau59b0fec2021-02-17 16:01:37 +01001950 if (s->be->lbprm.server_take_conn)
Willy Tarreau5941ef02021-06-18 18:29:25 +02001951 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001952 }
1953
Willy Tarreau4596fe22022-05-17 19:07:51 +02001954 /* Now handle synchronously connected sockets. We know the stream connector
Willy Tarreau026e8fb2022-05-17 19:47:17 +02001955 * is at least in state SC_ST_CON. These ones typically are UNIX
Christopher Fauletaf642df2022-03-30 10:06:11 +02001956 * sockets, socket pairs, andoccasionally TCP connections on the
Willy Tarreauada4c582020-03-04 16:42:03 +01001957 * loopback on a heavily loaded system.
1958 */
Christopher Faulet88d05a02023-04-14 12:03:50 +02001959 if (srv_conn->flags & CO_FL_ERROR)
Christopher Faulet38656f42023-04-14 11:35:07 +02001960 s->scb->flags |= SC_FL_ERROR;
Willy Tarreauada4c582020-03-04 16:42:03 +01001961
1962 /* If we had early data, and the handshake ended, then
1963 * we can remove the flag, and attempt to wake the task up,
1964 * in the event there's an analyser waiting for the end of
1965 * the handshake.
1966 */
1967 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001968 sc_ep_clr(s->scb, SE_FL_WAIT_FOR_HS);
Willy Tarreauada4c582020-03-04 16:42:03 +01001969
Willy Tarreau74568cf2022-05-27 09:03:30 +02001970 if (!sc_state_in(s->scb->state, SC_SB_EST|SC_SB_DIS|SC_SB_CLO) &&
Willy Tarreauada4c582020-03-04 16:42:03 +01001971 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
Christopher Fauletae024ce2022-03-29 19:02:31 +02001972 s->conn_exp = TICK_ETERNITY;
Christopher Fauletb96f2aa2022-12-12 08:11:36 +01001973 sc_oc(s->scb)->flags |= CF_WRITE_EVENT;
Willy Tarreau026e8fb2022-05-17 19:47:17 +02001974 if (s->scb->state == SC_ST_CON)
1975 s->scb->state = SC_ST_RDY;
Willy Tarreauada4c582020-03-04 16:42:03 +01001976 }
1977
1978 /* Report EOI on the channel if it was reached from the mux point of
1979 * view.
1980 *
1981 * Note: This test is only required because si_cs_process is also the SI
1982 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1983 * care of it.
1984 */
Christopher Faulet904763f2023-03-22 14:53:11 +01001985 if (sc_ep_test(s->scb, SE_FL_EOI) && !(s->scb->flags & SC_FL_EOI)) {
1986 s->scb->flags |= SC_FL_EOI;
1987 sc_ic(s->scb)->flags |= CF_READ_EVENT;
1988 }
Willy Tarreauada4c582020-03-04 16:42:03 +01001989
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001990 /* catch all sync connect while the mux is not already installed */
1991 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1992 if (conn_create_mux(srv_conn) < 0) {
1993 conn_full_close(srv_conn);
1994 return SF_ERR_INTERNAL;
1995 }
1996 }
1997
Willy Tarreaue7dff022015-04-03 01:14:29 +02001998 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001999}
2000
2001
Willy Tarreaubaaee002006-06-26 02:48:02 +02002002/* This function performs the "redispatch" part of a connection attempt. It
2003 * will assign a server if required, queue the connection if required, and
2004 * handle errors that might arise at this level. It can change the server
2005 * state. It will return 1 if it encounters an error, switches the server
2006 * state, or has to queue a connection. Otherwise, it will return 0 indicating
2007 * that the connection is ready to use.
2008 */
2009
Willy Tarreau87b09662015-04-03 00:22:06 +02002010int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002011{
Willy Tarreau827aee92011-03-10 16:55:02 +01002012 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002013 int conn_err;
2014
2015 /* We know that we don't have any connection pending, so we will
2016 * try to get a new one, and wait in this state if it's queued
2017 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02002018 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02002019 conn_err = assign_server_and_queue(s);
2020 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01002021
Willy Tarreaubaaee002006-06-26 02:48:02 +02002022 switch (conn_err) {
2023 case SRV_STATUS_OK:
2024 break;
2025
Willy Tarreau7c669d72008-06-20 15:04:11 +02002026 case SRV_STATUS_FULL:
2027 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
2028 * and we can redispatch to another server, or it is not and we return
2029 * 503. This only makes sense in DIRECT mode however, because normal LB
2030 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02002031 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01002032 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02002033 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002034 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02002035 (s->be->options & PR_O_REDISP)) {
Willy Tarreau03bd3952022-05-02 16:36:47 +02002036 s->flags &= ~(SF_DIRECT | SF_ASSIGNED);
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002037 sockaddr_free(&s->scb->dst);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002038 goto redispatch;
2039 }
2040
Christopher Faulet50264b42022-03-30 19:39:30 +02002041 if (!s->conn_err_type) {
2042 s->conn_err_type = STRM_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002043 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02002044
Willy Tarreau4781b152021-04-06 13:53:36 +02002045 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2046 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002047 return 1;
2048
Willy Tarreaubaaee002006-06-26 02:48:02 +02002049 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01002050 /* note: it is guaranteed that srv == NULL here */
Christopher Faulet50264b42022-03-30 19:39:30 +02002051 if (!s->conn_err_type) {
2052 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002053 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01002054
Willy Tarreau4781b152021-04-06 13:53:36 +02002055 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002056 return 1;
2057
2058 case SRV_STATUS_QUEUED:
Christopher Fauletae024ce2022-03-29 19:02:31 +02002059 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.queue);
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002060 s->scb->state = SC_ST_QUE;
Willy Tarreau3ac4f5d2024-07-22 08:29:28 +02002061
2062 /* handle the unlikely event where we added to the server's
2063 * queue just after checking the server was full and before
2064 * it released its last entry (with extremely low maxconn).
2065 * Not needed for backend queues, already handled in
2066 * assign_server_and_queue().
2067 */
2068 if (unlikely(srv && may_dequeue_tasks(srv, s->be)))
2069 process_srv_queue(srv);
2070
Willy Tarreaubaaee002006-06-26 02:48:02 +02002071 return 1;
2072
Willy Tarreaubaaee002006-06-26 02:48:02 +02002073 case SRV_STATUS_INTERNAL:
2074 default:
Christopher Faulet50264b42022-03-30 19:39:30 +02002075 if (!s->conn_err_type) {
2076 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002077 }
2078
Willy Tarreau827aee92011-03-10 16:55:02 +01002079 if (srv)
2080 srv_inc_sess_ctr(srv);
2081 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002082 srv_set_sess_last(srv);
2083 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002084 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2085 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002086
Willy Tarreau87b09662015-04-03 00:22:06 +02002087 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02002088 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002089 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002090 return 1;
2091 }
2092 /* if we get here, it's because we got SRV_STATUS_OK, which also
2093 * means that the connection has not been queued.
2094 */
2095 return 0;
2096}
2097
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002098/* Check if the connection request is in such a state that it can be aborted. */
2099static int back_may_abort_req(struct channel *req, struct stream *s)
2100{
Christopher Faulet725170e2023-04-14 12:05:25 +02002101 return ((s->scf->flags & SC_FL_ERROR) ||
Christopher Faulet64350bb2023-04-13 16:37:37 +02002102 ((s->scb->flags & (SC_FL_SHUT_WANTED|SC_FL_SHUT_DONE)) && /* empty and client aborted */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002103 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
2104}
2105
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002106/* Update back stream connector status for input states SC_ST_ASS, SC_ST_QUE,
2107 * SC_ST_TAR. Other input states are simply ignored.
2108 * Possible output states are SC_ST_CLO, SC_ST_TAR, SC_ST_ASS, SC_ST_REQ, SC_ST_CON
2109 * and SC_ST_EST. Flags must have previously been updated for timeouts and other
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002110 * conditions.
2111 */
2112void back_try_conn_req(struct stream *s)
2113{
2114 struct server *srv = objt_server(s->target);
Willy Tarreaub49672d2022-05-27 10:13:37 +02002115 struct stconn *sc = s->scb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002116 struct channel *req = &s->req;
2117
Christopher Faulet62e75742022-03-31 09:16:34 +02002118 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002119
Willy Tarreaub49672d2022-05-27 10:13:37 +02002120 if (sc->state == SC_ST_ASS) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002121 /* Server assigned to connection request, we have to try to connect now */
2122 int conn_err;
2123
2124 /* Before we try to initiate the connection, see if the
2125 * request may be aborted instead.
2126 */
2127 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002128 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002129 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002130 goto abort_connection;
2131 }
2132
2133 conn_err = connect_server(s);
2134 srv = objt_server(s->target);
2135
2136 if (conn_err == SF_ERR_NONE) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002137 /* state = SC_ST_CON or SC_ST_EST now */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002138 if (srv)
2139 srv_inc_sess_ctr(srv);
2140 if (srv)
2141 srv_set_sess_last(srv);
Christopher Faulet62e75742022-03-31 09:16:34 +02002142 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002143 goto end;
2144 }
2145
2146 /* We have received a synchronous error. We might have to
2147 * abort, retry immediately or redispatch.
2148 */
2149 if (conn_err == SF_ERR_INTERNAL) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002150 if (!s->conn_err_type) {
2151 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002152 }
2153
2154 if (srv)
2155 srv_inc_sess_ctr(srv);
2156 if (srv)
2157 srv_set_sess_last(srv);
2158 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002159 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2160 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002161
2162 /* release other streams waiting for this server */
2163 sess_change_server(s, NULL);
2164 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002165 process_srv_queue(srv);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002166
2167 /* Failed and not retryable. */
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002168 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002169 sc_shutdown(sc);
Christopher Faulet38656f42023-04-14 11:35:07 +02002170 sc->flags |= SC_FL_ERROR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002171
Willy Tarreau69530f52023-04-28 09:16:15 +02002172 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002173
2174 /* we may need to know the position in the queue for logging */
2175 pendconn_cond_unlink(s->pend_pos);
2176
2177 /* no stream was ever accounted for this server */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002178 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002179 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002180 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002181 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002182 goto end;
2183 }
2184
2185 /* We are facing a retryable error, but we don't want to run a
2186 * turn-around now, as the problem is likely a source port
2187 * allocation problem, so we want to retry now.
2188 */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002189 sc->state = SC_ST_CER;
Christopher Faulet38656f42023-04-14 11:35:07 +02002190 sc->flags &= ~SC_FL_ERROR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002191 back_handle_st_cer(s);
2192
Christopher Faulet62e75742022-03-31 09:16:34 +02002193 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreaub49672d2022-05-27 10:13:37 +02002194 /* now sc->state is one of SC_ST_CLO, SC_ST_TAR, SC_ST_ASS, SC_ST_REQ */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002195 }
Willy Tarreaub49672d2022-05-27 10:13:37 +02002196 else if (sc->state == SC_ST_QUE) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002197 /* connection request was queued, check for any update */
2198 if (!pendconn_dequeue(s)) {
2199 /* The connection is not in the queue anymore. Either
2200 * we have a server connection slot available and we
2201 * go directly to the assigned state, or we need to
2202 * load-balance first and go to the INI state.
2203 */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002204 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002205 if (unlikely(!(s->flags & SF_ASSIGNED)))
Willy Tarreaub49672d2022-05-27 10:13:37 +02002206 sc->state = SC_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002207 else {
Willy Tarreau69530f52023-04-28 09:16:15 +02002208 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Willy Tarreaub49672d2022-05-27 10:13:37 +02002209 sc->state = SC_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002210 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002211 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002212 goto end;
2213 }
2214
2215 /* Connection request still in queue... */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002216 if (s->flags & SF_CONN_EXP) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002217 /* ... and timeout expired */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002218 s->conn_exp = TICK_ETERNITY;
2219 s->flags &= ~SF_CONN_EXP;
Willy Tarreau69530f52023-04-28 09:16:15 +02002220 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002221
2222 /* we may need to know the position in the queue for logging */
2223 pendconn_cond_unlink(s->pend_pos);
2224
2225 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002226 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2227 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002228 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002229 sc_shutdown(sc);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002230 req->flags |= CF_WRITE_TIMEOUT;
Christopher Faulet50264b42022-03-30 19:39:30 +02002231 if (!s->conn_err_type)
2232 s->conn_err_type = STRM_ET_QUEUE_TO;
Willy Tarreaub49672d2022-05-27 10:13:37 +02002233 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002234 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002235 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002236 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002237 goto end;
2238 }
2239
2240 /* Connection remains in queue, check if we have to abort it */
2241 if (back_may_abort_req(req, s)) {
Willy Tarreau69530f52023-04-28 09:16:15 +02002242 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002243
2244 /* we may need to know the position in the queue for logging */
2245 pendconn_cond_unlink(s->pend_pos);
2246
Christopher Faulet50264b42022-03-30 19:39:30 +02002247 s->conn_err_type |= STRM_ET_QUEUE_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002248 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002249 goto abort_connection;
2250 }
2251
2252 /* Nothing changed */
2253 }
Willy Tarreaub49672d2022-05-27 10:13:37 +02002254 else if (sc->state == SC_ST_TAR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002255 /* Connection request might be aborted */
2256 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002257 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002258 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002259 goto abort_connection;
2260 }
2261
Christopher Fauletae024ce2022-03-29 19:02:31 +02002262 if (!(s->flags & SF_CONN_EXP))
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002263 return; /* still in turn-around */
2264
Christopher Fauletae024ce2022-03-29 19:02:31 +02002265 s->flags &= ~SF_CONN_EXP;
2266 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002267
2268 /* we keep trying on the same server as long as the stream is
2269 * marked "assigned".
2270 * FIXME: Should we force a redispatch attempt when the server is down ?
2271 */
2272 if (s->flags & SF_ASSIGNED)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002273 sc->state = SC_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002274 else
Willy Tarreaub49672d2022-05-27 10:13:37 +02002275 sc->state = SC_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002276
Christopher Faulet62e75742022-03-31 09:16:34 +02002277 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002278 }
2279
2280 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002281 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002282 return;
2283
2284abort_connection:
2285 /* give up */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002286 s->conn_exp = TICK_ETERNITY;
2287 s->flags &= ~SF_CONN_EXP;
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002288 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002289 sc_shutdown(sc);
Willy Tarreaub49672d2022-05-27 10:13:37 +02002290 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002291 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002292 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002293 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002294 return;
2295}
2296
Willy Tarreau4596fe22022-05-17 19:07:51 +02002297/* This function initiates a server connection request on a stream connector
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002298 * already in SC_ST_REQ state. Upon success, the state goes to SC_ST_ASS for
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002299 * a real connection to a server, indicating that a server has been assigned,
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002300 * or SC_ST_RDY for a successful connection to an applet. It may also return
2301 * SC_ST_QUE, or SC_ST_CLO upon error.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002302 */
2303void back_handle_st_req(struct stream *s)
2304{
Willy Tarreaub49672d2022-05-27 10:13:37 +02002305 struct stconn *sc = s->scb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002306
Willy Tarreaub49672d2022-05-27 10:13:37 +02002307 if (sc->state != SC_ST_REQ)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002308 return;
2309
Christopher Faulet62e75742022-03-31 09:16:34 +02002310 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002311
2312 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002313 struct appctx *appctx;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002314
Willy Tarreaue68bc612022-05-27 11:23:05 +02002315 /* The target is an applet but the SC is in SC_ST_REQ. Thus it
2316 * means no appctx are attached to the SC. Otherwise, it will be
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002317 * in SC_ST_RDY state. So, try to create the appctx now.
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002318 */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002319 BUG_ON(sc_appctx(sc));
2320 appctx = sc_applet_create(sc, objt_applet(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002321 if (!appctx) {
2322 /* No more memory, let's immediately abort. Force the
2323 * error code to ignore the ERR_LOCAL which is not a
2324 * real error.
2325 */
2326 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
2327
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002328 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002329 sc_shutdown(sc);
Christopher Faulet38656f42023-04-14 11:35:07 +02002330 sc->flags |= SC_FL_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002331 s->conn_err_type = STRM_ET_CONN_RES;
Willy Tarreaub49672d2022-05-27 10:13:37 +02002332 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002333 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002334 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002335 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002336 goto end;
2337 }
2338
Christopher Faulet62e75742022-03-31 09:16:34 +02002339 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002340 goto end;
2341 }
2342
2343 /* Try to assign a server */
2344 if (srv_redispatch_connect(s) != 0) {
2345 /* We did not get a server. Either we queued the
2346 * connection request, or we encountered an error.
2347 */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002348 if (sc->state == SC_ST_QUE) {
Christopher Faulet62e75742022-03-31 09:16:34 +02002349 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002350 goto end;
2351 }
2352
2353 /* we did not get any server, let's check the cause */
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002354 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002355 sc_shutdown(sc);
Christopher Faulet38656f42023-04-14 11:35:07 +02002356 sc->flags |= SC_FL_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002357 if (!s->conn_err_type)
2358 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreaub49672d2022-05-27 10:13:37 +02002359 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002360 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002361 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002362 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002363 goto end;
2364 }
2365
2366 /* The server is assigned */
Willy Tarreau69530f52023-04-28 09:16:15 +02002367 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Willy Tarreaub49672d2022-05-27 10:13:37 +02002368 sc->state = SC_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002369 be_set_sess_last(s->be);
Christopher Faulet62e75742022-03-31 09:16:34 +02002370 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002371
2372 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002373 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002374}
2375
Willy Tarreaub49672d2022-05-27 10:13:37 +02002376/* This function is called with (sc->state == SC_ST_CON) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002377 * connection was attempted and that the file descriptor is already allocated.
2378 * We must check for timeout, error and abort. Possible output states are
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002379 * SC_ST_CER (error), SC_ST_DIS (abort), and SC_ST_CON (no change). This only
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002380 * works with connection-based streams. We know that there were no I/O event
2381 * when reaching this function. Timeouts and errors are *not* cleared.
2382 */
2383void back_handle_st_con(struct stream *s)
2384{
Willy Tarreaub49672d2022-05-27 10:13:37 +02002385 struct stconn *sc = s->scb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002386 struct channel *req = &s->req;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002387
Christopher Faulet62e75742022-03-31 09:16:34 +02002388 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002389
2390 /* the client might want to abort */
Christopher Faulet64350bb2023-04-13 16:37:37 +02002391 if ((s->scf->flags & SC_FL_SHUT_DONE) ||
2392 ((s->scb->flags & SC_FL_SHUT_WANTED) &&
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002393 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
Willy Tarreaub49672d2022-05-27 10:13:37 +02002394 sc->flags |= SC_FL_NOLINGER;
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002395 sc_shutdown(sc);
Christopher Faulet50264b42022-03-30 19:39:30 +02002396 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002397 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002398 s->srv_error(s, sc);
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002399 /* Note: state = SC_ST_DIS now */
Christopher Faulet62e75742022-03-31 09:16:34 +02002400 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau062df2c2020-01-10 06:17:03 +01002401 goto end;
2402 }
2403
Willy Tarreau062df2c2020-01-10 06:17:03 +01002404 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002405 /* retryable error ? */
Christopher Faulet725170e2023-04-14 12:05:25 +02002406 if ((s->flags & SF_CONN_EXP) || (sc->flags & SC_FL_ERROR)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002407 if (!s->conn_err_type) {
Christopher Faulet725170e2023-04-14 12:05:25 +02002408 if ((sc->flags & SC_FL_ERROR))
Christopher Faulet50264b42022-03-30 19:39:30 +02002409 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002410 else
Christopher Faulet50264b42022-03-30 19:39:30 +02002411 s->conn_err_type = STRM_ET_CONN_TO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002412 }
2413
Willy Tarreaub49672d2022-05-27 10:13:37 +02002414 sc->state = SC_ST_CER;
Christopher Faulet62e75742022-03-31 09:16:34 +02002415 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002416 }
2417
Willy Tarreau062df2c2020-01-10 06:17:03 +01002418 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002419 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002420}
2421
Willy Tarreaub49672d2022-05-27 10:13:37 +02002422/* This function is called with (sc->state == SC_ST_CER) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002423 * previous connection attempt has failed and that the file descriptor
2424 * has already been released. Possible causes include asynchronous error
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002425 * notification and time out. Possible output states are SC_ST_CLO when
2426 * retries are exhausted, SC_ST_TAR when a delay is wanted before a new
2427 * connection attempt, SC_ST_ASS when it's wise to retry on the same server,
2428 * and SC_ST_REQ when an immediate redispatch is wanted. The buffers are
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002429 * marked as in error state. Timeouts and errors are cleared before retrying.
2430 */
2431void back_handle_st_cer(struct stream *s)
2432{
Willy Tarreaub49672d2022-05-27 10:13:37 +02002433 struct stconn *sc = s->scb;
Christopher Faulet725170e2023-04-14 12:05:25 +02002434 int must_tar = !!(sc->flags & SC_FL_ERROR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002435
Christopher Faulet62e75742022-03-31 09:16:34 +02002436 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002437
Christopher Fauletae024ce2022-03-29 19:02:31 +02002438 s->conn_exp = TICK_ETERNITY;
2439 s->flags &= ~SF_CONN_EXP;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002440
2441 /* we probably have to release last stream from the server */
2442 if (objt_server(s->target)) {
Willy Tarreaub49672d2022-05-27 10:13:37 +02002443 struct connection *conn = sc_conn(sc);
Christopher Faulet0256da12021-12-15 09:50:17 +01002444
Willy Tarreau88bc8002021-12-06 07:01:02 +00002445 health_adjust(__objt_server(s->target), HANA_STATUS_L4_ERR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002446
2447 if (s->flags & SF_CURR_SESS) {
2448 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002449 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002450 }
2451
Christopher Faulet725170e2023-04-14 12:05:25 +02002452 if ((sc->flags & SC_FL_ERROR) &&
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002453 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2454 /* We tried to connect to a server which is configured
2455 * with "verify required" and which doesn't have the
2456 * "verifyhost" directive. The server presented a wrong
2457 * certificate (a certificate for an unexpected name),
2458 * which implies that we have used SNI in the handshake,
2459 * and that the server doesn't have the associated cert
2460 * and presented a default one.
2461 *
2462 * This is a serious enough issue not to retry. It's
2463 * especially important because this wrong name might
2464 * either be the result of a configuration error, and
2465 * retrying will only hammer the server, or is caused
2466 * by the use of a wrong SNI value, most likely
2467 * provided by the client and we don't want to let the
2468 * client provoke retries.
2469 */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002470 s->conn_retries = s->be->conn_retries;
Christopher Faulet62e75742022-03-31 09:16:34 +02002471 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002472 }
2473 }
2474
2475 /* ensure that we have enough retries left */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002476 if (s->conn_retries >= s->be->conn_retries || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002477 if (!s->conn_err_type) {
2478 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002479 }
2480
2481 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002482 _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns);
2483 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002484 sess_change_server(s, NULL);
2485 if (may_dequeue_tasks(objt_server(s->target), s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002486 process_srv_queue(objt_server(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002487
Christopher Fauletda098e62022-03-31 17:44:45 +02002488 /* shutw is enough to stop a connecting socket */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002489 sc_shutdown(sc);
Christopher Faulet38656f42023-04-14 11:35:07 +02002490 sc->flags |= SC_FL_ERROR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002491
Willy Tarreaub49672d2022-05-27 10:13:37 +02002492 sc->state = SC_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002493 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002494 s->srv_error(s, sc);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002495
Christopher Faulet62e75742022-03-31 09:16:34 +02002496 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002497 goto end;
2498 }
2499
Christopher Fauletf822dec2021-06-01 14:06:05 +02002500 /* At this stage, we will trigger a connection retry (with or without
Christopher Faulete00ad352021-12-16 14:44:31 +01002501 * redispatch). Thus we must reset the SI endpoint on the server side
Christopher Fauletf822dec2021-06-01 14:06:05 +02002502 * an close the attached connection. It is especially important to do it
2503 * now if the retry is not immediately performed, to be sure to release
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002504 * resources as soon as possible and to not catch errors from the lower
Christopher Fauletf822dec2021-06-01 14:06:05 +02002505 * layers in an unexpected state (i.e < ST_CONN).
2506 *
Willy Tarreau4596fe22022-05-17 19:07:51 +02002507 * Note: the stream connector will be switched to ST_REQ, ST_ASS or
Christopher Faulet88d05a02023-04-14 12:03:50 +02002508 * ST_TAR and SC_FL_ERROR and SF_CONN_EXP flags will be unset.
Christopher Fauletf822dec2021-06-01 14:06:05 +02002509 */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002510 if (sc_reset_endp(sc) < 0) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002511 if (!s->conn_err_type)
2512 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002513
2514 if (objt_server(s->target))
2515 _HA_ATOMIC_INC(&objt_server(s->target)->counters.internal_errors);
2516 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
2517 sess_change_server(s, NULL);
2518 if (may_dequeue_tasks(objt_server(s->target), s->be))
2519 process_srv_queue(objt_server(s->target));
2520
Christopher Fauletda098e62022-03-31 17:44:45 +02002521 /* shutw is enough to stop a connecting socket */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002522 sc_shutdown(sc);
Christopher Faulet38656f42023-04-14 11:35:07 +02002523 sc->flags |= SC_FL_ERROR;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002524
Willy Tarreaub49672d2022-05-27 10:13:37 +02002525 sc->state = SC_ST_CLO;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002526 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002527 s->srv_error(s, sc);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002528
Christopher Faulet62e75742022-03-31 09:16:34 +02002529 DBG_TRACE_STATE("error resetting endpoint", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002530 goto end;
2531 }
Christopher Fauletf822dec2021-06-01 14:06:05 +02002532
Christopher Fauletbc6b2382022-08-03 10:47:48 +02002533 s->conn_retries++;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002534 stream_choose_redispatch(s);
2535
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002536 if (must_tar) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002537 /* The error was an asynchronous connection error, and we will
2538 * likely have to retry connecting to the same server, most
2539 * likely leading to the same result. To avoid this, we wait
2540 * MIN(one second, connect timeout) before retrying. We don't
2541 * do it when the failure happened on a reused connection
2542 * though.
2543 */
2544
2545 int delay = 1000;
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002546 const int reused = (s->flags & SF_SRV_REUSED) &&
2547 !(s->flags & SF_SRV_REUSED_ANTICIPATED);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002548
2549 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2550 delay = s->be->timeout.connect;
2551
Christopher Faulet50264b42022-03-30 19:39:30 +02002552 if (!s->conn_err_type)
2553 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002554
2555 /* only wait when we're retrying on the same server */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002556 if ((sc->state == SC_ST_ASS ||
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002557 (s->be->srv_act <= 1)) && !reused) {
Willy Tarreaub49672d2022-05-27 10:13:37 +02002558 sc->state = SC_ST_TAR;
Christopher Fauletae024ce2022-03-29 19:02:31 +02002559 s->conn_exp = tick_add(now_ms, MS_TO_TICKS(delay));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002560 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002561 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002562 }
2563
2564 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002565 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002566}
2567
Willy Tarreaub49672d2022-05-27 10:13:37 +02002568/* This function is called with (sc->state == SC_ST_RDY) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002569 * connection was attempted, that the file descriptor is already allocated,
2570 * and that it has succeeded. We must still check for errors and aborts.
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002571 * Possible output states are SC_ST_EST (established), SC_ST_CER (error),
2572 * and SC_ST_DIS (abort). This only works with connection-based streams.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002573 * Timeouts and errors are *not* cleared.
2574 */
2575void back_handle_st_rdy(struct stream *s)
2576{
Willy Tarreaub49672d2022-05-27 10:13:37 +02002577 struct stconn *sc = s->scb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002578 struct channel *req = &s->req;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002579
Christopher Faulet62e75742022-03-31 09:16:34 +02002580 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002581
2582 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
Willy Tarreaue68bc612022-05-27 11:23:05 +02002583 /* Here the appctx must exists because the SC was set to
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002584 * SC_ST_RDY state when the appctx was created.
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002585 */
Willy Tarreau8e7c6e62022-05-18 17:58:02 +02002586 BUG_ON(!sc_appctx(s->scb));
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002587
Willy Tarreauad5a5f62023-04-27 09:46:02 +02002588 if (!s->logs.request_ts)
Willy Tarreau69530f52023-04-28 09:16:15 +02002589 s->logs.request_ts = now_ns;
2590 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002591 be_set_sess_last(s->be);
2592 }
2593
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002594 /* We know the connection at least succeeded, though it could have
2595 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002596 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002597 * We need to take care of various situations here :
2598 * - everything might be OK. We have to switch to established.
2599 * - an I/O error might have been reported after a successful transfer,
2600 * which is not retryable and needs to be logged correctly, and needs
2601 * established as well
Willy Tarreau026e8fb2022-05-17 19:47:17 +02002602 * - SC_ST_CON implies !CF_WROTE_DATA but not conversely as we could
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002603 * have validated a connection with incoming data (e.g. TCP with a
2604 * banner protocol), or just a successful connect() probe.
2605 * - the client might have requested a connection abort, this needs to
2606 * be checked before we decide to retry anything.
2607 */
2608
2609 /* it's still possible to handle client aborts or connection retries
2610 * before any data were sent.
2611 */
2612 if (!(req->flags & CF_WROTE_DATA)) {
2613 /* client abort ? */
Christopher Faulet64350bb2023-04-13 16:37:37 +02002614 if ((s->scf->flags & SC_FL_SHUT_DONE) ||
2615 ((s->scb->flags & SC_FL_SHUT_WANTED) &&
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002616 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2617 /* give up */
Willy Tarreaub49672d2022-05-27 10:13:37 +02002618 sc->flags |= SC_FL_NOLINGER;
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002619 sc_shutdown(sc);
Christopher Faulet50264b42022-03-30 19:39:30 +02002620 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002621 if (s->srv_error)
Willy Tarreaub49672d2022-05-27 10:13:37 +02002622 s->srv_error(s, sc);
Christopher Faulet62e75742022-03-31 09:16:34 +02002623 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002624 goto end;
2625 }
2626
2627 /* retryable error ? */
Christopher Faulet725170e2023-04-14 12:05:25 +02002628 if (sc->flags & SC_FL_ERROR) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002629 if (!s->conn_err_type)
2630 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreaub49672d2022-05-27 10:13:37 +02002631 sc->state = SC_ST_CER;
Christopher Faulet62e75742022-03-31 09:16:34 +02002632 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002633 goto end;
2634 }
2635 }
2636
2637 /* data were sent and/or we had no error, back_establish() will
2638 * now take over.
2639 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002640 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Faulet50264b42022-03-30 19:39:30 +02002641 s->conn_err_type = STRM_ET_NONE;
Willy Tarreaub49672d2022-05-27 10:13:37 +02002642 sc->state = SC_ST_EST;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002643
2644 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002645 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002646}
2647
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002648/* sends a log message when a backend goes down, and also sets last
2649 * change date.
2650 */
2651void set_backend_down(struct proxy *be)
2652{
Willy Tarreau69530f52023-04-28 09:16:15 +02002653 be->last_change = ns_to_sec(now_ns);
Willy Tarreau4781b152021-04-06 13:53:36 +02002654 _HA_ATOMIC_INC(&be->down_trans);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002655
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002656 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002657 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002658 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2659 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002660}
2661
Willy Tarreau87b09662015-04-03 00:22:06 +02002662/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002663 * tries to extract an RDP cookie from the request buffer, and look for the
2664 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002665 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002666 * list. Nothing is performed if a server was already assigned.
2667 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002668int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002669{
2670 struct proxy *px = s->be;
2671 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002672 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002673 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002674 uint16_t port;
2675 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002676 char *p;
2677
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002678 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002679
Willy Tarreaue7dff022015-04-03 01:14:29 +02002680 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002681 goto no_cookie;
2682
Willy Tarreau37406352012-04-23 16:16:37 +02002683 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002684
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002685 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002686 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002687 goto no_cookie;
2688
Willy Tarreau04276f32017-01-06 17:41:29 +01002689 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2690 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2691 * server's IP address in network order, and "port" is the integer corresponding to the
2692 * server's port in network order. Comments please Emeric.
2693 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002694 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002695 if (*p != '.')
2696 goto no_cookie;
2697 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002698
2699 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002700 if (*p != '.')
2701 goto no_cookie;
2702
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002703 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002704 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002705 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002706 port == srv->svc_port &&
2707 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002708 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002709 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002710 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002711 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002712 break;
2713 }
2714 }
2715 srv = srv->next;
2716 }
2717
2718no_cookie:
2719 req->analysers &= ~an_bit;
2720 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002721 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002722 return 1;
2723}
2724
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002725int be_downtime(struct proxy *px) {
Willy Tarreau69530f52023-04-28 09:16:15 +02002726 if (px->lbprm.tot_weight && px->last_change < ns_to_sec(now_ns)) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002727 return px->down_time;
2728
Willy Tarreau69530f52023-04-28 09:16:15 +02002729 return ns_to_sec(now_ns) - px->last_change + px->down_time;
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002730}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002731
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002732/*
2733 * This function returns a string containing the balancing
2734 * mode of the proxy in a format suitable for stats.
2735 */
2736
2737const char *backend_lb_algo_str(int algo) {
2738
2739 if (algo == BE_LB_ALGO_RR)
2740 return "roundrobin";
2741 else if (algo == BE_LB_ALGO_SRR)
2742 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002743 else if (algo == BE_LB_ALGO_FAS)
2744 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002745 else if (algo == BE_LB_ALGO_LC)
2746 return "leastconn";
2747 else if (algo == BE_LB_ALGO_SH)
2748 return "source";
2749 else if (algo == BE_LB_ALGO_UH)
2750 return "uri";
2751 else if (algo == BE_LB_ALGO_PH)
2752 return "url_param";
2753 else if (algo == BE_LB_ALGO_HH)
2754 return "hdr";
2755 else if (algo == BE_LB_ALGO_RCH)
2756 return "rdp-cookie";
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02002757 else if (algo == BE_LB_ALGO_SMP)
2758 return "hash";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002759 else if (algo == BE_LB_ALGO_NONE)
2760 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002761 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002762 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002763}
2764
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002765/* This function parses a "balance" statement in a backend section describing
2766 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002767 * returns -1, it will write an error message into the <err> buffer which will
2768 * automatically be allocated and must be passed as NULL. The trailing '\n'
2769 * will not be written. The function must be called with <args> pointing to the
2770 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002771 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002772int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002773{
2774 if (!*(args[0])) {
2775 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002776 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2777 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002778 return 0;
2779 }
2780
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002781 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002782 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2783 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002784 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002785 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002786 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2787 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2788 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002789 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002790 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2791 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2792 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002793 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002794 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2795 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2796 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002797 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002798 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2799 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002800 curproxy->lbprm.arg_opt1 = 2;
2801
2802 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2803 const char *beg;
2804 char *end;
2805
2806 beg = args[0] + 7;
2807 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2808
2809 if (*end != ')') {
2810 if (!*end)
2811 memprintf(err, "random : missing closing parenthesis.");
2812 else
2813 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2814 return -1;
2815 }
2816
2817 if (curproxy->lbprm.arg_opt1 < 1) {
2818 memprintf(err, "random : number of draws must be at least 1.");
2819 return -1;
2820 }
2821 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002822 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002823 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002824 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2825 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002826 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002827 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002828 int arg = 1;
2829
Willy Tarreau31682232007-11-29 15:38:04 +01002830 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2831 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002832 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002833 curproxy->lbprm.arg_opt2 = 0; // "len"
2834 curproxy->lbprm.arg_opt3 = 0; // "depth"
vend_natalie.chenb749f592019-12-09 14:43:49 +08002835 curproxy->lbprm.arg_opt4 = 0; // "gerrit"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002836
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002837 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002838 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002839 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002840 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002841 return -1;
2842 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002843 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002844 arg += 2;
2845 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002846 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002847 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002848 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002849 return -1;
2850 }
2851 /* hint: we store the position of the ending '/' (depth+1) so
2852 * that we avoid a comparison while computing the hash.
2853 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002854 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002855 arg += 2;
2856 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002857 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002858 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002859 arg += 1;
2860 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002861 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002862 curproxy->lbprm.arg_opt1 |= 2;
2863 arg += 1;
2864 }
vend_natalie.chenb749f592019-12-09 14:43:49 +08002865 else if (!strcmp(args[arg], "gerrit")) {
natalie003480d2024-11-06 18:08:36 +08002866 curproxy->lbprm.arg_opt1 |= 2;
vend_natalie.chenb749f592019-12-09 14:43:49 +08002867 if (!*args[arg+1] || (atoi(args[arg+1]) < 0)) {
2868 memprintf(err, "%s : '%s' expects a non negative integer (got '%s').", args[0], args[arg], args[arg+1]);
2869 return -1;
2870 }
2871 curproxy->lbprm.arg_opt4 = 1;
2872 // 0 means whole uri
2873 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]);
2874 arg += 2;
2875 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002876 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002877 memprintf(err, "%s only accepts parameters 'len', 'depth', 'path-only', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002878 return -1;
2879 }
2880 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002881 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002882 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002883 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002884 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002885 return -1;
2886 }
Willy Tarreau31682232007-11-29 15:38:04 +01002887 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2888 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002889
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002890 free(curproxy->lbprm.arg_str);
2891 curproxy->lbprm.arg_str = strdup(args[1]);
2892 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002893 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002894 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002895 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002896 return -1;
2897 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002898 }
Benoitaffb4812009-03-25 13:02:10 +01002899 }
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02002900 else if (strcmp(args[0], "hash") == 0) {
2901 if (!*args[1]) {
2902 memprintf(err, "%s requires a sample expression.", args[0]);
2903 return -1;
2904 }
2905 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2906 curproxy->lbprm.algo |= BE_LB_ALGO_SMP;
2907
2908 ha_free(&curproxy->lbprm.arg_str);
2909 curproxy->lbprm.arg_str = strdup(args[1]);
2910 curproxy->lbprm.arg_len = strlen(args[1]);
2911
2912 if (*args[2]) {
2913 memprintf(err, "%s takes no other argument (got '%s').", args[0], args[2]);
2914 return -1;
2915 }
2916 }
Benoitaffb4812009-03-25 13:02:10 +01002917 else if (!strncmp(args[0], "hdr(", 4)) {
2918 const char *beg, *end;
2919
2920 beg = args[0] + 4;
2921 end = strchr(beg, ')');
2922
2923 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002924 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002925 return -1;
2926 }
2927
2928 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2929 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2930
Willy Tarreau484ff072019-01-14 15:28:53 +01002931 free(curproxy->lbprm.arg_str);
2932 curproxy->lbprm.arg_len = end - beg;
2933 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002934 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002935
2936 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002937 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002938 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002939 return -1;
2940 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002941 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002942 }
Emeric Brun736aa232009-06-30 17:56:00 +02002943 }
2944 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2945 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2946 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2947
2948 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2949 const char *beg, *end;
2950
2951 beg = args[0] + 11;
2952 end = strchr(beg, ')');
2953
2954 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002955 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002956 return -1;
2957 }
2958
Willy Tarreau484ff072019-01-14 15:28:53 +01002959 free(curproxy->lbprm.arg_str);
2960 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2961 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002962 }
2963 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002964 free(curproxy->lbprm.arg_str);
2965 curproxy->lbprm.arg_str = strdup("mstshash");
2966 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002967 }
2968 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002969 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002970 return -1;
2971 }
Willy Tarreau01732802007-11-01 22:48:15 +01002972 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002973 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002974 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 +01002975 return -1;
2976 }
2977 return 0;
2978}
2979
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002980
2981/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002982/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002983/************************************************************************/
2984
Willy Tarreau34db1082012-04-19 17:16:54 +02002985/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002986 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002987 * undefined behaviour.
2988 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002989static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002990smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002991{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002992 struct proxy *px = args->data.prx;
2993
2994 if (px == NULL)
2995 return 0;
2996 if (px->cap & PR_CAP_DEF)
2997 px = smp->px;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002998
Willy Tarreau37406352012-04-23 16:16:37 +02002999 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003000 smp->data.type = SMP_T_SINT;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003001
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01003002 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003003
3004 return 1;
3005}
3006
Willy Tarreau37406352012-04-23 16:16:37 +02003007/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003008 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02003009 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3010 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003011 */
3012static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003013smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003014{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003015 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003016
Willy Tarreau37406352012-04-23 16:16:37 +02003017 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003018 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02003019 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
3020 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003021 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003022 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003023 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02003024 return 1;
3025}
3026
Willy Tarreau34db1082012-04-19 17:16:54 +02003027/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003028 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003029 * undefined behaviour.
3030 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003031static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003032smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003033{
3034 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003035 struct proxy *px = args->data.prx;
3036
3037 if (px == NULL)
3038 return 0;
3039 if (px->cap & PR_CAP_DEF)
3040 px = smp->px;
Willy Tarreaud28c3532012-04-19 19:28:33 +02003041
Willy Tarreau37406352012-04-23 16:16:37 +02003042 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003043 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003044 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003045
Christopher Faulet37a9e212021-10-12 18:48:05 +02003046 for (iterator = px->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003047 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003048 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003049
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003050 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01003051 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003052 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003053 return 1;
3054 }
3055
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003056 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreaua0570452021-06-18 09:30:30 +02003057 + (iterator->maxqueue - iterator->queue.length);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08003058 }
3059
3060 return 1;
3061}
3062
Willy Tarreaua5e37562011-12-16 17:06:15 +01003063/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01003064static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003065smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02003066{
Christopher Fauletd1b44642020-04-30 09:51:15 +02003067 struct proxy *px = NULL;
3068
3069 if (smp->strm)
3070 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02003071 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02003072 px = __objt_check(smp->sess->origin)->proxy;
3073 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01003074 return 0;
3075
Willy Tarreauf853c462012-04-23 18:53:56 +02003076 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003077 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02003078 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01003079 return 1;
3080}
3081
Marcin Deranekd2471c22016-12-12 14:08:05 +01003082/* set string to the name of the backend */
3083static int
3084smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
3085{
Christopher Fauletd1b44642020-04-30 09:51:15 +02003086 struct proxy *px = NULL;
3087
3088 if (smp->strm)
3089 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02003090 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02003091 px = __objt_check(smp->sess->origin)->proxy;
3092 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01003093 return 0;
3094
Christopher Fauletd1b44642020-04-30 09:51:15 +02003095 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003096 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01003097 return 0;
3098
3099 smp->data.type = SMP_T_STR;
3100 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003101 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01003102
3103 return 1;
3104}
3105
Willy Tarreaua5e37562011-12-16 17:06:15 +01003106/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01003107static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003108smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02003109{
Christopher Fauletd1b44642020-04-30 09:51:15 +02003110 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01003111
Christopher Fauletd1b44642020-04-30 09:51:15 +02003112 if (smp->strm)
3113 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02003114 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02003115 srv = __objt_check(smp->sess->origin)->server;
3116 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01003117 return 0;
3118
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003119 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02003120 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01003121
3122 return 1;
3123}
3124
vkill1dfd1652019-10-30 16:58:14 +08003125/* set string to the name of the server */
3126static int
3127smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
3128{
Christopher Fauletd1b44642020-04-30 09:51:15 +02003129 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08003130
Christopher Fauletd1b44642020-04-30 09:51:15 +02003131 if (smp->strm)
3132 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02003133 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02003134 srv = __objt_check(smp->sess->origin)->server;
3135 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08003136 return 0;
3137
Christopher Fauletd1b44642020-04-30 09:51:15 +02003138 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08003139 if (!smp->data.u.str.area)
3140 return 0;
3141
3142 smp->data.type = SMP_T_STR;
3143 smp->data.u.str.data = strlen(smp->data.u.str.area);
3144
3145 return 1;
3146}
3147
Willy Tarreau34db1082012-04-19 17:16:54 +02003148/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003149 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003150 * undefined behaviour.
3151 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003152static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003153smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003154{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003155 struct proxy *px = args->data.prx;
3156
3157 if (px == NULL)
3158 return 0;
3159 if (px->cap & PR_CAP_DEF)
3160 px = smp->px;
3161
Willy Tarreau37406352012-04-23 16:16:37 +02003162 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003163 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003164 smp->data.u.sint = read_freq_ctr(&px->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003165 return 1;
3166}
3167
Willy Tarreau34db1082012-04-19 17:16:54 +02003168/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003169 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003170 * undefined behaviour.
3171 */
Willy Tarreaua36af912009-10-10 12:02:45 +02003172static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003173smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003174{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003175 struct proxy *px = args->data.prx;
3176
3177 if (px == NULL)
3178 return 0;
3179 if (px->cap & PR_CAP_DEF)
3180 px = smp->px;
3181
Willy Tarreau37406352012-04-23 16:16:37 +02003182 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003183 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003184 smp->data.u.sint = px->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02003185 return 1;
3186}
3187
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003188/* set temp integer to the number of available connections across available
3189 * servers on the backend.
3190 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
3191 * undefined behaviour.
3192 */
3193static int
3194smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3195{
3196 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003197 struct proxy *px = args->data.prx;
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003198 unsigned int maxconn;
3199
Christopher Faulet37a9e212021-10-12 18:48:05 +02003200 if (px == NULL)
3201 return 0;
3202 if (px->cap & PR_CAP_DEF)
3203 px = smp->px;
3204
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003205 smp->flags = SMP_F_VOL_TEST;
3206 smp->data.type = SMP_T_SINT;
3207 smp->data.u.sint = 0;
3208
Christopher Faulet37a9e212021-10-12 18:48:05 +02003209 for (iterator = px->srv; iterator; iterator = iterator->next) {
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003210 if (iterator->cur_state == SRV_ST_STOPPED)
3211 continue;
3212
3213 px = iterator->proxy;
3214 if (!srv_currently_usable(iterator) ||
3215 ((iterator->flags & SRV_F_BACKUP) &&
3216 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
3217 continue;
3218
3219 if (iterator->maxconn == 0) {
3220 /* one active server is unlimited, return -1 */
3221 smp->data.u.sint = -1;
3222 return 1;
3223 }
3224
3225 maxconn = srv_dynamic_maxconn(iterator);
3226 if (maxconn > iterator->cur_sess)
3227 smp->data.u.sint += maxconn - iterator->cur_sess;
3228 }
3229
3230 return 1;
3231}
3232
Willy Tarreau34db1082012-04-19 17:16:54 +02003233/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003234 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003235 * undefined behaviour.
3236 */
Willy Tarreaua36af912009-10-10 12:02:45 +02003237static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003238smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003239{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003240 struct proxy *px = args->data.prx;
3241
3242 if (px == NULL)
3243 return 0;
3244 if (px->cap & PR_CAP_DEF)
3245 px = smp->px;
3246
Willy Tarreau37406352012-04-23 16:16:37 +02003247 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003248 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003249 smp->data.u.sint = px->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02003250 return 1;
3251}
3252
Willy Tarreaua5e37562011-12-16 17:06:15 +01003253/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02003254 * by the number of running servers and rounded up. If there is no running
3255 * server, we return twice the total, just as if we had half a running server.
3256 * This is more or less correct anyway, since we expect the last server to come
3257 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003258 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003259 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02003260 */
3261static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003262smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003263{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003264 struct proxy *px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02003265 int nbsrv;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003266
3267 if (px == NULL)
3268 return 0;
3269 if (px->cap & PR_CAP_DEF)
3270 px = smp->px;
Willy Tarreaua36af912009-10-10 12:02:45 +02003271
Willy Tarreau37406352012-04-23 16:16:37 +02003272 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003273 smp->data.type = SMP_T_SINT;
Willy Tarreaua36af912009-10-10 12:02:45 +02003274
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01003275 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02003276
3277 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003278 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02003279 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003280 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02003281
3282 return 1;
3283}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003284
Willy Tarreau34db1082012-04-19 17:16:54 +02003285/* set temp integer to the number of concurrent connections on the server in the backend.
3286 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3287 * undefined behaviour.
3288 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003289static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003290smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003291{
Willy Tarreauf853c462012-04-23 18:53:56 +02003292 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003293 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003294 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003295 return 1;
3296}
3297
Patrick Hemmer155e93e2018-06-14 18:01:35 -04003298/* set temp integer to the number of available connections on the server in the backend.
3299 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3300 * undefined behaviour.
3301 */
3302static int
3303smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3304{
3305 unsigned int maxconn;
3306
3307 smp->flags = SMP_F_VOL_TEST;
3308 smp->data.type = SMP_T_SINT;
3309
3310 if (args->data.srv->maxconn == 0) {
3311 /* one active server is unlimited, return -1 */
3312 smp->data.u.sint = -1;
3313 return 1;
3314 }
3315
3316 maxconn = srv_dynamic_maxconn(args->data.srv);
3317 if (maxconn > args->data.srv->cur_sess)
3318 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
3319 else
3320 smp->data.u.sint = 0;
3321
3322 return 1;
3323}
3324
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003325/* set temp integer to the number of connections pending in the server's queue.
3326 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3327 * undefined behaviour.
3328 */
3329static int
3330smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
3331{
3332 smp->flags = SMP_F_VOL_TEST;
3333 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003334 smp->data.u.sint = args->data.srv->queue.length;
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003335 return 1;
3336}
3337
Tait Clarridge7896d522012-12-05 21:39:31 -05003338/* set temp integer to the number of enabled servers on the proxy.
3339 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3340 * undefined behaviour.
3341 */
3342static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003343smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05003344{
3345 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003346 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003347 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05003348 return 1;
3349}
3350
Christopher Faulet1bea8652020-07-10 16:03:45 +02003351/* set temp integer to the server weight.
3352 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3353 * undefined behaviour.
3354 */
3355static int
3356smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3357{
3358 struct server *srv = args->data.srv;
3359 struct proxy *px = srv->proxy;
3360
3361 smp->flags = SMP_F_VOL_TEST;
3362 smp->data.type = SMP_T_SINT;
3363 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
3364 return 1;
3365}
3366
3367/* set temp integer to the server initial weight.
3368 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3369 * undefined behaviour.
3370 */
3371static int
3372smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3373{
3374 smp->flags = SMP_F_VOL_TEST;
3375 smp->data.type = SMP_T_SINT;
3376 smp->data.u.sint = args->data.srv->iweight;
3377 return 1;
3378}
3379
3380/* set temp integer to the server user-specified weight.
3381 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3382 * undefined behaviour.
3383 */
3384static int
3385smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3386{
3387 smp->flags = SMP_F_VOL_TEST;
3388 smp->data.type = SMP_T_SINT;
3389 smp->data.u.sint = args->data.srv->uweight;
3390 return 1;
3391}
3392
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003393static int
3394smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3395{
3396 struct proxy *px = NULL;
3397
3398 if (smp->strm)
3399 px = smp->strm->be;
3400 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3401 px = __objt_check(smp->sess->origin)->proxy;
3402 if (!px)
3403 return 0;
3404
3405 smp->flags = SMP_F_VOL_TXN;
3406 smp->data.type = SMP_T_SINT;
3407 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
3408 return 1;
3409}
3410
3411static int
3412smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3413{
3414 struct proxy *px = NULL;
3415
3416 if (smp->strm)
3417 px = smp->strm->be;
3418 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3419 px = __objt_check(smp->sess->origin)->proxy;
3420 if (!px)
3421 return 0;
3422
3423 smp->flags = SMP_F_VOL_TXN;
3424 smp->data.type = SMP_T_SINT;
3425 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
3426 return 1;
3427}
3428
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003429static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
3430{
3431
3432 struct proxy *px;
3433
3434 if (!smp_make_safe(smp))
3435 return 0;
3436
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003437 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003438 if (!px)
3439 return 0;
3440
3441 smp->data.type = SMP_T_SINT;
3442 smp->data.u.sint = be_usable_srv(px);
3443
3444 return 1;
3445}
3446
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003447static int
3448sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3449{
3450 struct proxy *px;
3451 struct server *srv;
3452 char *bksep;
3453
3454 if (!smp_make_safe(smp))
3455 return 0;
3456
3457 bksep = strchr(smp->data.u.str.area, '/');
3458
3459 if (bksep) {
3460 *bksep = '\0';
3461 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3462 if (!px)
3463 return 0;
3464 smp->data.u.str.area = bksep + 1;
3465 } else {
3466 if (!(smp->px->cap & PR_CAP_BE))
3467 return 0;
3468 px = smp->px;
3469 }
3470
3471 srv = server_find_by_name(px, smp->data.u.str.area);
3472 if (!srv)
3473 return 0;
3474
3475 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003476 smp->data.u.sint = srv->queue.length;
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003477 return 1;
3478}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003479
3480/* Note: must not be declared <const> as its list will be overwritten.
3481 * Please take care of keeping this list alphabetically sorted.
3482 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003483static struct sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003484 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3485 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3486 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3487 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3488 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3489 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3490 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3491 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3492 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3493 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3494 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3495 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3496 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3497 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3498 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3499 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3500 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3501 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3502 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3503 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3504 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003505 { /* END */ },
3506}};
3507
Willy Tarreau0108d902018-11-25 19:14:37 +01003508INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3509
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003510/* Note: must not be declared <const> as its list will be overwritten */
3511static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003512 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3513 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003514 { /* END */ },
3515}};
3516
Willy Tarreau0108d902018-11-25 19:14:37 +01003517INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003518
Willy Tarreau61612d42012-04-19 18:42:05 +02003519/* Note: must not be declared <const> as its list will be overwritten.
3520 * Please take care of keeping this list alphabetically sorted.
3521 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003522static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003523 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003524}};
3525
Willy Tarreau0108d902018-11-25 19:14:37 +01003526INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003527
Willy Tarreaubaaee002006-06-26 02:48:02 +02003528/*
3529 * Local variables:
3530 * c-indent-level: 8
3531 * c-basic-offset: 8
3532 * End:
3533 */