blob: a887eb2ea9873926926486ae732801bc87a475aa [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <stdio.h>
15#include <stdlib.h>
16#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010017#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020018#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040019#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreau63617db2021-10-06 18:23:40 +020021#include <import/ebmbtree.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020024#include <haproxy/acl.h>
25#include <haproxy/activity.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/arg.h>
27#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020028#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020029#include <haproxy/check.h>
Christopher Faulet908628c2022-03-25 16:43:49 +010030#include <haproxy/conn_stream.h>
31#include <haproxy/cs_utils.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020032#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020034#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020035#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020036#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020037#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020038#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020039#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020040#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020041#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020042#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020043#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020044#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020045#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020046#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020047#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/proto_tcp.h>
49#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020050#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020051#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020052#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020053#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020054#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020055#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020056#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020057#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020058#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020059#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020060#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020061
Christopher Fauleteea8fc72019-11-05 16:18:10 +010062#define TRACE_SOURCE &trace_strm
63
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050064int be_lastsession(const struct proxy *be)
65{
66 if (be->be_counters.last_sess)
67 return now.tv_sec - be->be_counters.last_sess;
68
69 return -1;
70}
71
Bhaskar98634f02013-10-29 23:30:51 -040072/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040074{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040076
77 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
78 case BE_LB_HFCN_DJB2:
79 hash = hash_djb2(key, len);
80 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010081 case BE_LB_HFCN_WT6:
82 hash = hash_wt6(key, len);
83 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010084 case BE_LB_HFCN_CRC32:
85 hash = hash_crc32(key, len);
86 break;
Bhaskar98634f02013-10-29 23:30:51 -040087 case BE_LB_HFCN_SDBM:
88 /* this is the default hash function */
89 default:
90 hash = hash_sdbm(key, len);
91 break;
92 }
93
94 return hash;
95}
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097/*
98 * This function recounts the number of usable active and backup servers for
99 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100101 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 * This functions is designed to be called before server's weight and state
104 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200105 *
106 * threads: this is the caller responsibility to lock data. For now, this
107 * function is called from lb modules, so it should be ok. But if you need to
108 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200110void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111{
112 struct server *srv;
113
Willy Tarreau20697042007-11-15 23:26:18 +0100114 px->srv_act = px->srv_bck = 0;
115 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 continue;
120
Willy Tarreauc93cd162014-05-13 15:54:22 +0200121 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100123 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 px->lbprm.fbck = srv;
125 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400126 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200127 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 } else {
129 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400130 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200131 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 }
133 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100134}
Willy Tarreau20697042007-11-15 23:26:18 +0100135
Willy Tarreaub625a082007-11-26 01:15:43 +0100136/* This function simply updates the backend's tot_weight and tot_used values
137 * after servers weights have been updated. It is designed to be used after
138 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200139 *
140 * threads: this is the caller responsibility to lock data. For now, this
141 * function is called from lb modules, so it should be ok. But if you need to
142 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100143 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200144void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100145{
Willy Tarreau20697042007-11-15 23:26:18 +0100146 if (px->srv_act) {
147 px->lbprm.tot_weight = px->lbprm.tot_wact;
148 px->lbprm.tot_used = px->srv_act;
149 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 else if (px->lbprm.fbck) {
151 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100154 }
155 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100156 px->lbprm.tot_weight = px->lbprm.tot_wbck;
157 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100158 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100159}
160
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200161/*
162 * This function tries to find a running server for the proxy <px> following
163 * the source hash method. Depending on the number of active/backup servers,
164 * it will either look for active servers, or for backup servers.
165 * If any server is found, it will be returned. If no valid server is found,
166 * NULL is returned.
167 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100168static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169{
170 unsigned int h, l;
171
172 if (px->lbprm.tot_weight == 0)
173 return NULL;
174
175 l = h = 0;
176
177 /* note: we won't hash if there's only one server left */
178 if (px->lbprm.tot_used == 1)
179 goto hash_done;
180
181 while ((l + sizeof (int)) <= len) {
182 h ^= ntohl(*(unsigned int *)(&addr[l]));
183 l += sizeof (int);
184 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500185 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100186 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100188 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100189 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200190 else
191 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200192}
193
194/*
195 * This function tries to find a running server for the proxy <px> following
196 * the URI hash method. In order to optimize cache hits, the hash computation
197 * ends at the question mark. Depending on the number of active/backup servers,
198 * it will either look for active servers, or for backup servers.
199 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100200 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200201 * the "whole" optional argument (boolean, bit0), the "len" argument (numeric)
202 * and the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200203 *
204 * This code was contributed by Guillaume Dallaire, who also selected this hash
205 * algorithm out of a tens because it gave him the best results.
206 *
207 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100208static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700210 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211 int c;
212 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400213 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200214
215 if (px->lbprm.tot_weight == 0)
216 return NULL;
217
218 /* note: we won't hash if there's only one server left */
219 if (px->lbprm.tot_used == 1)
220 goto hash_done;
221
Willy Tarreaua9a72492019-01-14 16:14:15 +0100222 if (px->lbprm.arg_opt2) // "len"
223 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200224
Bhaskar98634f02013-10-29 23:30:51 -0400225 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200226 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200227 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 if (c == '/') {
229 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100230 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
232 }
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200233 else if (c == '?' && !(px->lbprm.arg_opt1 & 1)) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200234 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200235 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200236 }
Bhaskar98634f02013-10-29 23:30:51 -0400237
238 hash = gen_hash(px, start, (end - start));
239
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500240 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100241 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200242 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100243 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100244 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200245 else
246 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200247}
248
Christopher Faulet5b517552017-06-09 14:17:53 +0200249/*
Willy Tarreau01732802007-11-01 22:48:15 +0100250 * This function tries to find a running server for the proxy <px> following
251 * the URL parameter hash method. It looks for a specific parameter in the
252 * URL and hashes it to compute the server ID. This is useful to optimize
253 * performance by avoiding bounces between servers in contexts where sessions
254 * are shared but cookies are not usable. If the parameter is not found, NULL
255 * is returned. If any server is found, it will be returned. If no valid server
256 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100257 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100258static 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 +0100259{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700260 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400261 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262 const char *p;
263 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100264 int plen;
265
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200266 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100267 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100268 return NULL;
269
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200270 if ((p = memchr(uri, '?', uri_len)) == NULL)
271 return NULL;
272
Willy Tarreau01732802007-11-01 22:48:15 +0100273 p++;
274
275 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100276 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200277 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100278
279 while (uri_len > plen) {
280 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200281 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100282 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100284 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100286 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200287 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400288 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200289 uri_len -= plen + 1;
290
Bhaskar98634f02013-10-29 23:30:51 -0400291 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100292 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400293 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100294 }
Bhaskar98634f02013-10-29 23:30:51 -0400295 hash = gen_hash(px, start, (end - start));
296
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500297 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100298 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400299
Willy Tarreau6c30be52019-01-14 17:07:39 +0100300 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100301 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200302 else
303 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100304 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305 }
306 /* skip to next parameter */
307 p = memchr(params, '&', uri_len);
308 if (!p)
309 return NULL;
310 p++;
311 uri_len -= (p - params);
312 params = p;
313 }
314 return NULL;
315}
316
317/*
318 * this does the same as the previous server_ph, but check the body contents
319 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100320static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700322 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100323 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200324 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200325 struct htx *htx = htxbuf(&req->buf);
326 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100327 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 unsigned long len;
329 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200330
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100331 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 return NULL;
333
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200334 p = params = NULL;
335 len = 0;
336 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
337 enum htx_blk_type type = htx_get_blk_type(blk);
338 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200339
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200340 if (type != HTX_BLK_DATA)
341 continue;
342 v = htx_get_blk_value(htx, blk);
343 p = params = v.ptr;
344 len = v.len;
345 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100346 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200347
348 while (len > plen) {
349 /* Look for the parameter name followed by an equal symbol */
350 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100351 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200352 /* OK, we have the parameter here at <params>, and
353 * the value after the equal sign, at <p>
354 * skip the equal symbol
355 */
356 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400357 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 len -= plen + 1;
359
Bhaskar98634f02013-10-29 23:30:51 -0400360 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200361 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100362 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400363 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100364 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200365 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
366 break;
367 return NULL; /* oh, no; this is not uri-encoded.
368 * This body does not contain parameters.
369 */
370 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200371 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400372 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 /* should we break if vlen exceeds limit? */
374 }
Bhaskar98634f02013-10-29 23:30:51 -0400375 hash = gen_hash(px, start, (end - start));
376
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500377 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100378 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400379
Willy Tarreau6c30be52019-01-14 17:07:39 +0100380 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100381 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200382 else
383 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 }
385 }
Willy Tarreau01732802007-11-01 22:48:15 +0100386 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200387 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100388 if (!p)
389 return NULL;
390 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200391 len -= (p - params);
392 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100393 }
394 return NULL;
395}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200397
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398/*
Benoitaffb4812009-03-25 13:02:10 +0100399 * This function tries to find a running server for the proxy <px> following
400 * the Header parameter hash method. It looks for a specific parameter in the
401 * URL and hashes it to compute the server ID. This is useful to optimize
402 * performance by avoiding bounces between servers in contexts where sessions
403 * are shared but cookies are not usable. If the parameter is not found, NULL
404 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100405 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
406 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100407 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100408static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100409{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700410 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100411 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100412 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100413 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100414 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400415 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200416 struct htx *htx = htxbuf(&s->req.buf);
417 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100418
419 /* tot_weight appears to mean srv_count */
420 if (px->lbprm.tot_weight == 0)
421 return NULL;
422
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200423 /* note: we won't hash if there's only one server left */
424 if (px->lbprm.tot_used == 1)
425 goto hash_done;
426
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200427 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100428
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200429 /* if the header is not found or empty, let's fallback to round robin */
430 if (!ctx.blk || !ctx.value.len)
431 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100432
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200433 /* Found a the param_name in the headers.
434 * we will compute the hash based on this value ctx.val.
435 */
436 len = ctx.value.len;
437 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100438
Willy Tarreau9fed8582019-01-14 16:04:54 +0100439 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400440 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100441 } else {
442 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100443 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100444 /* special computation, use only main domain name, not tld/host
445 * going back from the end of string, start hashing at first
446 * dot stop at next.
447 * This is designed to work with the 'Host' header, and requires
448 * a special option to activate this.
449 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100450 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100451 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100452 if (dohash) {
453 /* Rewind the pointer until the previous char
454 * is a dot, this will allow to set the start
455 * position of the domain. */
456 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100457 break;
Benoitaffb4812009-03-25 13:02:10 +0100458 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100459 else if (*p == '.') {
460 /* The pointer is rewinded to the dot before the
461 * tld, we memorize the end of the domain and
462 * can enter the domain processing. */
463 end = p;
464 dohash = 1;
465 }
Benoitaffb4812009-03-25 13:02:10 +0100466 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100467 len--;
Benoitaffb4812009-03-25 13:02:10 +0100468 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100469 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400470 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100471 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500472 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100473 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200474 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100475 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100476 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200477 else
478 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100479}
480
Willy Tarreau34db1082012-04-19 17:16:54 +0200481/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100482static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200483{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700484 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200485 struct proxy *px = s->be;
486 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200487 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200488 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200489 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200490
491 /* tot_weight appears to mean srv_count */
492 if (px->lbprm.tot_weight == 0)
493 return NULL;
494
Willy Tarreau37406352012-04-23 16:16:37 +0200495 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200496
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200497 rewind = co_data(&s->req);
498 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200499
Willy Tarreau484ff072019-01-14 15:28:53 +0100500 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200501 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100502
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200503 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200504
Willy Tarreau37406352012-04-23 16:16:37 +0200505 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200506 return NULL;
507
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200508 /* note: we won't hash if there's only one server left */
509 if (px->lbprm.tot_used == 1)
510 goto hash_done;
511
Willy Tarreau484ff072019-01-14 15:28:53 +0100512 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200513 * we will compute the hash based on this value ctx.val.
514 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200515 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400516
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500517 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100518 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200519 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100520 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100521 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200522 else
523 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200524}
Christopher Faulet5b517552017-06-09 14:17:53 +0200525
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +0200526/* sample expression HASH. Returns NULL if the sample is not found or if there
527 * are no server, relying on the caller to fall back to round robin instead.
528 */
529static struct server *get_server_expr(struct stream *s, const struct server *avoid)
530{
531 struct proxy *px = s->be;
532 struct sample *smp;
533 unsigned int hash = 0;
534
535 if (px->lbprm.tot_weight == 0)
536 return NULL;
537
538 /* note: no need to hash if there's only one server left */
539 if (px->lbprm.tot_used == 1)
540 goto hash_done;
541
542 smp = sample_fetch_as_type(px, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, px->lbprm.expr, SMP_T_BIN);
543 if (!smp)
544 return NULL;
545
546 /* We have the desired data. Let's hash it according to the configured
547 * options and algorithm.
548 */
549 hash = gen_hash(px, smp->data.u.str.area, smp->data.u.str.data);
550
551 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
552 hash = full_hash(hash);
553 hash_done:
554 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
555 return chash_get_server_hash(px, hash, avoid);
556 else
557 return map_get_server_hash(px, hash);
558}
559
Willy Tarreau760e81d2018-05-03 07:20:40 +0200560/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100561static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200562{
563 unsigned int hash = 0;
564 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100565 struct server *prev, *curr;
566 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200567
568 /* tot_weight appears to mean srv_count */
569 if (px->lbprm.tot_weight == 0)
570 return NULL;
571
Willy Tarreau21c741a2019-01-14 18:14:27 +0100572 curr = NULL;
573 do {
574 prev = curr;
Ubuntu1adaddb2021-03-01 07:57:54 +0000575 hash = statistical_prng();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100576 curr = chash_get_server_hash(px, hash, avoid);
577 if (!curr)
578 break;
579
580 /* compare the new server to the previous best choice and pick
581 * the one with the least currently served requests.
582 */
583 if (prev && prev != curr &&
584 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
585 curr = prev;
586 } while (--draws > 0);
587
Willy Tarreaub88ae182020-09-29 16:58:30 +0200588 /* if the selected server is full, pretend we have none so that we reach
589 * the backend's queue instead.
590 */
591 if (curr &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200592 (curr->queue.length || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr))))
Willy Tarreaub88ae182020-09-29 16:58:30 +0200593 curr = NULL;
594
Willy Tarreau21c741a2019-01-14 18:14:27 +0100595 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200596}
597
Benoitaffb4812009-03-25 13:02:10 +0100598/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200599 * This function applies the load-balancing algorithm to the stream, as
600 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200601 * 'assigned'.
602 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200603 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200604 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100605 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200606 * The function tries to keep the original connection slot if it reconnects to
607 * the same server, otherwise it releases it and tries to offer it.
608 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200609 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200610 *
611 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100612 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200613 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
614 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615 * SRV_STATUS_INTERNAL for other unrecoverable errors.
616 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200617 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100618 * it does not need to be called anymore. This means that target_srv(&s->target)
619 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200620 *
621 */
622
Willy Tarreau87b09662015-04-03 00:22:06 +0200623int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100625 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200626 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100627 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200628 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100629
Simon Horman8effd3d2011-08-13 08:03:52 +0900630 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631
Willy Tarreau7c669d72008-06-20 15:04:11 +0200632 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200633 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200634 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100635
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100636 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200637 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200638
Willy Tarreau7c669d72008-06-20 15:04:11 +0200639 /* We have to release any connection slot before applying any LB algo,
640 * otherwise we may erroneously end up with no available slot.
641 */
642 if (conn_slot)
643 sess_change_server(s, NULL);
644
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100645 /* We will now try to find the good server and store it into <objt_server(s->target)>.
646 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200647 * as well as if no server is available (check error code).
648 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100649
Willy Tarreau827aee92011-03-10 16:55:02 +0100650 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100651 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100652
Olivier Houchardba4fff52018-12-01 14:40:40 +0100653 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200654 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100655 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100656 struct sess_srv_list *srv_list;
657 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
658 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100659
660 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200661 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100662 (!s->be->max_ka_queue ||
663 server_has_room(tmpsrv) || (
Willy Tarreaua0570452021-06-18 09:30:30 +0200664 tmpsrv->queue.length + 1 < s->be->max_ka_queue))) &&
Olivier Houchardba4fff52018-12-01 14:40:40 +0100665 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100666 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100667 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100668 srv = tmpsrv;
669 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200670 if (conn->flags & CO_FL_SESS_IDLE) {
671 conn->flags &= ~CO_FL_SESS_IDLE;
672 s->sess->idle_conns--;
673 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100674 goto out_ok;
675 }
676 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100677 }
678 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100679 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200680
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200681 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200682 /* we must check if we have at least one server available */
683 if (!s->be->lbprm.tot_weight) {
684 err = SRV_STATUS_NOSRV;
685 goto out;
686 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200687
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200688 /* if there's some queue on the backend, with certain algos we
689 * know it's because all servers are full.
690 */
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200691 if (s->be->queue.length && s->be->queue.length != s->be->beconn &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200692 (((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 +0200693 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
694 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
695 err = SRV_STATUS_FULL;
696 goto out;
697 }
698
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200699 /* First check whether we need to fetch some data or simply call
700 * the LB lookup function. Only the hashing functions will need
701 * some input data in fact, and will support multiple algorithms.
702 */
703 switch (s->be->lbprm.algo & BE_LB_LKUP) {
704 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100705 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200706 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200707
Willy Tarreauf09c6602012-02-13 17:12:08 +0100708 case BE_LB_LKUP_FSTREE:
709 srv = fas_get_next_server(s->be, prev_srv);
710 break;
711
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200712 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100713 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200714 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200715
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200716 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200717 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200718 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau5ffb0452021-06-22 17:31:51 +0200719 /* static-rr (map) or random (chash) */
Willy Tarreau760e81d2018-05-03 07:20:40 +0200720 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100721 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200722 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100723 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200724 break;
725 }
726 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200727 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200728 err = SRV_STATUS_INTERNAL;
729 goto out;
730 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200731
732 switch (s->be->lbprm.algo & BE_LB_PARM) {
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200733 const struct sockaddr_storage *src;
734
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200735 case BE_LB_HASH_SRC:
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200736 src = cs_src(s->csf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200737 if (src && src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200738 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200739 (void *)&((struct sockaddr_in *)src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100740 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200741 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200742 else if (src && src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200743 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200744 (void *)&((struct sockaddr_in6 *)src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100745 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200746 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200747 else {
748 /* unknown IP family */
749 err = SRV_STATUS_INTERNAL;
750 goto out;
751 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200752 break;
753
754 case BE_LB_HASH_URI:
755 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200756 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100757 struct ist uri;
758
Christopher Faulet297fbb42019-05-13 14:41:27 +0200759 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200760 if (s->be->lbprm.arg_opt1 & 2) {
Amaury Denoyellec453f952021-07-06 11:40:12 +0200761 struct http_uri_parser parser =
762 http_uri_parser_init(uri);
763
764 uri = http_parse_path(&parser);
Tim Duesterhus7b5777d2021-03-02 18:57:28 +0100765 if (!isttest(uri))
Willy Tarreau57a37412020-09-23 08:56:29 +0200766 uri = ist("");
767 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100768 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
769 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200770 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200771
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200772 case BE_LB_HASH_PRM:
773 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200774 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100775 struct ist uri;
776
Christopher Faulet297fbb42019-05-13 14:41:27 +0200777 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100778 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100779
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200780 if (!srv && s->txn->meth == HTTP_METH_POST)
781 srv = get_server_ph_post(s, prev_srv);
782 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200783 break;
Benoitaffb4812009-03-25 13:02:10 +0100784
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200785 case BE_LB_HASH_HDR:
786 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200787 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
788 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200789 break;
790
791 case BE_LB_HASH_RDP:
792 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100793 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200794 break;
795
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +0200796 case BE_LB_HASH_SMP:
797 /* sample expression hashing */
798 srv = get_server_expr(s, prev_srv);
799 break;
800
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200801 default:
802 /* unknown balancing algorithm */
803 err = SRV_STATUS_INTERNAL;
804 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100805 }
Emeric Brun736aa232009-06-30 17:56:00 +0200806
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200807 /* If the hashing parameter was not found, let's fall
808 * back to round robin on the map.
809 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100810 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100811 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100812 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200813 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100814 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200815 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200816
817 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200818 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200819
Willy Tarreau7c669d72008-06-20 15:04:11 +0200820 default:
821 /* unknown balancing algorithm */
822 err = SRV_STATUS_INTERNAL;
823 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200825
Willy Tarreau827aee92011-03-10 16:55:02 +0100826 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200827 err = SRV_STATUS_FULL;
828 goto out;
829 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100830 else if (srv != prev_srv) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200831 _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn);
832 _HA_ATOMIC_INC(&srv->counters.cum_lbconn);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100833 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100834 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200835 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200836 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100837 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200838 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100839 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200840 err = SRV_STATUS_NOSRV;
841 goto out;
842 }
843
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100844out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200845 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200846 err = SRV_STATUS_OK;
847 out:
848
849 /* Either we take back our connection slot, or we offer it to someone
850 * else if we don't need it anymore.
851 */
852 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100853 if (conn_slot == srv) {
854 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200855 } else {
856 if (may_dequeue_tasks(conn_slot, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +0200857 process_srv_queue(conn_slot);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200858 }
859 }
860
861 out_err:
862 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200863}
864
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100865/* Allocate an address for the destination endpoint
Willy Tarreaubaaee002006-06-26 02:48:02 +0200866 * The address is taken from the currently assigned server, or from the
867 * dispatch or transparent address.
868 *
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100869 * Returns SRV_STATUS_OK on success.
Amaury Denoyellef7bdf002021-01-21 09:40:19 +0100870 * On error, no address is allocated and SRV_STATUS_INTERNAL is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200871 */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100872static int alloc_dst_address(struct sockaddr_storage **ss,
873 struct server *srv, struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200874{
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200875 const struct sockaddr_storage *dst;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200876
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100877 *ss = NULL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200878 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200879 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200880 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881 return SRV_STATUS_INTERNAL;
882
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100883 if (!sockaddr_alloc(ss, NULL, 0))
884 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200885
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100886 **ss = srv->addr;
887 set_host_port(*ss, srv->svc_port);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100888 if (!is_addr(*ss)) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200889 /* if the server has no address, we use the same address
890 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200891 * locally on multiple addresses at once. Nothing is done
892 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200893 */
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200894 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100895 if (dst && dst->ss_family == AF_INET) {
Christopher Fauletae305612021-03-01 11:33:59 +0100896 ((struct sockaddr_in *)*ss)->sin_family = AF_INET;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100897 ((struct sockaddr_in *)*ss)->sin_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200898 ((struct sockaddr_in *)dst)->sin_addr;
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100899 } else if (dst && dst->ss_family == AF_INET6) {
Christopher Fauletae305612021-03-01 11:33:59 +0100900 ((struct sockaddr_in6 *)*ss)->sin6_family = AF_INET6;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100901 ((struct sockaddr_in6 *)*ss)->sin6_addr =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200902 ((struct sockaddr_in6 *)dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200903 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200904 }
905
Willy Tarreaubaaee002006-06-26 02:48:02 +0200906 /* if this server remaps proxied ports, we'll use
907 * the port the client connected to with an offset. */
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100908 if ((srv->flags & SRV_F_MAPPORTS)) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100909 int base_port;
910
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200911 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100912 if (dst) {
913 /* First, retrieve the port from the incoming connection */
914 base_port = get_host_port(dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100915
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100916 /* Second, assign the outgoing connection's port */
917 base_port += get_host_port(*ss);
918 set_host_port(*ss, base_port);
919 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920 }
921 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200922 else if (s->be->options & PR_O_DISPATCH) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100923 if (!sockaddr_alloc(ss, NULL, 0))
924 return SRV_STATUS_INTERNAL;
925
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926 /* connect to the defined dispatch addr */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100927 **ss = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200929 else if ((s->be->options & PR_O_TRANSP)) {
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100930 if (!sockaddr_alloc(ss, NULL, 0))
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100931 return SRV_STATUS_INTERNAL;
932
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 /* in transparent mode, use the original dest addr if no dispatch specified */
Christopher Faulet8da67aa2022-03-29 17:53:09 +0200934 dst = cs_dst(s->csf);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100935 if (dst && (dst->ss_family == AF_INET || dst->ss_family == AF_INET6))
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200936 **ss = *dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100938 else {
939 /* no server and no LB algorithm ! */
940 return SRV_STATUS_INTERNAL;
941 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200942
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943 return SRV_STATUS_OK;
944}
945
Willy Tarreau87b09662015-04-03 00:22:06 +0200946/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200947 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200948 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200949 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200950 * be called before any connection and after any retry or redispatch occurs.
951 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200952 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953 *
954 * Returns :
955 *
956 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100957 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958 * SRV_STATUS_QUEUED if the connection has been queued.
959 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100960 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200961 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962 * SRV_STATUS_INTERNAL for other unrecoverable errors.
963 *
964 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200965int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966{
967 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100968 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200969 int err;
970
971 if (s->pend_pos)
972 return SRV_STATUS_INTERNAL;
973
Willy Tarreau7c669d72008-06-20 15:04:11 +0200974 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200975 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100976 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100977
Willy Tarreau7c669d72008-06-20 15:04:11 +0200978 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100979 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200980 /* This stream was previously assigned to a server. We have to
981 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200982 * - if the server changed :
983 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200984 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200985 * - increment srv->redispatches and be->redispatches
986 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100987 */
988
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100989 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200990 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
991 s->txn->flags &= ~TX_CK_MASK;
992 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200993 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200994 s->flags |= SF_REDISP;
Willy Tarreau4781b152021-04-06 13:53:36 +0200995 _HA_ATOMIC_INC(&prev_srv->counters.redispatches);
996 _HA_ATOMIC_INC(&s->be->be_counters.redispatches);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200997 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +0200998 _HA_ATOMIC_INC(&prev_srv->counters.retries);
999 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001000 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001001 }
1002 }
1003
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004 switch (err) {
1005 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +02001006 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001007 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001008 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001009 return SRV_STATUS_OK; /* dispatch or proxy mode */
1010
1011 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +01001012 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001013 return SRV_STATUS_OK;
1014
Willy Tarreau87b09662015-04-03 00:22:06 +02001015 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +02001016 * connection slot yet. Either it is a redispatch, or it was
1017 * assigned from persistence information (direct mode).
1018 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001019 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001020 /* server scheduled for redirection, and already assigned. We
1021 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +01001022 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001023 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +01001024 return SRV_STATUS_OK;
1025 }
1026
Willy Tarreau87b09662015-04-03 00:22:06 +02001027 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001028 * We know we have to queue it into the server's queue, so if a maxqueue
1029 * is set on the server, we must also check that the server's queue is
1030 * not full, in which case we have to return FULL.
1031 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001032 if (srv->maxconn &&
Willy Tarreaua0570452021-06-18 09:30:30 +02001033 (srv->queue.length || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001034
Willy Tarreaua0570452021-06-18 09:30:30 +02001035 if (srv->maxqueue > 0 && srv->queue.length >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001036 return SRV_STATUS_FULL;
1037
Willy Tarreaubaaee002006-06-26 02:48:02 +02001038 p = pendconn_add(s);
1039 if (p)
1040 return SRV_STATUS_QUEUED;
1041 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001042 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001043 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001044
1045 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001046 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001047 return SRV_STATUS_OK;
1048
1049 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001050 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001051 p = pendconn_add(s);
1052 if (p)
1053 return SRV_STATUS_QUEUED;
1054 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001055 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001056
1057 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001058 return err;
1059
Willy Tarreaubaaee002006-06-26 02:48:02 +02001060 case SRV_STATUS_INTERNAL:
1061 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001062
Willy Tarreaubaaee002006-06-26 02:48:02 +02001063 default:
1064 return SRV_STATUS_INTERNAL;
1065 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001066}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001067
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001068/* Allocate an address for source binding on the specified server or backend.
1069 * The allocation is only performed if the connection is intended to be used
1070 * with transparent mode.
1071 *
1072 * Returns SRV_STATUS_OK if no transparent mode or the address was successfully
1073 * allocated. Otherwise returns SRV_STATUS_INTERNAL.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001074 */
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001075static int alloc_bind_address(struct sockaddr_storage **ss,
1076 struct server *srv, struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001077{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001078#if defined(CONFIG_HAP_TRANSPARENT)
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001079 const struct sockaddr_storage *addr;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001080 struct conn_src *src = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001081 struct sockaddr_in *sin;
1082 char *vptr;
1083 size_t vlen;
1084#endif
Olivier Houchard09a0f032019-01-17 15:59:13 +01001085
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001086 *ss = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001087
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001088#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001089 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1090 src = &srv->conn_src;
1091 else if (s->be->conn_src.opts & CO_SRC_BIND)
1092 src = &s->be->conn_src;
Willy Tarreau294c4732011-12-16 21:35:50 +01001093
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001094 /* no transparent mode, no need to allocate an address, returns OK */
1095 if (!src)
1096 return SRV_STATUS_OK;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001097
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001098 switch (src->opts & CO_SRC_TPROXY_MASK) {
1099 case CO_SRC_TPROXY_ADDR:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001100 if (!sockaddr_alloc(ss, NULL, 0))
1101 return SRV_STATUS_INTERNAL;
1102
1103 **ss = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001104 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001105
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001106 case CO_SRC_TPROXY_CLI:
1107 case CO_SRC_TPROXY_CIP:
1108 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001109 addr = cs_src(s->csf);
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001110 if (!addr)
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001111 return SRV_STATUS_INTERNAL;
1112
1113 if (!sockaddr_alloc(ss, NULL, 0))
1114 return SRV_STATUS_INTERNAL;
1115
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001116 **ss = *addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001117 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001118
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001119 case CO_SRC_TPROXY_DYN:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001120 if (!src->bind_hdr_occ || !IS_HTX_STRM(s))
1121 return SRV_STATUS_INTERNAL;
Willy Tarreau294c4732011-12-16 21:35:50 +01001122
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001123 if (!sockaddr_alloc(ss, NULL, 0))
1124 return SRV_STATUS_INTERNAL;
1125
1126 /* bind to the IP in a header */
1127 sin = (struct sockaddr_in *)*ss;
1128 sin->sin_family = AF_INET;
1129 sin->sin_port = 0;
1130 sin->sin_addr.s_addr = 0;
1131 if (!http_get_htx_hdr(htxbuf(&s->req.buf),
1132 ist2(src->bind_hdr_name, src->bind_hdr_len),
1133 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1134 sockaddr_free(ss);
1135 return SRV_STATUS_INTERNAL;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001136 }
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001137
1138 sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001139 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001140
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001141 default:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001142 ;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001143 }
1144#endif
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001145
1146 return SRV_STATUS_OK;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001147}
1148
Olivier Houchard566df302020-03-06 18:18:56 +01001149/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001150 * (safe or idle connections). The <is_safe> argument means what type of
1151 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001152 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001153static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001154{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001155 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001156 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001157 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001158 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001159
1160 /* We need to lock even if this is our own list, because another
1161 * thread may be trying to migrate that connection, and we don't want
1162 * to end up with two threads using the same connection.
1163 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001164 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001165 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001166 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 +01001167 if (conn)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001168 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001169
1170 /* If we failed to pick a connection from the idle list, let's try again with
1171 * the safe list.
1172 */
1173 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001174 conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001175 if (conn) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001176 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001177 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001178 }
1179 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001180 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001181
1182 /* If we found a connection in our own list, and we don't have to
1183 * steal one from another thread, then we're done.
1184 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001185 if (conn)
1186 goto done;
1187
Willy Tarreau76cc6992020-07-01 18:49:24 +02001188 /* pool sharing globally disabled ? */
1189 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1190 goto done;
1191
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001192 /* Are we allowed to pick from another thread ? We'll still try
1193 * it if we're running low on FDs as we don't want to create
1194 * extra conns in this case, otherwise we can give up if we have
1195 * too few idle conns.
1196 */
1197 if (srv->curr_idle_conns < srv->low_idle_conns &&
1198 ha_used_fds < global.tune.pool_low_count)
1199 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001200
Willy Tarreau364f25a2020-07-01 15:55:30 +02001201 /* Lookup all other threads for an idle connection, starting from last
1202 * unvisited thread.
1203 */
1204 stop = srv->next_takeover;
1205 if (stop >= global.nbthread)
1206 stop = 0;
1207
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001208 i = stop;
1209 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001210 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001211 continue;
1212
Ubuntub1adf032021-03-01 06:22:17 +00001213 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1214 continue;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001215 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 +01001216 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001217 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001218 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001219 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Olivier Houchard566df302020-03-06 18:18:56 +01001220 found = 1;
1221 break;
1222 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001223
1224 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001225 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001226
1227 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001228 conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001229 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001230 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001231 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001232 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Willy Tarreau0d587112020-07-01 15:04:38 +02001233 found = 1;
1234 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001235 break;
1236 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001237
1238 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001239 }
1240 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001241 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001242 } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001243
1244 if (!found)
1245 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001246 done:
1247 if (conn) {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001248 _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001249
1250 srv_use_conn(srv, conn);
1251
Willy Tarreau4781b152021-04-06 13:53:36 +02001252 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
1253 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
1254 _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001255 conn->flags &= ~CO_FL_LIST_MASK;
1256 __ha_barrier_atomic_store();
1257
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001258 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1259 conn->mux->flags & MX_FL_HOL_RISK) {
1260 /* attach the connection to the session private list
1261 */
1262 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001263 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001264 }
1265 else {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001266 ebmb_insert(&srv->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001267 &conn->hash_node->node,
1268 sizeof(conn->hash_node->hash));
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001269 }
Olivier Houchard566df302020-03-06 18:18:56 +01001270 }
1271 return conn;
1272}
1273
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001274static int do_connect_server(struct stream *s, struct connection *conn)
1275{
1276 int ret = SF_ERR_NONE;
1277 int conn_flags = 0;
1278
1279 if (unlikely(!conn || !conn->ctrl || !conn->ctrl->connect))
1280 return SF_ERR_INTERNAL;
1281
1282 if (!channel_is_empty(&s->res))
1283 conn_flags |= CONNECT_HAS_DATA;
1284 if (s->conn_retries == s->be->conn_retries)
1285 conn_flags |= CONNECT_CAN_USE_TFO;
1286 if (!conn_ctrl_ready(conn) || !conn_xprt_ready(conn)) {
1287 ret = conn->ctrl->connect(conn, conn_flags);
1288 if (ret != SF_ERR_NONE)
1289 return ret;
1290
1291 /* we're in the process of establishing a connection */
1292 s->csb->state = CS_ST_CON;
1293 }
1294 else {
1295 /* try to reuse the existing connection, it will be
1296 * confirmed once we can send on it.
1297 */
1298 /* Is the connection really ready ? */
1299 if (conn->mux->ctl(conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1300 s->csb->state = CS_ST_RDY;
1301 else
1302 s->csb->state = CS_ST_CON;
1303 }
1304
1305 /* needs src ip/port for logging */
1306 if (s->flags & SF_SRC_ADDR)
1307 conn_get_src(conn);
1308
1309 return ret;
1310}
1311
Willy Tarreaubaaee002006-06-26 02:48:02 +02001312/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001313 * This function initiates a connection to the server assigned to this stream
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001314 * (s->target, (s->csb)->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001315 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001316 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001317 * - SF_ERR_NONE if everything's OK
1318 * - SF_ERR_SRVTO if there are no more servers
1319 * - SF_ERR_SRVCL if the connection was refused by the server
1320 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1321 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1322 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001323 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001324 * The server-facing conn-stream is expected to hold a pre-allocated connection.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001325 */
Christopher Fauletc983b212022-01-13 09:53:00 +01001326static int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001327{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001328 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001329 struct connection *srv_conn = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001330 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001331 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001332 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001333 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001334 int err;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001335#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001336 struct sample *sni_smp = NULL;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001337#endif
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001338 struct sockaddr_storage *bind_addr;
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001339 int proxy_line_ret;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001340 int64_t hash = 0;
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001341 struct conn_hash_params hash_params;
1342
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001343 /* in standard configuration, srv will be valid
1344 * it can be NULL for dispatch mode or transparent backend */
1345 srv = objt_server(s->target);
1346
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001347 if (!(s->flags & SF_ADDR_SET)) {
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001348 err = alloc_dst_address(&s->csb->dst, srv, s);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001349 if (err != SRV_STATUS_OK)
1350 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001351
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001352 s->flags |= SF_ADDR_SET;
1353 }
1354
1355 err = alloc_bind_address(&bind_addr, srv, s);
1356 if (err != SRV_STATUS_OK)
1357 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001358
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001359#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001360 if (srv && srv->ssl_ctx.sni) {
1361 sni_smp = sample_fetch_as_type(s->be, s->sess, s,
1362 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1363 srv->ssl_ctx.sni, SMP_T_STR);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001364 }
1365#endif
Amaury Denoyelle4c098002021-02-17 15:59:02 +01001366
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001367 /* do not reuse if mode is not http */
1368 if (!IS_HTX_STRM(s)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001369 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 +02001370 goto skip_reuse;
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001371 }
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001372
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001373 /* disable reuse if websocket stream and the protocol to use is not the
1374 * same as the main protocol of the server.
1375 */
1376 if (unlikely(s->flags & SF_WEBSOCKET) && srv) {
1377 if (!srv_check_reuse_ws(srv)) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001378 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 +02001379 goto skip_reuse;
1380 }
1381 }
1382
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001383 /* first, set unique connection parameters and then calculate hash */
1384 memset(&hash_params, 0, sizeof(hash_params));
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001385
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001386 /* 1. target */
1387 hash_params.target = s->target;
1388
1389#ifdef USE_OPENSSL
1390 /* 2. sni
1391 * only test if the sample is not null as smp_make_safe (called before
1392 * ssl_sock_set_servername) can only fails if this is not the case
1393 */
1394 if (sni_smp) {
1395 hash_params.sni_prehash =
1396 conn_hash_prehash(sni_smp->data.u.str.area,
1397 sni_smp->data.u.str.data);
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001398 }
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001399#endif /* USE_OPENSSL */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001400
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001401 /* 3. destination address */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001402 if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS))
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001403 hash_params.dst_addr = s->csb->dst;
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001404
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001405 /* 4. source address */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001406 hash_params.src_addr = bind_addr;
1407
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001408 /* 5. proxy protocol */
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001409 if (srv && srv->pp_opts) {
1410 proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s);
1411 if (proxy_line_ret) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001412 hash_params.proxy_prehash =
1413 conn_hash_prehash(trash.area, proxy_line_ret);
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001414 }
1415 }
1416
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001417 hash = conn_calculate_hash(&hash_params);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001418
Willy Tarreaub0821862019-07-18 19:26:11 +02001419 /* first, search for a matching connection in the session's idle conns */
Amaury Denoyelle293dcc42021-01-25 10:29:35 +01001420 srv_conn = session_get_conn(s->sess, s->target, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001421 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001422 DBG_TRACE_STATE("reuse connection from session", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001423 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001424 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001425
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001426 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001427 /* Below we pick connections from the safe, idle or
1428 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001429 * on the strategy, the fact that this is a first or second
1430 * (retryable) request, with the indicated priority (1 or 2) :
1431 *
1432 * SAFE AGGR ALWS
1433 *
1434 * +-----+-----+ +-----+-----+ +-----+-----+
1435 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1436 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1437 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1438 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1439 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1440 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001441 *
1442 * Idle conns are necessarily looked up on the same thread so
1443 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001444 */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001445 if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) {
1446 srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001447 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001448 DBG_TRACE_STATE("reuse connection from avail", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001449 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001450 }
Willy Tarreau449d74a2015-08-05 17:16:33 +02001451 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001452
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001453 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001454 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001455 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1456 const int idle = srv->curr_idle_nb > 0;
1457 const int safe = srv->curr_safe_nb > 0;
1458
1459 /* second column of the tables above,
1460 * search for an idle then safe conn */
1461 if (not_first_req) {
1462 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001463 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001464 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001465 /* first column of the tables above */
1466 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1467 /* search for a safe conn */
1468 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001469 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001470
1471 /* search for an idle conn if no safe conn found
1472 * on always reuse mode */
1473 if (!srv_conn &&
1474 reuse_mode == PR_O_REUSE_ALWS && idle) {
1475 /* TODO conn_backend_get should not check the
1476 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001477 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001478 }
Olivier Houchard566df302020-03-06 18:18:56 +01001479 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001480
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001481 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001482 DBG_TRACE_STATE("reuse connection from idle/safe", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Olivier Houchard566df302020-03-06 18:18:56 +01001483 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001484 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001485 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001486 }
1487
Willy Tarreaub0821862019-07-18 19:26:11 +02001488
1489 /* here reuse might have been set above, indicating srv_conn finally
1490 * is OK.
1491 */
Willy Tarreaub0821862019-07-18 19:26:11 +02001492
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001493 if (ha_used_fds > global.tune.pool_high_count && srv) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001494 struct connection *tokill_conn = NULL;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001495 struct conn_hash_node *conn_node = NULL;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001496 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001497
1498 /* We can't reuse a connection, and e have more FDs than deemd
1499 * acceptable, attempt to kill an idling connection
1500 */
1501 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001502 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001503 node = ebmb_first(&srv->per_thr[tid].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001504 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001505 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1506 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001507 ebmb_delete(node);
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001508 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1509
1510 /* Release the idle lock before calling mux->destroy.
1511 * It will in turn call srv_release_conn through
1512 * conn_free which also uses it.
1513 */
Olivier Houchard88698d92019-04-16 19:07:22 +02001514 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001515 }
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001516 else {
1517 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1518 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001519
Olivier Houchard88698d92019-04-16 19:07:22 +02001520 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001521 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001522 int i;
1523
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001524 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001525 // just silence stupid gcc which reports an absurd
1526 // out-of-bounds warning for <i> which is always
1527 // exactly zero without threads, but it seems to
1528 // see it possibly larger.
1529 ALREADY_CHECKED(i);
1530
Willy Tarreau9b9f8472021-03-26 20:52:10 +01001531 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1532 continue;
1533
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001534 node = ebmb_first(&srv->per_thr[i].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001535 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001536 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1537 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001538 ebmb_delete(node);
1539 }
1540
1541 if (!tokill_conn) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001542 node = ebmb_first(&srv->per_thr[i].safe_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001543 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001544 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1545 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001546 ebmb_delete(node);
1547 }
1548 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001549 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001550
Olivier Houchard88698d92019-04-16 19:07:22 +02001551 if (tokill_conn) {
1552 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1553
Willy Tarreau2b718102021-04-21 07:32:39 +02001554 MT_LIST_APPEND(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001555 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001556 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001557 break;
1558 }
1559 }
1560 }
1561
1562 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001563
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001564 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001565 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001566 int avail = srv_conn->mux->avail_streams(srv_conn);
1567
1568 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001569 /* No more streams available, remove it from the list */
Christopher Faulet7ae48a72022-04-22 17:56:24 +02001570 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001571 conn_delete_from_tree(&srv_conn->hash_node->node);
Christopher Faulet7ae48a72022-04-22 17:56:24 +02001572 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard2442f682018-12-01 17:03:38 +01001573 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001574
1575 if (avail >= 1) {
Christopher Faulet95a61e82021-12-22 14:22:03 +01001576 if (srv_conn->mux->attach(srv_conn, s->csb, s->sess) == -1) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001577 srv_conn = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001578 if (cs_reset_endp(s->csb) < 0)
1579 return SF_ERR_INTERNAL;
Christopher Faulet13a35e52021-12-20 15:34:16 +01001580 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001581 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001582 else
1583 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001584 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001585 /* otherwise srv_conn is left intact */
1586 }
1587 else
1588 srv_conn = NULL;
1589
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001590skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001591 /* no reuse or failed to reuse the connection above, pick a new one */
1592 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001593 srv_conn = conn_new(s->target);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001594 if (srv_conn) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001595 DBG_TRACE_STATE("alloc new be connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001596 srv_conn->owner = s->sess;
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001597
1598 /* connection will be attached to the session if
1599 * http-reuse mode is never or it is not targeted to a
1600 * server */
1601 if (reuse_mode == PR_O_REUSE_NEVR || !srv)
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001602 conn_set_private(srv_conn);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001603
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001604 /* assign bind_addr to srv_conn */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001605 srv_conn->src = bind_addr;
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001606 bind_addr = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001607
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001608 if (!sockaddr_alloc(&srv_conn->dst, 0, 0)) {
1609 conn_free(srv_conn);
1610 return SF_ERR_RESOURCE;
1611 }
Amaury Denoyelleaee4fdb2021-10-20 15:22:20 +02001612
1613 srv_conn->hash_node->hash = hash;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001614 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001615 }
1616
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001617 /* if bind_addr is non NULL free it */
1618 sockaddr_free(&bind_addr);
1619
1620 /* srv_conn is still NULL only on allocation failure */
1621 if (!srv_conn)
1622 return SF_ERR_RESOURCE;
1623
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001624 /* copy the target address into the connection */
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001625 *srv_conn->dst = *s->csb->dst;
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001626
1627 /* Copy network namespace from client connection */
1628 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1629
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001630 if (!srv_conn->xprt) {
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001631 /* set the correct protocol on the output conn-stream */
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001632 if (srv) {
Willy Tarreau14e7f292021-10-27 17:41:07 +02001633 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 +01001634 conn_free(srv_conn);
1635 return SF_ERR_INTERNAL;
1636 }
1637 } else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1638 int ret;
1639
Willy Tarreauff605db2013-12-20 11:09:51 +01001640 /* proxies exclusively run on raw_sock right now */
Willy Tarreau14e7f292021-10-27 17:41:07 +02001641 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 +01001642 if (ret < 0 || !(srv_conn->ctrl)) {
Olivier Houchardc0caac22020-03-20 14:26:32 +01001643 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001644 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001645 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001646 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001647 else {
1648 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001649 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001650 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001651
Christopher Faulet070b91b2022-03-31 19:27:18 +02001652 if (cs_attach_mux(s->csb, NULL, srv_conn) < 0) {
1653 conn_free(srv_conn);
1654 return SF_ERR_INTERNAL; /* how did we get there ? */
1655 }
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001656 srv_conn->ctx = s->csb;
1657
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001658#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001659 if (!srv ||
Christopher Fauletb4de4202020-07-30 09:10:36 +02001660 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001661 srv->mux_proto || !IS_HTX_STRM(s)))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001662#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001663 init_mux = 1;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001664
Willy Tarreauff605db2013-12-20 11:09:51 +01001665 /* process the case where the server requires the PROXY protocol to be sent */
1666 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001667
Willy Tarreau7b004922015-08-04 19:34:21 +02001668 if (srv && srv->pp_opts) {
Alexander Liu2a54bb72019-05-22 19:44:48 +08001669 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001670 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001671 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001672
Alexander Liu2a54bb72019-05-22 19:44:48 +08001673 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1674 srv_conn->send_proxy_ofs = 1;
1675 srv_conn->flags |= CO_FL_SOCKS4;
1676 }
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001677
1678#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1679 /* if websocket stream, try to update connection ALPN. */
1680 if (unlikely(s->flags & SF_WEBSOCKET) &&
1681 srv && srv->use_ssl && srv->ssl_ctx.alpn_str) {
1682 char *alpn = "";
1683 int force = 0;
1684
1685 switch (srv->ws) {
1686 case SRV_WS_AUTO:
1687 alpn = "\x08http/1.1";
1688 force = 0;
1689 break;
1690 case SRV_WS_H1:
1691 alpn = "\x08http/1.1";
1692 force = 1;
1693 break;
1694 case SRV_WS_H2:
1695 alpn = "\x02h2";
1696 force = 1;
1697 break;
1698 }
1699
1700 if (!conn_update_alpn(srv_conn, ist(alpn), force))
Christopher Faulet62e75742022-03-31 09:16:34 +02001701 DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001702 }
1703#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001704 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001705 else {
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001706 s->flags |= SF_SRV_REUSED;
1707
Amaury Denoyelled7faa3d2021-03-05 15:27:41 +01001708 /* Currently there seems to be no known cases of xprt ready
1709 * without the mux installed here.
1710 */
1711 BUG_ON(!srv_conn->mux);
1712
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001713 if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY))
1714 s->flags |= SF_SRV_REUSED_ANTICIPATED;
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001715 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001716
William Lallemandb7ff6a32012-03-02 14:35:21 +01001717 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001718 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Christopher Fauletd1391382022-03-30 16:26:39 +02001719 s->flags |= SF_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001720
Willy Tarreau14f8e862012-08-30 22:23:13 +02001721 /* disable lingering */
1722 if (s->be->options & PR_O_TCP_NOLING)
Christopher Faulet8abe7122022-03-30 15:10:18 +02001723 s->csb->flags |= CS_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001724
Willy Tarreauf1573842018-12-14 11:35:36 +01001725 if (s->flags & SF_SRV_REUSED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001726 _HA_ATOMIC_INC(&s->be->be_counters.reuse);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001727 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001728 _HA_ATOMIC_INC(&srv->counters.reuse);
Willy Tarreauf1573842018-12-14 11:35:36 +01001729 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001730 _HA_ATOMIC_INC(&s->be->be_counters.connect);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001731 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001732 _HA_ATOMIC_INC(&srv->counters.connect);
Willy Tarreauf1573842018-12-14 11:35:36 +01001733 }
1734
Christopher Faulet0a4dcb62022-03-31 09:53:38 +02001735 err = do_connect_server(s, srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001736 if (err != SF_ERR_NONE)
1737 return err;
1738
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001739#ifdef USE_OPENSSL
Amaury Denoyelle655dec82021-06-01 17:04:10 +02001740 if (!(s->flags & SF_SRV_REUSED)) {
1741 if (smp_make_safe(sni_smp))
1742 ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area);
1743 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001744#endif /* USE_OPENSSL */
1745
Willy Tarreaua3b17562020-07-31 08:39:31 +02001746 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1747 * if so, add our handshake pseudo-XPRT now.
1748 */
1749 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1750 if (xprt_add_hs(srv_conn) < 0) {
1751 conn_full_close(srv_conn);
1752 return SF_ERR_INTERNAL;
1753 }
1754 }
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001755 conn_xprt_start(srv_conn);
Willy Tarreaua3b17562020-07-31 08:39:31 +02001756
Olivier Houchard5cd62172019-01-04 15:52:26 +01001757 /* We have to defer the mux initialization until after si_connect()
1758 * has been called, as we need the xprt to have been properly
1759 * initialized, or any attempt to recv during the mux init may
1760 * fail, and flag the connection as CO_FL_ERROR.
1761 */
1762 if (init_mux) {
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001763 const struct mux_ops *alt_mux =
1764 likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv);
Christopher Faulet95a61e82021-12-22 14:22:03 +01001765 if (conn_install_mux_be(srv_conn, s->csb, s->sess, alt_mux) < 0) {
Olivier Houchard74931142019-01-29 19:11:16 +01001766 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001767 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001768 }
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001769 if (IS_HTX_STRM(s)) {
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001770 /* If we're doing http-reuse always, and the connection
1771 * is not private with available streams (an http2
1772 * connection), add it to the available list, so that
1773 * others can use it right away. If the connection is
1774 * private or we're doing http-reuse safe and the mux
1775 * protocol supports multiplexing, add it in the
1776 * session server list.
1777 */
1778 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1779 !(srv_conn->flags & CO_FL_PRIVATE) &&
1780 srv_conn->mux->avail_streams(srv_conn) > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001781 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 +01001782 }
1783 else if (srv_conn->flags & CO_FL_PRIVATE ||
1784 (reuse_mode == PR_O_REUSE_SAFE &&
1785 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1786 /* If it fail now, the same will be done in mux->detach() callback */
1787 session_add_conn(s->sess, srv_conn, srv_conn->target);
1788 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001789 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001790 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001791
Willy Tarreaub1310492021-08-30 09:35:18 +02001792#if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001793
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001794 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001795 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001796 /* Only attempt to use early data if either the client sent
1797 * early data, so that we know it can handle a 425, or if
1798 * we are allwoed to retry requests on early data failure, and
1799 * it's our first try
1800 */
1801 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
Christopher Faulet731c8e62022-03-29 16:08:44 +02001802 ((s->be->retry_type & PR_RE_EARLY_ERROR) && !s->conn_retries)) &&
Christopher Faulet908628c2022-03-25 16:43:49 +01001803 !channel_is_empty(cs_oc(s->csb)) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001804 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001805 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001806#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001807
Willy Tarreau14f8e862012-08-30 22:23:13 +02001808 /* set connect timeout */
Christopher Fauletae024ce2022-03-29 19:02:31 +02001809 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001810
Willy Tarreau827aee92011-03-10 16:55:02 +01001811 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001812 int count;
1813
Willy Tarreaue7dff022015-04-03 01:14:29 +02001814 s->flags |= SF_CURR_SESS;
Willy Tarreau1db42732021-04-06 11:44:07 +02001815 count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001816 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau59b0fec2021-02-17 16:01:37 +01001817 if (s->be->lbprm.server_take_conn)
Willy Tarreau5941ef02021-06-18 18:29:25 +02001818 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001819 }
1820
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001821 /* Now handle synchronously connected sockets. We know the conn-stream
Christopher Faulet62e75742022-03-31 09:16:34 +02001822 * is at least in state CS_ST_CON. These ones typically are UNIX
Christopher Fauletaf642df2022-03-30 10:06:11 +02001823 * sockets, socket pairs, andoccasionally TCP connections on the
Willy Tarreauada4c582020-03-04 16:42:03 +01001824 * loopback on a heavily loaded system.
1825 */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02001826 if (srv_conn->flags & CO_FL_ERROR)
1827 s->csb->endp->flags |= CS_EP_ERROR;
Willy Tarreauada4c582020-03-04 16:42:03 +01001828
1829 /* If we had early data, and the handshake ended, then
1830 * we can remove the flag, and attempt to wake the task up,
1831 * in the event there's an analyser waiting for the end of
1832 * the handshake.
1833 */
1834 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
Christopher Faulete9e48202022-03-22 18:13:29 +01001835 s->csb->endp->flags &= ~CS_EP_WAIT_FOR_HS;
Willy Tarreauada4c582020-03-04 16:42:03 +01001836
Christopher Faulet62e75742022-03-31 09:16:34 +02001837 if (!cs_state_in(s->csb->state, CS_SB_EST|CS_SB_DIS|CS_SB_CLO) &&
Willy Tarreauada4c582020-03-04 16:42:03 +01001838 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
Christopher Fauletae024ce2022-03-29 19:02:31 +02001839 s->conn_exp = TICK_ETERNITY;
Christopher Faulet908628c2022-03-25 16:43:49 +01001840 cs_oc(s->csb)->flags |= CF_WRITE_NULL;
Christopher Faulet62e75742022-03-31 09:16:34 +02001841 if (s->csb->state == CS_ST_CON)
1842 s->csb->state = CS_ST_RDY;
Willy Tarreauada4c582020-03-04 16:42:03 +01001843 }
1844
1845 /* Report EOI on the channel if it was reached from the mux point of
1846 * view.
1847 *
1848 * Note: This test is only required because si_cs_process is also the SI
1849 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1850 * care of it.
1851 */
Christopher Faulet908628c2022-03-25 16:43:49 +01001852 if ((s->csb->endp->flags & CS_EP_EOI) && !(cs_ic(s->csb)->flags & CF_EOI))
1853 cs_ic(s->csb)->flags |= (CF_EOI|CF_READ_PARTIAL);
Willy Tarreauada4c582020-03-04 16:42:03 +01001854
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001855 /* catch all sync connect while the mux is not already installed */
1856 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1857 if (conn_create_mux(srv_conn) < 0) {
1858 conn_full_close(srv_conn);
1859 return SF_ERR_INTERNAL;
1860 }
1861 }
1862
Willy Tarreaue7dff022015-04-03 01:14:29 +02001863 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001864}
1865
1866
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867/* This function performs the "redispatch" part of a connection attempt. It
1868 * will assign a server if required, queue the connection if required, and
1869 * handle errors that might arise at this level. It can change the server
1870 * state. It will return 1 if it encounters an error, switches the server
1871 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1872 * that the connection is ready to use.
1873 */
1874
Willy Tarreau87b09662015-04-03 00:22:06 +02001875int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001876{
Willy Tarreau827aee92011-03-10 16:55:02 +01001877 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001878 int conn_err;
1879
1880 /* We know that we don't have any connection pending, so we will
1881 * try to get a new one, and wait in this state if it's queued
1882 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001883 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001884 conn_err = assign_server_and_queue(s);
1885 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001886
Willy Tarreaubaaee002006-06-26 02:48:02 +02001887 switch (conn_err) {
1888 case SRV_STATUS_OK:
1889 break;
1890
Willy Tarreau7c669d72008-06-20 15:04:11 +02001891 case SRV_STATUS_FULL:
1892 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1893 * and we can redispatch to another server, or it is not and we return
1894 * 503. This only makes sense in DIRECT mode however, because normal LB
1895 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001896 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001897 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001898 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001899 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001900 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001901 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Christopher Faulet8da67aa2022-03-29 17:53:09 +02001902 sockaddr_free(&s->csb->dst);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001903 goto redispatch;
1904 }
1905
Christopher Faulet50264b42022-03-30 19:39:30 +02001906 if (!s->conn_err_type) {
1907 s->conn_err_type = STRM_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001908 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001909
Willy Tarreau4781b152021-04-06 13:53:36 +02001910 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1911 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001912 return 1;
1913
Willy Tarreaubaaee002006-06-26 02:48:02 +02001914 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001915 /* note: it is guaranteed that srv == NULL here */
Christopher Faulet50264b42022-03-30 19:39:30 +02001916 if (!s->conn_err_type) {
1917 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001918 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001919
Willy Tarreau4781b152021-04-06 13:53:36 +02001920 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001921 return 1;
1922
1923 case SRV_STATUS_QUEUED:
Christopher Fauletae024ce2022-03-29 19:02:31 +02001924 s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.queue);
Christopher Faulet62e75742022-03-31 09:16:34 +02001925 s->csb->state = CS_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001926 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001927 return 1;
1928
Willy Tarreaubaaee002006-06-26 02:48:02 +02001929 case SRV_STATUS_INTERNAL:
1930 default:
Christopher Faulet50264b42022-03-30 19:39:30 +02001931 if (!s->conn_err_type) {
1932 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001933 }
1934
Willy Tarreau827aee92011-03-10 16:55:02 +01001935 if (srv)
1936 srv_inc_sess_ctr(srv);
1937 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001938 srv_set_sess_last(srv);
1939 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001940 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1941 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001942
Willy Tarreau87b09662015-04-03 00:22:06 +02001943 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001944 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001945 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001946 return 1;
1947 }
1948 /* if we get here, it's because we got SRV_STATUS_OK, which also
1949 * means that the connection has not been queued.
1950 */
1951 return 0;
1952}
1953
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001954/* Check if the connection request is in such a state that it can be aborted. */
1955static int back_may_abort_req(struct channel *req, struct stream *s)
1956{
1957 return ((req->flags & (CF_READ_ERROR)) ||
1958 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1959 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1960}
1961
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02001962/* Update back conn-stream status for input states CS_ST_ASS, CS_ST_QUE,
Christopher Faulet62e75742022-03-31 09:16:34 +02001963 * CS_ST_TAR. Other input states are simply ignored.
1964 * Possible output states are CS_ST_CLO, CS_ST_TAR, CS_ST_ASS, CS_ST_REQ, CS_ST_CON
1965 * and CS_ST_EST. Flags must have previously been updated for timeouts and other
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001966 * conditions.
1967 */
1968void back_try_conn_req(struct stream *s)
1969{
1970 struct server *srv = objt_server(s->target);
Christopher Faulet908628c2022-03-25 16:43:49 +01001971 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001972 struct channel *req = &s->req;
1973
Christopher Faulet62e75742022-03-31 09:16:34 +02001974 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001975
Christopher Faulet62e75742022-03-31 09:16:34 +02001976 if (cs->state == CS_ST_ASS) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001977 /* Server assigned to connection request, we have to try to connect now */
1978 int conn_err;
1979
1980 /* Before we try to initiate the connection, see if the
1981 * request may be aborted instead.
1982 */
1983 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02001984 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02001985 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 +01001986 goto abort_connection;
1987 }
1988
1989 conn_err = connect_server(s);
1990 srv = objt_server(s->target);
1991
1992 if (conn_err == SF_ERR_NONE) {
Christopher Faulet62e75742022-03-31 09:16:34 +02001993 /* state = CS_ST_CON or CS_ST_EST now */
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001994 if (srv)
1995 srv_inc_sess_ctr(srv);
1996 if (srv)
1997 srv_set_sess_last(srv);
Christopher Faulet62e75742022-03-31 09:16:34 +02001998 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001999 goto end;
2000 }
2001
2002 /* We have received a synchronous error. We might have to
2003 * abort, retry immediately or redispatch.
2004 */
2005 if (conn_err == SF_ERR_INTERNAL) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002006 if (!s->conn_err_type) {
2007 s->conn_err_type = STRM_ET_CONN_OTHER;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002008 }
2009
2010 if (srv)
2011 srv_inc_sess_ctr(srv);
2012 if (srv)
2013 srv_set_sess_last(srv);
2014 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002015 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2016 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002017
2018 /* release other streams waiting for this server */
2019 sess_change_server(s, NULL);
2020 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002021 process_srv_queue(srv);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002022
2023 /* Failed and not retryable. */
Christopher Fauletda098e62022-03-31 17:44:45 +02002024 cs_shutr(cs);
2025 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002026 req->flags |= CF_WRITE_ERROR;
2027
2028 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2029
2030 /* we may need to know the position in the queue for logging */
2031 pendconn_cond_unlink(s->pend_pos);
2032
2033 /* no stream was ever accounted for this server */
Christopher Faulet62e75742022-03-31 09:16:34 +02002034 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002035 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002036 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002037 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 +01002038 goto end;
2039 }
2040
2041 /* We are facing a retryable error, but we don't want to run a
2042 * turn-around now, as the problem is likely a source port
2043 * allocation problem, so we want to retry now.
2044 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002045 cs->state = CS_ST_CER;
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002046 cs->endp->flags &= ~CS_EP_ERROR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002047 back_handle_st_cer(s);
2048
Christopher Faulet62e75742022-03-31 09:16:34 +02002049 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
2050 /* 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 +01002051 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002052 else if (cs->state == CS_ST_QUE) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002053 /* connection request was queued, check for any update */
2054 if (!pendconn_dequeue(s)) {
2055 /* The connection is not in the queue anymore. Either
2056 * we have a server connection slot available and we
2057 * go directly to the assigned state, or we need to
2058 * load-balance first and go to the INI state.
2059 */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002060 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002061 if (unlikely(!(s->flags & SF_ASSIGNED)))
Christopher Faulet62e75742022-03-31 09:16:34 +02002062 cs->state = CS_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002063 else {
2064 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Christopher Faulet62e75742022-03-31 09:16:34 +02002065 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002066 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002067 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002068 goto end;
2069 }
2070
2071 /* Connection request still in queue... */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002072 if (s->flags & SF_CONN_EXP) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002073 /* ... and timeout expired */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002074 s->conn_exp = TICK_ETERNITY;
2075 s->flags &= ~SF_CONN_EXP;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002076 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2077
2078 /* we may need to know the position in the queue for logging */
2079 pendconn_cond_unlink(s->pend_pos);
2080
2081 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002082 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2083 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Christopher Fauletda098e62022-03-31 17:44:45 +02002084 cs_shutr(cs);
2085 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002086 req->flags |= CF_WRITE_TIMEOUT;
Christopher Faulet50264b42022-03-30 19:39:30 +02002087 if (!s->conn_err_type)
2088 s->conn_err_type = STRM_ET_QUEUE_TO;
Christopher Faulet62e75742022-03-31 09:16:34 +02002089 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002090 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002091 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002092 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002093 goto end;
2094 }
2095
2096 /* Connection remains in queue, check if we have to abort it */
2097 if (back_may_abort_req(req, s)) {
2098 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2099
2100 /* we may need to know the position in the queue for logging */
2101 pendconn_cond_unlink(s->pend_pos);
2102
Christopher Faulet50264b42022-03-30 19:39:30 +02002103 s->conn_err_type |= STRM_ET_QUEUE_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002104 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 +01002105 goto abort_connection;
2106 }
2107
2108 /* Nothing changed */
2109 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002110 else if (cs->state == CS_ST_TAR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002111 /* Connection request might be aborted */
2112 if (back_may_abort_req(req, s)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002113 s->conn_err_type |= STRM_ET_CONN_ABRT;
Christopher Faulet62e75742022-03-31 09:16:34 +02002114 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 +01002115 goto abort_connection;
2116 }
2117
Christopher Fauletae024ce2022-03-29 19:02:31 +02002118 if (!(s->flags & SF_CONN_EXP))
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002119 return; /* still in turn-around */
2120
Christopher Fauletae024ce2022-03-29 19:02:31 +02002121 s->flags &= ~SF_CONN_EXP;
2122 s->conn_exp = TICK_ETERNITY;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002123
2124 /* we keep trying on the same server as long as the stream is
2125 * marked "assigned".
2126 * FIXME: Should we force a redispatch attempt when the server is down ?
2127 */
2128 if (s->flags & SF_ASSIGNED)
Christopher Faulet62e75742022-03-31 09:16:34 +02002129 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002130 else
Christopher Faulet62e75742022-03-31 09:16:34 +02002131 cs->state = CS_ST_REQ;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002132
Christopher Faulet62e75742022-03-31 09:16:34 +02002133 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002134 }
2135
2136 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002137 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002138 return;
2139
2140abort_connection:
2141 /* give up */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002142 s->conn_exp = TICK_ETERNITY;
2143 s->flags &= ~SF_CONN_EXP;
Christopher Fauletda098e62022-03-31 17:44:45 +02002144 cs_shutr(cs);
2145 cs_shutw(cs);
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_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002150 return;
2151}
2152
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002153/* This function initiates a server connection request on a conn-stream
Christopher Faulet62e75742022-03-31 09:16:34 +02002154 * already in CS_ST_REQ state. Upon success, the state goes to CS_ST_ASS for
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002155 * a real connection to a server, indicating that a server has been assigned,
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002156 * or CS_ST_RDY for a successful connection to an applet. It may also return
Christopher Faulet62e75742022-03-31 09:16:34 +02002157 * CS_ST_QUE, or CS_ST_CLO upon error.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002158 */
2159void back_handle_st_req(struct stream *s)
2160{
Christopher Faulet908628c2022-03-25 16:43:49 +01002161 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002162
Christopher Faulet62e75742022-03-31 09:16:34 +02002163 if (cs->state != CS_ST_REQ)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002164 return;
2165
Christopher Faulet62e75742022-03-31 09:16:34 +02002166 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002167
2168 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002169 struct appctx *appctx;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002170
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002171 /* The target is an applet but the CS is in CS_ST_REQ. Thus it
2172 * means no appctx are attached to the CS. Otherwise, it will be
2173 * in CS_ST_RDY state. So, try to create the appctx now.
2174 */
2175 BUG_ON(cs_appctx(cs));
2176 appctx = cs_applet_create(cs, objt_applet(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002177 if (!appctx) {
2178 /* No more memory, let's immediately abort. Force the
2179 * error code to ignore the ERR_LOCAL which is not a
2180 * real error.
2181 */
2182 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
2183
Christopher Fauletda098e62022-03-31 17:44:45 +02002184 cs_shutr(cs);
2185 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002186 s->req.flags |= CF_WRITE_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002187 s->conn_err_type = STRM_ET_CONN_RES;
Christopher Faulet62e75742022-03-31 09:16:34 +02002188 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002189 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002190 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002191 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 +01002192 goto end;
2193 }
2194
Christopher Faulet62e75742022-03-31 09:16:34 +02002195 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002196 goto end;
2197 }
2198
2199 /* Try to assign a server */
2200 if (srv_redispatch_connect(s) != 0) {
2201 /* We did not get a server. Either we queued the
2202 * connection request, or we encountered an error.
2203 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002204 if (cs->state == CS_ST_QUE) {
2205 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002206 goto end;
2207 }
2208
2209 /* we did not get any server, let's check the cause */
Christopher Fauletda098e62022-03-31 17:44:45 +02002210 cs_shutr(cs);
2211 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002212 s->req.flags |= CF_WRITE_ERROR;
Christopher Faulet50264b42022-03-30 19:39:30 +02002213 if (!s->conn_err_type)
2214 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet62e75742022-03-31 09:16:34 +02002215 cs->state = CS_ST_CLO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002216 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002217 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002218 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 +01002219 goto end;
2220 }
2221
2222 /* The server is assigned */
2223 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Christopher Faulet62e75742022-03-31 09:16:34 +02002224 cs->state = CS_ST_ASS;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002225 be_set_sess_last(s->be);
Christopher Faulet62e75742022-03-31 09:16:34 +02002226 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 +01002227
2228 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002229 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002230}
2231
Christopher Faulet62e75742022-03-31 09:16:34 +02002232/* This function is called with (cs->state == CS_ST_CON) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002233 * connection was attempted and that the file descriptor is already allocated.
2234 * We must check for timeout, error and abort. Possible output states are
Christopher Faulet62e75742022-03-31 09:16:34 +02002235 * CS_ST_CER (error), CS_ST_DIS (abort), and CS_ST_CON (no change). This only
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002236 * works with connection-based streams. We know that there were no I/O event
2237 * when reaching this function. Timeouts and errors are *not* cleared.
2238 */
2239void back_handle_st_con(struct stream *s)
2240{
Christopher Faulet908628c2022-03-25 16:43:49 +01002241 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002242 struct channel *req = &s->req;
2243 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002244
Christopher Faulet62e75742022-03-31 09:16:34 +02002245 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002246
2247 /* the client might want to abort */
2248 if ((rep->flags & CF_SHUTW) ||
2249 ((req->flags & CF_SHUTW_NOW) &&
2250 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
Christopher Faulet8abe7122022-03-30 15:10:18 +02002251 cs->flags |= CS_FL_NOLINGER;
Christopher Fauletda098e62022-03-31 17:44:45 +02002252 cs_shutw(cs);
Christopher Faulet50264b42022-03-30 19:39:30 +02002253 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002254 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002255 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002256 /* Note: state = CS_ST_DIS now */
2257 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 +01002258 goto end;
2259 }
2260
Willy Tarreau062df2c2020-01-10 06:17:03 +01002261 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002262 /* retryable error ? */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002263 if ((s->flags & SF_CONN_EXP) || (cs->endp->flags & CS_EP_ERROR)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002264 if (!s->conn_err_type) {
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002265 if (cs->endp->flags & CS_EP_ERROR)
Christopher Faulet50264b42022-03-30 19:39:30 +02002266 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002267 else
Christopher Faulet50264b42022-03-30 19:39:30 +02002268 s->conn_err_type = STRM_ET_CONN_TO;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002269 }
2270
Christopher Faulet62e75742022-03-31 09:16:34 +02002271 cs->state = CS_ST_CER;
2272 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 +01002273 }
2274
Willy Tarreau062df2c2020-01-10 06:17:03 +01002275 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002276 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002277}
2278
Christopher Faulet62e75742022-03-31 09:16:34 +02002279/* This function is called with (cs->state == CS_ST_CER) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002280 * previous connection attempt has failed and that the file descriptor
2281 * has already been released. Possible causes include asynchronous error
Christopher Faulet62e75742022-03-31 09:16:34 +02002282 * notification and time out. Possible output states are CS_ST_CLO when
2283 * retries are exhausted, CS_ST_TAR when a delay is wanted before a new
2284 * connection attempt, CS_ST_ASS when it's wise to retry on the same server,
2285 * and CS_ST_REQ when an immediate redispatch is wanted. The buffers are
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002286 * marked as in error state. Timeouts and errors are cleared before retrying.
2287 */
2288void back_handle_st_cer(struct stream *s)
2289{
Christopher Faulet908628c2022-03-25 16:43:49 +01002290 struct conn_stream *cs = s->csb;
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002291 int must_tar = (cs->endp->flags & CS_EP_ERROR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002292
Christopher Faulet62e75742022-03-31 09:16:34 +02002293 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002294
Christopher Fauletae024ce2022-03-29 19:02:31 +02002295 s->conn_exp = TICK_ETERNITY;
2296 s->flags &= ~SF_CONN_EXP;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002297
Christopher Faulet731c8e62022-03-29 16:08:44 +02002298 s->conn_retries++;
2299
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002300 /* we probably have to release last stream from the server */
2301 if (objt_server(s->target)) {
Christopher Faulet908628c2022-03-25 16:43:49 +01002302 struct connection *conn = cs_conn(cs);
Christopher Faulet0256da12021-12-15 09:50:17 +01002303
Willy Tarreau88bc8002021-12-06 07:01:02 +00002304 health_adjust(__objt_server(s->target), HANA_STATUS_L4_ERR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002305
2306 if (s->flags & SF_CURR_SESS) {
2307 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002308 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002309 }
2310
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002311 if ((cs->endp->flags & CS_EP_ERROR) &&
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002312 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2313 /* We tried to connect to a server which is configured
2314 * with "verify required" and which doesn't have the
2315 * "verifyhost" directive. The server presented a wrong
2316 * certificate (a certificate for an unexpected name),
2317 * which implies that we have used SNI in the handshake,
2318 * and that the server doesn't have the associated cert
2319 * and presented a default one.
2320 *
2321 * This is a serious enough issue not to retry. It's
2322 * especially important because this wrong name might
2323 * either be the result of a configuration error, and
2324 * retrying will only hammer the server, or is caused
2325 * by the use of a wrong SNI value, most likely
2326 * provided by the client and we don't want to let the
2327 * client provoke retries.
2328 */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002329 s->conn_retries = s->be->conn_retries;
Christopher Faulet62e75742022-03-31 09:16:34 +02002330 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 +01002331 }
2332 }
2333
2334 /* ensure that we have enough retries left */
Christopher Faulet731c8e62022-03-29 16:08:44 +02002335 if (s->conn_retries >= s->be->conn_retries || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002336 if (!s->conn_err_type) {
2337 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002338 }
2339
2340 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002341 _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns);
2342 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002343 sess_change_server(s, NULL);
2344 if (may_dequeue_tasks(objt_server(s->target), s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002345 process_srv_queue(objt_server(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002346
Christopher Fauletda098e62022-03-31 17:44:45 +02002347 /* shutw is enough to stop a connecting socket */
2348 cs_shutw(cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +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;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002353 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002354 s->srv_error(s, cs);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002355
Christopher Faulet62e75742022-03-31 09:16:34 +02002356 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 +01002357 goto end;
2358 }
2359
Christopher Fauletf822dec2021-06-01 14:06:05 +02002360 /* At this stage, we will trigger a connection retry (with or without
Christopher Faulete00ad352021-12-16 14:44:31 +01002361 * redispatch). Thus we must reset the SI endpoint on the server side
Christopher Fauletf822dec2021-06-01 14:06:05 +02002362 * an close the attached connection. It is especially important to do it
2363 * now if the retry is not immediately performed, to be sure to release
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002364 * resources as soon as possible and to not catch errors from the lower
Christopher Fauletf822dec2021-06-01 14:06:05 +02002365 * layers in an unexpected state (i.e < ST_CONN).
2366 *
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002367 * Note: the conn-stream will be switched to ST_REQ, ST_ASS or
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002368 * ST_TAR and CS_EP_ERROR and SF_CONN_EXP flags will be unset.
Christopher Fauletf822dec2021-06-01 14:06:05 +02002369 */
Christopher Faulet908628c2022-03-25 16:43:49 +01002370 if (cs_reset_endp(cs) < 0) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002371 if (!s->conn_err_type)
2372 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002373
2374 if (objt_server(s->target))
2375 _HA_ATOMIC_INC(&objt_server(s->target)->counters.internal_errors);
2376 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
2377 sess_change_server(s, NULL);
2378 if (may_dequeue_tasks(objt_server(s->target), s->be))
2379 process_srv_queue(objt_server(s->target));
2380
Christopher Fauletda098e62022-03-31 17:44:45 +02002381 /* shutw is enough to stop a connecting socket */
2382 cs_shutw(cs);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002383 s->req.flags |= CF_WRITE_ERROR;
2384 s->res.flags |= CF_READ_ERROR;
2385
Christopher Faulet62e75742022-03-31 09:16:34 +02002386 cs->state = CS_ST_CLO;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002387 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002388 s->srv_error(s, cs);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002389
Christopher Faulet62e75742022-03-31 09:16:34 +02002390 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 +01002391 goto end;
2392 }
Christopher Fauletf822dec2021-06-01 14:06:05 +02002393
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002394 stream_choose_redispatch(s);
2395
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002396 if (must_tar) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002397 /* The error was an asynchronous connection error, and we will
2398 * likely have to retry connecting to the same server, most
2399 * likely leading to the same result. To avoid this, we wait
2400 * MIN(one second, connect timeout) before retrying. We don't
2401 * do it when the failure happened on a reused connection
2402 * though.
2403 */
2404
2405 int delay = 1000;
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002406 const int reused = (s->flags & SF_SRV_REUSED) &&
2407 !(s->flags & SF_SRV_REUSED_ANTICIPATED);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002408
2409 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2410 delay = s->be->timeout.connect;
2411
Christopher Faulet50264b42022-03-30 19:39:30 +02002412 if (!s->conn_err_type)
2413 s->conn_err_type = STRM_ET_CONN_ERR;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002414
2415 /* only wait when we're retrying on the same server */
Christopher Faulet62e75742022-03-31 09:16:34 +02002416 if ((cs->state == CS_ST_ASS ||
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002417 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002418 (s->be->srv_act <= 1)) && !reused) {
Christopher Faulet62e75742022-03-31 09:16:34 +02002419 cs->state = CS_ST_TAR;
Christopher Fauletae024ce2022-03-29 19:02:31 +02002420 s->conn_exp = tick_add(now_ms, MS_TO_TICKS(delay));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002421 }
Christopher Faulet62e75742022-03-31 09:16:34 +02002422 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002423 }
2424
2425 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002426 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002427}
2428
Christopher Faulet62e75742022-03-31 09:16:34 +02002429/* This function is called with (cs->state == CS_ST_RDY) meaning that a
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002430 * connection was attempted, that the file descriptor is already allocated,
2431 * and that it has succeeded. We must still check for errors and aborts.
Christopher Faulet62e75742022-03-31 09:16:34 +02002432 * Possible output states are CS_ST_EST (established), CS_ST_CER (error),
2433 * and CS_ST_DIS (abort). This only works with connection-based streams.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002434 * Timeouts and errors are *not* cleared.
2435 */
2436void back_handle_st_rdy(struct stream *s)
2437{
Christopher Faulet908628c2022-03-25 16:43:49 +01002438 struct conn_stream *cs = s->csb;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002439 struct channel *req = &s->req;
2440 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002441
Christopher Faulet62e75742022-03-31 09:16:34 +02002442 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Fauleta33ff7a2022-04-21 11:52:07 +02002443
2444 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
2445 /* Here the appctx must exists because the CS was set to
2446 * CS_ST_RDY state when the appctx was created.
2447 */
2448 BUG_ON(!cs_appctx(s->csb));
2449
2450 if (tv_iszero(&s->logs.tv_request))
2451 s->logs.tv_request = now;
2452 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2453 be_set_sess_last(s->be);
2454 }
2455
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002456 /* We know the connection at least succeeded, though it could have
2457 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002458 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002459 * We need to take care of various situations here :
2460 * - everything might be OK. We have to switch to established.
2461 * - an I/O error might have been reported after a successful transfer,
2462 * which is not retryable and needs to be logged correctly, and needs
2463 * established as well
Christopher Faulet62e75742022-03-31 09:16:34 +02002464 * - CS_ST_CON implies !CF_WROTE_DATA but not conversely as we could
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002465 * have validated a connection with incoming data (e.g. TCP with a
2466 * banner protocol), or just a successful connect() probe.
2467 * - the client might have requested a connection abort, this needs to
2468 * be checked before we decide to retry anything.
2469 */
2470
2471 /* it's still possible to handle client aborts or connection retries
2472 * before any data were sent.
2473 */
2474 if (!(req->flags & CF_WROTE_DATA)) {
2475 /* client abort ? */
2476 if ((rep->flags & CF_SHUTW) ||
2477 ((req->flags & CF_SHUTW_NOW) &&
2478 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2479 /* give up */
Christopher Faulet8abe7122022-03-30 15:10:18 +02002480 cs->flags |= CS_FL_NOLINGER;
Christopher Fauletda098e62022-03-31 17:44:45 +02002481 cs_shutw(cs);
Christopher Faulet50264b42022-03-30 19:39:30 +02002482 s->conn_err_type |= STRM_ET_CONN_ABRT;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002483 if (s->srv_error)
Christopher Faulet0eb32c02022-04-04 11:06:31 +02002484 s->srv_error(s, cs);
Christopher Faulet62e75742022-03-31 09:16:34 +02002485 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 +01002486 goto end;
2487 }
2488
2489 /* retryable error ? */
Christopher Faulet6cd56d52022-03-30 10:47:32 +02002490 if (cs->endp->flags & CS_EP_ERROR) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002491 if (!s->conn_err_type)
2492 s->conn_err_type = STRM_ET_CONN_ERR;
Christopher Faulet62e75742022-03-31 09:16:34 +02002493 cs->state = CS_ST_CER;
2494 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 +01002495 goto end;
2496 }
2497 }
2498
2499 /* data were sent and/or we had no error, back_establish() will
2500 * now take over.
2501 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002502 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Christopher Faulet50264b42022-03-30 19:39:30 +02002503 s->conn_err_type = STRM_ET_NONE;
Christopher Faulet62e75742022-03-31 09:16:34 +02002504 cs->state = CS_ST_EST;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002505
2506 end:
Christopher Faulet62e75742022-03-31 09:16:34 +02002507 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002508}
2509
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002510/* sends a log message when a backend goes down, and also sets last
2511 * change date.
2512 */
2513void set_backend_down(struct proxy *be)
2514{
2515 be->last_change = now.tv_sec;
Willy Tarreau4781b152021-04-06 13:53:36 +02002516 _HA_ATOMIC_INC(&be->down_trans);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002517
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002518 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002519 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002520 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2521 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002522}
2523
Willy Tarreau87b09662015-04-03 00:22:06 +02002524/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002525 * tries to extract an RDP cookie from the request buffer, and look for the
2526 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002527 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002528 * list. Nothing is performed if a server was already assigned.
2529 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002530int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002531{
2532 struct proxy *px = s->be;
2533 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002534 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002535 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002536 uint16_t port;
2537 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002538 char *p;
2539
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002540 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002541
Willy Tarreaue7dff022015-04-03 01:14:29 +02002542 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002543 goto no_cookie;
2544
Willy Tarreau37406352012-04-23 16:16:37 +02002545 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002546
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002547 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002548 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002549 goto no_cookie;
2550
Willy Tarreau04276f32017-01-06 17:41:29 +01002551 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2552 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2553 * server's IP address in network order, and "port" is the integer corresponding to the
2554 * server's port in network order. Comments please Emeric.
2555 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002556 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002557 if (*p != '.')
2558 goto no_cookie;
2559 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002560
2561 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002562 if (*p != '.')
2563 goto no_cookie;
2564
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002565 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002566 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002567 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002568 port == srv->svc_port &&
2569 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002570 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002571 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002572 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002573 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002574 break;
2575 }
2576 }
2577 srv = srv->next;
2578 }
2579
2580no_cookie:
2581 req->analysers &= ~an_bit;
2582 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002583 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002584 return 1;
2585}
2586
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002587int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002588 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002589 return px->down_time;
2590
2591 return now.tv_sec - px->last_change + px->down_time;
2592}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002593
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002594/*
2595 * This function returns a string containing the balancing
2596 * mode of the proxy in a format suitable for stats.
2597 */
2598
2599const char *backend_lb_algo_str(int algo) {
2600
2601 if (algo == BE_LB_ALGO_RR)
2602 return "roundrobin";
2603 else if (algo == BE_LB_ALGO_SRR)
2604 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002605 else if (algo == BE_LB_ALGO_FAS)
2606 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002607 else if (algo == BE_LB_ALGO_LC)
2608 return "leastconn";
2609 else if (algo == BE_LB_ALGO_SH)
2610 return "source";
2611 else if (algo == BE_LB_ALGO_UH)
2612 return "uri";
2613 else if (algo == BE_LB_ALGO_PH)
2614 return "url_param";
2615 else if (algo == BE_LB_ALGO_HH)
2616 return "hdr";
2617 else if (algo == BE_LB_ALGO_RCH)
2618 return "rdp-cookie";
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02002619 else if (algo == BE_LB_ALGO_SMP)
2620 return "hash";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002621 else if (algo == BE_LB_ALGO_NONE)
2622 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002623 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002624 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002625}
2626
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002627/* This function parses a "balance" statement in a backend section describing
2628 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002629 * returns -1, it will write an error message into the <err> buffer which will
2630 * automatically be allocated and must be passed as NULL. The trailing '\n'
2631 * will not be written. The function must be called with <args> pointing to the
2632 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002633 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002634int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002635{
2636 if (!*(args[0])) {
2637 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002638 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2639 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002640 return 0;
2641 }
2642
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002643 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002644 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2645 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002646 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002647 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002648 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2649 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2650 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002651 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002652 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2653 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2654 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002655 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002656 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2657 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2658 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002659 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002660 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2661 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002662 curproxy->lbprm.arg_opt1 = 2;
2663
2664 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2665 const char *beg;
2666 char *end;
2667
2668 beg = args[0] + 7;
2669 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2670
2671 if (*end != ')') {
2672 if (!*end)
2673 memprintf(err, "random : missing closing parenthesis.");
2674 else
2675 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2676 return -1;
2677 }
2678
2679 if (curproxy->lbprm.arg_opt1 < 1) {
2680 memprintf(err, "random : number of draws must be at least 1.");
2681 return -1;
2682 }
2683 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002684 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002685 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002686 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2687 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002688 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002689 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002690 int arg = 1;
2691
Willy Tarreau31682232007-11-29 15:38:04 +01002692 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2693 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002694 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002695 curproxy->lbprm.arg_opt2 = 0; // "len"
2696 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002697
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002698 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002699 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002700 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002701 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002702 return -1;
2703 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002704 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002705 arg += 2;
2706 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002707 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002708 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002709 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002710 return -1;
2711 }
2712 /* hint: we store the position of the ending '/' (depth+1) so
2713 * that we avoid a comparison while computing the hash.
2714 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002715 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002716 arg += 2;
2717 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002718 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002719 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002720 arg += 1;
2721 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002722 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002723 curproxy->lbprm.arg_opt1 |= 2;
2724 arg += 1;
2725 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002726 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002727 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 +02002728 return -1;
2729 }
2730 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002731 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002732 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002733 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002734 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002735 return -1;
2736 }
Willy Tarreau31682232007-11-29 15:38:04 +01002737 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2738 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002739
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002740 free(curproxy->lbprm.arg_str);
2741 curproxy->lbprm.arg_str = strdup(args[1]);
2742 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002743 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002744 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002745 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002746 return -1;
2747 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002748 }
Benoitaffb4812009-03-25 13:02:10 +01002749 }
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02002750 else if (strcmp(args[0], "hash") == 0) {
2751 if (!*args[1]) {
2752 memprintf(err, "%s requires a sample expression.", args[0]);
2753 return -1;
2754 }
2755 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2756 curproxy->lbprm.algo |= BE_LB_ALGO_SMP;
2757
2758 ha_free(&curproxy->lbprm.arg_str);
2759 curproxy->lbprm.arg_str = strdup(args[1]);
2760 curproxy->lbprm.arg_len = strlen(args[1]);
2761
2762 if (*args[2]) {
2763 memprintf(err, "%s takes no other argument (got '%s').", args[0], args[2]);
2764 return -1;
2765 }
2766 }
Benoitaffb4812009-03-25 13:02:10 +01002767 else if (!strncmp(args[0], "hdr(", 4)) {
2768 const char *beg, *end;
2769
2770 beg = args[0] + 4;
2771 end = strchr(beg, ')');
2772
2773 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002774 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002775 return -1;
2776 }
2777
2778 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2779 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2780
Willy Tarreau484ff072019-01-14 15:28:53 +01002781 free(curproxy->lbprm.arg_str);
2782 curproxy->lbprm.arg_len = end - beg;
2783 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002784 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002785
2786 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002787 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002788 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002789 return -1;
2790 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002791 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002792 }
Emeric Brun736aa232009-06-30 17:56:00 +02002793 }
2794 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2795 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2796 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2797
2798 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2799 const char *beg, *end;
2800
2801 beg = args[0] + 11;
2802 end = strchr(beg, ')');
2803
2804 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002805 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002806 return -1;
2807 }
2808
Willy Tarreau484ff072019-01-14 15:28:53 +01002809 free(curproxy->lbprm.arg_str);
2810 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2811 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002812 }
2813 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002814 free(curproxy->lbprm.arg_str);
2815 curproxy->lbprm.arg_str = strdup("mstshash");
2816 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002817 }
2818 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002819 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002820 return -1;
2821 }
Willy Tarreau01732802007-11-01 22:48:15 +01002822 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002823 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002824 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 +01002825 return -1;
2826 }
2827 return 0;
2828}
2829
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002830
2831/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002832/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002833/************************************************************************/
2834
Willy Tarreau34db1082012-04-19 17:16:54 +02002835/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002836 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002837 * undefined behaviour.
2838 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002839static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002840smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002841{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002842 struct proxy *px = args->data.prx;
2843
2844 if (px == NULL)
2845 return 0;
2846 if (px->cap & PR_CAP_DEF)
2847 px = smp->px;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002848
Willy Tarreau37406352012-04-23 16:16:37 +02002849 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002850 smp->data.type = SMP_T_SINT;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002851
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002852 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002853
2854 return 1;
2855}
2856
Willy Tarreau37406352012-04-23 16:16:37 +02002857/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002858 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002859 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2860 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002861 */
2862static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002863smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002864{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002865 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002866
Willy Tarreau37406352012-04-23 16:16:37 +02002867 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002868 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002869 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2870 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002871 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002872 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002873 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002874 return 1;
2875}
2876
Willy Tarreau34db1082012-04-19 17:16:54 +02002877/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002878 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002879 * undefined behaviour.
2880 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002881static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002882smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002883{
2884 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002885 struct proxy *px = args->data.prx;
2886
2887 if (px == NULL)
2888 return 0;
2889 if (px->cap & PR_CAP_DEF)
2890 px = smp->px;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002891
Willy Tarreau37406352012-04-23 16:16:37 +02002892 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002893 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002894 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002895
Christopher Faulet37a9e212021-10-12 18:48:05 +02002896 for (iterator = px->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002897 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002898 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002899
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002900 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002901 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002902 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002903 return 1;
2904 }
2905
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002906 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreaua0570452021-06-18 09:30:30 +02002907 + (iterator->maxqueue - iterator->queue.length);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002908 }
2909
2910 return 1;
2911}
2912
Willy Tarreaua5e37562011-12-16 17:06:15 +01002913/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002914static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002915smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002916{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002917 struct proxy *px = NULL;
2918
2919 if (smp->strm)
2920 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002921 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002922 px = __objt_check(smp->sess->origin)->proxy;
2923 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002924 return 0;
2925
Willy Tarreauf853c462012-04-23 18:53:56 +02002926 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002927 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002928 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002929 return 1;
2930}
2931
Marcin Deranekd2471c22016-12-12 14:08:05 +01002932/* set string to the name of the backend */
2933static int
2934smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2935{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002936 struct proxy *px = NULL;
2937
2938 if (smp->strm)
2939 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002940 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002941 px = __objt_check(smp->sess->origin)->proxy;
2942 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002943 return 0;
2944
Christopher Fauletd1b44642020-04-30 09:51:15 +02002945 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002946 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002947 return 0;
2948
2949 smp->data.type = SMP_T_STR;
2950 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002951 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002952
2953 return 1;
2954}
2955
Willy Tarreaua5e37562011-12-16 17:06:15 +01002956/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002957static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002958smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002959{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002960 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002961
Christopher Fauletd1b44642020-04-30 09:51:15 +02002962 if (smp->strm)
2963 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002964 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002965 srv = __objt_check(smp->sess->origin)->server;
2966 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002967 return 0;
2968
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002969 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002970 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002971
2972 return 1;
2973}
2974
vkill1dfd1652019-10-30 16:58:14 +08002975/* set string to the name of the server */
2976static int
2977smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2978{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002979 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002980
Christopher Fauletd1b44642020-04-30 09:51:15 +02002981 if (smp->strm)
2982 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002983 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002984 srv = __objt_check(smp->sess->origin)->server;
2985 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002986 return 0;
2987
Christopher Fauletd1b44642020-04-30 09:51:15 +02002988 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002989 if (!smp->data.u.str.area)
2990 return 0;
2991
2992 smp->data.type = SMP_T_STR;
2993 smp->data.u.str.data = strlen(smp->data.u.str.area);
2994
2995 return 1;
2996}
2997
Willy Tarreau34db1082012-04-19 17:16:54 +02002998/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002999 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003000 * undefined behaviour.
3001 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003002static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003003smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003004{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003005 struct proxy *px = args->data.prx;
3006
3007 if (px == NULL)
3008 return 0;
3009 if (px->cap & PR_CAP_DEF)
3010 px = smp->px;
3011
Willy Tarreau37406352012-04-23 16:16:37 +02003012 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003013 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003014 smp->data.u.sint = read_freq_ctr(&px->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01003015 return 1;
3016}
3017
Willy Tarreau34db1082012-04-19 17:16:54 +02003018/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003019 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003020 * undefined behaviour.
3021 */
Willy Tarreaua36af912009-10-10 12:02:45 +02003022static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003023smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003024{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003025 struct proxy *px = args->data.prx;
3026
3027 if (px == NULL)
3028 return 0;
3029 if (px->cap & PR_CAP_DEF)
3030 px = smp->px;
3031
Willy Tarreau37406352012-04-23 16:16:37 +02003032 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003033 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003034 smp->data.u.sint = px->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02003035 return 1;
3036}
3037
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003038/* set temp integer to the number of available connections across available
3039 * servers on the backend.
3040 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
3041 * undefined behaviour.
3042 */
3043static int
3044smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3045{
3046 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003047 struct proxy *px = args->data.prx;
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003048 unsigned int maxconn;
3049
Christopher Faulet37a9e212021-10-12 18:48:05 +02003050 if (px == NULL)
3051 return 0;
3052 if (px->cap & PR_CAP_DEF)
3053 px = smp->px;
3054
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003055 smp->flags = SMP_F_VOL_TEST;
3056 smp->data.type = SMP_T_SINT;
3057 smp->data.u.sint = 0;
3058
Christopher Faulet37a9e212021-10-12 18:48:05 +02003059 for (iterator = px->srv; iterator; iterator = iterator->next) {
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04003060 if (iterator->cur_state == SRV_ST_STOPPED)
3061 continue;
3062
3063 px = iterator->proxy;
3064 if (!srv_currently_usable(iterator) ||
3065 ((iterator->flags & SRV_F_BACKUP) &&
3066 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
3067 continue;
3068
3069 if (iterator->maxconn == 0) {
3070 /* one active server is unlimited, return -1 */
3071 smp->data.u.sint = -1;
3072 return 1;
3073 }
3074
3075 maxconn = srv_dynamic_maxconn(iterator);
3076 if (maxconn > iterator->cur_sess)
3077 smp->data.u.sint += maxconn - iterator->cur_sess;
3078 }
3079
3080 return 1;
3081}
3082
Willy Tarreau34db1082012-04-19 17:16:54 +02003083/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003084 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003085 * undefined behaviour.
3086 */
Willy Tarreaua36af912009-10-10 12:02:45 +02003087static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003088smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003089{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003090 struct proxy *px = args->data.prx;
3091
3092 if (px == NULL)
3093 return 0;
3094 if (px->cap & PR_CAP_DEF)
3095 px = smp->px;
3096
Willy Tarreau37406352012-04-23 16:16:37 +02003097 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003098 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003099 smp->data.u.sint = px->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02003100 return 1;
3101}
3102
Willy Tarreaua5e37562011-12-16 17:06:15 +01003103/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02003104 * by the number of running servers and rounded up. If there is no running
3105 * server, we return twice the total, just as if we had half a running server.
3106 * This is more or less correct anyway, since we expect the last server to come
3107 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003108 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02003109 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02003110 */
3111static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003112smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02003113{
Christopher Faulet37a9e212021-10-12 18:48:05 +02003114 struct proxy *px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02003115 int nbsrv;
Christopher Faulet37a9e212021-10-12 18:48:05 +02003116
3117 if (px == NULL)
3118 return 0;
3119 if (px->cap & PR_CAP_DEF)
3120 px = smp->px;
Willy Tarreaua36af912009-10-10 12:02:45 +02003121
Willy Tarreau37406352012-04-23 16:16:37 +02003122 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003123 smp->data.type = SMP_T_SINT;
Willy Tarreaua36af912009-10-10 12:02:45 +02003124
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01003125 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02003126
3127 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003128 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02003129 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003130 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02003131
3132 return 1;
3133}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003134
Willy Tarreau34db1082012-04-19 17:16:54 +02003135/* set temp integer to the number of concurrent connections on the server in the backend.
3136 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3137 * undefined behaviour.
3138 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003139static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003140smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003141{
Willy Tarreauf853c462012-04-23 18:53:56 +02003142 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003143 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003144 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003145 return 1;
3146}
3147
Patrick Hemmer155e93e2018-06-14 18:01:35 -04003148/* set temp integer to the number of available connections on the server in the backend.
3149 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3150 * undefined behaviour.
3151 */
3152static int
3153smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3154{
3155 unsigned int maxconn;
3156
3157 smp->flags = SMP_F_VOL_TEST;
3158 smp->data.type = SMP_T_SINT;
3159
3160 if (args->data.srv->maxconn == 0) {
3161 /* one active server is unlimited, return -1 */
3162 smp->data.u.sint = -1;
3163 return 1;
3164 }
3165
3166 maxconn = srv_dynamic_maxconn(args->data.srv);
3167 if (maxconn > args->data.srv->cur_sess)
3168 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
3169 else
3170 smp->data.u.sint = 0;
3171
3172 return 1;
3173}
3174
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003175/* set temp integer to the number of connections pending in the server's queue.
3176 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3177 * undefined behaviour.
3178 */
3179static int
3180smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
3181{
3182 smp->flags = SMP_F_VOL_TEST;
3183 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003184 smp->data.u.sint = args->data.srv->queue.length;
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003185 return 1;
3186}
3187
Tait Clarridge7896d522012-12-05 21:39:31 -05003188/* set temp integer to the number of enabled servers on the proxy.
3189 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3190 * undefined behaviour.
3191 */
3192static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003193smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05003194{
3195 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003196 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003197 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05003198 return 1;
3199}
3200
Christopher Faulet1bea8652020-07-10 16:03:45 +02003201/* set temp integer to the server weight.
3202 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3203 * undefined behaviour.
3204 */
3205static int
3206smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3207{
3208 struct server *srv = args->data.srv;
3209 struct proxy *px = srv->proxy;
3210
3211 smp->flags = SMP_F_VOL_TEST;
3212 smp->data.type = SMP_T_SINT;
3213 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
3214 return 1;
3215}
3216
3217/* set temp integer to the server initial weight.
3218 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3219 * undefined behaviour.
3220 */
3221static int
3222smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3223{
3224 smp->flags = SMP_F_VOL_TEST;
3225 smp->data.type = SMP_T_SINT;
3226 smp->data.u.sint = args->data.srv->iweight;
3227 return 1;
3228}
3229
3230/* set temp integer to the server user-specified weight.
3231 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3232 * undefined behaviour.
3233 */
3234static int
3235smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3236{
3237 smp->flags = SMP_F_VOL_TEST;
3238 smp->data.type = SMP_T_SINT;
3239 smp->data.u.sint = args->data.srv->uweight;
3240 return 1;
3241}
3242
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003243static int
3244smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3245{
3246 struct proxy *px = NULL;
3247
3248 if (smp->strm)
3249 px = smp->strm->be;
3250 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3251 px = __objt_check(smp->sess->origin)->proxy;
3252 if (!px)
3253 return 0;
3254
3255 smp->flags = SMP_F_VOL_TXN;
3256 smp->data.type = SMP_T_SINT;
3257 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
3258 return 1;
3259}
3260
3261static int
3262smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3263{
3264 struct proxy *px = NULL;
3265
3266 if (smp->strm)
3267 px = smp->strm->be;
3268 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3269 px = __objt_check(smp->sess->origin)->proxy;
3270 if (!px)
3271 return 0;
3272
3273 smp->flags = SMP_F_VOL_TXN;
3274 smp->data.type = SMP_T_SINT;
3275 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
3276 return 1;
3277}
3278
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003279static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
3280{
3281
3282 struct proxy *px;
3283
3284 if (!smp_make_safe(smp))
3285 return 0;
3286
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003287 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003288 if (!px)
3289 return 0;
3290
3291 smp->data.type = SMP_T_SINT;
3292 smp->data.u.sint = be_usable_srv(px);
3293
3294 return 1;
3295}
3296
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003297static int
3298sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3299{
3300 struct proxy *px;
3301 struct server *srv;
3302 char *bksep;
3303
3304 if (!smp_make_safe(smp))
3305 return 0;
3306
3307 bksep = strchr(smp->data.u.str.area, '/');
3308
3309 if (bksep) {
3310 *bksep = '\0';
3311 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3312 if (!px)
3313 return 0;
3314 smp->data.u.str.area = bksep + 1;
3315 } else {
3316 if (!(smp->px->cap & PR_CAP_BE))
3317 return 0;
3318 px = smp->px;
3319 }
3320
3321 srv = server_find_by_name(px, smp->data.u.str.area);
3322 if (!srv)
3323 return 0;
3324
3325 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003326 smp->data.u.sint = srv->queue.length;
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003327 return 1;
3328}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003329
3330/* Note: must not be declared <const> as its list will be overwritten.
3331 * Please take care of keeping this list alphabetically sorted.
3332 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003333static struct sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003334 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3335 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3336 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3337 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3338 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3339 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3340 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3341 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3342 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3343 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3344 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3345 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3346 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3347 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3348 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3349 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3350 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3351 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3352 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3353 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3354 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003355 { /* END */ },
3356}};
3357
Willy Tarreau0108d902018-11-25 19:14:37 +01003358INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3359
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003360/* Note: must not be declared <const> as its list will be overwritten */
3361static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003362 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3363 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003364 { /* END */ },
3365}};
3366
Willy Tarreau0108d902018-11-25 19:14:37 +01003367INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003368
Willy Tarreau61612d42012-04-19 18:42:05 +02003369/* Note: must not be declared <const> as its list will be overwritten.
3370 * Please take care of keeping this list alphabetically sorted.
3371 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003372static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003373 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003374}};
3375
Willy Tarreau0108d902018-11-25 19:14:37 +01003376INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003377
Willy Tarreaubaaee002006-06-26 02:48:02 +02003378/*
3379 * Local variables:
3380 * c-indent-level: 8
3381 * c-basic-offset: 8
3382 * End:
3383 */