blob: ec45c71a34f3a94a1d915f567ba44bae33cb0fd1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau63617db2021-10-06 18:23:40 +020022#include <import/ebmbtree.h>
23
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020024#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020025#include <haproxy/acl.h>
26#include <haproxy/activity.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/arg.h>
28#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020029#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020030#include <haproxy/check.h>
Christopher Faulet908628c2022-03-25 16:43:49 +010031#include <haproxy/conn_stream.h>
32#include <haproxy/cs_utils.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020033#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020035#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020036#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020037#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020038#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020039#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020040#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020041#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020042#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020043#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020044#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020045#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020047#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020048#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020049#include <haproxy/proto_tcp.h>
50#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020051#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020052#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020053#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020054#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020055#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020056#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020057#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020058#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020059#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020060#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020061#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020062
Christopher Fauleteea8fc72019-11-05 16:18:10 +010063#define TRACE_SOURCE &trace_strm
64
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050065int be_lastsession(const struct proxy *be)
66{
67 if (be->be_counters.last_sess)
68 return now.tv_sec - be->be_counters.last_sess;
69
70 return -1;
71}
72
Bhaskar98634f02013-10-29 23:30:51 -040073/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070074static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040075{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070076 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040077
78 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
79 case BE_LB_HFCN_DJB2:
80 hash = hash_djb2(key, len);
81 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010082 case BE_LB_HFCN_WT6:
83 hash = hash_wt6(key, len);
84 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010085 case BE_LB_HFCN_CRC32:
86 hash = hash_crc32(key, len);
87 break;
Bhaskar98634f02013-10-29 23:30:51 -040088 case BE_LB_HFCN_SDBM:
89 /* this is the default hash function */
90 default:
91 hash = hash_sdbm(key, len);
92 break;
93 }
94
95 return hash;
96}
97
Willy Tarreaubaaee002006-06-26 02:48:02 +020098/*
99 * This function recounts the number of usable active and backup servers for
100 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100101 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100102 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100103 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200104 * This functions is designed to be called before server's weight and state
105 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200106 *
107 * threads: this is the caller responsibility to lock data. For now, this
108 * function is called from lb modules, so it should be ok. But if you need to
109 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200111void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112{
113 struct server *srv;
114
Willy Tarreau20697042007-11-15 23:26:18 +0100115 px->srv_act = px->srv_bck = 0;
116 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100117 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200119 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100120 continue;
121
Willy Tarreauc93cd162014-05-13 15:54:22 +0200122 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100123 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100124 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100125 px->lbprm.fbck = srv;
126 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400127 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200128 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100129 } else {
130 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400131 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200132 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 }
134 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100135}
Willy Tarreau20697042007-11-15 23:26:18 +0100136
Willy Tarreaub625a082007-11-26 01:15:43 +0100137/* This function simply updates the backend's tot_weight and tot_used values
138 * after servers weights have been updated. It is designed to be used after
139 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200140 *
141 * threads: this is the caller responsibility to lock data. For now, this
142 * function is called from lb modules, so it should be ok. But if you need to
143 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100144 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200145void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100146{
Willy Tarreau20697042007-11-15 23:26:18 +0100147 if (px->srv_act) {
148 px->lbprm.tot_weight = px->lbprm.tot_wact;
149 px->lbprm.tot_used = px->srv_act;
150 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100151 else if (px->lbprm.fbck) {
152 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200153 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100154 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100155 }
156 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100157 px->lbprm.tot_weight = px->lbprm.tot_wbck;
158 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100159 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100160}
161
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200162/*
163 * This function tries to find a running server for the proxy <px> following
164 * the source hash method. Depending on the number of active/backup servers,
165 * it will either look for active servers, or for backup servers.
166 * If any server is found, it will be returned. If no valid server is found,
167 * NULL is returned.
168 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100169static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200170{
171 unsigned int h, l;
172
173 if (px->lbprm.tot_weight == 0)
174 return NULL;
175
176 l = h = 0;
177
178 /* note: we won't hash if there's only one server left */
179 if (px->lbprm.tot_used == 1)
180 goto hash_done;
181
182 while ((l + sizeof (int)) <= len) {
183 h ^= ntohl(*(unsigned int *)(&addr[l]));
184 l += sizeof (int);
185 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500186 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100187 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200188 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100189 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100190 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200191 else
192 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200193}
194
195/*
196 * This function tries to find a running server for the proxy <px> following
197 * the URI hash method. In order to optimize cache hits, the hash computation
198 * ends at the question mark. Depending on the number of active/backup servers,
199 * it will either look for active servers, or for backup servers.
200 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100201 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200202 * the "whole" optional argument (boolean, bit0), the "len" argument (numeric)
203 * and the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200204 *
205 * This code was contributed by Guillaume Dallaire, who also selected this hash
206 * algorithm out of a tens because it gave him the best results.
207 *
208 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100209static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200210{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700211 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200212 int c;
213 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400214 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200215
216 if (px->lbprm.tot_weight == 0)
217 return NULL;
218
219 /* note: we won't hash if there's only one server left */
220 if (px->lbprm.tot_used == 1)
221 goto hash_done;
222
Willy Tarreaua9a72492019-01-14 16:14:15 +0100223 if (px->lbprm.arg_opt2) // "len"
224 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200225
Bhaskar98634f02013-10-29 23:30:51 -0400226 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200227 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200228 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200229 if (c == '/') {
230 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100231 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200232 break;
233 }
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200234 else if (c == '?' && !(px->lbprm.arg_opt1 & 1)) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200235 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200236 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200237 }
Bhaskar98634f02013-10-29 23:30:51 -0400238
239 hash = gen_hash(px, start, (end - start));
240
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500241 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100242 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200243 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100244 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100245 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200246 else
247 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200248}
249
Christopher Faulet5b517552017-06-09 14:17:53 +0200250/*
Willy Tarreau01732802007-11-01 22:48:15 +0100251 * This function tries to find a running server for the proxy <px> following
252 * the URL parameter hash method. It looks for a specific parameter in the
253 * URL and hashes it to compute the server ID. This is useful to optimize
254 * performance by avoiding bounces between servers in contexts where sessions
255 * are shared but cookies are not usable. If the parameter is not found, NULL
256 * is returned. If any server is found, it will be returned. If no valid server
257 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100258 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100259static 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 +0100260{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700261 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400262 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 const char *p;
264 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100265 int plen;
266
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100268 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100269 return NULL;
270
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200271 if ((p = memchr(uri, '?', uri_len)) == NULL)
272 return NULL;
273
Willy Tarreau01732802007-11-01 22:48:15 +0100274 p++;
275
276 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100277 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100279
280 while (uri_len > plen) {
281 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100283 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100285 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100287 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200288 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400289 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200290 uri_len -= plen + 1;
291
Bhaskar98634f02013-10-29 23:30:51 -0400292 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100293 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400294 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100295 }
Bhaskar98634f02013-10-29 23:30:51 -0400296 hash = gen_hash(px, start, (end - start));
297
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500298 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100299 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400300
Willy Tarreau6c30be52019-01-14 17:07:39 +0100301 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100302 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200303 else
304 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100305 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200306 }
307 /* skip to next parameter */
308 p = memchr(params, '&', uri_len);
309 if (!p)
310 return NULL;
311 p++;
312 uri_len -= (p - params);
313 params = p;
314 }
315 return NULL;
316}
317
318/*
319 * this does the same as the previous server_ph, but check the body contents
320 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100321static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200322{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700323 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100324 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200325 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200326 struct htx *htx = htxbuf(&req->buf);
327 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100328 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100329 unsigned long len;
330 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200331
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100332 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200333 return NULL;
334
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200335 p = params = NULL;
336 len = 0;
337 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
338 enum htx_blk_type type = htx_get_blk_type(blk);
339 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200340
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200341 if (type != HTX_BLK_DATA)
342 continue;
343 v = htx_get_blk_value(htx, blk);
344 p = params = v.ptr;
345 len = v.len;
346 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100347 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200348
349 while (len > plen) {
350 /* Look for the parameter name followed by an equal symbol */
351 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100352 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200353 /* OK, we have the parameter here at <params>, and
354 * the value after the equal sign, at <p>
355 * skip the equal symbol
356 */
357 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400358 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200359 len -= plen + 1;
360
Bhaskar98634f02013-10-29 23:30:51 -0400361 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100363 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400364 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100365 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200366 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
367 break;
368 return NULL; /* oh, no; this is not uri-encoded.
369 * This body does not contain parameters.
370 */
371 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200372 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400373 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200374 /* should we break if vlen exceeds limit? */
375 }
Bhaskar98634f02013-10-29 23:30:51 -0400376 hash = gen_hash(px, start, (end - start));
377
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500378 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100379 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400380
Willy Tarreau6c30be52019-01-14 17:07:39 +0100381 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100382 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200383 else
384 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200385 }
386 }
Willy Tarreau01732802007-11-01 22:48:15 +0100387 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100389 if (!p)
390 return NULL;
391 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200392 len -= (p - params);
393 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100394 }
395 return NULL;
396}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200398
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399/*
Benoitaffb4812009-03-25 13:02:10 +0100400 * This function tries to find a running server for the proxy <px> following
401 * the Header parameter hash method. It looks for a specific parameter in the
402 * URL and hashes it to compute the server ID. This is useful to optimize
403 * performance by avoiding bounces between servers in contexts where sessions
404 * are shared but cookies are not usable. If the parameter is not found, NULL
405 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100406 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
407 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100408 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100409static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100410{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700411 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100412 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100413 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100414 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100415 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400416 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200417 struct htx *htx = htxbuf(&s->req.buf);
418 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100419
420 /* tot_weight appears to mean srv_count */
421 if (px->lbprm.tot_weight == 0)
422 return NULL;
423
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200424 /* note: we won't hash if there's only one server left */
425 if (px->lbprm.tot_used == 1)
426 goto hash_done;
427
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200428 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100429
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200430 /* if the header is not found or empty, let's fallback to round robin */
431 if (!ctx.blk || !ctx.value.len)
432 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100433
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200434 /* Found a the param_name in the headers.
435 * we will compute the hash based on this value ctx.val.
436 */
437 len = ctx.value.len;
438 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100439
Willy Tarreau9fed8582019-01-14 16:04:54 +0100440 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400441 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100442 } else {
443 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100444 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100445 /* special computation, use only main domain name, not tld/host
446 * going back from the end of string, start hashing at first
447 * dot stop at next.
448 * This is designed to work with the 'Host' header, and requires
449 * a special option to activate this.
450 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100451 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100452 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100453 if (dohash) {
454 /* Rewind the pointer until the previous char
455 * is a dot, this will allow to set the start
456 * position of the domain. */
457 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100458 break;
Benoitaffb4812009-03-25 13:02:10 +0100459 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100460 else if (*p == '.') {
461 /* The pointer is rewinded to the dot before the
462 * tld, we memorize the end of the domain and
463 * can enter the domain processing. */
464 end = p;
465 dohash = 1;
466 }
Benoitaffb4812009-03-25 13:02:10 +0100467 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100468 len--;
Benoitaffb4812009-03-25 13:02:10 +0100469 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100470 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400471 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100472 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500473 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100474 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200475 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100476 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100477 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200478 else
479 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100480}
481
Willy Tarreau34db1082012-04-19 17:16:54 +0200482/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100483static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200484{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700485 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200486 struct proxy *px = s->be;
487 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200488 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200489 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200490 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200491
492 /* tot_weight appears to mean srv_count */
493 if (px->lbprm.tot_weight == 0)
494 return NULL;
495
Willy Tarreau37406352012-04-23 16:16:37 +0200496 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200497
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200498 rewind = co_data(&s->req);
499 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200500
Willy Tarreau484ff072019-01-14 15:28:53 +0100501 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200502 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100503
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200504 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200505
Willy Tarreau37406352012-04-23 16:16:37 +0200506 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200507 return NULL;
508
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200509 /* note: we won't hash if there's only one server left */
510 if (px->lbprm.tot_used == 1)
511 goto hash_done;
512
Willy Tarreau484ff072019-01-14 15:28:53 +0100513 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200514 * we will compute the hash based on this value ctx.val.
515 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200516 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400517
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500518 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100519 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200520 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100521 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100522 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200523 else
524 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200525}
Christopher Faulet5b517552017-06-09 14:17:53 +0200526
Willy Tarreau760e81d2018-05-03 07:20:40 +0200527/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100528static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200529{
530 unsigned int hash = 0;
531 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100532 struct server *prev, *curr;
533 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200534
535 /* tot_weight appears to mean srv_count */
536 if (px->lbprm.tot_weight == 0)
537 return NULL;
538
Willy Tarreau21c741a2019-01-14 18:14:27 +0100539 curr = NULL;
540 do {
541 prev = curr;
Ubuntu1adaddb2021-03-01 07:57:54 +0000542 hash = statistical_prng();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100543 curr = chash_get_server_hash(px, hash, avoid);
544 if (!curr)
545 break;
546
547 /* compare the new server to the previous best choice and pick
548 * the one with the least currently served requests.
549 */
550 if (prev && prev != curr &&
551 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
552 curr = prev;
553 } while (--draws > 0);
554
Willy Tarreaub88ae182020-09-29 16:58:30 +0200555 /* if the selected server is full, pretend we have none so that we reach
556 * the backend's queue instead.
557 */
558 if (curr &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200559 (curr->queue.length || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr))))
Willy Tarreaub88ae182020-09-29 16:58:30 +0200560 curr = NULL;
561
Willy Tarreau21c741a2019-01-14 18:14:27 +0100562 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200563}
564
Benoitaffb4812009-03-25 13:02:10 +0100565/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200566 * This function applies the load-balancing algorithm to the stream, as
567 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200568 * 'assigned'.
569 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200570 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200571 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100572 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200573 * The function tries to keep the original connection slot if it reconnects to
574 * the same server, otherwise it releases it and tries to offer it.
575 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200576 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200577 *
578 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100579 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200580 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
581 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200582 * SRV_STATUS_INTERNAL for other unrecoverable errors.
583 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200584 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100585 * it does not need to be called anymore. This means that target_srv(&s->target)
586 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200587 *
588 */
589
Willy Tarreau87b09662015-04-03 00:22:06 +0200590int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200591{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100592 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100594 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200595 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100596
Simon Horman8effd3d2011-08-13 08:03:52 +0900597 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200598
Willy Tarreau7c669d72008-06-20 15:04:11 +0200599 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200600 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200601 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100602
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100603 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200604 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200605
Willy Tarreau7c669d72008-06-20 15:04:11 +0200606 /* We have to release any connection slot before applying any LB algo,
607 * otherwise we may erroneously end up with no available slot.
608 */
609 if (conn_slot)
610 sess_change_server(s, NULL);
611
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100612 /* We will now try to find the good server and store it into <objt_server(s->target)>.
613 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200614 * as well as if no server is available (check error code).
615 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100616
Willy Tarreau827aee92011-03-10 16:55:02 +0100617 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100618 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100619
Olivier Houchardba4fff52018-12-01 14:40:40 +0100620 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200621 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100622 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100623 struct sess_srv_list *srv_list;
624 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
625 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100626
627 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200628 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100629 (!s->be->max_ka_queue ||
630 server_has_room(tmpsrv) || (
Willy Tarreaua0570452021-06-18 09:30:30 +0200631 tmpsrv->queue.length + 1 < s->be->max_ka_queue))) &&
Olivier Houchardba4fff52018-12-01 14:40:40 +0100632 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100633 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100634 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100635 srv = tmpsrv;
636 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200637 if (conn->flags & CO_FL_SESS_IDLE) {
638 conn->flags &= ~CO_FL_SESS_IDLE;
639 s->sess->idle_conns--;
640 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100641 goto out_ok;
642 }
643 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100644 }
645 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100646 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200647
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200648 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200649 /* we must check if we have at least one server available */
650 if (!s->be->lbprm.tot_weight) {
651 err = SRV_STATUS_NOSRV;
652 goto out;
653 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200654
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200655 /* if there's some queue on the backend, with certain algos we
656 * know it's because all servers are full.
657 */
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200658 if (s->be->queue.length && s->be->queue.length != s->be->beconn &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200659 (((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 +0200660 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
661 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
662 err = SRV_STATUS_FULL;
663 goto out;
664 }
665
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200666 /* First check whether we need to fetch some data or simply call
667 * the LB lookup function. Only the hashing functions will need
668 * some input data in fact, and will support multiple algorithms.
669 */
670 switch (s->be->lbprm.algo & BE_LB_LKUP) {
671 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100672 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200673 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200674
Willy Tarreauf09c6602012-02-13 17:12:08 +0100675 case BE_LB_LKUP_FSTREE:
676 srv = fas_get_next_server(s->be, prev_srv);
677 break;
678
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200679 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100680 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200681 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200682
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200683 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200684 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200685 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau5ffb0452021-06-22 17:31:51 +0200686 /* static-rr (map) or random (chash) */
Willy Tarreau760e81d2018-05-03 07:20:40 +0200687 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100688 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200689 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100690 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200691 break;
692 }
693 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200694 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200695 err = SRV_STATUS_INTERNAL;
696 goto out;
697 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200698
699 switch (s->be->lbprm.algo & BE_LB_PARM) {
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200700 const struct sockaddr_storage *src;
701
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200702 case BE_LB_HASH_SRC:
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200703 src = cs_src(s->csf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200704 if (src && src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200705 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200706 (void *)&((struct sockaddr_in *)src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100707 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200708 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200709 else if (src && src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200710 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200711 (void *)&((struct sockaddr_in6 *)src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100712 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200713 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200714 else {
715 /* unknown IP family */
716 err = SRV_STATUS_INTERNAL;
717 goto out;
718 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200719 break;
720
721 case BE_LB_HASH_URI:
722 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200723 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100724 struct ist uri;
725
Christopher Faulet297fbb42019-05-13 14:41:27 +0200726 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200727 if (s->be->lbprm.arg_opt1 & 2) {
Amaury Denoyellec453f952021-07-06 11:40:12 +0200728 struct http_uri_parser parser =
729 http_uri_parser_init(uri);
730
731 uri = http_parse_path(&parser);
Tim Duesterhus7b5777d2021-03-02 18:57:28 +0100732 if (!isttest(uri))
Willy Tarreau57a37412020-09-23 08:56:29 +0200733 uri = ist("");
734 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100735 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
736 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200737 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200738
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200739 case BE_LB_HASH_PRM:
740 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200741 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100742 struct ist uri;
743
Christopher Faulet297fbb42019-05-13 14:41:27 +0200744 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100745 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100746
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200747 if (!srv && s->txn->meth == HTTP_METH_POST)
748 srv = get_server_ph_post(s, prev_srv);
749 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200750 break;
Benoitaffb4812009-03-25 13:02:10 +0100751
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200752 case BE_LB_HASH_HDR:
753 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200754 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
755 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200756 break;
757
758 case BE_LB_HASH_RDP:
759 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100760 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200761 break;
762
763 default:
764 /* unknown balancing algorithm */
765 err = SRV_STATUS_INTERNAL;
766 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100767 }
Emeric Brun736aa232009-06-30 17:56:00 +0200768
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200769 /* If the hashing parameter was not found, let's fall
770 * back to round robin on the map.
771 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100772 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100773 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100774 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200775 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100776 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200777 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200778
779 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200780 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200781
Willy Tarreau7c669d72008-06-20 15:04:11 +0200782 default:
783 /* unknown balancing algorithm */
784 err = SRV_STATUS_INTERNAL;
785 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200787
Willy Tarreau827aee92011-03-10 16:55:02 +0100788 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200789 err = SRV_STATUS_FULL;
790 goto out;
791 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100792 else if (srv != prev_srv) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200793 _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn);
794 _HA_ATOMIC_INC(&srv->counters.cum_lbconn);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100795 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100796 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200797 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200798 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100799 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100801 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200802 err = SRV_STATUS_NOSRV;
803 goto out;
804 }
805
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100806out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200807 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200808 err = SRV_STATUS_OK;
809 out:
810
811 /* Either we take back our connection slot, or we offer it to someone
812 * else if we don't need it anymore.
813 */
814 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100815 if (conn_slot == srv) {
816 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200817 } else {
818 if (may_dequeue_tasks(conn_slot, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +0200819 process_srv_queue(conn_slot);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200820 }
821 }
822
823 out_err:
824 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200825}
826
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100827/* Allocate an address for the destination endpoint
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828 * The address is taken from the currently assigned server, or from the
829 * dispatch or transparent address.
830 *
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100831 * Returns SRV_STATUS_OK on success.
Amaury Denoyellef7bdf002021-01-21 09:40:19 +0100832 * On error, no address is allocated and SRV_STATUS_INTERNAL is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200833 */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100834static int alloc_dst_address(struct sockaddr_storage **ss,
835 struct server *srv, struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200836{
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200837 const struct sockaddr_storage *dst;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200838
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100839 *ss = NULL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200840 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200841 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200842 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843 return SRV_STATUS_INTERNAL;
844
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100845 if (!sockaddr_alloc(ss, NULL, 0))
846 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100848 **ss = srv->addr;
849 set_host_port(*ss, srv->svc_port);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100850 if (!is_addr(*ss)) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200851 /* if the server has no address, we use the same address
852 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200853 * locally on multiple addresses at once. Nothing is done
854 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200855 */
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200856 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100857 if (dst && dst->ss_family == AF_INET) {
Christopher Fauletae305612021-03-01 11:33:59 +0100858 ((struct sockaddr_in *)*ss)->sin_family = AF_INET;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100859 ((struct sockaddr_in *)*ss)->sin_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200860 ((struct sockaddr_in *)dst)->sin_addr;
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100861 } else if (dst && dst->ss_family == AF_INET6) {
Christopher Fauletae305612021-03-01 11:33:59 +0100862 ((struct sockaddr_in6 *)*ss)->sin6_family = AF_INET6;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100863 ((struct sockaddr_in6 *)*ss)->sin6_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200864 ((struct sockaddr_in6 *)dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200865 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200866 }
867
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 /* if this server remaps proxied ports, we'll use
869 * the port the client connected to with an offset. */
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100870 if ((srv->flags & SRV_F_MAPPORTS)) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100871 int base_port;
872
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200873 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100874 if (dst) {
875 /* First, retrieve the port from the incoming connection */
876 base_port = get_host_port(dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100877
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100878 /* Second, assign the outgoing connection's port */
879 base_port += get_host_port(*ss);
880 set_host_port(*ss, base_port);
881 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200882 }
883 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200884 else if (s->be->options & PR_O_DISPATCH) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100885 if (!sockaddr_alloc(ss, NULL, 0))
886 return SRV_STATUS_INTERNAL;
887
Willy Tarreaubaaee002006-06-26 02:48:02 +0200888 /* connect to the defined dispatch addr */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100889 **ss = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200890 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200891 else if ((s->be->options & PR_O_TRANSP)) {
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100892 if (!sockaddr_alloc(ss, NULL, 0))
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100893 return SRV_STATUS_INTERNAL;
894
Willy Tarreaubaaee002006-06-26 02:48:02 +0200895 /* in transparent mode, use the original dest addr if no dispatch specified */
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200896 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100897 if (dst && (dst->ss_family == AF_INET || dst->ss_family == AF_INET6))
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200898 **ss = *dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200899 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100900 else {
901 /* no server and no LB algorithm ! */
902 return SRV_STATUS_INTERNAL;
903 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200904
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905 return SRV_STATUS_OK;
906}
907
Willy Tarreau87b09662015-04-03 00:22:06 +0200908/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200910 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200911 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200912 * be called before any connection and after any retry or redispatch occurs.
913 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200914 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915 *
916 * Returns :
917 *
918 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100919 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920 * SRV_STATUS_QUEUED if the connection has been queued.
921 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100922 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200923 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200924 * SRV_STATUS_INTERNAL for other unrecoverable errors.
925 *
926 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200927int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928{
929 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100930 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931 int err;
932
933 if (s->pend_pos)
934 return SRV_STATUS_INTERNAL;
935
Willy Tarreau7c669d72008-06-20 15:04:11 +0200936 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200937 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100938 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100939
Willy Tarreau7c669d72008-06-20 15:04:11 +0200940 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100941 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200942 /* This stream was previously assigned to a server. We have to
943 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200944 * - if the server changed :
945 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200946 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200947 * - increment srv->redispatches and be->redispatches
948 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100949 */
950
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100951 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200952 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
953 s->txn->flags &= ~TX_CK_MASK;
954 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200955 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200956 s->flags |= SF_REDISP;
Willy Tarreau4781b152021-04-06 13:53:36 +0200957 _HA_ATOMIC_INC(&prev_srv->counters.redispatches);
958 _HA_ATOMIC_INC(&s->be->be_counters.redispatches);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200959 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +0200960 _HA_ATOMIC_INC(&prev_srv->counters.retries);
961 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100962 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100963 }
964 }
965
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966 switch (err) {
967 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200968 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100969 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100970 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200971 return SRV_STATUS_OK; /* dispatch or proxy mode */
972
973 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200975 return SRV_STATUS_OK;
976
Willy Tarreau87b09662015-04-03 00:22:06 +0200977 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200978 * connection slot yet. Either it is a redispatch, or it was
979 * assigned from persistence information (direct mode).
980 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200981 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200982 /* server scheduled for redirection, and already assigned. We
983 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100984 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100985 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100986 return SRV_STATUS_OK;
987 }
988
Willy Tarreau87b09662015-04-03 00:22:06 +0200989 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200990 * We know we have to queue it into the server's queue, so if a maxqueue
991 * is set on the server, we must also check that the server's queue is
992 * not full, in which case we have to return FULL.
993 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100994 if (srv->maxconn &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200995 (srv->queue.length || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200996
Willy Tarreaua0570452021-06-18 09:30:30 +0200997 if (srv->maxqueue > 0 && srv->queue.length >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200998 return SRV_STATUS_FULL;
999
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000 p = pendconn_add(s);
1001 if (p)
1002 return SRV_STATUS_QUEUED;
1003 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001004 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001005 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001006
1007 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001008 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001009 return SRV_STATUS_OK;
1010
1011 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001012 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001013 p = pendconn_add(s);
1014 if (p)
1015 return SRV_STATUS_QUEUED;
1016 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001017 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001018
1019 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001020 return err;
1021
Willy Tarreaubaaee002006-06-26 02:48:02 +02001022 case SRV_STATUS_INTERNAL:
1023 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001024
Willy Tarreaubaaee002006-06-26 02:48:02 +02001025 default:
1026 return SRV_STATUS_INTERNAL;
1027 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001028}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001029
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001030/* Allocate an address for source binding on the specified server or backend.
1031 * The allocation is only performed if the connection is intended to be used
1032 * with transparent mode.
1033 *
1034 * Returns SRV_STATUS_OK if no transparent mode or the address was successfully
1035 * allocated. Otherwise returns SRV_STATUS_INTERNAL.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001036 */
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001037static int alloc_bind_address(struct sockaddr_storage **ss,
1038 struct server *srv, struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001039{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001040#if defined(CONFIG_HAP_TRANSPARENT)
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001041 const struct sockaddr_storage *addr;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001042 struct conn_src *src = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001043 struct sockaddr_in *sin;
1044 char *vptr;
1045 size_t vlen;
1046#endif
Olivier Houchard09a0f032019-01-17 15:59:13 +01001047
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001048 *ss = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001049
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001050#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001051 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1052 src = &srv->conn_src;
1053 else if (s->be->conn_src.opts & CO_SRC_BIND)
1054 src = &s->be->conn_src;
Willy Tarreau294c4732011-12-16 21:35:50 +01001055
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001056 /* no transparent mode, no need to allocate an address, returns OK */
1057 if (!src)
1058 return SRV_STATUS_OK;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001059
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001060 switch (src->opts & CO_SRC_TPROXY_MASK) {
1061 case CO_SRC_TPROXY_ADDR:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001062 if (!sockaddr_alloc(ss, NULL, 0))
1063 return SRV_STATUS_INTERNAL;
1064
1065 **ss = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001066 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001067
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001068 case CO_SRC_TPROXY_CLI:
1069 case CO_SRC_TPROXY_CIP:
1070 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001071 addr = cs_src(s->csf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001072 if (!addr)
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001073 return SRV_STATUS_INTERNAL;
1074
1075 if (!sockaddr_alloc(ss, NULL, 0))
1076 return SRV_STATUS_INTERNAL;
1077
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001078 **ss = *addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001079 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001080
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001081 case CO_SRC_TPROXY_DYN:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001082 if (!src->bind_hdr_occ || !IS_HTX_STRM(s))
1083 return SRV_STATUS_INTERNAL;
Willy Tarreau294c4732011-12-16 21:35:50 +01001084
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001085 if (!sockaddr_alloc(ss, NULL, 0))
1086 return SRV_STATUS_INTERNAL;
1087
1088 /* bind to the IP in a header */
1089 sin = (struct sockaddr_in *)*ss;
1090 sin->sin_family = AF_INET;
1091 sin->sin_port = 0;
1092 sin->sin_addr.s_addr = 0;
1093 if (!http_get_htx_hdr(htxbuf(&s->req.buf),
1094 ist2(src->bind_hdr_name, src->bind_hdr_len),
1095 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1096 sockaddr_free(ss);
1097 return SRV_STATUS_INTERNAL;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001098 }
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001099
1100 sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001101 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001102
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001103 default:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001104 ;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001105 }
1106#endif
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001107
1108 return SRV_STATUS_OK;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001109}
1110
Olivier Houchard566df302020-03-06 18:18:56 +01001111/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001112 * (safe or idle connections). The <is_safe> argument means what type of
1113 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001114 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001115static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001116{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001117 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001118 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001119 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001120 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001121
1122 /* We need to lock even if this is our own list, because another
1123 * thread may be trying to migrate that connection, and we don't want
1124 * to end up with two threads using the same connection.
1125 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001126 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001127 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001128 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 +01001129 if (conn)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001130 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001131
1132 /* If we failed to pick a connection from the idle list, let's try again with
1133 * the safe list.
1134 */
1135 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001136 conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001137 if (conn) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001138 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001139 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001140 }
1141 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001142 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001143
1144 /* If we found a connection in our own list, and we don't have to
1145 * steal one from another thread, then we're done.
1146 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001147 if (conn)
1148 goto done;
1149
Willy Tarreau76cc6992020-07-01 18:49:24 +02001150 /* pool sharing globally disabled ? */
1151 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1152 goto done;
1153
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001154 /* Are we allowed to pick from another thread ? We'll still try
1155 * it if we're running low on FDs as we don't want to create
1156 * extra conns in this case, otherwise we can give up if we have
1157 * too few idle conns.
1158 */
1159 if (srv->curr_idle_conns < srv->low_idle_conns &&
1160 ha_used_fds < global.tune.pool_low_count)
1161 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001162
Willy Tarreau364f25a2020-07-01 15:55:30 +02001163 /* Lookup all other threads for an idle connection, starting from last
1164 * unvisited thread.
1165 */
1166 stop = srv->next_takeover;
1167 if (stop >= global.nbthread)
1168 stop = 0;
1169
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001170 i = stop;
1171 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001172 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001173 continue;
1174
Ubuntub1adf032021-03-01 06:22:17 +00001175 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1176 continue;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001177 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 +01001178 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001179 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001180 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001181 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Olivier Houchard566df302020-03-06 18:18:56 +01001182 found = 1;
1183 break;
1184 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001185
1186 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001187 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001188
1189 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001190 conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001191 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001192 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001193 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001194 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Willy Tarreau0d587112020-07-01 15:04:38 +02001195 found = 1;
1196 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001197 break;
1198 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001199
1200 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001201 }
1202 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001203 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001204 } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001205
1206 if (!found)
1207 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001208 done:
1209 if (conn) {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001210 _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001211
1212 srv_use_conn(srv, conn);
1213
Willy Tarreau4781b152021-04-06 13:53:36 +02001214 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
1215 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
1216 _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001217 conn->flags &= ~CO_FL_LIST_MASK;
1218 __ha_barrier_atomic_store();
1219
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001220 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1221 conn->mux->flags & MX_FL_HOL_RISK) {
1222 /* attach the connection to the session private list
1223 */
1224 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001225 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001226 }
1227 else {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001228 ebmb_insert(&srv->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001229 &conn->hash_node->node,
1230 sizeof(conn->hash_node->hash));
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001231 }
Olivier Houchard566df302020-03-06 18:18:56 +01001232 }
1233 return conn;
1234}
1235
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001236static int do_connect_server(struct stream *s, struct connection *conn)
1237{
1238 int ret = SF_ERR_NONE;
1239 int conn_flags = 0;
1240
1241 if (unlikely(!conn || !conn->ctrl || !conn->ctrl->connect))
1242 return SF_ERR_INTERNAL;
1243
1244 if (!channel_is_empty(&s->res))
1245 conn_flags |= CONNECT_HAS_DATA;
1246 if (s->conn_retries == s->be->conn_retries)
1247 conn_flags |= CONNECT_CAN_USE_TFO;
1248 if (!conn_ctrl_ready(conn) || !conn_xprt_ready(conn)) {
1249 ret = conn->ctrl->connect(conn, conn_flags);
1250 if (ret != SF_ERR_NONE)
1251 return ret;
1252
1253 /* we're in the process of establishing a connection */
1254 s->csb->state = CS_ST_CON;
1255 }
1256 else {
1257 /* try to reuse the existing connection, it will be
1258 * confirmed once we can send on it.
1259 */
1260 /* Is the connection really ready ? */
1261 if (conn->mux->ctl(conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1262 s->csb->state = CS_ST_RDY;
1263 else
1264 s->csb->state = CS_ST_CON;
1265 }
1266
1267 /* needs src ip/port for logging */
1268 if (s->flags & SF_SRC_ADDR)
1269 conn_get_src(conn);
1270
1271 return ret;
1272}
1273
Willy Tarreaubaaee002006-06-26 02:48:02 +02001274/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001275 * This function initiates a connection to the server assigned to this stream
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001276 * (s->target, (s->csb)->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001277 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001278 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001279 * - SF_ERR_NONE if everything's OK
1280 * - SF_ERR_SRVTO if there are no more servers
1281 * - SF_ERR_SRVCL if the connection was refused by the server
1282 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1283 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1284 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001285 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001286 * The server-facing conn-stream is expected to hold a pre-allocated connection.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001287 */
Christopher Fauletc983b212022-01-13 09:53:00 +01001288static int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001289{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001290 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001291 struct connection *srv_conn = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001292 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001293 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001294 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001295 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001296 int err;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001297#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001298 struct sample *sni_smp = NULL;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001299#endif
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001300 struct sockaddr_storage *bind_addr;
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001301 int proxy_line_ret;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001302 int64_t hash = 0;
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001303 struct conn_hash_params hash_params;
1304
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001305 /* in standard configuration, srv will be valid
1306 * it can be NULL for dispatch mode or transparent backend */
1307 srv = objt_server(s->target);
1308
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001309 if (!(s->flags & SF_ADDR_SET)) {
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001310 err = alloc_dst_address(&s->csb->dst, srv, s);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001311 if (err != SRV_STATUS_OK)
1312 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001313
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001314 s->flags |= SF_ADDR_SET;
1315 }
1316
1317 err = alloc_bind_address(&bind_addr, srv, s);
1318 if (err != SRV_STATUS_OK)
1319 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001320
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001321#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001322 if (srv && srv->ssl_ctx.sni) {
1323 sni_smp = sample_fetch_as_type(s->be, s->sess, s,
1324 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1325 srv->ssl_ctx.sni, SMP_T_STR);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001326 }
1327#endif
Amaury Denoyelle4c098002021-02-17 15:59:02 +01001328
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001329 /* do not reuse if mode is not http */
1330 if (!IS_HTX_STRM(s)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001331 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 +02001332 goto skip_reuse;
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001333 }
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001334
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001335 /* disable reuse if websocket stream and the protocol to use is not the
1336 * same as the main protocol of the server.
1337 */
1338 if (unlikely(s->flags & SF_WEBSOCKET) && srv) {
1339 if (!srv_check_reuse_ws(srv)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001340 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 +02001341 goto skip_reuse;
1342 }
1343 }
1344
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001345 /* first, set unique connection parameters and then calculate hash */
1346 memset(&hash_params, 0, sizeof(hash_params));
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001347
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001348 /* 1. target */
1349 hash_params.target = s->target;
1350
1351#ifdef USE_OPENSSL
1352 /* 2. sni
1353 * only test if the sample is not null as smp_make_safe (called before
1354 * ssl_sock_set_servername) can only fails if this is not the case
1355 */
1356 if (sni_smp) {
1357 hash_params.sni_prehash =
1358 conn_hash_prehash(sni_smp->data.u.str.area,
1359 sni_smp->data.u.str.data);
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001360 }
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001361#endif /* USE_OPENSSL */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001362
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001363 /* 3. destination address */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001364 if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS))
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001365 hash_params.dst_addr = s->csb->dst;
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001366
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001367 /* 4. source address */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001368 hash_params.src_addr = bind_addr;
1369
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001370 /* 5. proxy protocol */
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001371 if (srv && srv->pp_opts) {
1372 proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s);
1373 if (proxy_line_ret) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001374 hash_params.proxy_prehash =
1375 conn_hash_prehash(trash.area, proxy_line_ret);
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001376 }
1377 }
1378
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001379 hash = conn_calculate_hash(&hash_params);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001380
Willy Tarreaub0821862019-07-18 19:26:11 +02001381 /* first, search for a matching connection in the session's idle conns */
Amaury Denoyelle293dcc42021-01-25 10:29:35 +01001382 srv_conn = session_get_conn(s->sess, s->target, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001383 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001384 DBG_TRACE_STATE("reuse connection from session", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001385 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001386 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001387
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001388 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001389 /* Below we pick connections from the safe, idle or
1390 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001391 * on the strategy, the fact that this is a first or second
1392 * (retryable) request, with the indicated priority (1 or 2) :
1393 *
1394 * SAFE AGGR ALWS
1395 *
1396 * +-----+-----+ +-----+-----+ +-----+-----+
1397 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1398 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1399 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1400 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1401 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1402 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001403 *
1404 * Idle conns are necessarily looked up on the same thread so
1405 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001406 */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001407 if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) {
1408 srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001409 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001410 DBG_TRACE_STATE("reuse connection from avail", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001411 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001412 }
Willy Tarreau449d74a2015-08-05 17:16:33 +02001413 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001414
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001415 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001416 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001417 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1418 const int idle = srv->curr_idle_nb > 0;
1419 const int safe = srv->curr_safe_nb > 0;
1420
1421 /* second column of the tables above,
1422 * search for an idle then safe conn */
1423 if (not_first_req) {
1424 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001425 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001426 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001427 /* first column of the tables above */
1428 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1429 /* search for a safe conn */
1430 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001431 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001432
1433 /* search for an idle conn if no safe conn found
1434 * on always reuse mode */
1435 if (!srv_conn &&
1436 reuse_mode == PR_O_REUSE_ALWS && idle) {
1437 /* TODO conn_backend_get should not check the
1438 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001439 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001440 }
Olivier Houchard566df302020-03-06 18:18:56 +01001441 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001442
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001443 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001444 DBG_TRACE_STATE("reuse connection from idle/safe", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Olivier Houchard566df302020-03-06 18:18:56 +01001445 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001446 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001447 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001448 }
1449
Willy Tarreaub0821862019-07-18 19:26:11 +02001450
1451 /* here reuse might have been set above, indicating srv_conn finally
1452 * is OK.
1453 */
Willy Tarreaub0821862019-07-18 19:26:11 +02001454
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001455 if (ha_used_fds > global.tune.pool_high_count && srv) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001456 struct connection *tokill_conn = NULL;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001457 struct conn_hash_node *conn_node = NULL;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001458 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001459
1460 /* We can't reuse a connection, and e have more FDs than deemd
1461 * acceptable, attempt to kill an idling connection
1462 */
1463 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001464 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001465 node = ebmb_first(&srv->per_thr[tid].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001466 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001467 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1468 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001469 ebmb_delete(node);
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001470 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1471
1472 /* Release the idle lock before calling mux->destroy.
1473 * It will in turn call srv_release_conn through
1474 * conn_free which also uses it.
1475 */
Olivier Houchard88698d92019-04-16 19:07:22 +02001476 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001477 }
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001478 else {
1479 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1480 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001481
Olivier Houchard88698d92019-04-16 19:07:22 +02001482 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001483 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001484 int i;
1485
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001486 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001487 // just silence stupid gcc which reports an absurd
1488 // out-of-bounds warning for <i> which is always
1489 // exactly zero without threads, but it seems to
1490 // see it possibly larger.
1491 ALREADY_CHECKED(i);
1492
Willy Tarreau9b9f8472021-03-26 20:52:10 +01001493 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1494 continue;
1495
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001496 node = ebmb_first(&srv->per_thr[i].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001497 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001498 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1499 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001500 ebmb_delete(node);
1501 }
1502
1503 if (!tokill_conn) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001504 node = ebmb_first(&srv->per_thr[i].safe_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001505 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001506 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1507 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001508 ebmb_delete(node);
1509 }
1510 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001511 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001512
Olivier Houchard88698d92019-04-16 19:07:22 +02001513 if (tokill_conn) {
1514 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1515
Willy Tarreau2b718102021-04-21 07:32:39 +02001516 MT_LIST_APPEND(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001517 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001518 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001519 break;
1520 }
1521 }
1522 }
1523
1524 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001525
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001526 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001527 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001528 int avail = srv_conn->mux->avail_streams(srv_conn);
1529
1530 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001531 /* No more streams available, remove it from the list */
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001532 conn_delete_from_tree(&srv_conn->hash_node->node);
Olivier Houchard2442f682018-12-01 17:03:38 +01001533 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001534
1535 if (avail >= 1) {
Christopher Faulet95a61e82021-12-22 14:22:03 +01001536 if (srv_conn->mux->attach(srv_conn, s->csb, s->sess) == -1) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001537 srv_conn = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001538 if (cs_reset_endp(s->csb) < 0)
1539 return SF_ERR_INTERNAL;
Christopher Faulet13a35e52021-12-20 15:34:16 +01001540 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001541 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001542 else
1543 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001544 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001545 /* otherwise srv_conn is left intact */
1546 }
1547 else
1548 srv_conn = NULL;
1549
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001550skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001551 /* no reuse or failed to reuse the connection above, pick a new one */
1552 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001553 srv_conn = conn_new(s->target);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001554 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001555 DBG_TRACE_STATE("alloc new be connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001556 srv_conn->owner = s->sess;
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001557
1558 /* connection will be attached to the session if
1559 * http-reuse mode is never or it is not targeted to a
1560 * server */
1561 if (reuse_mode == PR_O_REUSE_NEVR || !srv)
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001562 conn_set_private(srv_conn);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001563
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001564 /* assign bind_addr to srv_conn */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001565 srv_conn->src = bind_addr;
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001566 bind_addr = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001567
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001568 if (!sockaddr_alloc(&srv_conn->dst, 0, 0)) {
1569 conn_free(srv_conn);
1570 return SF_ERR_RESOURCE;
1571 }
Amaury Denoyelleaee4fdb2021-10-20 15:22:20 +02001572
1573 srv_conn->hash_node->hash = hash;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001574 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001575 }
1576
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001577 /* if bind_addr is non NULL free it */
1578 sockaddr_free(&bind_addr);
1579
1580 /* srv_conn is still NULL only on allocation failure */
1581 if (!srv_conn)
1582 return SF_ERR_RESOURCE;
1583
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001584 /* copy the target address into the connection */
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001585 *srv_conn->dst = *s->csb->dst;
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001586
1587 /* Copy network namespace from client connection */
1588 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1589
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001590 if (!srv_conn->xprt) {
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001591 /* set the correct protocol on the output conn-stream */
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001592 if (srv) {
Willy Tarreau14e7f292021-10-27 17:41:07 +02001593 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 +01001594 conn_free(srv_conn);
1595 return SF_ERR_INTERNAL;
1596 }
1597 } else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1598 int ret;
1599
Willy Tarreauff605db2013-12-20 11:09:51 +01001600 /* proxies exclusively run on raw_sock right now */
Willy Tarreau14e7f292021-10-27 17:41:07 +02001601 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 +01001602 if (ret < 0 || !(srv_conn->ctrl)) {
Olivier Houchardc0caac22020-03-20 14:26:32 +01001603 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001604 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001605 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001606 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001607 else {
1608 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001609 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001610 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001611
Christopher Faulet070b91b2022-03-31 19:27:18 +02001612 if (cs_attach_mux(s->csb, NULL, srv_conn) < 0) {
1613 conn_free(srv_conn);
1614 return SF_ERR_INTERNAL; /* how did we get there ? */
1615 }
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001616 srv_conn->ctx = s->csb;
1617
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001618#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001619 if (!srv ||
Christopher Fauletb4de4202020-07-30 09:10:36 +02001620 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001621 srv->mux_proto || !IS_HTX_STRM(s)))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001622#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001623 init_mux = 1;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001624
Willy Tarreauff605db2013-12-20 11:09:51 +01001625 /* process the case where the server requires the PROXY protocol to be sent */
1626 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001627
Willy Tarreau7b004922015-08-04 19:34:21 +02001628 if (srv && srv->pp_opts) {
Alexander Liu2a54bb72019-05-22 19:44:48 +08001629 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001630 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001631 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001632
Alexander Liu2a54bb72019-05-22 19:44:48 +08001633 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1634 srv_conn->send_proxy_ofs = 1;
1635 srv_conn->flags |= CO_FL_SOCKS4;
1636 }
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001637
1638#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1639 /* if websocket stream, try to update connection ALPN. */
1640 if (unlikely(s->flags & SF_WEBSOCKET) &&
1641 srv && srv->use_ssl && srv->ssl_ctx.alpn_str) {
1642 char *alpn = "";
1643 int force = 0;
1644
1645 switch (srv->ws) {
1646 case SRV_WS_AUTO:
1647 alpn = "\x08http/1.1";
1648 force = 0;
1649 break;
1650 case SRV_WS_H1:
1651 alpn = "\x08http/1.1";
1652 force = 1;
1653 break;
1654 case SRV_WS_H2:
1655 alpn = "\x02h2";
1656 force = 1;
1657 break;
1658 }
1659
1660 if (!conn_update_alpn(srv_conn, ist(alpn), force))
Christopher Faulet62e75742022-03-31 09:16:34 +02001661 DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001662 }
1663#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001664 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001665 else {
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001666 s->flags |= SF_SRV_REUSED;
1667
Amaury Denoyelled7faa3d2021-03-05 15:27:41 +01001668 /* Currently there seems to be no known cases of xprt ready
1669 * without the mux installed here.
1670 */
1671 BUG_ON(!srv_conn->mux);
1672
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001673 if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY))
1674 s->flags |= SF_SRV_REUSED_ANTICIPATED;
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001675 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001676
William Lallemandb7ff6a32012-03-02 14:35:21 +01001677 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001678 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Christopher Fauletd1391382022-03-30 16:26:39 +02001679 s->flags |= SF_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001680
Willy Tarreau14f8e862012-08-30 22:23:13 +02001681 /* disable lingering */
1682 if (s->be->options & PR_O_TCP_NOLING)
Christopher Faulet8abe7122022-03-30 15:10:18 +02001683 s->csb->flags |= CS_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001684
Willy Tarreauf1573842018-12-14 11:35:36 +01001685 if (s->flags & SF_SRV_REUSED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001686 _HA_ATOMIC_INC(&s->be->be_counters.reuse);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001687 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001688 _HA_ATOMIC_INC(&srv->counters.reuse);
Willy Tarreauf1573842018-12-14 11:35:36 +01001689 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001690 _HA_ATOMIC_INC(&s->be->be_counters.connect);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001691 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001692 _HA_ATOMIC_INC(&srv->counters.connect);
Willy Tarreauf1573842018-12-14 11:35:36 +01001693 }
1694
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001695 err = do_connect_server(s, srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001696 if (err != SF_ERR_NONE)
1697 return err;
1698
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001699#ifdef USE_OPENSSL
Amaury Denoyelle655dec82021-06-01 17:04:10 +02001700 if (!(s->flags & SF_SRV_REUSED)) {
1701 if (smp_make_safe(sni_smp))
1702 ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area);
1703 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001704#endif /* USE_OPENSSL */
1705
Willy Tarreaua3b17562020-07-31 08:39:31 +02001706 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1707 * if so, add our handshake pseudo-XPRT now.
1708 */
1709 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1710 if (xprt_add_hs(srv_conn) < 0) {
1711 conn_full_close(srv_conn);
1712 return SF_ERR_INTERNAL;
1713 }
1714 }
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001715 conn_xprt_start(srv_conn);
Willy Tarreaua3b17562020-07-31 08:39:31 +02001716
Olivier Houchard5cd62172019-01-04 15:52:26 +01001717 /* We have to defer the mux initialization until after si_connect()
1718 * has been called, as we need the xprt to have been properly
1719 * initialized, or any attempt to recv during the mux init may
1720 * fail, and flag the connection as CO_FL_ERROR.
1721 */
1722 if (init_mux) {
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001723 const struct mux_ops *alt_mux =
1724 likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv);
Christopher Faulet95a61e82021-12-22 14:22:03 +01001725 if (conn_install_mux_be(srv_conn, s->csb, s->sess, alt_mux) < 0) {
Olivier Houchard74931142019-01-29 19:11:16 +01001726 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001727 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001728 }
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001729 if (IS_HTX_STRM(s)) {
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001730 /* If we're doing http-reuse always, and the connection
1731 * is not private with available streams (an http2
1732 * connection), add it to the available list, so that
1733 * others can use it right away. If the connection is
1734 * private or we're doing http-reuse safe and the mux
1735 * protocol supports multiplexing, add it in the
1736 * session server list.
1737 */
1738 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1739 !(srv_conn->flags & CO_FL_PRIVATE) &&
1740 srv_conn->mux->avail_streams(srv_conn) > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001741 ebmb_insert(&srv->per_thr[tid].avail_conns, &srv_conn->hash_node->node, sizeof(srv_conn->hash_node->hash));
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001742 }
1743 else if (srv_conn->flags & CO_FL_PRIVATE ||
1744 (reuse_mode == PR_O_REUSE_SAFE &&
1745 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1746 /* If it fail now, the same will be done in mux->detach() callback */
1747 session_add_conn(s->sess, srv_conn, srv_conn->target);
1748 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001749 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001750 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001751
Willy Tarreaub1310492021-08-30 09:35:18 +02001752#if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001753
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001754 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001755 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001756 /* Only attempt to use early data if either the client sent
1757 * early data, so that we know it can handle a 425, or if
1758 * we are allwoed to retry requests on early data failure, and
1759 * it's our first try
1760 */
1761 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
Christopher Faulet731c8e62022-03-29 16:08:44 +02001762 ((s->be->retry_type & PR_RE_EARLY_ERROR) && !s->conn_retries)) &&
Christopher Faulet908628c2022-03-25 16:43:49 +01001763 !channel_is_empty(cs_oc(s->csb)) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001764 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001765 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001766#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001767
Willy Tarreau14f8e862012-08-30 22:23:13 +02001768 /* set connect timeout */
Christopher Fauletae024ce2022-03-29 19:02:31 +02001769 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001770
Willy Tarreau827aee92011-03-10 16:55:02 +01001771 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001772 int count;
1773
Willy Tarreaue7dff022015-04-03 01:14:29 +02001774 s->flags |= SF_CURR_SESS;
Willy Tarreau1db42732021-04-06 11:44:07 +02001775 count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001776 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau59b0fec2021-02-17 16:01:37 +01001777 if (s->be->lbprm.server_take_conn)
Willy Tarreau5941ef02021-06-18 18:29:25 +02001778 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001779 }
1780
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001781 /* Now handle synchronously connected sockets. We know the conn-stream
Christopher Faulet62e75742022-03-31 09:16:34 +02001782 * is at least in state CS_ST_CON. These ones typically are UNIX
Christopher Fauletaf642df2022-03-30 10:06:11 +02001783 * sockets, socket pairs, andoccasionally TCP connections on the
Willy Tarreauada4c582020-03-04 16:42:03 +01001784 * loopback on a heavily loaded system.
1785 */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02001786 if (srv_conn->flags & CO_FL_ERROR)
1787 s->csb->endp->flags |= CS_EP_ERROR;
Willy Tarreauada4c582020-03-04 16:42:03 +01001788
1789 /* If we had early data, and the handshake ended, then
1790 * we can remove the flag, and attempt to wake the task up,
1791 * in the event there's an analyser waiting for the end of
1792 * the handshake.
1793 */
1794 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
Christopher Faulete9e48202022-03-22 18:13:29 +01001795 s->csb->endp->flags &= ~CS_EP_WAIT_FOR_HS;
Willy Tarreauada4c582020-03-04 16:42:03 +01001796
Christopher Faulet62e75742022-03-31 09:16:34 +02001797 if (!cs_state_in(s->csb->state, CS_SB_EST|CS_SB_DIS|CS_SB_CLO) &&
Willy Tarreauada4c582020-03-04 16:42:03 +01001798 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
Christopher Fauletae024ce2022-03-29 19:02:31 +02001799 s->conn_exp = TICK_ETERNITY;
Christopher Faulet908628c2022-03-25 16:43:49 +01001800 cs_oc(s->csb)->flags |= CF_WRITE_NULL;
Christopher Faulet62e75742022-03-31 09:16:34 +02001801 if (s->csb->state == CS_ST_CON)
1802 s->csb->state = CS_ST_RDY;
Willy Tarreauada4c582020-03-04 16:42:03 +01001803 }
1804
1805 /* Report EOI on the channel if it was reached from the mux point of
1806 * view.
1807 *
1808 * Note: This test is only required because si_cs_process is also the SI
1809 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1810 * care of it.
1811 */
Christopher Faulet908628c2022-03-25 16:43:49 +01001812 if ((s->csb->endp->flags & CS_EP_EOI) && !(cs_ic(s->csb)->flags & CF_EOI))
1813 cs_ic(s->csb)->flags |= (CF_EOI|CF_READ_PARTIAL);
Willy Tarreauada4c582020-03-04 16:42:03 +01001814
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001815 /* catch all sync connect while the mux is not already installed */
1816 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1817 if (conn_create_mux(srv_conn) < 0) {
1818 conn_full_close(srv_conn);
1819 return SF_ERR_INTERNAL;
1820 }
1821 }
1822
Willy Tarreaue7dff022015-04-03 01:14:29 +02001823 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001824}
1825
1826
Willy Tarreaubaaee002006-06-26 02:48:02 +02001827/* This function performs the "redispatch" part of a connection attempt. It
1828 * will assign a server if required, queue the connection if required, and
1829 * handle errors that might arise at this level. It can change the server
1830 * state. It will return 1 if it encounters an error, switches the server
1831 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1832 * that the connection is ready to use.
1833 */
1834
Willy Tarreau87b09662015-04-03 00:22:06 +02001835int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001836{
Willy Tarreau827aee92011-03-10 16:55:02 +01001837 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001838 int conn_err;
1839
1840 /* We know that we don't have any connection pending, so we will
1841 * try to get a new one, and wait in this state if it's queued
1842 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001843 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001844 conn_err = assign_server_and_queue(s);
1845 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001846
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 switch (conn_err) {
1848 case SRV_STATUS_OK:
1849 break;
1850
Willy Tarreau7c669d72008-06-20 15:04:11 +02001851 case SRV_STATUS_FULL:
1852 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1853 * and we can redispatch to another server, or it is not and we return
1854 * 503. This only makes sense in DIRECT mode however, because normal LB
1855 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001856 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001857 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001858 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001859 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001860 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001861 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001862 sockaddr_free(&s->csb->dst);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001863 goto redispatch;
1864 }
1865
Christopher Faulet50264b42022-03-30 19:39:30 +02001866 if (!s->conn_err_type) {
1867 s->conn_err_type = STRM_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001868 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001869
Willy Tarreau4781b152021-04-06 13:53:36 +02001870 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1871 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001872 return 1;
1873
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001875 /* note: it is guaranteed that srv == NULL here */
Christopher Faulet50264b42022-03-30 19:39:30 +02001876 if (!s->conn_err_type) {
1877 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001878 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001879
Willy Tarreau4781b152021-04-06 13:53:36 +02001880 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001881 return 1;
1882
1883 case SRV_STATUS_QUEUED:
Christopher Fauletae024ce2022-03-29 19:02:31 +02001884 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.queue);
Christopher Faulet62e75742022-03-31 09:16:34 +02001885 s->csb->state = CS_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001886 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001887 return 1;
1888
Willy Tarreaubaaee002006-06-26 02:48:02 +02001889 case SRV_STATUS_INTERNAL:
1890 default:
Christopher Faulet50264b42022-03-30 19:39:30 +02001891 if (!s->conn_err_type) {
1892 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001893 }
1894
Willy Tarreau827aee92011-03-10 16:55:02 +01001895 if (srv)
1896 srv_inc_sess_ctr(srv);
1897 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001898 srv_set_sess_last(srv);
1899 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001900 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1901 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001902
Willy Tarreau87b09662015-04-03 00:22:06 +02001903 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001904 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001905 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001906 return 1;
1907 }
1908 /* if we get here, it's because we got SRV_STATUS_OK, which also
1909 * means that the connection has not been queued.
1910 */
1911 return 0;
1912}
1913
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001914/* Check if the connection request is in such a state that it can be aborted. */
1915static int back_may_abort_req(struct channel *req, struct stream *s)
1916{
1917 return ((req->flags & (CF_READ_ERROR)) ||
1918 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1919 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1920}
1921
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001922/* Update back conn-stream status for input states CS_ST_ASS, CS_ST_QUE,
Christopher Faulet62e75742022-03-31 09:16:34 +02001923 * CS_ST_TAR. Other input states are simply ignored.
1924 * Possible output states are CS_ST_CLO, CS_ST_TAR, CS_ST_ASS, CS_ST_REQ, CS_ST_CON
1925 * and CS_ST_EST. Flags must have previously been updated for timeouts and other
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001926 * conditions.
1927 */
1928void back_try_conn_req(struct stream *s)
1929{
1930 struct server *srv = objt_server(s->target);
Christopher Faulet908628c2022-03-25 16:43:49 +01001931 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001932 struct channel *req = &s->req;
1933
Christopher Faulet62e75742022-03-31 09:16:34 +02001934 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001935
Christopher Faulet62e75742022-03-31 09:16:34 +02001936 if (cs->state == CS_ST_ASS) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001937 /* Server assigned to connection request, we have to try to connect now */
1938 int conn_err;
1939
1940 /* Before we try to initiate the connection, see if the
1941 * request may be aborted instead.
1942 */
1943 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02001944 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02001945 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 +01001946 goto abort_connection;
1947 }
1948
1949 conn_err = connect_server(s);
1950 srv = objt_server(s->target);
1951
1952 if (conn_err == SF_ERR_NONE) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001953 /* state = CS_ST_CON or CS_ST_EST now */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001954 if (srv)
1955 srv_inc_sess_ctr(srv);
1956 if (srv)
1957 srv_set_sess_last(srv);
Christopher Faulet62e75742022-03-31 09:16:34 +02001958 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001959 goto end;
1960 }
1961
1962 /* We have received a synchronous error. We might have to
1963 * abort, retry immediately or redispatch.
1964 */
1965 if (conn_err == SF_ERR_INTERNAL) {
Christopher Faulet50264b42022-03-30 19:39:30 +02001966 if (!s->conn_err_type) {
1967 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001968 }
1969
1970 if (srv)
1971 srv_inc_sess_ctr(srv);
1972 if (srv)
1973 srv_set_sess_last(srv);
1974 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001975 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1976 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001977
1978 /* release other streams waiting for this server */
1979 sess_change_server(s, NULL);
1980 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001981 process_srv_queue(srv);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001982
1983 /* Failed and not retryable. */
Christopher Fauletda098e62022-03-31 17:44:45 +02001984 cs_shutr(cs);
1985 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001986 req->flags |= CF_WRITE_ERROR;
1987
1988 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1989
1990 /* we may need to know the position in the queue for logging */
1991 pendconn_cond_unlink(s->pend_pos);
1992
1993 /* no stream was ever accounted for this server */
Christopher Faulet62e75742022-03-31 09:16:34 +02001994 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001995 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02001996 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02001997 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 +01001998 goto end;
1999 }
2000
2001 /* We are facing a retryable error, but we don't want to run a
2002 * turn-around now, as the problem is likely a source port
2003 * allocation problem, so we want to retry now.
2004 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002005 cs->state = CS_ST_CER;
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002006 cs->endp->flags &= ~CS_EP_ERROR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002007 back_handle_st_cer(s);
2008
Christopher Faulet62e75742022-03-31 09:16:34 +02002009 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
2010 /* now cs->state is one of CS_ST_CLO, CS_ST_TAR, CS_ST_ASS, CS_ST_REQ */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002011 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002012 else if (cs->state == CS_ST_QUE) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002013 /* connection request was queued, check for any update */
2014 if (!pendconn_dequeue(s)) {
2015 /* The connection is not in the queue anymore. Either
2016 * we have a server connection slot available and we
2017 * go directly to the assigned state, or we need to
2018 * load-balance first and go to the INI state.
2019 */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002020 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002021 if (unlikely(!(s->flags & SF_ASSIGNED)))
Christopher Faulet62e75742022-03-31 09:16:34 +02002022 cs->state = CS_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002023 else {
2024 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Christopher Faulet62e75742022-03-31 09:16:34 +02002025 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002026 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002027 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002028 goto end;
2029 }
2030
2031 /* Connection request still in queue... */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002032 if (s->flags & SF_CONN_EXP) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002033 /* ... and timeout expired */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002034 s->conn_exp = TICK_ETERNITY;
2035 s->flags &= ~SF_CONN_EXP;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002036 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2037
2038 /* we may need to know the position in the queue for logging */
2039 pendconn_cond_unlink(s->pend_pos);
2040
2041 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002042 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2043 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Christopher Fauletda098e62022-03-31 17:44:45 +02002044 cs_shutr(cs);
2045 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002046 req->flags |= CF_WRITE_TIMEOUT;
Christopher Faulet50264b42022-03-30 19:39:30 +02002047 if (!s->conn_err_type)
2048 s->conn_err_type = STRM_ET_QUEUE_TO;
Christopher Faulet62e75742022-03-31 09:16:34 +02002049 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002050 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002051 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002052 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002053 goto end;
2054 }
2055
2056 /* Connection remains in queue, check if we have to abort it */
2057 if (back_may_abort_req(req, s)) {
2058 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2059
2060 /* we may need to know the position in the queue for logging */
2061 pendconn_cond_unlink(s->pend_pos);
2062
Christopher Faulet50264b42022-03-30 19:39:30 +02002063 s->conn_err_type |= STRM_ET_QUEUE_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002064 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 +01002065 goto abort_connection;
2066 }
2067
2068 /* Nothing changed */
2069 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002070 else if (cs->state == CS_ST_TAR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002071 /* Connection request might be aborted */
2072 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002073 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002074 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 +01002075 goto abort_connection;
2076 }
2077
Christopher Fauletae024ce2022-03-29 19:02:31 +02002078 if (!(s->flags & SF_CONN_EXP))
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002079 return; /* still in turn-around */
2080
Christopher Fauletae024ce2022-03-29 19:02:31 +02002081 s->flags &= ~SF_CONN_EXP;
2082 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002083
2084 /* we keep trying on the same server as long as the stream is
2085 * marked "assigned".
2086 * FIXME: Should we force a redispatch attempt when the server is down ?
2087 */
2088 if (s->flags & SF_ASSIGNED)
Christopher Faulet62e75742022-03-31 09:16:34 +02002089 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002090 else
Christopher Faulet62e75742022-03-31 09:16:34 +02002091 cs->state = CS_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002092
Christopher Faulet62e75742022-03-31 09:16:34 +02002093 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002094 }
2095
2096 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002097 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002098 return;
2099
2100abort_connection:
2101 /* give up */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002102 s->conn_exp = TICK_ETERNITY;
2103 s->flags &= ~SF_CONN_EXP;
Christopher Fauletda098e62022-03-31 17:44:45 +02002104 cs_shutr(cs);
2105 cs_shutw(cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002106 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002107 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002108 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002109 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 +01002110 return;
2111}
2112
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002113/* This function initiates a server connection request on a conn-stream
Christopher Faulet62e75742022-03-31 09:16:34 +02002114 * already in CS_ST_REQ state. Upon success, the state goes to CS_ST_ASS for
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002115 * a real connection to a server, indicating that a server has been assigned,
Christopher Faulet62e75742022-03-31 09:16:34 +02002116 * or CS_ST_EST for a successful connection to an applet. It may also return
2117 * CS_ST_QUE, or CS_ST_CLO upon error.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002118 */
2119void back_handle_st_req(struct stream *s)
2120{
Christopher Faulet908628c2022-03-25 16:43:49 +01002121 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002122
Christopher Faulet62e75742022-03-31 09:16:34 +02002123 if (cs->state != CS_ST_REQ)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002124 return;
2125
Christopher Faulet62e75742022-03-31 09:16:34 +02002126 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002127
2128 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
2129 /* the applet directly goes to the EST state */
Christopher Faulet95a61e82021-12-22 14:22:03 +01002130 struct appctx *appctx = cs_appctx(s->csb);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002131
2132 if (!appctx || appctx->applet != __objt_applet(s->target))
Christopher Faulet37046632022-04-01 11:36:58 +02002133 appctx = cs_register_applet(cs, objt_applet(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002134
2135 if (!appctx) {
2136 /* No more memory, let's immediately abort. Force the
2137 * error code to ignore the ERR_LOCAL which is not a
2138 * real error.
2139 */
2140 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
2141
Christopher Fauletda098e62022-03-31 17:44:45 +02002142 cs_shutr(cs);
2143 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002144 s->req.flags |= CF_WRITE_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002145 s->conn_err_type = STRM_ET_CONN_RES;
Christopher Faulet62e75742022-03-31 09:16:34 +02002146 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002147 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002148 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002149 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 +01002150 goto end;
2151 }
2152
2153 if (tv_iszero(&s->logs.tv_request))
2154 s->logs.tv_request = now;
2155 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Christopher Faulet62e75742022-03-31 09:16:34 +02002156 cs->state = CS_ST_EST;
Christopher Faulet50264b42022-03-30 19:39:30 +02002157 s->conn_err_type = STRM_ET_NONE;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002158 be_set_sess_last(s->be);
2159
Christopher Faulet62e75742022-03-31 09:16:34 +02002160 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002161 /* let back_establish() finish the job */
2162 goto end;
2163 }
2164
2165 /* Try to assign a server */
2166 if (srv_redispatch_connect(s) != 0) {
2167 /* We did not get a server. Either we queued the
2168 * connection request, or we encountered an error.
2169 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002170 if (cs->state == CS_ST_QUE) {
2171 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002172 goto end;
2173 }
2174
2175 /* we did not get any server, let's check the cause */
Christopher Fauletda098e62022-03-31 17:44:45 +02002176 cs_shutr(cs);
2177 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002178 s->req.flags |= CF_WRITE_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002179 if (!s->conn_err_type)
2180 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet62e75742022-03-31 09:16:34 +02002181 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002182 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002183 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002184 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 +01002185 goto end;
2186 }
2187
2188 /* The server is assigned */
2189 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Christopher Faulet62e75742022-03-31 09:16:34 +02002190 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002191 be_set_sess_last(s->be);
Christopher Faulet62e75742022-03-31 09:16:34 +02002192 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 +01002193
2194 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002195 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002196}
2197
Christopher Faulet62e75742022-03-31 09:16:34 +02002198/* This function is called with (cs->state == CS_ST_CON) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002199 * connection was attempted and that the file descriptor is already allocated.
2200 * We must check for timeout, error and abort. Possible output states are
Christopher Faulet62e75742022-03-31 09:16:34 +02002201 * CS_ST_CER (error), CS_ST_DIS (abort), and CS_ST_CON (no change). This only
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002202 * works with connection-based streams. We know that there were no I/O event
2203 * when reaching this function. Timeouts and errors are *not* cleared.
2204 */
2205void back_handle_st_con(struct stream *s)
2206{
Christopher Faulet908628c2022-03-25 16:43:49 +01002207 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002208 struct channel *req = &s->req;
2209 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002210
Christopher Faulet62e75742022-03-31 09:16:34 +02002211 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002212
2213 /* the client might want to abort */
2214 if ((rep->flags & CF_SHUTW) ||
2215 ((req->flags & CF_SHUTW_NOW) &&
2216 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
Christopher Faulet8abe7122022-03-30 15:10:18 +02002217 cs->flags |= CS_FL_NOLINGER;
Christopher Fauletda098e62022-03-31 17:44:45 +02002218 cs_shutw(cs);
Christopher Faulet50264b42022-03-30 19:39:30 +02002219 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002220 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002221 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002222 /* Note: state = CS_ST_DIS now */
2223 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 +01002224 goto end;
2225 }
2226
Willy Tarreau062df2c2020-01-10 06:17:03 +01002227 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002228 /* retryable error ? */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002229 if ((s->flags & SF_CONN_EXP) || (cs->endp->flags & CS_EP_ERROR)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002230 if (!s->conn_err_type) {
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002231 if (cs->endp->flags & CS_EP_ERROR)
Christopher Faulet50264b42022-03-30 19:39:30 +02002232 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002233 else
Christopher Faulet50264b42022-03-30 19:39:30 +02002234 s->conn_err_type = STRM_ET_CONN_TO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002235 }
2236
Christopher Faulet62e75742022-03-31 09:16:34 +02002237 cs->state = CS_ST_CER;
2238 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 +01002239 }
2240
Willy Tarreau062df2c2020-01-10 06:17:03 +01002241 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002242 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002243}
2244
Christopher Faulet62e75742022-03-31 09:16:34 +02002245/* This function is called with (cs->state == CS_ST_CER) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002246 * previous connection attempt has failed and that the file descriptor
2247 * has already been released. Possible causes include asynchronous error
Christopher Faulet62e75742022-03-31 09:16:34 +02002248 * notification and time out. Possible output states are CS_ST_CLO when
2249 * retries are exhausted, CS_ST_TAR when a delay is wanted before a new
2250 * connection attempt, CS_ST_ASS when it's wise to retry on the same server,
2251 * and CS_ST_REQ when an immediate redispatch is wanted. The buffers are
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002252 * marked as in error state. Timeouts and errors are cleared before retrying.
2253 */
2254void back_handle_st_cer(struct stream *s)
2255{
Christopher Faulet908628c2022-03-25 16:43:49 +01002256 struct conn_stream *cs = s->csb;
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002257 int must_tar = (cs->endp->flags & CS_EP_ERROR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002258
Christopher Faulet62e75742022-03-31 09:16:34 +02002259 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002260
Christopher Fauletae024ce2022-03-29 19:02:31 +02002261 s->conn_exp = TICK_ETERNITY;
2262 s->flags &= ~SF_CONN_EXP;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002263
Christopher Faulet731c8e62022-03-29 16:08:44 +02002264 s->conn_retries++;
2265
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002266 /* we probably have to release last stream from the server */
2267 if (objt_server(s->target)) {
Christopher Faulet908628c2022-03-25 16:43:49 +01002268 struct connection *conn = cs_conn(cs);
Christopher Faulet0256da12021-12-15 09:50:17 +01002269
Willy Tarreau88bc8002021-12-06 07:01:02 +00002270 health_adjust(__objt_server(s->target), HANA_STATUS_L4_ERR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002271
2272 if (s->flags & SF_CURR_SESS) {
2273 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002274 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002275 }
2276
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002277 if ((cs->endp->flags & CS_EP_ERROR) &&
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002278 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2279 /* We tried to connect to a server which is configured
2280 * with "verify required" and which doesn't have the
2281 * "verifyhost" directive. The server presented a wrong
2282 * certificate (a certificate for an unexpected name),
2283 * which implies that we have used SNI in the handshake,
2284 * and that the server doesn't have the associated cert
2285 * and presented a default one.
2286 *
2287 * This is a serious enough issue not to retry. It's
2288 * especially important because this wrong name might
2289 * either be the result of a configuration error, and
2290 * retrying will only hammer the server, or is caused
2291 * by the use of a wrong SNI value, most likely
2292 * provided by the client and we don't want to let the
2293 * client provoke retries.
2294 */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002295 s->conn_retries = s->be->conn_retries;
Christopher Faulet62e75742022-03-31 09:16:34 +02002296 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 +01002297 }
2298 }
2299
2300 /* ensure that we have enough retries left */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002301 if (s->conn_retries >= s->be->conn_retries || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002302 if (!s->conn_err_type) {
2303 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002304 }
2305
2306 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002307 _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns);
2308 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002309 sess_change_server(s, NULL);
2310 if (may_dequeue_tasks(objt_server(s->target), s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002311 process_srv_queue(objt_server(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002312
Christopher Fauletda098e62022-03-31 17:44:45 +02002313 /* shutw is enough to stop a connecting socket */
2314 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002315 s->req.flags |= CF_WRITE_ERROR;
2316 s->res.flags |= CF_READ_ERROR;
2317
Christopher Faulet62e75742022-03-31 09:16:34 +02002318 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002319 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002320 s->srv_error(s, cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002321
Christopher Faulet62e75742022-03-31 09:16:34 +02002322 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 +01002323 goto end;
2324 }
2325
Christopher Fauletf822dec2021-06-01 14:06:05 +02002326 /* At this stage, we will trigger a connection retry (with or without
Christopher Faulete00ad352021-12-16 14:44:31 +01002327 * redispatch). Thus we must reset the SI endpoint on the server side
Christopher Fauletf822dec2021-06-01 14:06:05 +02002328 * an close the attached connection. It is especially important to do it
2329 * now if the retry is not immediately performed, to be sure to release
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002330 * resources as soon as possible and to not catch errors from the lower
Christopher Fauletf822dec2021-06-01 14:06:05 +02002331 * layers in an unexpected state (i.e < ST_CONN).
2332 *
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002333 * Note: the conn-stream will be switched to ST_REQ, ST_ASS or
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002334 * ST_TAR and CS_EP_ERROR and SF_CONN_EXP flags will be unset.
Christopher Fauletf822dec2021-06-01 14:06:05 +02002335 */
Christopher Faulet908628c2022-03-25 16:43:49 +01002336 if (cs_reset_endp(cs) < 0) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002337 if (!s->conn_err_type)
2338 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002339
2340 if (objt_server(s->target))
2341 _HA_ATOMIC_INC(&objt_server(s->target)->counters.internal_errors);
2342 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
2343 sess_change_server(s, NULL);
2344 if (may_dequeue_tasks(objt_server(s->target), s->be))
2345 process_srv_queue(objt_server(s->target));
2346
Christopher Fauletda098e62022-03-31 17:44:45 +02002347 /* shutw is enough to stop a connecting socket */
2348 cs_shutw(cs);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002349 s->req.flags |= CF_WRITE_ERROR;
2350 s->res.flags |= CF_READ_ERROR;
2351
Christopher Faulet62e75742022-03-31 09:16:34 +02002352 cs->state = CS_ST_CLO;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002353 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002354 s->srv_error(s, cs);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002355
Christopher Faulet62e75742022-03-31 09:16:34 +02002356 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 +01002357 goto end;
2358 }
Christopher Fauletf822dec2021-06-01 14:06:05 +02002359
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002360 stream_choose_redispatch(s);
2361
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002362 if (must_tar) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002363 /* The error was an asynchronous connection error, and we will
2364 * likely have to retry connecting to the same server, most
2365 * likely leading to the same result. To avoid this, we wait
2366 * MIN(one second, connect timeout) before retrying. We don't
2367 * do it when the failure happened on a reused connection
2368 * though.
2369 */
2370
2371 int delay = 1000;
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002372 const int reused = (s->flags & SF_SRV_REUSED) &&
2373 !(s->flags & SF_SRV_REUSED_ANTICIPATED);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002374
2375 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2376 delay = s->be->timeout.connect;
2377
Christopher Faulet50264b42022-03-30 19:39:30 +02002378 if (!s->conn_err_type)
2379 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002380
2381 /* only wait when we're retrying on the same server */
Christopher Faulet62e75742022-03-31 09:16:34 +02002382 if ((cs->state == CS_ST_ASS ||
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002383 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002384 (s->be->srv_act <= 1)) && !reused) {
Christopher Faulet62e75742022-03-31 09:16:34 +02002385 cs->state = CS_ST_TAR;
Christopher Fauletae024ce2022-03-29 19:02:31 +02002386 s->conn_exp = tick_add(now_ms, MS_TO_TICKS(delay));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002387 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002388 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002389 }
2390
2391 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002392 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002393}
2394
Christopher Faulet62e75742022-03-31 09:16:34 +02002395/* This function is called with (cs->state == CS_ST_RDY) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002396 * connection was attempted, that the file descriptor is already allocated,
2397 * and that it has succeeded. We must still check for errors and aborts.
Christopher Faulet62e75742022-03-31 09:16:34 +02002398 * Possible output states are CS_ST_EST (established), CS_ST_CER (error),
2399 * and CS_ST_DIS (abort). This only works with connection-based streams.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002400 * Timeouts and errors are *not* cleared.
2401 */
2402void back_handle_st_rdy(struct stream *s)
2403{
Christopher Faulet908628c2022-03-25 16:43:49 +01002404 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002405 struct channel *req = &s->req;
2406 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002407
Christopher Faulet62e75742022-03-31 09:16:34 +02002408 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002409 /* We know the connection at least succeeded, though it could have
2410 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002411 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002412 * We need to take care of various situations here :
2413 * - everything might be OK. We have to switch to established.
2414 * - an I/O error might have been reported after a successful transfer,
2415 * which is not retryable and needs to be logged correctly, and needs
2416 * established as well
Christopher Faulet62e75742022-03-31 09:16:34 +02002417 * - CS_ST_CON implies !CF_WROTE_DATA but not conversely as we could
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002418 * have validated a connection with incoming data (e.g. TCP with a
2419 * banner protocol), or just a successful connect() probe.
2420 * - the client might have requested a connection abort, this needs to
2421 * be checked before we decide to retry anything.
2422 */
2423
2424 /* it's still possible to handle client aborts or connection retries
2425 * before any data were sent.
2426 */
2427 if (!(req->flags & CF_WROTE_DATA)) {
2428 /* client abort ? */
2429 if ((rep->flags & CF_SHUTW) ||
2430 ((req->flags & CF_SHUTW_NOW) &&
2431 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2432 /* give up */
Christopher Faulet8abe7122022-03-30 15:10:18 +02002433 cs->flags |= CS_FL_NOLINGER;
Christopher Fauletda098e62022-03-31 17:44:45 +02002434 cs_shutw(cs);
Christopher Faulet50264b42022-03-30 19:39:30 +02002435 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002436 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002437 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002438 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 +01002439 goto end;
2440 }
2441
2442 /* retryable error ? */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002443 if (cs->endp->flags & CS_EP_ERROR) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002444 if (!s->conn_err_type)
2445 s->conn_err_type = STRM_ET_CONN_ERR;
Christopher Faulet62e75742022-03-31 09:16:34 +02002446 cs->state = CS_ST_CER;
2447 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 +01002448 goto end;
2449 }
2450 }
2451
2452 /* data were sent and/or we had no error, back_establish() will
2453 * now take over.
2454 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002455 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Faulet50264b42022-03-30 19:39:30 +02002456 s->conn_err_type = STRM_ET_NONE;
Christopher Faulet62e75742022-03-31 09:16:34 +02002457 cs->state = CS_ST_EST;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002458
2459 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002460 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002461}
2462
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002463/* sends a log message when a backend goes down, and also sets last
2464 * change date.
2465 */
2466void set_backend_down(struct proxy *be)
2467{
2468 be->last_change = now.tv_sec;
Willy Tarreau4781b152021-04-06 13:53:36 +02002469 _HA_ATOMIC_INC(&be->down_trans);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002470
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002471 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002472 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002473 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2474 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002475}
2476
Willy Tarreau87b09662015-04-03 00:22:06 +02002477/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002478 * tries to extract an RDP cookie from the request buffer, and look for the
2479 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002480 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002481 * list. Nothing is performed if a server was already assigned.
2482 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002483int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002484{
2485 struct proxy *px = s->be;
2486 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002487 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002488 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002489 uint16_t port;
2490 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002491 char *p;
2492
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002493 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002494
Willy Tarreaue7dff022015-04-03 01:14:29 +02002495 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002496 goto no_cookie;
2497
Willy Tarreau37406352012-04-23 16:16:37 +02002498 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002499
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002500 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002501 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002502 goto no_cookie;
2503
Willy Tarreau04276f32017-01-06 17:41:29 +01002504 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2505 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2506 * server's IP address in network order, and "port" is the integer corresponding to the
2507 * server's port in network order. Comments please Emeric.
2508 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002509 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002510 if (*p != '.')
2511 goto no_cookie;
2512 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002513
2514 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002515 if (*p != '.')
2516 goto no_cookie;
2517
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002518 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002519 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002520 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002521 port == srv->svc_port &&
2522 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002523 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002524 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002525 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002526 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002527 break;
2528 }
2529 }
2530 srv = srv->next;
2531 }
2532
2533no_cookie:
2534 req->analysers &= ~an_bit;
2535 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002536 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002537 return 1;
2538}
2539
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002540int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002541 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002542 return px->down_time;
2543
2544 return now.tv_sec - px->last_change + px->down_time;
2545}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002546
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002547/*
2548 * This function returns a string containing the balancing
2549 * mode of the proxy in a format suitable for stats.
2550 */
2551
2552const char *backend_lb_algo_str(int algo) {
2553
2554 if (algo == BE_LB_ALGO_RR)
2555 return "roundrobin";
2556 else if (algo == BE_LB_ALGO_SRR)
2557 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002558 else if (algo == BE_LB_ALGO_FAS)
2559 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002560 else if (algo == BE_LB_ALGO_LC)
2561 return "leastconn";
2562 else if (algo == BE_LB_ALGO_SH)
2563 return "source";
2564 else if (algo == BE_LB_ALGO_UH)
2565 return "uri";
2566 else if (algo == BE_LB_ALGO_PH)
2567 return "url_param";
2568 else if (algo == BE_LB_ALGO_HH)
2569 return "hdr";
2570 else if (algo == BE_LB_ALGO_RCH)
2571 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002572 else if (algo == BE_LB_ALGO_NONE)
2573 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002574 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002575 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002576}
2577
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002578/* This function parses a "balance" statement in a backend section describing
2579 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002580 * returns -1, it will write an error message into the <err> buffer which will
2581 * automatically be allocated and must be passed as NULL. The trailing '\n'
2582 * will not be written. The function must be called with <args> pointing to the
2583 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002584 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002585int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002586{
2587 if (!*(args[0])) {
2588 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002589 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2590 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002591 return 0;
2592 }
2593
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002594 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002595 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2596 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002597 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002598 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002599 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2600 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2601 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002602 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002603 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2604 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2605 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002606 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002607 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2608 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2609 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002610 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002611 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2612 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002613 curproxy->lbprm.arg_opt1 = 2;
2614
2615 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2616 const char *beg;
2617 char *end;
2618
2619 beg = args[0] + 7;
2620 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2621
2622 if (*end != ')') {
2623 if (!*end)
2624 memprintf(err, "random : missing closing parenthesis.");
2625 else
2626 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2627 return -1;
2628 }
2629
2630 if (curproxy->lbprm.arg_opt1 < 1) {
2631 memprintf(err, "random : number of draws must be at least 1.");
2632 return -1;
2633 }
2634 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002635 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002636 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002637 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2638 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002639 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002640 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002641 int arg = 1;
2642
Willy Tarreau31682232007-11-29 15:38:04 +01002643 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2644 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002645 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002646 curproxy->lbprm.arg_opt2 = 0; // "len"
2647 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002648
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002649 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002650 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002651 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002652 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002653 return -1;
2654 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002655 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002656 arg += 2;
2657 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002658 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002659 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002660 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002661 return -1;
2662 }
2663 /* hint: we store the position of the ending '/' (depth+1) so
2664 * that we avoid a comparison while computing the hash.
2665 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002666 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002667 arg += 2;
2668 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002669 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002670 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002671 arg += 1;
2672 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002673 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002674 curproxy->lbprm.arg_opt1 |= 2;
2675 arg += 1;
2676 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002677 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002678 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 +02002679 return -1;
2680 }
2681 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002682 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002683 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002684 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002685 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002686 return -1;
2687 }
Willy Tarreau31682232007-11-29 15:38:04 +01002688 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2689 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002690
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002691 free(curproxy->lbprm.arg_str);
2692 curproxy->lbprm.arg_str = strdup(args[1]);
2693 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002694 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002695 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002696 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002697 return -1;
2698 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002699 }
Benoitaffb4812009-03-25 13:02:10 +01002700 }
2701 else if (!strncmp(args[0], "hdr(", 4)) {
2702 const char *beg, *end;
2703
2704 beg = args[0] + 4;
2705 end = strchr(beg, ')');
2706
2707 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002708 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002709 return -1;
2710 }
2711
2712 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2713 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2714
Willy Tarreau484ff072019-01-14 15:28:53 +01002715 free(curproxy->lbprm.arg_str);
2716 curproxy->lbprm.arg_len = end - beg;
2717 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002718 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002719
2720 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002721 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002722 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002723 return -1;
2724 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002725 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002726 }
Emeric Brun736aa232009-06-30 17:56:00 +02002727 }
2728 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2729 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2730 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2731
2732 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2733 const char *beg, *end;
2734
2735 beg = args[0] + 11;
2736 end = strchr(beg, ')');
2737
2738 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002739 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002740 return -1;
2741 }
2742
Willy Tarreau484ff072019-01-14 15:28:53 +01002743 free(curproxy->lbprm.arg_str);
2744 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2745 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002746 }
2747 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002748 free(curproxy->lbprm.arg_str);
2749 curproxy->lbprm.arg_str = strdup("mstshash");
2750 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002751 }
2752 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002753 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002754 return -1;
2755 }
Willy Tarreau01732802007-11-01 22:48:15 +01002756 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002757 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002758 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 +01002759 return -1;
2760 }
2761 return 0;
2762}
2763
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002764
2765/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002766/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002767/************************************************************************/
2768
Willy Tarreau34db1082012-04-19 17:16:54 +02002769/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002770 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002771 * undefined behaviour.
2772 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002773static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002774smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002775{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002776 struct proxy *px = args->data.prx;
2777
2778 if (px == NULL)
2779 return 0;
2780 if (px->cap & PR_CAP_DEF)
2781 px = smp->px;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002782
Willy Tarreau37406352012-04-23 16:16:37 +02002783 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002784 smp->data.type = SMP_T_SINT;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002785
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002786 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002787
2788 return 1;
2789}
2790
Willy Tarreau37406352012-04-23 16:16:37 +02002791/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002792 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002793 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2794 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002795 */
2796static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002797smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002798{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002799 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002800
Willy Tarreau37406352012-04-23 16:16:37 +02002801 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002802 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002803 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2804 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002805 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002806 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002807 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002808 return 1;
2809}
2810
Willy Tarreau34db1082012-04-19 17:16:54 +02002811/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002812 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002813 * undefined behaviour.
2814 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002815static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002816smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002817{
2818 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002819 struct proxy *px = args->data.prx;
2820
2821 if (px == NULL)
2822 return 0;
2823 if (px->cap & PR_CAP_DEF)
2824 px = smp->px;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002825
Willy Tarreau37406352012-04-23 16:16:37 +02002826 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002827 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002828 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002829
Christopher Faulet37a9e212021-10-12 18:48:05 +02002830 for (iterator = px->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002831 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002832 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002833
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002834 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002835 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002836 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002837 return 1;
2838 }
2839
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002840 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreaua0570452021-06-18 09:30:30 +02002841 + (iterator->maxqueue - iterator->queue.length);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002842 }
2843
2844 return 1;
2845}
2846
Willy Tarreaua5e37562011-12-16 17:06:15 +01002847/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002848static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002849smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002850{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002851 struct proxy *px = NULL;
2852
2853 if (smp->strm)
2854 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002855 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002856 px = __objt_check(smp->sess->origin)->proxy;
2857 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002858 return 0;
2859
Willy Tarreauf853c462012-04-23 18:53:56 +02002860 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002861 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002862 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002863 return 1;
2864}
2865
Marcin Deranekd2471c22016-12-12 14:08:05 +01002866/* set string to the name of the backend */
2867static int
2868smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2869{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002870 struct proxy *px = NULL;
2871
2872 if (smp->strm)
2873 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002874 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002875 px = __objt_check(smp->sess->origin)->proxy;
2876 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002877 return 0;
2878
Christopher Fauletd1b44642020-04-30 09:51:15 +02002879 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002880 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002881 return 0;
2882
2883 smp->data.type = SMP_T_STR;
2884 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002885 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002886
2887 return 1;
2888}
2889
Willy Tarreaua5e37562011-12-16 17:06:15 +01002890/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002891static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002892smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002893{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002894 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002895
Christopher Fauletd1b44642020-04-30 09:51:15 +02002896 if (smp->strm)
2897 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002898 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002899 srv = __objt_check(smp->sess->origin)->server;
2900 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002901 return 0;
2902
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002903 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002904 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002905
2906 return 1;
2907}
2908
vkill1dfd1652019-10-30 16:58:14 +08002909/* set string to the name of the server */
2910static int
2911smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2912{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002913 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002914
Christopher Fauletd1b44642020-04-30 09:51:15 +02002915 if (smp->strm)
2916 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002917 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002918 srv = __objt_check(smp->sess->origin)->server;
2919 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002920 return 0;
2921
Christopher Fauletd1b44642020-04-30 09:51:15 +02002922 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002923 if (!smp->data.u.str.area)
2924 return 0;
2925
2926 smp->data.type = SMP_T_STR;
2927 smp->data.u.str.data = strlen(smp->data.u.str.area);
2928
2929 return 1;
2930}
2931
Willy Tarreau34db1082012-04-19 17:16:54 +02002932/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002933 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002934 * undefined behaviour.
2935 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002936static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002937smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002938{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002939 struct proxy *px = args->data.prx;
2940
2941 if (px == NULL)
2942 return 0;
2943 if (px->cap & PR_CAP_DEF)
2944 px = smp->px;
2945
Willy Tarreau37406352012-04-23 16:16:37 +02002946 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002947 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002948 smp->data.u.sint = read_freq_ctr(&px->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002949 return 1;
2950}
2951
Willy Tarreau34db1082012-04-19 17:16:54 +02002952/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002953 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002954 * undefined behaviour.
2955 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002956static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002957smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002958{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002959 struct proxy *px = args->data.prx;
2960
2961 if (px == NULL)
2962 return 0;
2963 if (px->cap & PR_CAP_DEF)
2964 px = smp->px;
2965
Willy Tarreau37406352012-04-23 16:16:37 +02002966 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002967 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002968 smp->data.u.sint = px->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002969 return 1;
2970}
2971
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002972/* set temp integer to the number of available connections across available
2973 * servers on the backend.
2974 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2975 * undefined behaviour.
2976 */
2977static int
2978smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2979{
2980 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002981 struct proxy *px = args->data.prx;
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002982 unsigned int maxconn;
2983
Christopher Faulet37a9e212021-10-12 18:48:05 +02002984 if (px == NULL)
2985 return 0;
2986 if (px->cap & PR_CAP_DEF)
2987 px = smp->px;
2988
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002989 smp->flags = SMP_F_VOL_TEST;
2990 smp->data.type = SMP_T_SINT;
2991 smp->data.u.sint = 0;
2992
Christopher Faulet37a9e212021-10-12 18:48:05 +02002993 for (iterator = px->srv; iterator; iterator = iterator->next) {
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002994 if (iterator->cur_state == SRV_ST_STOPPED)
2995 continue;
2996
2997 px = iterator->proxy;
2998 if (!srv_currently_usable(iterator) ||
2999 ((iterator->flags & SRV_F_BACKUP) &&
3000 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
3001 continue;
3002
3003 if (iterator->maxconn == 0) {
3004 /* one active server is unlimited, return -1 */
3005 smp->data.u.sint = -1;
3006 return 1;
3007 }
3008
3009 maxconn = srv_dynamic_maxconn(iterator);
3010 if (maxconn > iterator->cur_sess)
3011 smp->data.u.sint += maxconn - iterator->cur_sess;
3012 }
3013
3014 return 1;
3015}
3016
Willy Tarreau34db1082012-04-19 17:16:54 +02003017/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003018 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003019 * undefined behaviour.
3020 */
Willy Tarreaua36af912009-10-10 12:02:45 +02003021static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003022smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003023{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003024 struct proxy *px = args->data.prx;
3025
3026 if (px == NULL)
3027 return 0;
3028 if (px->cap & PR_CAP_DEF)
3029 px = smp->px;
3030
Willy Tarreau37406352012-04-23 16:16:37 +02003031 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003032 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003033 smp->data.u.sint = px->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02003034 return 1;
3035}
3036
Willy Tarreaua5e37562011-12-16 17:06:15 +01003037/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02003038 * by the number of running servers and rounded up. If there is no running
3039 * server, we return twice the total, just as if we had half a running server.
3040 * This is more or less correct anyway, since we expect the last server to come
3041 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003042 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003043 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02003044 */
3045static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003046smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003047{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003048 struct proxy *px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02003049 int nbsrv;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003050
3051 if (px == NULL)
3052 return 0;
3053 if (px->cap & PR_CAP_DEF)
3054 px = smp->px;
Willy Tarreaua36af912009-10-10 12:02:45 +02003055
Willy Tarreau37406352012-04-23 16:16:37 +02003056 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003057 smp->data.type = SMP_T_SINT;
Willy Tarreaua36af912009-10-10 12:02:45 +02003058
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01003059 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02003060
3061 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003062 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02003063 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003064 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02003065
3066 return 1;
3067}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003068
Willy Tarreau34db1082012-04-19 17:16:54 +02003069/* set temp integer to the number of concurrent connections on the server in the backend.
3070 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3071 * undefined behaviour.
3072 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003073static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003074smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003075{
Willy Tarreauf853c462012-04-23 18:53:56 +02003076 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003077 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003078 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003079 return 1;
3080}
3081
Patrick Hemmer155e93e2018-06-14 18:01:35 -04003082/* set temp integer to the number of available connections on the server in the backend.
3083 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3084 * undefined behaviour.
3085 */
3086static int
3087smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3088{
3089 unsigned int maxconn;
3090
3091 smp->flags = SMP_F_VOL_TEST;
3092 smp->data.type = SMP_T_SINT;
3093
3094 if (args->data.srv->maxconn == 0) {
3095 /* one active server is unlimited, return -1 */
3096 smp->data.u.sint = -1;
3097 return 1;
3098 }
3099
3100 maxconn = srv_dynamic_maxconn(args->data.srv);
3101 if (maxconn > args->data.srv->cur_sess)
3102 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
3103 else
3104 smp->data.u.sint = 0;
3105
3106 return 1;
3107}
3108
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003109/* set temp integer to the number of connections pending in the server's queue.
3110 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3111 * undefined behaviour.
3112 */
3113static int
3114smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
3115{
3116 smp->flags = SMP_F_VOL_TEST;
3117 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003118 smp->data.u.sint = args->data.srv->queue.length;
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003119 return 1;
3120}
3121
Tait Clarridge7896d522012-12-05 21:39:31 -05003122/* set temp integer to the number of enabled servers on the proxy.
3123 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3124 * undefined behaviour.
3125 */
3126static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003127smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05003128{
3129 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003130 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003131 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05003132 return 1;
3133}
3134
Christopher Faulet1bea8652020-07-10 16:03:45 +02003135/* set temp integer to the server weight.
3136 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3137 * undefined behaviour.
3138 */
3139static int
3140smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3141{
3142 struct server *srv = args->data.srv;
3143 struct proxy *px = srv->proxy;
3144
3145 smp->flags = SMP_F_VOL_TEST;
3146 smp->data.type = SMP_T_SINT;
3147 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
3148 return 1;
3149}
3150
3151/* set temp integer to the server initial weight.
3152 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3153 * undefined behaviour.
3154 */
3155static int
3156smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3157{
3158 smp->flags = SMP_F_VOL_TEST;
3159 smp->data.type = SMP_T_SINT;
3160 smp->data.u.sint = args->data.srv->iweight;
3161 return 1;
3162}
3163
3164/* set temp integer to the server user-specified weight.
3165 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3166 * undefined behaviour.
3167 */
3168static int
3169smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3170{
3171 smp->flags = SMP_F_VOL_TEST;
3172 smp->data.type = SMP_T_SINT;
3173 smp->data.u.sint = args->data.srv->uweight;
3174 return 1;
3175}
3176
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003177static int
3178smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3179{
3180 struct proxy *px = NULL;
3181
3182 if (smp->strm)
3183 px = smp->strm->be;
3184 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3185 px = __objt_check(smp->sess->origin)->proxy;
3186 if (!px)
3187 return 0;
3188
3189 smp->flags = SMP_F_VOL_TXN;
3190 smp->data.type = SMP_T_SINT;
3191 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
3192 return 1;
3193}
3194
3195static int
3196smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3197{
3198 struct proxy *px = NULL;
3199
3200 if (smp->strm)
3201 px = smp->strm->be;
3202 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3203 px = __objt_check(smp->sess->origin)->proxy;
3204 if (!px)
3205 return 0;
3206
3207 smp->flags = SMP_F_VOL_TXN;
3208 smp->data.type = SMP_T_SINT;
3209 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
3210 return 1;
3211}
3212
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003213static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
3214{
3215
3216 struct proxy *px;
3217
3218 if (!smp_make_safe(smp))
3219 return 0;
3220
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003221 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003222 if (!px)
3223 return 0;
3224
3225 smp->data.type = SMP_T_SINT;
3226 smp->data.u.sint = be_usable_srv(px);
3227
3228 return 1;
3229}
3230
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003231static int
3232sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3233{
3234 struct proxy *px;
3235 struct server *srv;
3236 char *bksep;
3237
3238 if (!smp_make_safe(smp))
3239 return 0;
3240
3241 bksep = strchr(smp->data.u.str.area, '/');
3242
3243 if (bksep) {
3244 *bksep = '\0';
3245 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3246 if (!px)
3247 return 0;
3248 smp->data.u.str.area = bksep + 1;
3249 } else {
3250 if (!(smp->px->cap & PR_CAP_BE))
3251 return 0;
3252 px = smp->px;
3253 }
3254
3255 srv = server_find_by_name(px, smp->data.u.str.area);
3256 if (!srv)
3257 return 0;
3258
3259 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003260 smp->data.u.sint = srv->queue.length;
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003261 return 1;
3262}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003263
3264/* Note: must not be declared <const> as its list will be overwritten.
3265 * Please take care of keeping this list alphabetically sorted.
3266 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003267static struct sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003268 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3269 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3270 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3271 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3272 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3273 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3274 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3275 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3276 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3277 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3278 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3279 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3280 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3281 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3282 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3283 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3284 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3285 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3286 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3287 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3288 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003289 { /* END */ },
3290}};
3291
Willy Tarreau0108d902018-11-25 19:14:37 +01003292INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3293
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003294/* Note: must not be declared <const> as its list will be overwritten */
3295static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003296 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3297 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003298 { /* END */ },
3299}};
3300
Willy Tarreau0108d902018-11-25 19:14:37 +01003301INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003302
Willy Tarreau61612d42012-04-19 18:42:05 +02003303/* Note: must not be declared <const> as its list will be overwritten.
3304 * Please take care of keeping this list alphabetically sorted.
3305 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003306static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003307 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003308}};
3309
Willy Tarreau0108d902018-11-25 19:14:37 +01003310INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003311
Willy Tarreaubaaee002006-06-26 02:48:02 +02003312/*
3313 * Local variables:
3314 * c-indent-level: 8
3315 * c-basic-offset: 8
3316 * End:
3317 */