blob: c7fb3496d0a5bfb9a9b0a0760cebef6431674608 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaudcc048a2020-06-04 19:11:43 +020022#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/arg.h>
25#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020026#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020027#include <haproxy/check.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020028#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020031#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020032#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020033#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020034#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020035#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020036#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020037#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020038#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020039#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020040#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020042#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020043#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/proto_tcp.h>
45#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020046#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020047#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020049#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020050#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020051#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020052#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020053#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020054#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020055#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020056#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020057#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020058
Christopher Fauleteea8fc72019-11-05 16:18:10 +010059#define TRACE_SOURCE &trace_strm
60
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050061int be_lastsession(const struct proxy *be)
62{
63 if (be->be_counters.last_sess)
64 return now.tv_sec - be->be_counters.last_sess;
65
66 return -1;
67}
68
Bhaskar98634f02013-10-29 23:30:51 -040069/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070070static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040071{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070072 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040073
74 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
75 case BE_LB_HFCN_DJB2:
76 hash = hash_djb2(key, len);
77 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010078 case BE_LB_HFCN_WT6:
79 hash = hash_wt6(key, len);
80 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010081 case BE_LB_HFCN_CRC32:
82 hash = hash_crc32(key, len);
83 break;
Bhaskar98634f02013-10-29 23:30:51 -040084 case BE_LB_HFCN_SDBM:
85 /* this is the default hash function */
86 default:
87 hash = hash_sdbm(key, len);
88 break;
89 }
90
91 return hash;
92}
93
Willy Tarreaubaaee002006-06-26 02:48:02 +020094/*
95 * This function recounts the number of usable active and backup servers for
96 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010097 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010098 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010099 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200100 * This functions is designed to be called before server's weight and state
101 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200102 *
103 * threads: this is the caller responsibility to lock data. For now, this
104 * function is called from lb modules, so it should be ok. But if you need to
105 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200107void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108{
109 struct server *srv;
110
Willy Tarreau20697042007-11-15 23:26:18 +0100111 px->srv_act = px->srv_bck = 0;
112 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100113 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200115 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 continue;
117
Willy Tarreauc93cd162014-05-13 15:54:22 +0200118 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100120 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 px->lbprm.fbck = srv;
122 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400123 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200124 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100125 } else {
126 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400127 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200128 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 }
130 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100131}
Willy Tarreau20697042007-11-15 23:26:18 +0100132
Willy Tarreaub625a082007-11-26 01:15:43 +0100133/* This function simply updates the backend's tot_weight and tot_used values
134 * after servers weights have been updated. It is designed to be used after
135 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200136 *
137 * threads: this is the caller responsibility to lock data. For now, this
138 * function is called from lb modules, so it should be ok. But if you need to
139 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100140 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200141void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100142{
Willy Tarreau20697042007-11-15 23:26:18 +0100143 if (px->srv_act) {
144 px->lbprm.tot_weight = px->lbprm.tot_wact;
145 px->lbprm.tot_used = px->srv_act;
146 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100147 else if (px->lbprm.fbck) {
148 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200149 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100151 }
152 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_weight = px->lbprm.tot_wbck;
154 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100155 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100156}
157
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200158/*
159 * This function tries to find a running server for the proxy <px> following
160 * the source hash method. Depending on the number of active/backup servers,
161 * it will either look for active servers, or for backup servers.
162 * If any server is found, it will be returned. If no valid server is found,
163 * NULL is returned.
164 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100165static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200166{
167 unsigned int h, l;
168
169 if (px->lbprm.tot_weight == 0)
170 return NULL;
171
172 l = h = 0;
173
174 /* note: we won't hash if there's only one server left */
175 if (px->lbprm.tot_used == 1)
176 goto hash_done;
177
178 while ((l + sizeof (int)) <= len) {
179 h ^= ntohl(*(unsigned int *)(&addr[l]));
180 l += sizeof (int);
181 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500182 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100183 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200184 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100185 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100186 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200187 else
188 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200189}
190
191/*
192 * This function tries to find a running server for the proxy <px> following
193 * the URI hash method. In order to optimize cache hits, the hash computation
194 * ends at the question mark. Depending on the number of active/backup servers,
195 * it will either look for active servers, or for backup servers.
196 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100197 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200198 * the "whole" optional argument (boolean, bit0), the "len" argument (numeric)
199 * and the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200200 *
201 * This code was contributed by Guillaume Dallaire, who also selected this hash
202 * algorithm out of a tens because it gave him the best results.
203 *
204 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100205static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200206{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700207 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208 int c;
209 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400210 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211
212 if (px->lbprm.tot_weight == 0)
213 return NULL;
214
215 /* note: we won't hash if there's only one server left */
216 if (px->lbprm.tot_used == 1)
217 goto hash_done;
218
Willy Tarreaua9a72492019-01-14 16:14:15 +0100219 if (px->lbprm.arg_opt2) // "len"
220 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200221
Bhaskar98634f02013-10-29 23:30:51 -0400222 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200224 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200225 if (c == '/') {
226 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100227 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 break;
229 }
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200230 else if (c == '?' && !(px->lbprm.arg_opt1 & 1)) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200232 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200233 }
Bhaskar98634f02013-10-29 23:30:51 -0400234
235 hash = gen_hash(px, start, (end - start));
236
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500237 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100238 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200239 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100240 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100241 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200242 else
243 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200244}
245
Christopher Faulet5b517552017-06-09 14:17:53 +0200246/*
Willy Tarreau01732802007-11-01 22:48:15 +0100247 * This function tries to find a running server for the proxy <px> following
248 * the URL parameter hash method. It looks for a specific parameter in the
249 * URL and hashes it to compute the server ID. This is useful to optimize
250 * performance by avoiding bounces between servers in contexts where sessions
251 * are shared but cookies are not usable. If the parameter is not found, NULL
252 * is returned. If any server is found, it will be returned. If no valid server
253 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100254 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100255static 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 +0100256{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700257 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400258 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200259 const char *p;
260 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100261 int plen;
262
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100264 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100265 return NULL;
266
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 if ((p = memchr(uri, '?', uri_len)) == NULL)
268 return NULL;
269
Willy Tarreau01732802007-11-01 22:48:15 +0100270 p++;
271
272 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100273 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200274 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100275
276 while (uri_len > plen) {
277 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100279 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200280 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100281 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100283 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400285 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 uri_len -= plen + 1;
287
Bhaskar98634f02013-10-29 23:30:51 -0400288 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100289 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400290 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100291 }
Bhaskar98634f02013-10-29 23:30:51 -0400292 hash = gen_hash(px, start, (end - start));
293
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500294 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100295 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400296
Willy Tarreau6c30be52019-01-14 17:07:39 +0100297 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100298 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200299 else
300 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100301 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200302 }
303 /* skip to next parameter */
304 p = memchr(params, '&', uri_len);
305 if (!p)
306 return NULL;
307 p++;
308 uri_len -= (p - params);
309 params = p;
310 }
311 return NULL;
312}
313
314/*
315 * this does the same as the previous server_ph, but check the body contents
316 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100317static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200318{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700319 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100320 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200322 struct htx *htx = htxbuf(&req->buf);
323 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100324 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100325 unsigned long len;
326 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200327
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 return NULL;
330
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200331 p = params = NULL;
332 len = 0;
333 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
334 enum htx_blk_type type = htx_get_blk_type(blk);
335 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200336
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200337 if (type != HTX_BLK_DATA)
338 continue;
339 v = htx_get_blk_value(htx, blk);
340 p = params = v.ptr;
341 len = v.len;
342 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100343 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200344
345 while (len > plen) {
346 /* Look for the parameter name followed by an equal symbol */
347 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100348 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200349 /* OK, we have the parameter here at <params>, and
350 * the value after the equal sign, at <p>
351 * skip the equal symbol
352 */
353 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400354 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200355 len -= plen + 1;
356
Bhaskar98634f02013-10-29 23:30:51 -0400357 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100359 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400360 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100361 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
363 break;
364 return NULL; /* oh, no; this is not uri-encoded.
365 * This body does not contain parameters.
366 */
367 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200368 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400369 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200370 /* should we break if vlen exceeds limit? */
371 }
Bhaskar98634f02013-10-29 23:30:51 -0400372 hash = gen_hash(px, start, (end - start));
373
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500374 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100375 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400376
Willy Tarreau6c30be52019-01-14 17:07:39 +0100377 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100378 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200379 else
380 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200381 }
382 }
Willy Tarreau01732802007-11-01 22:48:15 +0100383 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100385 if (!p)
386 return NULL;
387 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388 len -= (p - params);
389 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100390 }
391 return NULL;
392}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200394
Willy Tarreaubaaee002006-06-26 02:48:02 +0200395/*
Benoitaffb4812009-03-25 13:02:10 +0100396 * This function tries to find a running server for the proxy <px> following
397 * the Header parameter hash method. It looks for a specific parameter in the
398 * URL and hashes it to compute the server ID. This is useful to optimize
399 * performance by avoiding bounces between servers in contexts where sessions
400 * are shared but cookies are not usable. If the parameter is not found, NULL
401 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100402 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
403 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100404 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100405static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100406{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700407 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100408 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100409 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100410 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100411 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400412 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200413 struct htx *htx = htxbuf(&s->req.buf);
414 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100415
416 /* tot_weight appears to mean srv_count */
417 if (px->lbprm.tot_weight == 0)
418 return NULL;
419
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200420 /* note: we won't hash if there's only one server left */
421 if (px->lbprm.tot_used == 1)
422 goto hash_done;
423
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200424 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100425
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200426 /* if the header is not found or empty, let's fallback to round robin */
427 if (!ctx.blk || !ctx.value.len)
428 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100429
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200430 /* Found a the param_name in the headers.
431 * we will compute the hash based on this value ctx.val.
432 */
433 len = ctx.value.len;
434 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100435
Willy Tarreau9fed8582019-01-14 16:04:54 +0100436 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400437 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100438 } else {
439 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100440 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100441 /* special computation, use only main domain name, not tld/host
442 * going back from the end of string, start hashing at first
443 * dot stop at next.
444 * This is designed to work with the 'Host' header, and requires
445 * a special option to activate this.
446 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100447 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100448 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100449 if (dohash) {
450 /* Rewind the pointer until the previous char
451 * is a dot, this will allow to set the start
452 * position of the domain. */
453 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100454 break;
Benoitaffb4812009-03-25 13:02:10 +0100455 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100456 else if (*p == '.') {
457 /* The pointer is rewinded to the dot before the
458 * tld, we memorize the end of the domain and
459 * can enter the domain processing. */
460 end = p;
461 dohash = 1;
462 }
Benoitaffb4812009-03-25 13:02:10 +0100463 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100464 len--;
Benoitaffb4812009-03-25 13:02:10 +0100465 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100466 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400467 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100468 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500469 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100470 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200471 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100472 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100473 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200474 else
475 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100476}
477
Willy Tarreau34db1082012-04-19 17:16:54 +0200478/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100479static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200480{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700481 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200482 struct proxy *px = s->be;
483 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200484 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200485 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200486 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200487
488 /* tot_weight appears to mean srv_count */
489 if (px->lbprm.tot_weight == 0)
490 return NULL;
491
Willy Tarreau37406352012-04-23 16:16:37 +0200492 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200493
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200494 rewind = co_data(&s->req);
495 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200496
Willy Tarreau484ff072019-01-14 15:28:53 +0100497 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200498 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100499
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200500 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200501
Willy Tarreau37406352012-04-23 16:16:37 +0200502 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200503 return NULL;
504
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200505 /* note: we won't hash if there's only one server left */
506 if (px->lbprm.tot_used == 1)
507 goto hash_done;
508
Willy Tarreau484ff072019-01-14 15:28:53 +0100509 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200510 * we will compute the hash based on this value ctx.val.
511 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200512 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400513
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500514 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100515 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200516 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100517 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100518 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200519 else
520 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200521}
Christopher Faulet5b517552017-06-09 14:17:53 +0200522
Willy Tarreau760e81d2018-05-03 07:20:40 +0200523/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100524static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200525{
526 unsigned int hash = 0;
527 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100528 struct server *prev, *curr;
529 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200530
531 /* tot_weight appears to mean srv_count */
532 if (px->lbprm.tot_weight == 0)
533 return NULL;
534
Willy Tarreau21c741a2019-01-14 18:14:27 +0100535 curr = NULL;
536 do {
537 prev = curr;
Willy Tarreaub9f54c52020-03-08 17:31:39 +0100538 hash = ha_random32();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100539 curr = chash_get_server_hash(px, hash, avoid);
540 if (!curr)
541 break;
542
543 /* compare the new server to the previous best choice and pick
544 * the one with the least currently served requests.
545 */
546 if (prev && prev != curr &&
547 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
548 curr = prev;
549 } while (--draws > 0);
550
Willy Tarreaub88ae182020-09-29 16:58:30 +0200551 /* if the selected server is full, pretend we have none so that we reach
552 * the backend's queue instead.
553 */
554 if (curr &&
555 (curr->nbpend || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr))))
556 curr = NULL;
557
Willy Tarreau21c741a2019-01-14 18:14:27 +0100558 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200559}
560
Benoitaffb4812009-03-25 13:02:10 +0100561/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200562 * This function applies the load-balancing algorithm to the stream, as
563 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200564 * 'assigned'.
565 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200566 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200567 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100568 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200569 * The function tries to keep the original connection slot if it reconnects to
570 * the same server, otherwise it releases it and tries to offer it.
571 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200572 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200573 *
574 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100575 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200576 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
577 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200578 * SRV_STATUS_INTERNAL for other unrecoverable errors.
579 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200580 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100581 * it does not need to be called anymore. This means that target_srv(&s->target)
582 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583 *
584 */
585
Willy Tarreau87b09662015-04-03 00:22:06 +0200586int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200587{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100588 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200589 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100590 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200591 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100592
Simon Horman8effd3d2011-08-13 08:03:52 +0900593 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200594
Willy Tarreau7c669d72008-06-20 15:04:11 +0200595 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200596 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200597 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100598
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100599 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200601
Willy Tarreau7c669d72008-06-20 15:04:11 +0200602 /* We have to release any connection slot before applying any LB algo,
603 * otherwise we may erroneously end up with no available slot.
604 */
605 if (conn_slot)
606 sess_change_server(s, NULL);
607
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100608 /* We will now try to find the good server and store it into <objt_server(s->target)>.
609 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200610 * as well as if no server is available (check error code).
611 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100612
Willy Tarreau827aee92011-03-10 16:55:02 +0100613 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100614 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100615
Olivier Houchardba4fff52018-12-01 14:40:40 +0100616 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200617 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100618 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100619 struct sess_srv_list *srv_list;
620 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
621 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100622
623 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200624 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100625 (!s->be->max_ka_queue ||
626 server_has_room(tmpsrv) || (
627 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
628 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100629 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100630 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100631 srv = tmpsrv;
632 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200633 if (conn->flags & CO_FL_SESS_IDLE) {
634 conn->flags &= ~CO_FL_SESS_IDLE;
635 s->sess->idle_conns--;
636 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100637 goto out_ok;
638 }
639 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100640 }
641 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100642 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200643
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200644 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200645 /* we must check if we have at least one server available */
646 if (!s->be->lbprm.tot_weight) {
647 err = SRV_STATUS_NOSRV;
648 goto out;
649 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200650
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200651 /* if there's some queue on the backend, with certain algos we
652 * know it's because all servers are full.
653 */
654 if (s->be->nbpend &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200655 (((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 +0200656 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
657 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
658 err = SRV_STATUS_FULL;
659 goto out;
660 }
661
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200662 /* First check whether we need to fetch some data or simply call
663 * the LB lookup function. Only the hashing functions will need
664 * some input data in fact, and will support multiple algorithms.
665 */
666 switch (s->be->lbprm.algo & BE_LB_LKUP) {
667 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100668 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200669 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200670
Willy Tarreauf09c6602012-02-13 17:12:08 +0100671 case BE_LB_LKUP_FSTREE:
672 srv = fas_get_next_server(s->be, prev_srv);
673 break;
674
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200675 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100676 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200677 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200679 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200680 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200681 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200682 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100683 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100684 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100685 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200686 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200688 break;
689 }
690 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200691 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200692 err = SRV_STATUS_INTERNAL;
693 goto out;
694 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200695
696 switch (s->be->lbprm.algo & BE_LB_PARM) {
697 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200698 conn = objt_conn(strm_orig(s));
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200699 if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200700 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200701 (void *)&((struct sockaddr_in *)conn->src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100702 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200703 }
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200704 else if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200705 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200706 (void *)&((struct sockaddr_in6 *)conn->src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100707 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200708 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200709 else {
710 /* unknown IP family */
711 err = SRV_STATUS_INTERNAL;
712 goto out;
713 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200714 break;
715
716 case BE_LB_HASH_URI:
717 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200718 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100719 struct ist uri;
720
Christopher Faulet297fbb42019-05-13 14:41:27 +0200721 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200722 if (s->be->lbprm.arg_opt1 & 2) {
723 uri = http_get_path(uri);
724 if (!uri.ptr)
725 uri = ist("");
726 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100727 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
728 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200729 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200730
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200731 case BE_LB_HASH_PRM:
732 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200733 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100734 struct ist uri;
735
Christopher Faulet297fbb42019-05-13 14:41:27 +0200736 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100737 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100738
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200739 if (!srv && s->txn->meth == HTTP_METH_POST)
740 srv = get_server_ph_post(s, prev_srv);
741 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200742 break;
Benoitaffb4812009-03-25 13:02:10 +0100743
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200744 case BE_LB_HASH_HDR:
745 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200746 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
747 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200748 break;
749
750 case BE_LB_HASH_RDP:
751 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100752 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200753 break;
754
755 default:
756 /* unknown balancing algorithm */
757 err = SRV_STATUS_INTERNAL;
758 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100759 }
Emeric Brun736aa232009-06-30 17:56:00 +0200760
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200761 /* If the hashing parameter was not found, let's fall
762 * back to round robin on the map.
763 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100764 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100765 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100766 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200767 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100768 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200769 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200770
771 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200772 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200773
Willy Tarreau7c669d72008-06-20 15:04:11 +0200774 default:
775 /* unknown balancing algorithm */
776 err = SRV_STATUS_INTERNAL;
777 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200778 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200779
Willy Tarreau827aee92011-03-10 16:55:02 +0100780 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200781 err = SRV_STATUS_FULL;
782 goto out;
783 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100784 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100785 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
786 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100787 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100788 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200789 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200790 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100791 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200792 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100793 else if ((s->be->options & PR_O_HTTP_PROXY)) {
794 conn = cs_conn(objt_cs(s->si[1].end));
795
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200796 if (conn && conn->dst && is_addr(conn->dst)) {
Olivier Houchard2442f682018-12-01 17:03:38 +0100797 /* in proxy mode, we need a valid destination address */
798 s->target = &s->be->obj_type;
799 } else {
800 err = SRV_STATUS_NOSRV;
801 goto out;
802 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100803 }
804 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200805 err = SRV_STATUS_NOSRV;
806 goto out;
807 }
808
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100809out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200810 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200811 err = SRV_STATUS_OK;
812 out:
813
814 /* Either we take back our connection slot, or we offer it to someone
815 * else if we don't need it anymore.
816 */
817 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100818 if (conn_slot == srv) {
819 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200820 } else {
821 if (may_dequeue_tasks(conn_slot, s->be))
822 process_srv_queue(conn_slot);
823 }
824 }
825
826 out_err:
827 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828}
829
Willy Tarreaubaaee002006-06-26 02:48:02 +0200830/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200831 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 * The address is taken from the currently assigned server, or from the
833 * dispatch or transparent address.
834 *
835 * It may return :
836 * SRV_STATUS_OK if everything is OK.
837 * SRV_STATUS_INTERNAL for other unrecoverable errors.
838 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200839 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840 * not cleared, so it's to the caller to clear it if required.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200841 */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200842int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200844 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200845
Christopher Faulet56803b12017-11-24 16:06:18 +0100846 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847
Willy Tarreau9b7587a2020-10-15 07:32:10 +0200848 if (!sockaddr_alloc(&s->target_addr, NULL, 0))
Willy Tarreauca79f592019-07-17 19:04:47 +0200849 return SRV_STATUS_INTERNAL;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200850
Willy Tarreaue7dff022015-04-03 01:14:29 +0200851 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200852 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200853 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200854 return SRV_STATUS_INTERNAL;
855
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200856 *s->target_addr = __objt_server(s->target)->addr;
857 set_host_port(s->target_addr, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200858
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200859 if (!is_addr(s->target_addr) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200860 /* if the server has no address, we use the same address
861 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200862 * locally on multiple addresses at once. Nothing is done
863 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200864 */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200865 if (!conn_get_dst(cli_conn)) {
866 /* do nothing if we can't retrieve the address */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200867 } else if (cli_conn->dst->ss_family == AF_INET) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200868 ((struct sockaddr_in *)s->target_addr)->sin_addr = ((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200869 } else if (cli_conn->dst->ss_family == AF_INET6) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200870 ((struct sockaddr_in6 *)s->target_addr)->sin6_addr = ((struct sockaddr_in6 *)cli_conn->dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200871 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200872 }
873
Willy Tarreaubaaee002006-06-26 02:48:02 +0200874 /* if this server remaps proxied ports, we'll use
875 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200876 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100877 int base_port;
878
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200879 if (conn_get_dst(cli_conn)) {
880 /* First, retrieve the port from the incoming connection */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200881 base_port = get_host_port(cli_conn->dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100882
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200883 /* Second, assign the outgoing connection's port */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200884 base_port += get_host_port(s->target_addr);
885 set_host_port(s->target_addr, base_port);
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200886 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887 }
888 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200889 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200890 /* connect to the defined dispatch addr */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200891 *s->target_addr = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200892 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200893 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200894 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200895 if (conn_get_dst(cli_conn) &&
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200896 (cli_conn->dst->ss_family == AF_INET || cli_conn->dst->ss_family == AF_INET6))
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200897 *s->target_addr = *cli_conn->dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200898 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100899 else if (s->be->options & PR_O_HTTP_PROXY) {
900 /* If HTTP PROXY option is set, then server is already assigned
901 * during incoming client request parsing. */
902 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100903 else {
904 /* no server and no LB algorithm ! */
905 return SRV_STATUS_INTERNAL;
906 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200907
Willy Tarreaue7dff022015-04-03 01:14:29 +0200908 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200909 return SRV_STATUS_OK;
910}
911
Willy Tarreau87b09662015-04-03 00:22:06 +0200912/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200913 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200914 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200915 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200916 * be called before any connection and after any retry or redispatch occurs.
917 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200918 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919 *
920 * Returns :
921 *
922 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100923 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200924 * SRV_STATUS_QUEUED if the connection has been queued.
925 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100926 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200927 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 * SRV_STATUS_INTERNAL for other unrecoverable errors.
929 *
930 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200931int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932{
933 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100934 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 int err;
936
937 if (s->pend_pos)
938 return SRV_STATUS_INTERNAL;
939
Willy Tarreau7c669d72008-06-20 15:04:11 +0200940 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200941 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100942 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100943
Willy Tarreau7c669d72008-06-20 15:04:11 +0200944 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100945 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200946 /* This stream was previously assigned to a server. We have to
947 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200948 * - if the server changed :
949 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200950 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200951 * - increment srv->redispatches and be->redispatches
952 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100953 */
954
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100955 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200956 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
957 s->txn->flags &= ~TX_CK_MASK;
958 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200959 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200960 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +0100961 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
962 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200963 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +0100964 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
965 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100966 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100967 }
968 }
969
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970 switch (err) {
971 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200972 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100973 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200975 return SRV_STATUS_OK; /* dispatch or proxy mode */
976
977 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100978 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200979 return SRV_STATUS_OK;
980
Willy Tarreau87b09662015-04-03 00:22:06 +0200981 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200982 * connection slot yet. Either it is a redispatch, or it was
983 * assigned from persistence information (direct mode).
984 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200985 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200986 /* server scheduled for redirection, and already assigned. We
987 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100988 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100989 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100990 return SRV_STATUS_OK;
991 }
992
Willy Tarreau87b09662015-04-03 00:22:06 +0200993 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200994 * We know we have to queue it into the server's queue, so if a maxqueue
995 * is set on the server, we must also check that the server's queue is
996 * not full, in which case we have to return FULL.
997 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100998 if (srv->maxconn &&
999 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001000
Willy Tarreau827aee92011-03-10 16:55:02 +01001001 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001002 return SRV_STATUS_FULL;
1003
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004 p = pendconn_add(s);
1005 if (p)
1006 return SRV_STATUS_QUEUED;
1007 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001008 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001009 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001010
1011 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001012 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001013 return SRV_STATUS_OK;
1014
1015 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001016 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001017 p = pendconn_add(s);
1018 if (p)
1019 return SRV_STATUS_QUEUED;
1020 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001021 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001022
1023 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001024 return err;
1025
Willy Tarreaubaaee002006-06-26 02:48:02 +02001026 case SRV_STATUS_INTERNAL:
1027 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001028
Willy Tarreaubaaee002006-06-26 02:48:02 +02001029 default:
1030 return SRV_STATUS_INTERNAL;
1031 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001032}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001033
Willy Tarreaub1d67742010-03-29 19:36:59 +02001034/* If an explicit source binding is specified on the server and/or backend, and
1035 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001036 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001037 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001038 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001039static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001040{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001041#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001042 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001043 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001044 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001045 struct connection *srv_conn;
1046
1047 if (objt_cs(s->si[1].end))
1048 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1049 else
1050 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001051
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001052 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1053 src = &srv->conn_src;
1054 else if (s->be->conn_src.opts & CO_SRC_BIND)
1055 src = &s->be->conn_src;
1056 else
1057 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001058
Willy Tarreau9b7587a2020-10-15 07:32:10 +02001059 if (!sockaddr_alloc(&srv_conn->src, NULL, 0))
Willy Tarreauca79f592019-07-17 19:04:47 +02001060 return;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001061
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001062 switch (src->opts & CO_SRC_TPROXY_MASK) {
1063 case CO_SRC_TPROXY_ADDR:
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001064 *srv_conn->src = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001065 break;
1066 case CO_SRC_TPROXY_CLI:
1067 case CO_SRC_TPROXY_CIP:
1068 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001069 cli_conn = objt_conn(strm_orig(s));
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001070 if (cli_conn && conn_get_src(cli_conn))
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001071 *srv_conn->src = *cli_conn->src;
1072 else {
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001073 sockaddr_free(&srv_conn->src);
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001074 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001075 break;
1076 case CO_SRC_TPROXY_DYN:
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001077 if (src->bind_hdr_occ && IS_HTX_STRM(s)) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001078 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001079 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001080
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001081 /* bind to the IP in a header */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001082 ((struct sockaddr_in *)srv_conn->src)->sin_family = AF_INET;
1083 ((struct sockaddr_in *)srv_conn->src)->sin_port = 0;
1084 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr = 0;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001085 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1086 ist2(src->bind_hdr_name, src->bind_hdr_len),
1087 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001088 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr =
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001089 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001090 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001091 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001092 break;
1093 default:
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001094 sockaddr_free(&srv_conn->src);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001095 }
1096#endif
1097}
1098
Olivier Houchard566df302020-03-06 18:18:56 +01001099/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001100 * (safe or idle connections). The <is_safe> argument means what type of
1101 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001102 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001103static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001104{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001105 struct eb_root *tree = is_safe ? srv->safe_conns_tree : srv->idle_conns_tree;
1106 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001107 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001108 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001109 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001110
1111 /* We need to lock even if this is our own list, because another
1112 * thread may be trying to migrate that connection, and we don't want
1113 * to end up with two threads using the same connection.
1114 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001115 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001116 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001117 conn = srv_lookup_conn(&tree[tid], hash);
1118 if (conn)
1119 conn_delete_from_tree(&conn->hash_node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001120
1121 /* If we failed to pick a connection from the idle list, let's try again with
1122 * the safe list.
1123 */
1124 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001125 conn = srv_lookup_conn(&srv->safe_conns_tree[tid], hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001126 if (conn) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001127 conn_delete_from_tree(&conn->hash_node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001128 is_safe = 1;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001129 tree = srv->safe_conns_tree;
Willy Tarreau0d587112020-07-01 15:04:38 +02001130 }
1131 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001132 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001133
1134 /* If we found a connection in our own list, and we don't have to
1135 * steal one from another thread, then we're done.
1136 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001137 if (conn)
1138 goto done;
1139
Willy Tarreau76cc6992020-07-01 18:49:24 +02001140 /* pool sharing globally disabled ? */
1141 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1142 goto done;
1143
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001144 /* Are we allowed to pick from another thread ? We'll still try
1145 * it if we're running low on FDs as we don't want to create
1146 * extra conns in this case, otherwise we can give up if we have
1147 * too few idle conns.
1148 */
1149 if (srv->curr_idle_conns < srv->low_idle_conns &&
1150 ha_used_fds < global.tune.pool_low_count)
1151 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001152
Willy Tarreau364f25a2020-07-01 15:55:30 +02001153 /* Lookup all other threads for an idle connection, starting from last
1154 * unvisited thread.
1155 */
1156 stop = srv->next_takeover;
1157 if (stop >= global.nbthread)
1158 stop = 0;
1159
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001160 i = stop;
1161 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001162 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001163 continue;
1164
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001165 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001166 conn = srv_lookup_conn(&tree[i], hash);
1167 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001168 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001169 conn_delete_from_tree(&conn->hash_node);
Willy Tarreaub1591322020-06-29 14:17:59 +02001170 _HA_ATOMIC_ADD(&activity[tid].fd_takeover, 1);
Olivier Houchard566df302020-03-06 18:18:56 +01001171 found = 1;
1172 break;
1173 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001174
1175 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001176 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001177
1178 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001179 conn = srv_lookup_conn(&srv->safe_conns_tree[i], hash);
1180 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001181 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001182 conn_delete_from_tree(&conn->hash_node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001183 _HA_ATOMIC_ADD(&activity[tid].fd_takeover, 1);
1184 found = 1;
1185 is_safe = 1;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001186 tree = srv->safe_conns_tree;
Willy Tarreau0d587112020-07-01 15:04:38 +02001187 break;
1188 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001189
1190 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001191 }
1192 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001193 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001194 } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001195
1196 if (!found)
1197 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001198 done:
1199 if (conn) {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001200 _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001201
1202 srv_use_conn(srv, conn);
1203
1204 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1205 _HA_ATOMIC_SUB(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb, 1);
1206 _HA_ATOMIC_SUB(&srv->curr_idle_thr[i], 1);
1207 conn->flags &= ~CO_FL_LIST_MASK;
1208 __ha_barrier_atomic_store();
1209
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001210 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1211 conn->mux->flags & MX_FL_HOL_RISK) {
1212 /* attach the connection to the session private list
1213 */
1214 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001215 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001216 }
1217 else {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001218 ebmb_insert(&srv->available_conns_tree[tid], &conn->hash_node, sizeof(conn->hash));
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001219 }
Olivier Houchard566df302020-03-06 18:18:56 +01001220 }
1221 return conn;
1222}
1223
Willy Tarreaubaaee002006-06-26 02:48:02 +02001224/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001225 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001226 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001227 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001228 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001229 * - SF_ERR_NONE if everything's OK
1230 * - SF_ERR_SRVTO if there are no more servers
1231 * - SF_ERR_SRVCL if the connection was refused by the server
1232 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1233 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1234 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001235 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001236 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001237 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001238 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001239int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001240{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001241 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001242 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001243 struct conn_stream *srv_cs = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001244 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001245 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001246 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001247 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001248 int err;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001249 int64_t hash = 0;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001250
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001251 /* This will catch some corner cases such as lying connections resulting from
1252 * retries or connect timeouts but will rarely trigger.
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001253 */
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001254 si_release_endpoint(&s->si[1]);
1255
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001256 srv = objt_server(s->target);
1257
Amaury Denoyellea81bb712021-01-28 17:33:26 +01001258 /* do not reuse if mode is http or if avail list is not allocated */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001259 if ((s->be->mode != PR_MODE_HTTP) || (srv && !srv->available_conns_tree))
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001260 goto skip_reuse;
1261
Willy Tarreaub0821862019-07-18 19:26:11 +02001262 /* first, search for a matching connection in the session's idle conns */
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001263 srv_conn = session_get_conn(s->sess, s->target);
1264 if (srv_conn)
1265 reuse = 1;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001266
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001267 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001268 /* Below we pick connections from the safe, idle or
1269 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001270 * on the strategy, the fact that this is a first or second
1271 * (retryable) request, with the indicated priority (1 or 2) :
1272 *
1273 * SAFE AGGR ALWS
1274 *
1275 * +-----+-----+ +-----+-----+ +-----+-----+
1276 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1277 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1278 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1279 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1280 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1281 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001282 *
1283 * Idle conns are necessarily looked up on the same thread so
1284 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001285 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001286 if (!eb_is_empty(&srv->available_conns_tree[tid])) {
1287 srv_conn = srv_lookup_conn(&srv->available_conns_tree[tid], hash);
1288 if (srv_conn)
1289 reuse = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001290 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001291
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001292 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001293 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001294 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1295 const int idle = srv->curr_idle_nb > 0;
1296 const int safe = srv->curr_safe_nb > 0;
1297
1298 /* second column of the tables above,
1299 * search for an idle then safe conn */
1300 if (not_first_req) {
1301 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001302 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001303 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001304 /* first column of the tables above */
1305 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1306 /* search for a safe conn */
1307 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001308 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001309
1310 /* search for an idle conn if no safe conn found
1311 * on always reuse mode */
1312 if (!srv_conn &&
1313 reuse_mode == PR_O_REUSE_ALWS && idle) {
1314 /* TODO conn_backend_get should not check the
1315 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001316 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001317 }
Olivier Houchard566df302020-03-06 18:18:56 +01001318 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001319
Christopher Faulet3d52f0f2020-07-02 15:45:56 +02001320 if (srv_conn)
Olivier Houchard566df302020-03-06 18:18:56 +01001321 reuse = 1;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001322 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001323 }
1324
Willy Tarreaub0821862019-07-18 19:26:11 +02001325
1326 /* here reuse might have been set above, indicating srv_conn finally
1327 * is OK.
1328 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001329 if (reuse) {
1330 /* Disable connection reuse if a dynamic source is used.
1331 * As long as we don't share connections between servers,
1332 * we don't need to disable connection reuse on no-idempotent
1333 * requests nor when PROXY protocol is used.
1334 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001335 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1336 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1337 reuse = 0;
1338 }
1339 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1340 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1341 reuse = 0;
1342 }
1343 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001344
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001345 if (ha_used_fds > global.tune.pool_high_count && srv && srv->idle_conns_tree) {
1346 struct connection *tokill_conn = NULL;
1347 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001348
1349 /* We can't reuse a connection, and e have more FDs than deemd
1350 * acceptable, attempt to kill an idling connection
1351 */
1352 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001353 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001354 node = ebmb_first(&srv->idle_conns_tree[tid]);
1355 if (node) {
1356 tokill_conn = ebmb_entry(node, struct connection, hash_node);
1357 ebmb_delete(node);
Olivier Houchard88698d92019-04-16 19:07:22 +02001358 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001359 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001360 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1361
Olivier Houchard88698d92019-04-16 19:07:22 +02001362 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001363 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001364 int i;
1365
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001366 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001367 // just silence stupid gcc which reports an absurd
1368 // out-of-bounds warning for <i> which is always
1369 // exactly zero without threads, but it seems to
1370 // see it possibly larger.
1371 ALREADY_CHECKED(i);
1372
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001373 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001374 node = ebmb_first(&srv->idle_conns_tree[i]);
1375 if (node) {
1376 tokill_conn = ebmb_entry(node, struct connection, hash_node);
1377 ebmb_delete(node);
1378 }
1379
1380 if (!tokill_conn) {
1381 node = ebmb_first(&srv->safe_conns_tree[i]);
1382 if (node) {
1383 tokill_conn = ebmb_entry(node, struct connection, hash_node);
1384 ebmb_delete(node);
1385 }
1386 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001387 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001388
Olivier Houchard88698d92019-04-16 19:07:22 +02001389 if (tokill_conn) {
1390 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1391
Willy Tarreaua9d7b762020-07-10 08:28:20 +02001392 MT_LIST_ADDQ(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001393 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001394 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001395 break;
1396 }
1397 }
1398 }
1399
1400 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001401
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001402 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001403 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001404 int avail = srv_conn->mux->avail_streams(srv_conn);
1405
1406 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001407 /* No more streams available, remove it from the list */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001408 conn_delete_from_tree(&srv_conn->hash_node);
Olivier Houchard2442f682018-12-01 17:03:38 +01001409 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001410
1411 if (avail >= 1) {
1412 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001413 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001414 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001415 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001416 srv_conn = NULL;
1417 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001418 else
1419 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001420 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001421 /* otherwise srv_conn is left intact */
1422 }
1423 else
1424 srv_conn = NULL;
1425
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001426skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001427 /* no reuse or failed to reuse the connection above, pick a new one */
1428 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001429 srv_conn = conn_new(s->target);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001430 srv_cs = NULL;
Christopher Fauletc64badd2020-07-01 15:12:43 +02001431
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001432 if (srv_conn) {
1433 srv_conn->owner = s->sess;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001434 if (reuse_mode == PR_O_REUSE_NEVR)
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001435 conn_set_private(srv_conn);
1436 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001437 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001438
Willy Tarreau9b7587a2020-10-15 07:32:10 +02001439 if (!srv_conn || !sockaddr_alloc(&srv_conn->dst, 0, 0)) {
Olivier Houchardc0caac22020-03-20 14:26:32 +01001440 if (srv_conn)
1441 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001442 return SF_ERR_RESOURCE;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001443 }
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001444
Willy Tarreaue7dff022015-04-03 01:14:29 +02001445 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001446 err = assign_server_address(s);
Olivier Houchardc0caac22020-03-20 14:26:32 +01001447 if (err != SRV_STATUS_OK) {
1448 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001449 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001450 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001451 }
1452
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001453 /* copy the target address into the connection */
1454 *srv_conn->dst = *s->target_addr;
1455
1456 /* Copy network namespace from client connection */
1457 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1458
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001459 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001460 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001461 if (srv)
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001462 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001463 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1464 /* proxies exclusively run on raw_sock right now */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001465 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), xprt_get(XPRT_RAW));
Olivier Houchardc0caac22020-03-20 14:26:32 +01001466 if (!(srv_conn->ctrl)) {
1467 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001468 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001469 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001470 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001471 else {
1472 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001473 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001474 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001475
Olivier Houchard8af03b32020-01-22 17:34:54 +01001476 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1477 if (!srv_cs) {
1478 conn_free(srv_conn);
1479 return SF_ERR_RESOURCE;
1480 }
1481 srv_conn->ctx = srv_cs;
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001482#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001483 if (!srv ||
Christopher Fauletb4de4202020-07-30 09:10:36 +02001484 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1485 srv->mux_proto || s->be->mode != PR_MODE_HTTP))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001486#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001487 init_mux = 1;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001488
Willy Tarreauff605db2013-12-20 11:09:51 +01001489 /* process the case where the server requires the PROXY protocol to be sent */
1490 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001491
Willy Tarreau7b004922015-08-04 19:34:21 +02001492 if (srv && srv->pp_opts) {
Christopher Faulet21ddc742020-07-01 15:26:14 +02001493 conn_set_private(srv_conn);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001494 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001495 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001496 if (cli_conn)
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001497 conn_get_dst(cli_conn);
Willy Tarreauff605db2013-12-20 11:09:51 +01001498 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001499
Willy Tarreauff605db2013-12-20 11:09:51 +01001500 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001501
1502 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1503 srv_conn->send_proxy_ofs = 1;
1504 srv_conn->flags |= CO_FL_SOCKS4;
1505 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001506 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001507 else if (!conn_xprt_ready(srv_conn)) {
1508 if (srv_conn->mux->reset)
1509 srv_conn->mux->reset(srv_conn);
1510 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001511 else {
1512 /* Only consider we're doing reuse if the connection was
1513 * ready.
1514 */
1515 if (srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1516 s->flags |= SF_SRV_REUSED;
1517 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001518
William Lallemandb7ff6a32012-03-02 14:35:21 +01001519 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001520 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001521 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001522
Willy Tarreau14f8e862012-08-30 22:23:13 +02001523 /* disable lingering */
1524 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001525 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001526
Willy Tarreauf1573842018-12-14 11:35:36 +01001527 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001528 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001529 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001530 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001531 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001532 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001533 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001534 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001535 }
1536
Olivier Houchard201b9f42018-11-21 00:16:29 +01001537 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001538 if (err != SF_ERR_NONE)
1539 return err;
1540
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001541#ifdef USE_OPENSSL
1542 if (srv && srv->ssl_ctx.sni) {
1543 struct sample *smp;
1544
1545 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1546 srv->ssl_ctx.sni, SMP_T_STR);
1547 if (smp_make_safe(smp)) {
1548 ssl_sock_set_servername(srv_conn, smp->data.u.str.area);
Amaury Denoyelle7239c242020-10-15 16:41:09 +02001549 if (!(srv->ssl_ctx.sni->fetch->use & SMP_USE_INTRN) ||
1550 smp->flags & SMP_F_VOLATILE) {
1551 conn_set_private(srv_conn);
1552 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001553 }
1554 }
1555#endif /* USE_OPENSSL */
1556
Willy Tarreaua3b17562020-07-31 08:39:31 +02001557 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1558 * if so, add our handshake pseudo-XPRT now.
1559 */
1560 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1561 if (xprt_add_hs(srv_conn) < 0) {
1562 conn_full_close(srv_conn);
1563 return SF_ERR_INTERNAL;
1564 }
1565 }
1566
Olivier Houchard5cd62172019-01-04 15:52:26 +01001567 /* We have to defer the mux initialization until after si_connect()
1568 * has been called, as we need the xprt to have been properly
1569 * initialized, or any attempt to recv during the mux init may
1570 * fail, and flag the connection as CO_FL_ERROR.
1571 */
1572 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001573 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1574 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001575 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001576 }
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001577 if (s->be->mode != PR_MODE_HTTP) {
1578 /* If we're doing http-reuse always, and the connection
1579 * is not private with available streams (an http2
1580 * connection), add it to the available list, so that
1581 * others can use it right away. If the connection is
1582 * private or we're doing http-reuse safe and the mux
1583 * protocol supports multiplexing, add it in the
1584 * session server list.
1585 */
1586 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1587 !(srv_conn->flags & CO_FL_PRIVATE) &&
1588 srv_conn->mux->avail_streams(srv_conn) > 0) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001589 ebmb_insert(&srv->available_conns_tree[tid], &srv_conn->hash_node, sizeof(srv_conn->hash));
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001590 }
1591 else if (srv_conn->flags & CO_FL_PRIVATE ||
1592 (reuse_mode == PR_O_REUSE_SAFE &&
1593 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1594 /* If it fail now, the same will be done in mux->detach() callback */
1595 session_add_conn(s->sess, srv_conn, srv_conn->target);
1596 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001597 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001598 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001599
Willy Tarreau5db847a2019-05-09 14:13:35 +02001600#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001601
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001602 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001603 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001604 /* Only attempt to use early data if either the client sent
1605 * early data, so that we know it can handle a 425, or if
1606 * we are allwoed to retry requests on early data failure, and
1607 * it's our first try
1608 */
1609 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1610 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1611 s->si[1].conn_retries == s->be->conn_retries)) &&
1612 !channel_is_empty(si_oc(&s->si[1])) &&
1613 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001614 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001615#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001616
Willy Tarreau14f8e862012-08-30 22:23:13 +02001617 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001618 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001619
Willy Tarreau827aee92011-03-10 16:55:02 +01001620 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001621 int count;
1622
Willy Tarreaue7dff022015-04-03 01:14:29 +02001623 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001624 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001625 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Christopher Faulet26a52af2020-10-16 16:27:17 +02001626 if (s->be->lbprm.server_take_conn) {
1627 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau827aee92011-03-10 16:55:02 +01001628 s->be->lbprm.server_take_conn(srv);
Christopher Faulet26a52af2020-10-16 16:27:17 +02001629 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
1630 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001631 }
1632
Willy Tarreauada4c582020-03-04 16:42:03 +01001633 /* Now handle synchronously connected sockets. We know the stream-int
1634 * is at least in state SI_ST_CON. These ones typically are UNIX
1635 * sockets, socket pairs, and occasionally TCP connections on the
1636 * loopback on a heavily loaded system.
1637 */
1638 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1639 s->si[1].flags |= SI_FL_ERR;
1640
1641 /* If we had early data, and the handshake ended, then
1642 * we can remove the flag, and attempt to wake the task up,
1643 * in the event there's an analyser waiting for the end of
1644 * the handshake.
1645 */
1646 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1647 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1648
1649 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1650 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1651 s->si[1].exp = TICK_ETERNITY;
1652 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1653 if (s->si[1].state == SI_ST_CON)
1654 s->si[1].state = SI_ST_RDY;
1655 }
1656
1657 /* Report EOI on the channel if it was reached from the mux point of
1658 * view.
1659 *
1660 * Note: This test is only required because si_cs_process is also the SI
1661 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1662 * care of it.
1663 */
1664 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1665 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1666
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001667 /* catch all sync connect while the mux is not already installed */
1668 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1669 if (conn_create_mux(srv_conn) < 0) {
1670 conn_full_close(srv_conn);
1671 return SF_ERR_INTERNAL;
1672 }
1673 }
1674
Willy Tarreaue7dff022015-04-03 01:14:29 +02001675 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001676}
1677
1678
Willy Tarreaubaaee002006-06-26 02:48:02 +02001679/* This function performs the "redispatch" part of a connection attempt. It
1680 * will assign a server if required, queue the connection if required, and
1681 * handle errors that might arise at this level. It can change the server
1682 * state. It will return 1 if it encounters an error, switches the server
1683 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1684 * that the connection is ready to use.
1685 */
1686
Willy Tarreau87b09662015-04-03 00:22:06 +02001687int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001688{
Willy Tarreau827aee92011-03-10 16:55:02 +01001689 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001690 int conn_err;
1691
1692 /* We know that we don't have any connection pending, so we will
1693 * try to get a new one, and wait in this state if it's queued
1694 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001695 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001696 conn_err = assign_server_and_queue(s);
1697 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001698
Willy Tarreaubaaee002006-06-26 02:48:02 +02001699 switch (conn_err) {
1700 case SRV_STATUS_OK:
1701 break;
1702
Willy Tarreau7c669d72008-06-20 15:04:11 +02001703 case SRV_STATUS_FULL:
1704 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1705 * and we can redispatch to another server, or it is not and we return
1706 * 503. This only makes sense in DIRECT mode however, because normal LB
1707 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001708 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001709 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001710 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001711 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001712 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001713 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001714 sockaddr_free(&s->target_addr);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001715 goto redispatch;
1716 }
1717
Willy Tarreau350f4872014-11-28 14:42:25 +01001718 if (!s->si[1].err_type) {
1719 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001720 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001721
Olivier Houchard237f7812019-03-08 18:49:07 +01001722 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1723 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001724 return 1;
1725
Willy Tarreaubaaee002006-06-26 02:48:02 +02001726 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001727 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001728 if (!s->si[1].err_type) {
1729 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001730 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001731
Olivier Houchard237f7812019-03-08 18:49:07 +01001732 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001733 return 1;
1734
1735 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001736 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1737 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001738 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001739 return 1;
1740
Willy Tarreaubaaee002006-06-26 02:48:02 +02001741 case SRV_STATUS_INTERNAL:
1742 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001743 if (!s->si[1].err_type) {
1744 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001745 }
1746
Willy Tarreau827aee92011-03-10 16:55:02 +01001747 if (srv)
1748 srv_inc_sess_ctr(srv);
1749 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001750 srv_set_sess_last(srv);
1751 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001752 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1753 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001754
Willy Tarreau87b09662015-04-03 00:22:06 +02001755 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001756 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001757 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758 return 1;
1759 }
1760 /* if we get here, it's because we got SRV_STATUS_OK, which also
1761 * means that the connection has not been queued.
1762 */
1763 return 0;
1764}
1765
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001766/* Check if the connection request is in such a state that it can be aborted. */
1767static int back_may_abort_req(struct channel *req, struct stream *s)
1768{
1769 return ((req->flags & (CF_READ_ERROR)) ||
1770 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1771 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1772}
1773
1774/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1775 * SI_ST_TAR. Other input states are simply ignored.
1776 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1777 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1778 * conditions.
1779 */
1780void back_try_conn_req(struct stream *s)
1781{
1782 struct server *srv = objt_server(s->target);
1783 struct stream_interface *si = &s->si[1];
1784 struct channel *req = &s->req;
1785
1786 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1787
1788 if (si->state == SI_ST_ASS) {
1789 /* Server assigned to connection request, we have to try to connect now */
1790 int conn_err;
1791
1792 /* Before we try to initiate the connection, see if the
1793 * request may be aborted instead.
1794 */
1795 if (back_may_abort_req(req, s)) {
1796 si->err_type |= SI_ET_CONN_ABRT;
1797 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1798 goto abort_connection;
1799 }
1800
1801 conn_err = connect_server(s);
1802 srv = objt_server(s->target);
1803
1804 if (conn_err == SF_ERR_NONE) {
1805 /* state = SI_ST_CON or SI_ST_EST now */
1806 if (srv)
1807 srv_inc_sess_ctr(srv);
1808 if (srv)
1809 srv_set_sess_last(srv);
1810 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1811 goto end;
1812 }
1813
1814 /* We have received a synchronous error. We might have to
1815 * abort, retry immediately or redispatch.
1816 */
1817 if (conn_err == SF_ERR_INTERNAL) {
1818 if (!si->err_type) {
1819 si->err_type = SI_ET_CONN_OTHER;
1820 }
1821
1822 if (srv)
1823 srv_inc_sess_ctr(srv);
1824 if (srv)
1825 srv_set_sess_last(srv);
1826 if (srv)
1827 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1828 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1829
1830 /* release other streams waiting for this server */
1831 sess_change_server(s, NULL);
1832 if (may_dequeue_tasks(srv, s->be))
1833 process_srv_queue(srv);
1834
1835 /* Failed and not retryable. */
1836 si_shutr(si);
1837 si_shutw(si);
1838 req->flags |= CF_WRITE_ERROR;
1839
1840 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1841
1842 /* we may need to know the position in the queue for logging */
1843 pendconn_cond_unlink(s->pend_pos);
1844
1845 /* no stream was ever accounted for this server */
1846 si->state = SI_ST_CLO;
1847 if (s->srv_error)
1848 s->srv_error(s, si);
1849 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1850 goto end;
1851 }
1852
1853 /* We are facing a retryable error, but we don't want to run a
1854 * turn-around now, as the problem is likely a source port
1855 * allocation problem, so we want to retry now.
1856 */
1857 si->state = SI_ST_CER;
1858 si->flags &= ~SI_FL_ERR;
1859 back_handle_st_cer(s);
1860
1861 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1862 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1863 }
1864 else if (si->state == SI_ST_QUE) {
1865 /* connection request was queued, check for any update */
1866 if (!pendconn_dequeue(s)) {
1867 /* The connection is not in the queue anymore. Either
1868 * we have a server connection slot available and we
1869 * go directly to the assigned state, or we need to
1870 * load-balance first and go to the INI state.
1871 */
1872 si->exp = TICK_ETERNITY;
1873 if (unlikely(!(s->flags & SF_ASSIGNED)))
1874 si->state = SI_ST_REQ;
1875 else {
1876 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1877 si->state = SI_ST_ASS;
1878 }
1879 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1880 goto end;
1881 }
1882
1883 /* Connection request still in queue... */
1884 if (si->flags & SI_FL_EXP) {
1885 /* ... and timeout expired */
1886 si->exp = TICK_ETERNITY;
1887 si->flags &= ~SI_FL_EXP;
1888 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1889
1890 /* we may need to know the position in the queue for logging */
1891 pendconn_cond_unlink(s->pend_pos);
1892
1893 if (srv)
1894 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1895 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1896 si_shutr(si);
1897 si_shutw(si);
1898 req->flags |= CF_WRITE_TIMEOUT;
1899 if (!si->err_type)
1900 si->err_type = SI_ET_QUEUE_TO;
1901 si->state = SI_ST_CLO;
1902 if (s->srv_error)
1903 s->srv_error(s, si);
1904 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1905 goto end;
1906 }
1907
1908 /* Connection remains in queue, check if we have to abort it */
1909 if (back_may_abort_req(req, s)) {
1910 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1911
1912 /* we may need to know the position in the queue for logging */
1913 pendconn_cond_unlink(s->pend_pos);
1914
1915 si->err_type |= SI_ET_QUEUE_ABRT;
1916 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1917 goto abort_connection;
1918 }
1919
1920 /* Nothing changed */
1921 }
1922 else if (si->state == SI_ST_TAR) {
1923 /* Connection request might be aborted */
1924 if (back_may_abort_req(req, s)) {
1925 si->err_type |= SI_ET_CONN_ABRT;
1926 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1927 goto abort_connection;
1928 }
1929
1930 if (!(si->flags & SI_FL_EXP))
1931 return; /* still in turn-around */
1932
1933 si->flags &= ~SI_FL_EXP;
1934 si->exp = TICK_ETERNITY;
1935
1936 /* we keep trying on the same server as long as the stream is
1937 * marked "assigned".
1938 * FIXME: Should we force a redispatch attempt when the server is down ?
1939 */
1940 if (s->flags & SF_ASSIGNED)
1941 si->state = SI_ST_ASS;
1942 else
1943 si->state = SI_ST_REQ;
1944
1945 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1946 }
1947
1948 end:
1949 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1950 return;
1951
1952abort_connection:
1953 /* give up */
1954 si->exp = TICK_ETERNITY;
1955 si->flags &= ~SI_FL_EXP;
1956 si_shutr(si);
1957 si_shutw(si);
1958 si->state = SI_ST_CLO;
1959 if (s->srv_error)
1960 s->srv_error(s, si);
1961 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1962 return;
1963}
1964
1965/* This function initiates a server connection request on a stream interface
1966 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1967 * a real connection to a server, indicating that a server has been assigned,
1968 * or SI_ST_EST for a successful connection to an applet. It may also return
1969 * SI_ST_QUE, or SI_ST_CLO upon error.
1970 */
1971void back_handle_st_req(struct stream *s)
1972{
1973 struct stream_interface *si = &s->si[1];
1974
1975 if (si->state != SI_ST_REQ)
1976 return;
1977
1978 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1979
1980 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1981 /* the applet directly goes to the EST state */
1982 struct appctx *appctx = objt_appctx(si->end);
1983
1984 if (!appctx || appctx->applet != __objt_applet(s->target))
1985 appctx = si_register_handler(si, objt_applet(s->target));
1986
1987 if (!appctx) {
1988 /* No more memory, let's immediately abort. Force the
1989 * error code to ignore the ERR_LOCAL which is not a
1990 * real error.
1991 */
1992 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
1993
1994 si_shutr(si);
1995 si_shutw(si);
1996 s->req.flags |= CF_WRITE_ERROR;
1997 si->err_type = SI_ET_CONN_RES;
1998 si->state = SI_ST_CLO;
1999 if (s->srv_error)
2000 s->srv_error(s, si);
2001 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2002 goto end;
2003 }
2004
2005 if (tv_iszero(&s->logs.tv_request))
2006 s->logs.tv_request = now;
2007 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2008 si->state = SI_ST_EST;
2009 si->err_type = SI_ET_NONE;
2010 be_set_sess_last(s->be);
2011
2012 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2013 /* let back_establish() finish the job */
2014 goto end;
2015 }
2016
2017 /* Try to assign a server */
2018 if (srv_redispatch_connect(s) != 0) {
2019 /* We did not get a server. Either we queued the
2020 * connection request, or we encountered an error.
2021 */
2022 if (si->state == SI_ST_QUE) {
2023 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2024 goto end;
2025 }
2026
2027 /* we did not get any server, let's check the cause */
2028 si_shutr(si);
2029 si_shutw(si);
2030 s->req.flags |= CF_WRITE_ERROR;
2031 if (!si->err_type)
2032 si->err_type = SI_ET_CONN_OTHER;
2033 si->state = SI_ST_CLO;
2034 if (s->srv_error)
2035 s->srv_error(s, si);
2036 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2037 goto end;
2038 }
2039
2040 /* The server is assigned */
2041 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2042 si->state = SI_ST_ASS;
2043 be_set_sess_last(s->be);
2044 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2045
2046 end:
2047 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2048}
2049
2050/* This function is called with (si->state == SI_ST_CON) meaning that a
2051 * connection was attempted and that the file descriptor is already allocated.
2052 * We must check for timeout, error and abort. Possible output states are
2053 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
2054 * works with connection-based streams. We know that there were no I/O event
2055 * when reaching this function. Timeouts and errors are *not* cleared.
2056 */
2057void back_handle_st_con(struct stream *s)
2058{
2059 struct stream_interface *si = &s->si[1];
2060 struct channel *req = &s->req;
2061 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002062
2063 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2064
2065 /* the client might want to abort */
2066 if ((rep->flags & CF_SHUTW) ||
2067 ((req->flags & CF_SHUTW_NOW) &&
2068 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2069 si->flags |= SI_FL_NOLINGER;
2070 si_shutw(si);
2071 si->err_type |= SI_ET_CONN_ABRT;
2072 if (s->srv_error)
2073 s->srv_error(s, si);
2074 /* Note: state = SI_ST_DIS now */
2075 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau062df2c2020-01-10 06:17:03 +01002076 goto end;
2077 }
2078
Willy Tarreau062df2c2020-01-10 06:17:03 +01002079 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002080 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01002081 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002082 if (!si->err_type) {
2083 if (si->flags & SI_FL_ERR)
2084 si->err_type = SI_ET_CONN_ERR;
2085 else
2086 si->err_type = SI_ET_CONN_TO;
2087 }
2088
2089 si->state = SI_ST_CER;
2090 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2091 }
2092
Willy Tarreau062df2c2020-01-10 06:17:03 +01002093 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002094 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2095}
2096
2097/* This function is called with (si->state == SI_ST_CER) meaning that a
2098 * previous connection attempt has failed and that the file descriptor
2099 * has already been released. Possible causes include asynchronous error
2100 * notification and time out. Possible output states are SI_ST_CLO when
2101 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
2102 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
2103 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
2104 * marked as in error state. Timeouts and errors are cleared before retrying.
2105 */
2106void back_handle_st_cer(struct stream *s)
2107{
2108 struct stream_interface *si = &s->si[1];
2109 struct conn_stream *cs = objt_cs(si->end);
2110 struct connection *conn = cs_conn(cs);
2111
2112 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2113
2114 si->exp = TICK_ETERNITY;
2115 si->flags &= ~SI_FL_EXP;
2116
2117 /* we probably have to release last stream from the server */
2118 if (objt_server(s->target)) {
2119 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
2120
2121 if (s->flags & SF_CURR_SESS) {
2122 s->flags &= ~SF_CURR_SESS;
2123 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
2124 }
2125
2126 if ((si->flags & SI_FL_ERR) &&
2127 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2128 /* We tried to connect to a server which is configured
2129 * with "verify required" and which doesn't have the
2130 * "verifyhost" directive. The server presented a wrong
2131 * certificate (a certificate for an unexpected name),
2132 * which implies that we have used SNI in the handshake,
2133 * and that the server doesn't have the associated cert
2134 * and presented a default one.
2135 *
2136 * This is a serious enough issue not to retry. It's
2137 * especially important because this wrong name might
2138 * either be the result of a configuration error, and
2139 * retrying will only hammer the server, or is caused
2140 * by the use of a wrong SNI value, most likely
2141 * provided by the client and we don't want to let the
2142 * client provoke retries.
2143 */
2144 si->conn_retries = 0;
2145 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2146 }
2147 }
2148
2149 /* ensure that we have enough retries left */
2150 si->conn_retries--;
2151 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2152 if (!si->err_type) {
2153 si->err_type = SI_ET_CONN_ERR;
2154 }
2155
2156 if (objt_server(s->target))
2157 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
2158 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
2159 sess_change_server(s, NULL);
2160 if (may_dequeue_tasks(objt_server(s->target), s->be))
2161 process_srv_queue(objt_server(s->target));
2162
2163 /* shutw is enough so stop a connecting socket */
2164 si_shutw(si);
2165 s->req.flags |= CF_WRITE_ERROR;
2166 s->res.flags |= CF_READ_ERROR;
2167
2168 si->state = SI_ST_CLO;
2169 if (s->srv_error)
2170 s->srv_error(s, si);
2171
2172 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2173 goto end;
2174 }
2175
2176 stream_choose_redispatch(s);
2177
2178 if (si->flags & SI_FL_ERR) {
2179 /* The error was an asynchronous connection error, and we will
2180 * likely have to retry connecting to the same server, most
2181 * likely leading to the same result. To avoid this, we wait
2182 * MIN(one second, connect timeout) before retrying. We don't
2183 * do it when the failure happened on a reused connection
2184 * though.
2185 */
2186
2187 int delay = 1000;
2188
2189 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2190 delay = s->be->timeout.connect;
2191
2192 if (!si->err_type)
2193 si->err_type = SI_ET_CONN_ERR;
2194
2195 /* only wait when we're retrying on the same server */
2196 if ((si->state == SI_ST_ASS ||
2197 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
2198 (s->be->srv_act <= 1)) && !(s->flags & SF_SRV_REUSED)) {
2199 si->state = SI_ST_TAR;
2200 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2201 }
2202 si->flags &= ~SI_FL_ERR;
2203 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2204 }
2205
2206 end:
2207 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2208}
2209
2210/* This function is called with (si->state == SI_ST_RDY) meaning that a
2211 * connection was attempted, that the file descriptor is already allocated,
2212 * and that it has succeeded. We must still check for errors and aborts.
2213 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2214 * and SI_ST_DIS (abort). This only works with connection-based streams.
2215 * Timeouts and errors are *not* cleared.
2216 */
2217void back_handle_st_rdy(struct stream *s)
2218{
2219 struct stream_interface *si = &s->si[1];
2220 struct channel *req = &s->req;
2221 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002222
2223 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2224 /* We know the connection at least succeeded, though it could have
2225 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002226 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002227 * We need to take care of various situations here :
2228 * - everything might be OK. We have to switch to established.
2229 * - an I/O error might have been reported after a successful transfer,
2230 * which is not retryable and needs to be logged correctly, and needs
2231 * established as well
2232 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2233 * have validated a connection with incoming data (e.g. TCP with a
2234 * banner protocol), or just a successful connect() probe.
2235 * - the client might have requested a connection abort, this needs to
2236 * be checked before we decide to retry anything.
2237 */
2238
2239 /* it's still possible to handle client aborts or connection retries
2240 * before any data were sent.
2241 */
2242 if (!(req->flags & CF_WROTE_DATA)) {
2243 /* client abort ? */
2244 if ((rep->flags & CF_SHUTW) ||
2245 ((req->flags & CF_SHUTW_NOW) &&
2246 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2247 /* give up */
2248 si->flags |= SI_FL_NOLINGER;
2249 si_shutw(si);
2250 si->err_type |= SI_ET_CONN_ABRT;
2251 if (s->srv_error)
2252 s->srv_error(s, si);
2253 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2254 goto end;
2255 }
2256
2257 /* retryable error ? */
2258 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002259 if (!si->err_type)
2260 si->err_type = SI_ET_CONN_ERR;
2261 si->state = SI_ST_CER;
2262 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2263 goto end;
2264 }
2265 }
2266
2267 /* data were sent and/or we had no error, back_establish() will
2268 * now take over.
2269 */
2270 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2271 si->err_type = SI_ET_NONE;
2272 si->state = SI_ST_EST;
2273
2274 end:
2275 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2276}
2277
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002278/* sends a log message when a backend goes down, and also sets last
2279 * change date.
2280 */
2281void set_backend_down(struct proxy *be)
2282{
2283 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01002284 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002285
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002286 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002287 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002288 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2289 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002290}
2291
Willy Tarreau87b09662015-04-03 00:22:06 +02002292/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002293 * tries to extract an RDP cookie from the request buffer, and look for the
2294 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002295 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002296 * list. Nothing is performed if a server was already assigned.
2297 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002298int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002299{
2300 struct proxy *px = s->be;
2301 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002302 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002303 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002304 uint16_t port;
2305 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002306 char *p;
2307
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002308 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002309
Willy Tarreaue7dff022015-04-03 01:14:29 +02002310 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002311 goto no_cookie;
2312
Willy Tarreau37406352012-04-23 16:16:37 +02002313 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002314
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002315 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002316 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002317 goto no_cookie;
2318
Willy Tarreau04276f32017-01-06 17:41:29 +01002319 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2320 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2321 * server's IP address in network order, and "port" is the integer corresponding to the
2322 * server's port in network order. Comments please Emeric.
2323 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002324 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002325 if (*p != '.')
2326 goto no_cookie;
2327 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002328
2329 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002330 if (*p != '.')
2331 goto no_cookie;
2332
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002333 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002334 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002335 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002336 port == srv->svc_port &&
2337 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002338 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002339 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002340 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002341 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002342 break;
2343 }
2344 }
2345 srv = srv->next;
2346 }
2347
2348no_cookie:
2349 req->analysers &= ~an_bit;
2350 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002351 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002352 return 1;
2353}
2354
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002355int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002356 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002357 return px->down_time;
2358
2359 return now.tv_sec - px->last_change + px->down_time;
2360}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002361
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002362/*
2363 * This function returns a string containing the balancing
2364 * mode of the proxy in a format suitable for stats.
2365 */
2366
2367const char *backend_lb_algo_str(int algo) {
2368
2369 if (algo == BE_LB_ALGO_RR)
2370 return "roundrobin";
2371 else if (algo == BE_LB_ALGO_SRR)
2372 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002373 else if (algo == BE_LB_ALGO_FAS)
2374 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002375 else if (algo == BE_LB_ALGO_LC)
2376 return "leastconn";
2377 else if (algo == BE_LB_ALGO_SH)
2378 return "source";
2379 else if (algo == BE_LB_ALGO_UH)
2380 return "uri";
2381 else if (algo == BE_LB_ALGO_PH)
2382 return "url_param";
2383 else if (algo == BE_LB_ALGO_HH)
2384 return "hdr";
2385 else if (algo == BE_LB_ALGO_RCH)
2386 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002387 else if (algo == BE_LB_ALGO_NONE)
2388 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002389 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002390 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002391}
2392
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002393/* This function parses a "balance" statement in a backend section describing
2394 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002395 * returns -1, it will write an error message into the <err> buffer which will
2396 * automatically be allocated and must be passed as NULL. The trailing '\n'
2397 * will not be written. The function must be called with <args> pointing to the
2398 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002399 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002400int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002401{
2402 if (!*(args[0])) {
2403 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002404 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2405 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002406 return 0;
2407 }
2408
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002409 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002410 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2411 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002412 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002413 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002414 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2415 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2416 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002417 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002418 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2419 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2420 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002421 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002422 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2423 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2424 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002425 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002426 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2427 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002428 curproxy->lbprm.arg_opt1 = 2;
2429
2430 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2431 const char *beg;
2432 char *end;
2433
2434 beg = args[0] + 7;
2435 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2436
2437 if (*end != ')') {
2438 if (!*end)
2439 memprintf(err, "random : missing closing parenthesis.");
2440 else
2441 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2442 return -1;
2443 }
2444
2445 if (curproxy->lbprm.arg_opt1 < 1) {
2446 memprintf(err, "random : number of draws must be at least 1.");
2447 return -1;
2448 }
2449 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002450 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002451 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002452 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2453 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002454 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002455 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002456 int arg = 1;
2457
Willy Tarreau31682232007-11-29 15:38:04 +01002458 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2459 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002460 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002461 curproxy->lbprm.arg_opt2 = 0; // "len"
2462 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002463
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002464 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002465 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002466 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002467 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002468 return -1;
2469 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002470 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002471 arg += 2;
2472 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002473 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002474 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002475 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002476 return -1;
2477 }
2478 /* hint: we store the position of the ending '/' (depth+1) so
2479 * that we avoid a comparison while computing the hash.
2480 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002481 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002482 arg += 2;
2483 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002484 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002485 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002486 arg += 1;
2487 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002488 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002489 curproxy->lbprm.arg_opt1 |= 2;
2490 arg += 1;
2491 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002492 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002493 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 +02002494 return -1;
2495 }
2496 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002497 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002498 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002499 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002500 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002501 return -1;
2502 }
Willy Tarreau31682232007-11-29 15:38:04 +01002503 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2504 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002505
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002506 free(curproxy->lbprm.arg_str);
2507 curproxy->lbprm.arg_str = strdup(args[1]);
2508 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002509 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002510 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002511 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002512 return -1;
2513 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002514 }
Benoitaffb4812009-03-25 13:02:10 +01002515 }
2516 else if (!strncmp(args[0], "hdr(", 4)) {
2517 const char *beg, *end;
2518
2519 beg = args[0] + 4;
2520 end = strchr(beg, ')');
2521
2522 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002523 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002524 return -1;
2525 }
2526
2527 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2528 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2529
Willy Tarreau484ff072019-01-14 15:28:53 +01002530 free(curproxy->lbprm.arg_str);
2531 curproxy->lbprm.arg_len = end - beg;
2532 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002533 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002534
2535 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002536 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002537 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002538 return -1;
2539 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002540 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002541 }
Emeric Brun736aa232009-06-30 17:56:00 +02002542 }
2543 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2544 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2545 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2546
2547 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2548 const char *beg, *end;
2549
2550 beg = args[0] + 11;
2551 end = strchr(beg, ')');
2552
2553 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002554 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002555 return -1;
2556 }
2557
Willy Tarreau484ff072019-01-14 15:28:53 +01002558 free(curproxy->lbprm.arg_str);
2559 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2560 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002561 }
2562 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002563 free(curproxy->lbprm.arg_str);
2564 curproxy->lbprm.arg_str = strdup("mstshash");
2565 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002566 }
2567 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002568 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002569 return -1;
2570 }
Willy Tarreau01732802007-11-01 22:48:15 +01002571 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002572 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002573 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 +01002574 return -1;
2575 }
2576 return 0;
2577}
2578
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002579
2580/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002581/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002582/************************************************************************/
2583
Willy Tarreau34db1082012-04-19 17:16:54 +02002584/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002585 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002586 * undefined behaviour.
2587 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002588static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002589smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002590{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002591 struct proxy *px;
2592
Willy Tarreau37406352012-04-23 16:16:37 +02002593 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002594 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002595 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002596
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002597 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002598
2599 return 1;
2600}
2601
Willy Tarreau37406352012-04-23 16:16:37 +02002602/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002603 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002604 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2605 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002606 */
2607static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002608smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002609{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002610 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002611
Willy Tarreau37406352012-04-23 16:16:37 +02002612 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002613 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002614 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2615 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002616 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002617 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002618 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002619 return 1;
2620}
2621
Willy Tarreau34db1082012-04-19 17:16:54 +02002622/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002623 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002624 * undefined behaviour.
2625 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002626static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002627smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002628{
2629 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002630
Willy Tarreau37406352012-04-23 16:16:37 +02002631 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002632 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002633 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002634
Willy Tarreau24e32d82012-04-23 23:55:44 +02002635 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002636 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002637 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002638
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002639 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002640 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002641 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002642 return 1;
2643 }
2644
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002645 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002646 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002647 }
2648
2649 return 1;
2650}
2651
Willy Tarreaua5e37562011-12-16 17:06:15 +01002652/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002653static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002654smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002655{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002656 struct proxy *px = NULL;
2657
2658 if (smp->strm)
2659 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002660 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002661 px = __objt_check(smp->sess->origin)->proxy;
2662 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002663 return 0;
2664
Willy Tarreauf853c462012-04-23 18:53:56 +02002665 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002666 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002667 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002668 return 1;
2669}
2670
Marcin Deranekd2471c22016-12-12 14:08:05 +01002671/* set string to the name of the backend */
2672static int
2673smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2674{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002675 struct proxy *px = NULL;
2676
2677 if (smp->strm)
2678 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002679 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002680 px = __objt_check(smp->sess->origin)->proxy;
2681 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002682 return 0;
2683
Christopher Fauletd1b44642020-04-30 09:51:15 +02002684 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002685 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002686 return 0;
2687
2688 smp->data.type = SMP_T_STR;
2689 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002690 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002691
2692 return 1;
2693}
2694
Willy Tarreaua5e37562011-12-16 17:06:15 +01002695/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002696static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002697smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002698{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002699 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002700
Christopher Fauletd1b44642020-04-30 09:51:15 +02002701 if (smp->strm)
2702 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002703 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002704 srv = __objt_check(smp->sess->origin)->server;
2705 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002706 return 0;
2707
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002708 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002709 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002710
2711 return 1;
2712}
2713
vkill1dfd1652019-10-30 16:58:14 +08002714/* set string to the name of the server */
2715static int
2716smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2717{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002718 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002719
Christopher Fauletd1b44642020-04-30 09:51:15 +02002720 if (smp->strm)
2721 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002722 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002723 srv = __objt_check(smp->sess->origin)->server;
2724 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002725 return 0;
2726
Christopher Fauletd1b44642020-04-30 09:51:15 +02002727 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002728 if (!smp->data.u.str.area)
2729 return 0;
2730
2731 smp->data.type = SMP_T_STR;
2732 smp->data.u.str.data = strlen(smp->data.u.str.area);
2733
2734 return 1;
2735}
2736
Willy Tarreau34db1082012-04-19 17:16:54 +02002737/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002738 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002739 * undefined behaviour.
2740 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002741static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002742smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002743{
Willy Tarreau37406352012-04-23 16:16:37 +02002744 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002745 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002746 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002747 return 1;
2748}
2749
Willy Tarreau34db1082012-04-19 17:16:54 +02002750/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002751 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002752 * undefined behaviour.
2753 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002754static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002755smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002756{
Willy Tarreau37406352012-04-23 16:16:37 +02002757 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002758 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002759 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002760 return 1;
2761}
2762
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002763/* set temp integer to the number of available connections across available
2764 * servers on the backend.
2765 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2766 * undefined behaviour.
2767 */
2768static int
2769smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2770{
2771 struct server *iterator;
2772 struct proxy *px;
2773 unsigned int maxconn;
2774
2775 smp->flags = SMP_F_VOL_TEST;
2776 smp->data.type = SMP_T_SINT;
2777 smp->data.u.sint = 0;
2778
2779 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2780 if (iterator->cur_state == SRV_ST_STOPPED)
2781 continue;
2782
2783 px = iterator->proxy;
2784 if (!srv_currently_usable(iterator) ||
2785 ((iterator->flags & SRV_F_BACKUP) &&
2786 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2787 continue;
2788
2789 if (iterator->maxconn == 0) {
2790 /* one active server is unlimited, return -1 */
2791 smp->data.u.sint = -1;
2792 return 1;
2793 }
2794
2795 maxconn = srv_dynamic_maxconn(iterator);
2796 if (maxconn > iterator->cur_sess)
2797 smp->data.u.sint += maxconn - iterator->cur_sess;
2798 }
2799
2800 return 1;
2801}
2802
Willy Tarreau34db1082012-04-19 17:16:54 +02002803/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002804 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002805 * undefined behaviour.
2806 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002807static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002808smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002809{
Willy Tarreau37406352012-04-23 16:16:37 +02002810 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002811 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002812 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002813 return 1;
2814}
2815
Willy Tarreaua5e37562011-12-16 17:06:15 +01002816/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002817 * by the number of running servers and rounded up. If there is no running
2818 * server, we return twice the total, just as if we had half a running server.
2819 * This is more or less correct anyway, since we expect the last server to come
2820 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002821 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002822 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002823 */
2824static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002825smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002826{
2827 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002828 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002829
Willy Tarreau37406352012-04-23 16:16:37 +02002830 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002831 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002832 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002833
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002834 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002835
2836 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002837 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002838 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002839 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002840
2841 return 1;
2842}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002843
Willy Tarreau34db1082012-04-19 17:16:54 +02002844/* set temp integer to the number of concurrent connections on the server in the backend.
2845 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2846 * undefined behaviour.
2847 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002848static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002849smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002850{
Willy Tarreauf853c462012-04-23 18:53:56 +02002851 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002852 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002853 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002854 return 1;
2855}
2856
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002857/* set temp integer to the number of available connections on the server in the backend.
2858 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2859 * undefined behaviour.
2860 */
2861static int
2862smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2863{
2864 unsigned int maxconn;
2865
2866 smp->flags = SMP_F_VOL_TEST;
2867 smp->data.type = SMP_T_SINT;
2868
2869 if (args->data.srv->maxconn == 0) {
2870 /* one active server is unlimited, return -1 */
2871 smp->data.u.sint = -1;
2872 return 1;
2873 }
2874
2875 maxconn = srv_dynamic_maxconn(args->data.srv);
2876 if (maxconn > args->data.srv->cur_sess)
2877 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2878 else
2879 smp->data.u.sint = 0;
2880
2881 return 1;
2882}
2883
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002884/* set temp integer to the number of connections pending in the server's queue.
2885 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2886 * undefined behaviour.
2887 */
2888static int
2889smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2890{
2891 smp->flags = SMP_F_VOL_TEST;
2892 smp->data.type = SMP_T_SINT;
2893 smp->data.u.sint = args->data.srv->nbpend;
2894 return 1;
2895}
2896
Tait Clarridge7896d522012-12-05 21:39:31 -05002897/* set temp integer to the number of enabled servers on the proxy.
2898 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2899 * undefined behaviour.
2900 */
2901static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002902smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002903{
2904 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002905 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002906 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002907 return 1;
2908}
2909
Christopher Faulet1bea8652020-07-10 16:03:45 +02002910/* set temp integer to the server weight.
2911 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2912 * undefined behaviour.
2913 */
2914static int
2915smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
2916{
2917 struct server *srv = args->data.srv;
2918 struct proxy *px = srv->proxy;
2919
2920 smp->flags = SMP_F_VOL_TEST;
2921 smp->data.type = SMP_T_SINT;
2922 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
2923 return 1;
2924}
2925
2926/* set temp integer to the server initial weight.
2927 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2928 * undefined behaviour.
2929 */
2930static int
2931smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
2932{
2933 smp->flags = SMP_F_VOL_TEST;
2934 smp->data.type = SMP_T_SINT;
2935 smp->data.u.sint = args->data.srv->iweight;
2936 return 1;
2937}
2938
2939/* set temp integer to the server user-specified weight.
2940 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2941 * undefined behaviour.
2942 */
2943static int
2944smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
2945{
2946 smp->flags = SMP_F_VOL_TEST;
2947 smp->data.type = SMP_T_SINT;
2948 smp->data.u.sint = args->data.srv->uweight;
2949 return 1;
2950}
2951
Amaury Denoyelled91d7792020-12-10 13:43:56 +01002952static int
2953smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
2954{
2955 struct proxy *px = NULL;
2956
2957 if (smp->strm)
2958 px = smp->strm->be;
2959 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
2960 px = __objt_check(smp->sess->origin)->proxy;
2961 if (!px)
2962 return 0;
2963
2964 smp->flags = SMP_F_VOL_TXN;
2965 smp->data.type = SMP_T_SINT;
2966 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
2967 return 1;
2968}
2969
2970static int
2971smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
2972{
2973 struct proxy *px = NULL;
2974
2975 if (smp->strm)
2976 px = smp->strm->be;
2977 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
2978 px = __objt_check(smp->sess->origin)->proxy;
2979 if (!px)
2980 return 0;
2981
2982 smp->flags = SMP_F_VOL_TXN;
2983 smp->data.type = SMP_T_SINT;
2984 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
2985 return 1;
2986}
2987
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002988static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2989{
2990
2991 struct proxy *px;
2992
2993 if (!smp_make_safe(smp))
2994 return 0;
2995
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002996 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002997 if (!px)
2998 return 0;
2999
3000 smp->data.type = SMP_T_SINT;
3001 smp->data.u.sint = be_usable_srv(px);
3002
3003 return 1;
3004}
3005
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003006static int
3007sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3008{
3009 struct proxy *px;
3010 struct server *srv;
3011 char *bksep;
3012
3013 if (!smp_make_safe(smp))
3014 return 0;
3015
3016 bksep = strchr(smp->data.u.str.area, '/');
3017
3018 if (bksep) {
3019 *bksep = '\0';
3020 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3021 if (!px)
3022 return 0;
3023 smp->data.u.str.area = bksep + 1;
3024 } else {
3025 if (!(smp->px->cap & PR_CAP_BE))
3026 return 0;
3027 px = smp->px;
3028 }
3029
3030 srv = server_find_by_name(px, smp->data.u.str.area);
3031 if (!srv)
3032 return 0;
3033
3034 smp->data.type = SMP_T_SINT;
3035 smp->data.u.sint = srv->nbpend;
3036 return 1;
3037}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003038
3039/* Note: must not be declared <const> as its list will be overwritten.
3040 * Please take care of keeping this list alphabetically sorted.
3041 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003042static struct sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003043 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3044 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3045 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3046 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3047 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3048 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3049 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3050 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3051 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3052 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3053 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3054 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3055 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3056 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3057 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3058 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3059 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3060 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3061 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3062 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3063 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003064 { /* END */ },
3065}};
3066
Willy Tarreau0108d902018-11-25 19:14:37 +01003067INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3068
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003069/* Note: must not be declared <const> as its list will be overwritten */
3070static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003071 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3072 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003073 { /* END */ },
3074}};
3075
Willy Tarreau0108d902018-11-25 19:14:37 +01003076INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003077
Willy Tarreau61612d42012-04-19 18:42:05 +02003078/* Note: must not be declared <const> as its list will be overwritten.
3079 * Please take care of keeping this list alphabetically sorted.
3080 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003081static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003082 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003083}};
3084
Willy Tarreau0108d902018-11-25 19:14:37 +01003085INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003086
Willy Tarreaubaaee002006-06-26 02:48:02 +02003087/*
3088 * Local variables:
3089 * c-indent-level: 8
3090 * c-basic-offset: 8
3091 * End:
3092 */