blob: c6b5f237bcd10148ee217265cc68d5882dd7432b [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;
Ubuntu1adaddb2021-03-01 07:57:54 +0000538 hash = statistical_prng();
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
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200594 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200595 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100596
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100597 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200598 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200599
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 /* We have to release any connection slot before applying any LB algo,
601 * otherwise we may erroneously end up with no available slot.
602 */
603 if (conn_slot)
604 sess_change_server(s, NULL);
605
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100606 /* We will now try to find the good server and store it into <objt_server(s->target)>.
607 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200608 * as well as if no server is available (check error code).
609 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100610
Willy Tarreau827aee92011-03-10 16:55:02 +0100611 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100612 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100613
Olivier Houchardba4fff52018-12-01 14:40:40 +0100614 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200615 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100616 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100617 struct sess_srv_list *srv_list;
618 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
619 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100620
621 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200622 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100623 (!s->be->max_ka_queue ||
624 server_has_room(tmpsrv) || (
625 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
626 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100627 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100628 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100629 srv = tmpsrv;
630 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200631 if (conn->flags & CO_FL_SESS_IDLE) {
632 conn->flags &= ~CO_FL_SESS_IDLE;
633 s->sess->idle_conns--;
634 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100635 goto out_ok;
636 }
637 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100638 }
639 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100640 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200641
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200642 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200643 /* we must check if we have at least one server available */
644 if (!s->be->lbprm.tot_weight) {
645 err = SRV_STATUS_NOSRV;
646 goto out;
647 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200648
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200649 /* if there's some queue on the backend, with certain algos we
650 * know it's because all servers are full.
651 */
Willy Tarreaua7ed7d42021-06-09 15:56:16 +0200652 if (s->be->nbpend && s->be->nbpend != s->be->beconn &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200653 (((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 +0200654 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
655 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
656 err = SRV_STATUS_FULL;
657 goto out;
658 }
659
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200660 /* First check whether we need to fetch some data or simply call
661 * the LB lookup function. Only the hashing functions will need
662 * some input data in fact, and will support multiple algorithms.
663 */
664 switch (s->be->lbprm.algo & BE_LB_LKUP) {
665 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100666 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200667 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200668
Willy Tarreauf09c6602012-02-13 17:12:08 +0100669 case BE_LB_LKUP_FSTREE:
670 srv = fas_get_next_server(s->be, prev_srv);
671 break;
672
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200673 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100674 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200675 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200676
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200677 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200679 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200680 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100681 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100682 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100683 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200684 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100685 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200686 break;
687 }
688 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200689 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200690 err = SRV_STATUS_INTERNAL;
691 goto out;
692 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200693
694 switch (s->be->lbprm.algo & BE_LB_PARM) {
695 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200696 conn = objt_conn(strm_orig(s));
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200697 if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200698 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200699 (void *)&((struct sockaddr_in *)conn->src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100700 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200701 }
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200702 else if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200703 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200704 (void *)&((struct sockaddr_in6 *)conn->src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100705 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200706 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200707 break;
708
709 case BE_LB_HASH_URI:
710 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200711 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100712 struct ist uri;
713
Christopher Faulet297fbb42019-05-13 14:41:27 +0200714 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200715 if (s->be->lbprm.arg_opt1 & 2) {
716 uri = http_get_path(uri);
Tim Duesterhus7b5777d2021-03-02 18:57:28 +0100717 if (!isttest(uri))
Willy Tarreau57a37412020-09-23 08:56:29 +0200718 uri = ist("");
719 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100720 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
721 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200722 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200723
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200724 case BE_LB_HASH_PRM:
725 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200726 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100727 struct ist uri;
728
Christopher Faulet297fbb42019-05-13 14:41:27 +0200729 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100730 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100731
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200732 if (!srv && s->txn->meth == HTTP_METH_POST)
733 srv = get_server_ph_post(s, prev_srv);
734 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200735 break;
Benoitaffb4812009-03-25 13:02:10 +0100736
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200737 case BE_LB_HASH_HDR:
738 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200739 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
740 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200741 break;
742
743 case BE_LB_HASH_RDP:
744 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100745 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200746 break;
747
748 default:
749 /* unknown balancing algorithm */
750 err = SRV_STATUS_INTERNAL;
751 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100752 }
Emeric Brun736aa232009-06-30 17:56:00 +0200753
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200754 /* If the hashing parameter was not found, let's fall
755 * back to round robin on the map.
756 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100757 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100758 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100759 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200760 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100761 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200762 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200763
764 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200765 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200766
Willy Tarreau7c669d72008-06-20 15:04:11 +0200767 default:
768 /* unknown balancing algorithm */
769 err = SRV_STATUS_INTERNAL;
770 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200771 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200772
Willy Tarreau827aee92011-03-10 16:55:02 +0100773 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200774 err = SRV_STATUS_FULL;
775 goto out;
776 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100777 else if (srv != prev_srv) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200778 _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn);
779 _HA_ATOMIC_INC(&srv->counters.cum_lbconn);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100780 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100781 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200782 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200783 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100784 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100786 else if ((s->be->options & PR_O_HTTP_PROXY)) {
787 conn = cs_conn(objt_cs(s->si[1].end));
788
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200789 if (conn && conn->dst && is_addr(conn->dst)) {
Olivier Houchard2442f682018-12-01 17:03:38 +0100790 /* in proxy mode, we need a valid destination address */
791 s->target = &s->be->obj_type;
792 } else {
793 err = SRV_STATUS_NOSRV;
794 goto out;
795 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100796 }
797 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200798 err = SRV_STATUS_NOSRV;
799 goto out;
800 }
801
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100802out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200803 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200804 err = SRV_STATUS_OK;
805 out:
806
807 /* Either we take back our connection slot, or we offer it to someone
808 * else if we don't need it anymore.
809 */
810 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100811 if (conn_slot == srv) {
812 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200813 } else {
814 if (may_dequeue_tasks(conn_slot, s->be))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +0200815 process_srv_queue(conn_slot, 0);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200816 }
817 }
818
819 out_err:
820 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821}
822
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100823/* Allocate an address for the destination endpoint
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824 * The address is taken from the currently assigned server, or from the
825 * dispatch or transparent address.
826 *
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100827 * Returns SRV_STATUS_OK on success.
Amaury Denoyellef7bdf002021-01-21 09:40:19 +0100828 * On error, no address is allocated and SRV_STATUS_INTERNAL is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200829 */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100830static int alloc_dst_address(struct sockaddr_storage **ss,
831 struct server *srv, struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200833 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200834
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100835 *ss = NULL;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200836
Willy Tarreaue7dff022015-04-03 01:14:29 +0200837 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200838 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200839 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840 return SRV_STATUS_INTERNAL;
841
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100842 if (!sockaddr_alloc(ss, NULL, 0))
843 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100845 **ss = srv->addr;
846 set_host_port(*ss, srv->svc_port);
847
848 if (!is_addr(*ss) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200849 /* if the server has no address, we use the same address
850 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200851 * locally on multiple addresses at once. Nothing is done
852 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200853 */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200854 if (!conn_get_dst(cli_conn)) {
855 /* do nothing if we can't retrieve the address */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200856 } else if (cli_conn->dst->ss_family == AF_INET) {
Christopher Fauletae305612021-03-01 11:33:59 +0100857 ((struct sockaddr_in *)*ss)->sin_family = AF_INET;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100858 ((struct sockaddr_in *)*ss)->sin_addr =
859 ((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200860 } else if (cli_conn->dst->ss_family == AF_INET6) {
Christopher Fauletae305612021-03-01 11:33:59 +0100861 ((struct sockaddr_in6 *)*ss)->sin6_family = AF_INET6;
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100862 ((struct sockaddr_in6 *)*ss)->sin6_addr =
863 ((struct sockaddr_in6 *)cli_conn->dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200864 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200865 }
866
Willy Tarreaubaaee002006-06-26 02:48:02 +0200867 /* if this server remaps proxied ports, we'll use
868 * the port the client connected to with an offset. */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100869 if ((srv->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100870 int base_port;
871
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200872 if (conn_get_dst(cli_conn)) {
873 /* First, retrieve the port from the incoming connection */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200874 base_port = get_host_port(cli_conn->dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100875
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200876 /* Second, assign the outgoing connection's port */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100877 base_port += get_host_port(*ss);
878 set_host_port(*ss, base_port);
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200879 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200880 }
881 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200882 else if (s->be->options & PR_O_DISPATCH) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100883 if (!sockaddr_alloc(ss, NULL, 0))
884 return SRV_STATUS_INTERNAL;
885
Willy Tarreaubaaee002006-06-26 02:48:02 +0200886 /* connect to the defined dispatch addr */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100887 **ss = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200888 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200889 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100890 if (!sockaddr_alloc(ss, NULL, 0))
891 return SRV_STATUS_INTERNAL;
892
Willy Tarreaubaaee002006-06-26 02:48:02 +0200893 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200894 if (conn_get_dst(cli_conn) &&
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200895 (cli_conn->dst->ss_family == AF_INET || cli_conn->dst->ss_family == AF_INET6))
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100896 **ss = *cli_conn->dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200897 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100898 else if (s->be->options & PR_O_HTTP_PROXY) {
899 /* If HTTP PROXY option is set, then server is already assigned
900 * during incoming client request parsing. */
901 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100902 else {
903 /* no server and no LB algorithm ! */
904 return SRV_STATUS_INTERNAL;
905 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200906
Willy Tarreaubaaee002006-06-26 02:48:02 +0200907 return SRV_STATUS_OK;
908}
909
Willy Tarreau87b09662015-04-03 00:22:06 +0200910/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200912 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200913 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200914 * be called before any connection and after any retry or redispatch occurs.
915 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200916 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917 *
918 * Returns :
919 *
920 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100921 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200922 * SRV_STATUS_QUEUED if the connection has been queued.
923 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100924 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200925 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926 * SRV_STATUS_INTERNAL for other unrecoverable errors.
927 *
928 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200929int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930{
931 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100932 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933 int err;
934
935 if (s->pend_pos)
936 return SRV_STATUS_INTERNAL;
937
Willy Tarreau7c669d72008-06-20 15:04:11 +0200938 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200939 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100940 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100941
Willy Tarreau7c669d72008-06-20 15:04:11 +0200942 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100943 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200944 /* This stream was previously assigned to a server. We have to
945 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200946 * - if the server changed :
947 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200948 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200949 * - increment srv->redispatches and be->redispatches
950 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100951 */
952
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100953 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200954 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
955 s->txn->flags &= ~TX_CK_MASK;
956 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200957 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200958 s->flags |= SF_REDISP;
Willy Tarreau4781b152021-04-06 13:53:36 +0200959 _HA_ATOMIC_INC(&prev_srv->counters.redispatches);
960 _HA_ATOMIC_INC(&s->be->be_counters.redispatches);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200961 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +0200962 _HA_ATOMIC_INC(&prev_srv->counters.retries);
963 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100964 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100965 }
966 }
967
Willy Tarreaubaaee002006-06-26 02:48:02 +0200968 switch (err) {
969 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200970 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100971 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100972 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200973 return SRV_STATUS_OK; /* dispatch or proxy mode */
974
975 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100976 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200977 return SRV_STATUS_OK;
978
Willy Tarreau87b09662015-04-03 00:22:06 +0200979 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200980 * connection slot yet. Either it is a redispatch, or it was
981 * assigned from persistence information (direct mode).
982 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200983 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200984 /* server scheduled for redirection, and already assigned. We
985 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100986 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100987 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100988 return SRV_STATUS_OK;
989 }
990
Willy Tarreau87b09662015-04-03 00:22:06 +0200991 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200992 * We know we have to queue it into the server's queue, so if a maxqueue
993 * is set on the server, we must also check that the server's queue is
994 * not full, in which case we have to return FULL.
995 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100996 if (srv->maxconn &&
997 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200998
Willy Tarreau827aee92011-03-10 16:55:02 +0100999 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001000 return SRV_STATUS_FULL;
1001
Willy Tarreaubaaee002006-06-26 02:48:02 +02001002 p = pendconn_add(s);
1003 if (p)
1004 return SRV_STATUS_QUEUED;
1005 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001006 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001007 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001008
1009 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001010 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001011 return SRV_STATUS_OK;
1012
1013 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001014 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001015 p = pendconn_add(s);
1016 if (p)
1017 return SRV_STATUS_QUEUED;
1018 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001019 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001020
1021 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001022 return err;
1023
Willy Tarreaubaaee002006-06-26 02:48:02 +02001024 case SRV_STATUS_INTERNAL:
1025 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001026
Willy Tarreaubaaee002006-06-26 02:48:02 +02001027 default:
1028 return SRV_STATUS_INTERNAL;
1029 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001030}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001031
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001032/* Allocate an address for source binding on the specified server or backend.
1033 * The allocation is only performed if the connection is intended to be used
1034 * with transparent mode.
1035 *
1036 * Returns SRV_STATUS_OK if no transparent mode or the address was successfully
1037 * allocated. Otherwise returns SRV_STATUS_INTERNAL.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001038 */
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001039static int alloc_bind_address(struct sockaddr_storage **ss,
1040 struct server *srv, struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001041{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001042#if defined(CONFIG_HAP_TRANSPARENT)
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001043 struct conn_src *src = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001044 struct connection *cli_conn;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001045 struct sockaddr_in *sin;
1046 char *vptr;
1047 size_t vlen;
1048#endif
Olivier Houchard09a0f032019-01-17 15:59:13 +01001049
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001050 *ss = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001051
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001052#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001053 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1054 src = &srv->conn_src;
1055 else if (s->be->conn_src.opts & CO_SRC_BIND)
1056 src = &s->be->conn_src;
Willy Tarreau294c4732011-12-16 21:35:50 +01001057
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001058 /* no transparent mode, no need to allocate an address, returns OK */
1059 if (!src)
1060 return SRV_STATUS_OK;
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:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001064 if (!sockaddr_alloc(ss, NULL, 0))
1065 return SRV_STATUS_INTERNAL;
1066
1067 **ss = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001068 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001069
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001070 case CO_SRC_TPROXY_CLI:
1071 case CO_SRC_TPROXY_CIP:
1072 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001073 cli_conn = objt_conn(strm_orig(s));
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001074 if (!cli_conn || !conn_get_src(cli_conn))
1075 return SRV_STATUS_INTERNAL;
1076
1077 if (!sockaddr_alloc(ss, NULL, 0))
1078 return SRV_STATUS_INTERNAL;
1079
1080 **ss = *cli_conn->src;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001081 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001082
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001083 case CO_SRC_TPROXY_DYN:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001084 if (!src->bind_hdr_occ || !IS_HTX_STRM(s))
1085 return SRV_STATUS_INTERNAL;
Willy Tarreau294c4732011-12-16 21:35:50 +01001086
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001087 if (!sockaddr_alloc(ss, NULL, 0))
1088 return SRV_STATUS_INTERNAL;
1089
1090 /* bind to the IP in a header */
1091 sin = (struct sockaddr_in *)*ss;
1092 sin->sin_family = AF_INET;
1093 sin->sin_port = 0;
1094 sin->sin_addr.s_addr = 0;
1095 if (!http_get_htx_hdr(htxbuf(&s->req.buf),
1096 ist2(src->bind_hdr_name, src->bind_hdr_len),
1097 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1098 sockaddr_free(ss);
1099 return SRV_STATUS_INTERNAL;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001100 }
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001101
1102 sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001103 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001104
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001105 default:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001106 ;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001107 }
1108#endif
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001109
1110 return SRV_STATUS_OK;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001111}
1112
Olivier Houchard566df302020-03-06 18:18:56 +01001113/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001114 * (safe or idle connections). The <is_safe> argument means what type of
1115 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001116 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001117static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001118{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001119 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001120 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001121 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001122 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001123
1124 /* We need to lock even if this is our own list, because another
1125 * thread may be trying to migrate that connection, and we don't want
1126 * to end up with two threads using the same connection.
1127 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001128 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001129 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001130 conn = srv_lookup_conn(is_safe ? &srv->per_thr[tid].safe_conns : &srv->per_thr[tid].idle_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001131 if (conn)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001132 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001133
1134 /* If we failed to pick a connection from the idle list, let's try again with
1135 * the safe list.
1136 */
1137 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001138 conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001139 if (conn) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001140 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001141 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001142 }
1143 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001144 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001145
1146 /* If we found a connection in our own list, and we don't have to
1147 * steal one from another thread, then we're done.
1148 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001149 if (conn)
1150 goto done;
1151
Willy Tarreau76cc6992020-07-01 18:49:24 +02001152 /* pool sharing globally disabled ? */
1153 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1154 goto done;
1155
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001156 /* Are we allowed to pick from another thread ? We'll still try
1157 * it if we're running low on FDs as we don't want to create
1158 * extra conns in this case, otherwise we can give up if we have
1159 * too few idle conns.
1160 */
1161 if (srv->curr_idle_conns < srv->low_idle_conns &&
1162 ha_used_fds < global.tune.pool_low_count)
1163 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001164
Willy Tarreau364f25a2020-07-01 15:55:30 +02001165 /* Lookup all other threads for an idle connection, starting from last
1166 * unvisited thread.
1167 */
1168 stop = srv->next_takeover;
1169 if (stop >= global.nbthread)
1170 stop = 0;
1171
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001172 i = stop;
1173 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001174 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001175 continue;
1176
Ubuntub1adf032021-03-01 06:22:17 +00001177 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1178 continue;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001179 conn = srv_lookup_conn(is_safe ? &srv->per_thr[i].safe_conns : &srv->per_thr[i].idle_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001180 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001181 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001182 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001183 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Olivier Houchard566df302020-03-06 18:18:56 +01001184 found = 1;
1185 break;
1186 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001187
1188 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001189 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001190
1191 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001192 conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001193 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001194 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001195 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001196 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Willy Tarreau0d587112020-07-01 15:04:38 +02001197 found = 1;
1198 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001199 break;
1200 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001201
1202 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001203 }
1204 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001205 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001206 } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001207
1208 if (!found)
1209 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001210 done:
1211 if (conn) {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001212 _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001213
1214 srv_use_conn(srv, conn);
1215
Willy Tarreau4781b152021-04-06 13:53:36 +02001216 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
1217 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
1218 _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001219 conn->flags &= ~CO_FL_LIST_MASK;
1220 __ha_barrier_atomic_store();
1221
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001222 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1223 conn->mux->flags & MX_FL_HOL_RISK) {
1224 /* attach the connection to the session private list
1225 */
1226 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001227 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001228 }
1229 else {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001230 ebmb_insert(&srv->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001231 &conn->hash_node->node,
1232 sizeof(conn->hash_node->hash));
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001233 }
Olivier Houchard566df302020-03-06 18:18:56 +01001234 }
1235 return conn;
1236}
1237
Willy Tarreaubaaee002006-06-26 02:48:02 +02001238/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001239 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001240 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001241 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001242 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001243 * - SF_ERR_NONE if everything's OK
1244 * - SF_ERR_SRVTO if there are no more servers
1245 * - SF_ERR_SRVCL if the connection was refused by the server
1246 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1247 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1248 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001249 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001250 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001251 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001252 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001253int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001254{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001255 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001256 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001257 struct conn_stream *srv_cs = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001258 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001259 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001260 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001261 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001262 int err;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001263#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001264 struct sample *sni_smp = NULL;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001265#endif
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001266 struct sockaddr_storage *bind_addr;
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001267 int proxy_line_ret;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001268 int64_t hash = 0;
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001269 struct conn_hash_params hash_params;
1270
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001271 /* in standard configuration, srv will be valid
1272 * it can be NULL for dispatch mode or transparent backend */
1273 srv = objt_server(s->target);
1274
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001275 /* first, set unique connection parameters and then calculate hash */
1276 memset(&hash_params, 0, sizeof(hash_params));
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001277
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001278 /* 1. target */
1279 hash_params.target = s->target;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001280
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001281#ifdef USE_OPENSSL
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001282 /* 2. sni */
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001283 if (srv && srv->ssl_ctx.sni) {
1284 sni_smp = sample_fetch_as_type(s->be, s->sess, s,
1285 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1286 srv->ssl_ctx.sni, SMP_T_STR);
Amaury Denoyelle4c098002021-02-17 15:59:02 +01001287
1288 /* only test if the sample is not null as smp_make_safe (called
1289 * before ssl_sock_set_servername) can only fails if this is
1290 * not the case
1291 */
1292 if (sni_smp) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001293 hash_params.sni_prehash =
1294 conn_hash_prehash(sni_smp->data.u.str.area,
1295 sni_smp->data.u.str.data);
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001296 }
1297 }
1298#endif /* USE_OPENSSL */
1299
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001300 /* 3. destination address */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001301 if (!(s->flags & SF_ADDR_SET)) {
1302 err = alloc_dst_address(&s->target_addr, srv, s);
1303 if (err != SRV_STATUS_OK)
1304 return SF_ERR_INTERNAL;
1305
1306 s->flags |= SF_ADDR_SET;
1307 }
1308
1309 if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS))
1310 hash_params.dst_addr = s->target_addr;
1311
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001312 /* 4. source address */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001313 err = alloc_bind_address(&bind_addr, srv, s);
1314 if (err != SRV_STATUS_OK)
1315 return SF_ERR_INTERNAL;
1316
1317 hash_params.src_addr = bind_addr;
1318
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001319 /* 5. proxy protocol */
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001320 if (srv && srv->pp_opts) {
1321 proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s);
1322 if (proxy_line_ret) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001323 hash_params.proxy_prehash =
1324 conn_hash_prehash(trash.area, proxy_line_ret);
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001325 }
1326 }
1327
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001328 hash = conn_calculate_hash(&hash_params);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001329
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001330 /* This will catch some corner cases such as lying connections resulting from
1331 * retries or connect timeouts but will rarely trigger.
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001332 */
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001333 si_release_endpoint(&s->si[1]);
1334
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001335 /* do not reuse if mode is not http */
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001336 if (!IS_HTX_STRM(s))
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001337 goto skip_reuse;
1338
Amaury Denoyelle8e99b842021-10-18 14:39:57 +02001339 /* disable reuse if websocket stream and the protocol to use is not the
1340 * same as the main protocol of the server.
1341 */
1342 if (unlikely(s->flags & SF_WEBSOCKET) && srv) {
1343 if (!srv_check_reuse_ws(srv)) {
1344 DBG_TRACE_STATE("skip idle connections reuse: websocket stream", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1345 goto skip_reuse;
1346 }
1347 }
1348
Willy Tarreaub0821862019-07-18 19:26:11 +02001349 /* first, search for a matching connection in the session's idle conns */
Amaury Denoyelle293dcc42021-01-25 10:29:35 +01001350 srv_conn = session_get_conn(s->sess, s->target, hash);
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001351 if (srv_conn)
1352 reuse = 1;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001353
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001354 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001355 /* Below we pick connections from the safe, idle or
1356 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001357 * on the strategy, the fact that this is a first or second
1358 * (retryable) request, with the indicated priority (1 or 2) :
1359 *
1360 * SAFE AGGR ALWS
1361 *
1362 * +-----+-----+ +-----+-----+ +-----+-----+
1363 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1364 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1365 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1366 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1367 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1368 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001369 *
1370 * Idle conns are necessarily looked up on the same thread so
1371 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001372 */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001373 if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) {
1374 srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001375 if (srv_conn)
1376 reuse = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001377 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001378
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001379 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001380 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001381 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1382 const int idle = srv->curr_idle_nb > 0;
1383 const int safe = srv->curr_safe_nb > 0;
1384
1385 /* second column of the tables above,
1386 * search for an idle then safe conn */
1387 if (not_first_req) {
1388 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001389 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001390 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001391 /* first column of the tables above */
1392 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1393 /* search for a safe conn */
1394 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001395 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001396
1397 /* search for an idle conn if no safe conn found
1398 * on always reuse mode */
1399 if (!srv_conn &&
1400 reuse_mode == PR_O_REUSE_ALWS && idle) {
1401 /* TODO conn_backend_get should not check the
1402 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001403 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001404 }
Olivier Houchard566df302020-03-06 18:18:56 +01001405 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001406
Christopher Faulet3d52f0f2020-07-02 15:45:56 +02001407 if (srv_conn)
Olivier Houchard566df302020-03-06 18:18:56 +01001408 reuse = 1;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001409 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001410 }
1411
Willy Tarreaub0821862019-07-18 19:26:11 +02001412
1413 /* here reuse might have been set above, indicating srv_conn finally
1414 * is OK.
1415 */
Willy Tarreaub0821862019-07-18 19:26:11 +02001416
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001417 if (ha_used_fds > global.tune.pool_high_count && srv) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001418 struct connection *tokill_conn = NULL;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001419 struct conn_hash_node *conn_node = NULL;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001420 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001421
1422 /* We can't reuse a connection, and e have more FDs than deemd
1423 * acceptable, attempt to kill an idling connection
1424 */
1425 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001426 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001427 node = ebmb_first(&srv->per_thr[tid].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001428 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001429 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1430 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001431 ebmb_delete(node);
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001432 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1433
1434 /* Release the idle lock before calling mux->destroy.
1435 * It will in turn call srv_release_conn through
1436 * conn_free which also uses it.
1437 */
Olivier Houchard88698d92019-04-16 19:07:22 +02001438 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001439 }
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001440 else {
1441 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1442 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001443
Olivier Houchard88698d92019-04-16 19:07:22 +02001444 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001445 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001446 int i;
1447
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001448 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001449 // just silence stupid gcc which reports an absurd
1450 // out-of-bounds warning for <i> which is always
1451 // exactly zero without threads, but it seems to
1452 // see it possibly larger.
1453 ALREADY_CHECKED(i);
1454
Willy Tarreau9b9f8472021-03-26 20:52:10 +01001455 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1456 continue;
1457
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001458 node = ebmb_first(&srv->per_thr[i].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001459 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001460 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1461 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001462 ebmb_delete(node);
1463 }
1464
1465 if (!tokill_conn) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001466 node = ebmb_first(&srv->per_thr[i].safe_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001467 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001468 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1469 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001470 ebmb_delete(node);
1471 }
1472 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001473 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001474
Olivier Houchard88698d92019-04-16 19:07:22 +02001475 if (tokill_conn) {
1476 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1477
Willy Tarreau2b718102021-04-21 07:32:39 +02001478 MT_LIST_APPEND(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001479 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001480 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001481 break;
1482 }
1483 }
1484 }
1485
1486 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001487
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001488 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001489 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001490 int avail = srv_conn->mux->avail_streams(srv_conn);
1491
1492 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001493 /* No more streams available, remove it from the list */
Christopher Faulet618f1032022-04-22 17:56:24 +02001494 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001495 conn_delete_from_tree(&srv_conn->hash_node->node);
Christopher Faulet618f1032022-04-22 17:56:24 +02001496 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard2442f682018-12-01 17:03:38 +01001497 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001498
1499 if (avail >= 1) {
1500 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001501 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001502 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001503 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001504 srv_conn = NULL;
1505 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001506 else
1507 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001508 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001509 /* otherwise srv_conn is left intact */
1510 }
1511 else
1512 srv_conn = NULL;
1513
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001514skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001515 /* no reuse or failed to reuse the connection above, pick a new one */
1516 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001517 srv_conn = conn_new(s->target);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001518 srv_cs = NULL;
Christopher Fauletc64badd2020-07-01 15:12:43 +02001519
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001520 if (srv_conn) {
1521 srv_conn->owner = s->sess;
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001522
1523 /* connection will be attached to the session if
1524 * http-reuse mode is never or it is not targeted to a
1525 * server */
1526 if (reuse_mode == PR_O_REUSE_NEVR || !srv)
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001527 conn_set_private(srv_conn);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001528
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001529 /* assign bind_addr to srv_conn */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001530 srv_conn->src = bind_addr;
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001531 bind_addr = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001532
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001533 if (!sockaddr_alloc(&srv_conn->dst, 0, 0)) {
1534 conn_free(srv_conn);
1535 return SF_ERR_RESOURCE;
1536 }
Amaury Denoyelle5546a632021-10-20 15:22:20 +02001537
1538 srv_conn->hash_node->hash = hash;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001539 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001540 }
1541
Amaury Denoyelle68967e52021-03-02 12:01:06 +01001542 /* if bind_addr is non NULL free it */
1543 sockaddr_free(&bind_addr);
1544
1545 /* srv_conn is still NULL only on allocation failure */
1546 if (!srv_conn)
1547 return SF_ERR_RESOURCE;
1548
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001549 /* copy the target address into the connection */
1550 *srv_conn->dst = *s->target_addr;
1551
1552 /* Copy network namespace from client connection */
1553 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1554
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001555 if (!srv_conn->xprt) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001556 /* set the correct protocol on the output stream interface */
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001557 if (srv) {
1558 if (conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), srv->xprt)) {
1559 conn_free(srv_conn);
1560 return SF_ERR_INTERNAL;
1561 }
1562 } else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1563 int ret;
1564
Willy Tarreauff605db2013-12-20 11:09:51 +01001565 /* proxies exclusively run on raw_sock right now */
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001566 ret = conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), xprt_get(XPRT_RAW));
1567 if (ret < 0 || !(srv_conn->ctrl)) {
Olivier Houchardc0caac22020-03-20 14:26:32 +01001568 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001569 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001570 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001571 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001572 else {
1573 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001574 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001575 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001576
Olivier Houchard8af03b32020-01-22 17:34:54 +01001577 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1578 if (!srv_cs) {
1579 conn_free(srv_conn);
1580 return SF_ERR_RESOURCE;
1581 }
1582 srv_conn->ctx = srv_cs;
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001583#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001584 if (!srv ||
Christopher Fauletb4de4202020-07-30 09:10:36 +02001585 (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001586 srv->mux_proto || !IS_HTX_STRM(s)))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001587#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001588 init_mux = 1;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001589
Willy Tarreauff605db2013-12-20 11:09:51 +01001590 /* process the case where the server requires the PROXY protocol to be sent */
1591 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001592
Willy Tarreau7b004922015-08-04 19:34:21 +02001593 if (srv && srv->pp_opts) {
Alexander Liu2a54bb72019-05-22 19:44:48 +08001594 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001595 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001596 if (cli_conn)
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001597 conn_get_dst(cli_conn);
Willy Tarreauff605db2013-12-20 11:09:51 +01001598 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001599
Alexander Liu2a54bb72019-05-22 19:44:48 +08001600 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1601 srv_conn->send_proxy_ofs = 1;
1602 srv_conn->flags |= CO_FL_SOCKS4;
1603 }
Amaury Denoyelle8e99b842021-10-18 14:39:57 +02001604
1605#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1606 /* if websocket stream, try to update connection ALPN. */
1607 if (unlikely(s->flags & SF_WEBSOCKET) &&
1608 srv && srv->use_ssl && srv->ssl_ctx.alpn_str) {
1609 char *alpn = "";
1610 int force = 0;
1611
1612 switch (srv->ws) {
1613 case SRV_WS_AUTO:
1614 alpn = "\x08http/1.1";
1615 force = 0;
1616 break;
1617 case SRV_WS_H1:
1618 alpn = "\x08http/1.1";
1619 force = 1;
1620 break;
1621 case SRV_WS_H2:
1622 alpn = "\x02h2";
1623 force = 1;
1624 break;
1625 }
1626
1627 if (!conn_update_alpn(srv_conn, ist(alpn), force))
1628 DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1629 }
1630#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001631 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001632 else {
Amaury Denoyelle05550a02021-06-17 15:14:49 +02001633 s->flags |= SF_SRV_REUSED;
1634
Amaury Denoyelled7faa3d2021-03-05 15:27:41 +01001635 /* Currently there seems to be no known cases of xprt ready
1636 * without the mux installed here.
1637 */
1638 BUG_ON(!srv_conn->mux);
1639
Amaury Denoyelle05550a02021-06-17 15:14:49 +02001640 if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY))
1641 s->flags |= SF_SRV_REUSED_ANTICIPATED;
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001642 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001643
William Lallemandb7ff6a32012-03-02 14:35:21 +01001644 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001645 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001646 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001647
Willy Tarreau14f8e862012-08-30 22:23:13 +02001648 /* disable lingering */
1649 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001650 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001651
Willy Tarreauf1573842018-12-14 11:35:36 +01001652 if (s->flags & SF_SRV_REUSED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001653 _HA_ATOMIC_INC(&s->be->be_counters.reuse);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001654 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001655 _HA_ATOMIC_INC(&srv->counters.reuse);
Willy Tarreauf1573842018-12-14 11:35:36 +01001656 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001657 _HA_ATOMIC_INC(&s->be->be_counters.connect);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001658 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001659 _HA_ATOMIC_INC(&srv->counters.connect);
Willy Tarreauf1573842018-12-14 11:35:36 +01001660 }
1661
Olivier Houchard201b9f42018-11-21 00:16:29 +01001662 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001663 if (err != SF_ERR_NONE)
1664 return err;
1665
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001666#ifdef USE_OPENSSL
Amaury Denoyelle4568a4b2021-06-01 17:04:10 +02001667 if (!(s->flags & SF_SRV_REUSED)) {
1668 if (smp_make_safe(sni_smp))
1669 ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area);
1670 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001671#endif /* USE_OPENSSL */
1672
Willy Tarreaua3b17562020-07-31 08:39:31 +02001673 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1674 * if so, add our handshake pseudo-XPRT now.
1675 */
1676 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1677 if (xprt_add_hs(srv_conn) < 0) {
1678 conn_full_close(srv_conn);
1679 return SF_ERR_INTERNAL;
1680 }
1681 }
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001682 conn_xprt_start(srv_conn);
Willy Tarreaua3b17562020-07-31 08:39:31 +02001683
Olivier Houchard5cd62172019-01-04 15:52:26 +01001684 /* We have to defer the mux initialization until after si_connect()
1685 * has been called, as we need the xprt to have been properly
1686 * initialized, or any attempt to recv during the mux init may
1687 * fail, and flag the connection as CO_FL_ERROR.
1688 */
1689 if (init_mux) {
Amaury Denoyelle8e99b842021-10-18 14:39:57 +02001690 const struct mux_ops *alt_mux =
1691 likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv);
1692 if (conn_install_mux_be(srv_conn, srv_cs, s->sess, alt_mux) < 0) {
Olivier Houchard74931142019-01-29 19:11:16 +01001693 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001694 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001695 }
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001696 if (IS_HTX_STRM(s)) {
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001697 /* If we're doing http-reuse always, and the connection
1698 * is not private with available streams (an http2
1699 * connection), add it to the available list, so that
1700 * others can use it right away. If the connection is
1701 * private or we're doing http-reuse safe and the mux
1702 * protocol supports multiplexing, add it in the
1703 * session server list.
1704 */
1705 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1706 !(srv_conn->flags & CO_FL_PRIVATE) &&
1707 srv_conn->mux->avail_streams(srv_conn) > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001708 ebmb_insert(&srv->per_thr[tid].avail_conns, &srv_conn->hash_node->node, sizeof(srv_conn->hash_node->hash));
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001709 }
1710 else if (srv_conn->flags & CO_FL_PRIVATE ||
1711 (reuse_mode == PR_O_REUSE_SAFE &&
1712 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1713 /* If it fail now, the same will be done in mux->detach() callback */
1714 session_add_conn(s->sess, srv_conn, srv_conn->target);
1715 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001716 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001717 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718
Willy Tarreau42afc592021-08-30 09:35:18 +02001719#if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001720
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001721 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001722 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001723 /* Only attempt to use early data if either the client sent
1724 * early data, so that we know it can handle a 425, or if
1725 * we are allwoed to retry requests on early data failure, and
1726 * it's our first try
1727 */
1728 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1729 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1730 s->si[1].conn_retries == s->be->conn_retries)) &&
1731 !channel_is_empty(si_oc(&s->si[1])) &&
1732 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001733 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001734#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001735
Willy Tarreau14f8e862012-08-30 22:23:13 +02001736 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001737 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001738
Willy Tarreau827aee92011-03-10 16:55:02 +01001739 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001740 int count;
1741
Willy Tarreaue7dff022015-04-03 01:14:29 +02001742 s->flags |= SF_CURR_SESS;
Willy Tarreau1db42732021-04-06 11:44:07 +02001743 count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001744 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau59b0fec2021-02-17 16:01:37 +01001745 if (s->be->lbprm.server_take_conn)
1746 s->be->lbprm.server_take_conn(srv, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001747 }
1748
Willy Tarreauada4c582020-03-04 16:42:03 +01001749 /* Now handle synchronously connected sockets. We know the stream-int
1750 * is at least in state SI_ST_CON. These ones typically are UNIX
1751 * sockets, socket pairs, and occasionally TCP connections on the
1752 * loopback on a heavily loaded system.
1753 */
1754 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1755 s->si[1].flags |= SI_FL_ERR;
1756
1757 /* If we had early data, and the handshake ended, then
1758 * we can remove the flag, and attempt to wake the task up,
1759 * in the event there's an analyser waiting for the end of
1760 * the handshake.
1761 */
1762 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1763 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1764
1765 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1766 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1767 s->si[1].exp = TICK_ETERNITY;
1768 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1769 if (s->si[1].state == SI_ST_CON)
1770 s->si[1].state = SI_ST_RDY;
1771 }
1772
1773 /* Report EOI on the channel if it was reached from the mux point of
1774 * view.
1775 *
1776 * Note: This test is only required because si_cs_process is also the SI
1777 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1778 * care of it.
1779 */
1780 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1781 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1782
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001783 /* catch all sync connect while the mux is not already installed */
1784 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1785 if (conn_create_mux(srv_conn) < 0) {
1786 conn_full_close(srv_conn);
1787 return SF_ERR_INTERNAL;
1788 }
1789 }
1790
Willy Tarreaue7dff022015-04-03 01:14:29 +02001791 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001792}
1793
1794
Willy Tarreaubaaee002006-06-26 02:48:02 +02001795/* This function performs the "redispatch" part of a connection attempt. It
1796 * will assign a server if required, queue the connection if required, and
1797 * handle errors that might arise at this level. It can change the server
1798 * state. It will return 1 if it encounters an error, switches the server
1799 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1800 * that the connection is ready to use.
1801 */
1802
Willy Tarreau87b09662015-04-03 00:22:06 +02001803int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001804{
Willy Tarreau827aee92011-03-10 16:55:02 +01001805 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001806 int conn_err;
1807
1808 /* We know that we don't have any connection pending, so we will
1809 * try to get a new one, and wait in this state if it's queued
1810 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001811 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001812 conn_err = assign_server_and_queue(s);
1813 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001814
Willy Tarreaubaaee002006-06-26 02:48:02 +02001815 switch (conn_err) {
1816 case SRV_STATUS_OK:
1817 break;
1818
Willy Tarreau7c669d72008-06-20 15:04:11 +02001819 case SRV_STATUS_FULL:
1820 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1821 * and we can redispatch to another server, or it is not and we return
1822 * 503. This only makes sense in DIRECT mode however, because normal LB
1823 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001824 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001825 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001826 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001827 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001828 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001829 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001830 sockaddr_free(&s->target_addr);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001831 goto redispatch;
1832 }
1833
Willy Tarreau350f4872014-11-28 14:42:25 +01001834 if (!s->si[1].err_type) {
1835 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001836 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001837
Willy Tarreau4781b152021-04-06 13:53:36 +02001838 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1839 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001840 return 1;
1841
Willy Tarreaubaaee002006-06-26 02:48:02 +02001842 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001843 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001844 if (!s->si[1].err_type) {
1845 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001846 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001847
Willy Tarreau4781b152021-04-06 13:53:36 +02001848 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849 return 1;
1850
1851 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001852 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1853 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001854 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001855 return 1;
1856
Willy Tarreaubaaee002006-06-26 02:48:02 +02001857 case SRV_STATUS_INTERNAL:
1858 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001859 if (!s->si[1].err_type) {
1860 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001861 }
1862
Willy Tarreau827aee92011-03-10 16:55:02 +01001863 if (srv)
1864 srv_inc_sess_ctr(srv);
1865 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001866 srv_set_sess_last(srv);
1867 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001868 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1869 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870
Willy Tarreau87b09662015-04-03 00:22:06 +02001871 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001872 if (may_dequeue_tasks(srv, s->be))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001873 process_srv_queue(srv, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 return 1;
1875 }
1876 /* if we get here, it's because we got SRV_STATUS_OK, which also
1877 * means that the connection has not been queued.
1878 */
1879 return 0;
1880}
1881
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001882/* Check if the connection request is in such a state that it can be aborted. */
1883static int back_may_abort_req(struct channel *req, struct stream *s)
1884{
1885 return ((req->flags & (CF_READ_ERROR)) ||
1886 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1887 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1888}
1889
1890/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1891 * SI_ST_TAR. Other input states are simply ignored.
1892 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1893 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1894 * conditions.
1895 */
1896void back_try_conn_req(struct stream *s)
1897{
1898 struct server *srv = objt_server(s->target);
1899 struct stream_interface *si = &s->si[1];
1900 struct channel *req = &s->req;
1901
1902 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1903
1904 if (si->state == SI_ST_ASS) {
1905 /* Server assigned to connection request, we have to try to connect now */
1906 int conn_err;
1907
1908 /* Before we try to initiate the connection, see if the
1909 * request may be aborted instead.
1910 */
1911 if (back_may_abort_req(req, s)) {
1912 si->err_type |= SI_ET_CONN_ABRT;
1913 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1914 goto abort_connection;
1915 }
1916
1917 conn_err = connect_server(s);
1918 srv = objt_server(s->target);
1919
1920 if (conn_err == SF_ERR_NONE) {
1921 /* state = SI_ST_CON or SI_ST_EST now */
1922 if (srv)
1923 srv_inc_sess_ctr(srv);
1924 if (srv)
1925 srv_set_sess_last(srv);
1926 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1927 goto end;
1928 }
1929
1930 /* We have received a synchronous error. We might have to
1931 * abort, retry immediately or redispatch.
1932 */
1933 if (conn_err == SF_ERR_INTERNAL) {
1934 if (!si->err_type) {
1935 si->err_type = SI_ET_CONN_OTHER;
1936 }
1937
1938 if (srv)
1939 srv_inc_sess_ctr(srv);
1940 if (srv)
1941 srv_set_sess_last(srv);
1942 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001943 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1944 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001945
1946 /* release other streams waiting for this server */
1947 sess_change_server(s, NULL);
1948 if (may_dequeue_tasks(srv, s->be))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001949 process_srv_queue(srv, 0);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001950
1951 /* Failed and not retryable. */
1952 si_shutr(si);
1953 si_shutw(si);
1954 req->flags |= CF_WRITE_ERROR;
1955
1956 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1957
1958 /* we may need to know the position in the queue for logging */
1959 pendconn_cond_unlink(s->pend_pos);
1960
1961 /* no stream was ever accounted for this server */
1962 si->state = SI_ST_CLO;
1963 if (s->srv_error)
1964 s->srv_error(s, si);
1965 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1966 goto end;
1967 }
1968
1969 /* We are facing a retryable error, but we don't want to run a
1970 * turn-around now, as the problem is likely a source port
1971 * allocation problem, so we want to retry now.
1972 */
1973 si->state = SI_ST_CER;
1974 si->flags &= ~SI_FL_ERR;
1975 back_handle_st_cer(s);
1976
1977 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1978 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1979 }
1980 else if (si->state == SI_ST_QUE) {
1981 /* connection request was queued, check for any update */
1982 if (!pendconn_dequeue(s)) {
1983 /* The connection is not in the queue anymore. Either
1984 * we have a server connection slot available and we
1985 * go directly to the assigned state, or we need to
1986 * load-balance first and go to the INI state.
1987 */
1988 si->exp = TICK_ETERNITY;
1989 if (unlikely(!(s->flags & SF_ASSIGNED)))
1990 si->state = SI_ST_REQ;
1991 else {
1992 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1993 si->state = SI_ST_ASS;
1994 }
1995 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1996 goto end;
1997 }
1998
1999 /* Connection request still in queue... */
2000 if (si->flags & SI_FL_EXP) {
2001 /* ... and timeout expired */
2002 si->exp = TICK_ETERNITY;
2003 si->flags &= ~SI_FL_EXP;
2004 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2005
2006 /* we may need to know the position in the queue for logging */
2007 pendconn_cond_unlink(s->pend_pos);
2008
2009 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002010 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2011 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002012 si_shutr(si);
2013 si_shutw(si);
2014 req->flags |= CF_WRITE_TIMEOUT;
2015 if (!si->err_type)
2016 si->err_type = SI_ET_QUEUE_TO;
2017 si->state = SI_ST_CLO;
2018 if (s->srv_error)
2019 s->srv_error(s, si);
2020 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2021 goto end;
2022 }
2023
2024 /* Connection remains in queue, check if we have to abort it */
2025 if (back_may_abort_req(req, s)) {
2026 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2027
2028 /* we may need to know the position in the queue for logging */
2029 pendconn_cond_unlink(s->pend_pos);
2030
2031 si->err_type |= SI_ET_QUEUE_ABRT;
2032 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2033 goto abort_connection;
2034 }
2035
2036 /* Nothing changed */
2037 }
2038 else if (si->state == SI_ST_TAR) {
2039 /* Connection request might be aborted */
2040 if (back_may_abort_req(req, s)) {
2041 si->err_type |= SI_ET_CONN_ABRT;
2042 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2043 goto abort_connection;
2044 }
2045
2046 if (!(si->flags & SI_FL_EXP))
2047 return; /* still in turn-around */
2048
2049 si->flags &= ~SI_FL_EXP;
2050 si->exp = TICK_ETERNITY;
2051
2052 /* we keep trying on the same server as long as the stream is
2053 * marked "assigned".
2054 * FIXME: Should we force a redispatch attempt when the server is down ?
2055 */
2056 if (s->flags & SF_ASSIGNED)
2057 si->state = SI_ST_ASS;
2058 else
2059 si->state = SI_ST_REQ;
2060
2061 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2062 }
2063
2064 end:
2065 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2066 return;
2067
2068abort_connection:
2069 /* give up */
2070 si->exp = TICK_ETERNITY;
2071 si->flags &= ~SI_FL_EXP;
2072 si_shutr(si);
2073 si_shutw(si);
2074 si->state = SI_ST_CLO;
2075 if (s->srv_error)
2076 s->srv_error(s, si);
2077 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2078 return;
2079}
2080
2081/* This function initiates a server connection request on a stream interface
2082 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
2083 * a real connection to a server, indicating that a server has been assigned,
2084 * or SI_ST_EST for a successful connection to an applet. It may also return
2085 * SI_ST_QUE, or SI_ST_CLO upon error.
2086 */
2087void back_handle_st_req(struct stream *s)
2088{
2089 struct stream_interface *si = &s->si[1];
2090
2091 if (si->state != SI_ST_REQ)
2092 return;
2093
2094 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2095
2096 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
2097 /* the applet directly goes to the EST state */
2098 struct appctx *appctx = objt_appctx(si->end);
2099
2100 if (!appctx || appctx->applet != __objt_applet(s->target))
2101 appctx = si_register_handler(si, objt_applet(s->target));
2102
2103 if (!appctx) {
2104 /* No more memory, let's immediately abort. Force the
2105 * error code to ignore the ERR_LOCAL which is not a
2106 * real error.
2107 */
2108 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
2109
2110 si_shutr(si);
2111 si_shutw(si);
2112 s->req.flags |= CF_WRITE_ERROR;
2113 si->err_type = SI_ET_CONN_RES;
2114 si->state = SI_ST_CLO;
2115 if (s->srv_error)
2116 s->srv_error(s, si);
2117 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2118 goto end;
2119 }
2120
2121 if (tv_iszero(&s->logs.tv_request))
2122 s->logs.tv_request = now;
2123 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2124 si->state = SI_ST_EST;
2125 si->err_type = SI_ET_NONE;
2126 be_set_sess_last(s->be);
2127
2128 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2129 /* let back_establish() finish the job */
2130 goto end;
2131 }
2132
2133 /* Try to assign a server */
2134 if (srv_redispatch_connect(s) != 0) {
2135 /* We did not get a server. Either we queued the
2136 * connection request, or we encountered an error.
2137 */
2138 if (si->state == SI_ST_QUE) {
2139 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2140 goto end;
2141 }
2142
2143 /* we did not get any server, let's check the cause */
2144 si_shutr(si);
2145 si_shutw(si);
2146 s->req.flags |= CF_WRITE_ERROR;
2147 if (!si->err_type)
2148 si->err_type = SI_ET_CONN_OTHER;
2149 si->state = SI_ST_CLO;
2150 if (s->srv_error)
2151 s->srv_error(s, si);
2152 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2153 goto end;
2154 }
2155
2156 /* The server is assigned */
2157 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2158 si->state = SI_ST_ASS;
2159 be_set_sess_last(s->be);
2160 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2161
2162 end:
2163 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2164}
2165
2166/* This function is called with (si->state == SI_ST_CON) meaning that a
2167 * connection was attempted and that the file descriptor is already allocated.
2168 * We must check for timeout, error and abort. Possible output states are
2169 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
2170 * works with connection-based streams. We know that there were no I/O event
2171 * when reaching this function. Timeouts and errors are *not* cleared.
2172 */
2173void back_handle_st_con(struct stream *s)
2174{
2175 struct stream_interface *si = &s->si[1];
2176 struct channel *req = &s->req;
2177 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002178
2179 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2180
2181 /* the client might want to abort */
2182 if ((rep->flags & CF_SHUTW) ||
2183 ((req->flags & CF_SHUTW_NOW) &&
2184 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2185 si->flags |= SI_FL_NOLINGER;
2186 si_shutw(si);
2187 si->err_type |= SI_ET_CONN_ABRT;
2188 if (s->srv_error)
2189 s->srv_error(s, si);
2190 /* Note: state = SI_ST_DIS now */
2191 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 +01002192 goto end;
2193 }
2194
Willy Tarreau062df2c2020-01-10 06:17:03 +01002195 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002196 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01002197 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002198 if (!si->err_type) {
2199 if (si->flags & SI_FL_ERR)
2200 si->err_type = SI_ET_CONN_ERR;
2201 else
2202 si->err_type = SI_ET_CONN_TO;
2203 }
2204
2205 si->state = SI_ST_CER;
2206 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2207 }
2208
Willy Tarreau062df2c2020-01-10 06:17:03 +01002209 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002210 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2211}
2212
2213/* This function is called with (si->state == SI_ST_CER) meaning that a
2214 * previous connection attempt has failed and that the file descriptor
2215 * has already been released. Possible causes include asynchronous error
2216 * notification and time out. Possible output states are SI_ST_CLO when
2217 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
2218 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
2219 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
2220 * marked as in error state. Timeouts and errors are cleared before retrying.
2221 */
2222void back_handle_st_cer(struct stream *s)
2223{
2224 struct stream_interface *si = &s->si[1];
2225 struct conn_stream *cs = objt_cs(si->end);
2226 struct connection *conn = cs_conn(cs);
2227
2228 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2229
2230 si->exp = TICK_ETERNITY;
2231 si->flags &= ~SI_FL_EXP;
2232
2233 /* we probably have to release last stream from the server */
2234 if (objt_server(s->target)) {
Willy Tarreau66182592021-12-06 07:01:02 +00002235 health_adjust(__objt_server(s->target), HANA_STATUS_L4_ERR);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002236
2237 if (s->flags & SF_CURR_SESS) {
2238 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002239 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002240 }
2241
2242 if ((si->flags & SI_FL_ERR) &&
2243 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2244 /* We tried to connect to a server which is configured
2245 * with "verify required" and which doesn't have the
2246 * "verifyhost" directive. The server presented a wrong
2247 * certificate (a certificate for an unexpected name),
2248 * which implies that we have used SNI in the handshake,
2249 * and that the server doesn't have the associated cert
2250 * and presented a default one.
2251 *
2252 * This is a serious enough issue not to retry. It's
2253 * especially important because this wrong name might
2254 * either be the result of a configuration error, and
2255 * retrying will only hammer the server, or is caused
2256 * by the use of a wrong SNI value, most likely
2257 * provided by the client and we don't want to let the
2258 * client provoke retries.
2259 */
2260 si->conn_retries = 0;
2261 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2262 }
2263 }
2264
2265 /* ensure that we have enough retries left */
2266 si->conn_retries--;
2267 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2268 if (!si->err_type) {
2269 si->err_type = SI_ET_CONN_ERR;
2270 }
2271
2272 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002273 _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns);
2274 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002275 sess_change_server(s, NULL);
2276 if (may_dequeue_tasks(objt_server(s->target), s->be))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02002277 process_srv_queue(objt_server(s->target), 0);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002278
2279 /* shutw is enough so stop a connecting socket */
2280 si_shutw(si);
2281 s->req.flags |= CF_WRITE_ERROR;
2282 s->res.flags |= CF_READ_ERROR;
2283
2284 si->state = SI_ST_CLO;
2285 if (s->srv_error)
2286 s->srv_error(s, si);
2287
2288 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2289 goto end;
2290 }
2291
Christopher Fauletd9090782021-06-01 14:06:05 +02002292 /* At this stage, we will trigger a connection retry (with or without
2293 * redispatch). Thus we must release the SI endpoint on the server side
2294 * an close the attached connection. It is especially important to do it
2295 * now if the retry is not immediately performed, to be sure to release
2296 * ressources as soon as possible and to not catch errors from the lower
2297 * layers in an unexpected state (i.e < ST_CONN).
2298 *
2299 * Note: the stream-interface will be switched to ST_REQ, ST_ASS or
2300 * ST_TAR and SI_FL_ERR and SI_FL_EXP flags will be unset.
2301 */
2302 si_release_endpoint(&s->si[1]);
2303
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002304 stream_choose_redispatch(s);
2305
2306 if (si->flags & SI_FL_ERR) {
2307 /* The error was an asynchronous connection error, and we will
2308 * likely have to retry connecting to the same server, most
2309 * likely leading to the same result. To avoid this, we wait
2310 * MIN(one second, connect timeout) before retrying. We don't
2311 * do it when the failure happened on a reused connection
2312 * though.
2313 */
2314
2315 int delay = 1000;
Amaury Denoyelle05550a02021-06-17 15:14:49 +02002316 const int reused = (s->flags & SF_SRV_REUSED) &&
2317 !(s->flags & SF_SRV_REUSED_ANTICIPATED);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002318
2319 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2320 delay = s->be->timeout.connect;
2321
2322 if (!si->err_type)
2323 si->err_type = SI_ET_CONN_ERR;
2324
2325 /* only wait when we're retrying on the same server */
2326 if ((si->state == SI_ST_ASS ||
Amaury Denoyelle05550a02021-06-17 15:14:49 +02002327 (s->be->srv_act <= 1)) && !reused) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002328 si->state = SI_ST_TAR;
2329 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2330 }
2331 si->flags &= ~SI_FL_ERR;
2332 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2333 }
2334
2335 end:
2336 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2337}
2338
2339/* This function is called with (si->state == SI_ST_RDY) meaning that a
2340 * connection was attempted, that the file descriptor is already allocated,
2341 * and that it has succeeded. We must still check for errors and aborts.
2342 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2343 * and SI_ST_DIS (abort). This only works with connection-based streams.
2344 * Timeouts and errors are *not* cleared.
2345 */
2346void back_handle_st_rdy(struct stream *s)
2347{
2348 struct stream_interface *si = &s->si[1];
2349 struct channel *req = &s->req;
2350 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002351
2352 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2353 /* We know the connection at least succeeded, though it could have
2354 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002355 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002356 * We need to take care of various situations here :
2357 * - everything might be OK. We have to switch to established.
2358 * - an I/O error might have been reported after a successful transfer,
2359 * which is not retryable and needs to be logged correctly, and needs
2360 * established as well
2361 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2362 * have validated a connection with incoming data (e.g. TCP with a
2363 * banner protocol), or just a successful connect() probe.
2364 * - the client might have requested a connection abort, this needs to
2365 * be checked before we decide to retry anything.
2366 */
2367
2368 /* it's still possible to handle client aborts or connection retries
2369 * before any data were sent.
2370 */
2371 if (!(req->flags & CF_WROTE_DATA)) {
2372 /* client abort ? */
2373 if ((rep->flags & CF_SHUTW) ||
2374 ((req->flags & CF_SHUTW_NOW) &&
2375 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2376 /* give up */
2377 si->flags |= SI_FL_NOLINGER;
2378 si_shutw(si);
2379 si->err_type |= SI_ET_CONN_ABRT;
2380 if (s->srv_error)
2381 s->srv_error(s, si);
2382 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2383 goto end;
2384 }
2385
2386 /* retryable error ? */
2387 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002388 if (!si->err_type)
2389 si->err_type = SI_ET_CONN_ERR;
2390 si->state = SI_ST_CER;
2391 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2392 goto end;
2393 }
2394 }
2395
2396 /* data were sent and/or we had no error, back_establish() will
2397 * now take over.
2398 */
2399 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2400 si->err_type = SI_ET_NONE;
2401 si->state = SI_ST_EST;
2402
2403 end:
2404 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2405}
2406
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002407/* sends a log message when a backend goes down, and also sets last
2408 * change date.
2409 */
2410void set_backend_down(struct proxy *be)
2411{
2412 be->last_change = now.tv_sec;
Willy Tarreau4781b152021-04-06 13:53:36 +02002413 _HA_ATOMIC_INC(&be->down_trans);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002414
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002415 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002416 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002417 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2418 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002419}
2420
Willy Tarreau87b09662015-04-03 00:22:06 +02002421/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002422 * tries to extract an RDP cookie from the request buffer, and look for the
2423 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002424 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002425 * list. Nothing is performed if a server was already assigned.
2426 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002427int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002428{
2429 struct proxy *px = s->be;
2430 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002431 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002432 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002433 uint16_t port;
2434 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002435 char *p;
2436
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002437 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002438
Willy Tarreaue7dff022015-04-03 01:14:29 +02002439 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002440 goto no_cookie;
2441
Willy Tarreau37406352012-04-23 16:16:37 +02002442 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002443
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002444 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002445 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002446 goto no_cookie;
2447
Willy Tarreau04276f32017-01-06 17:41:29 +01002448 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2449 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2450 * server's IP address in network order, and "port" is the integer corresponding to the
2451 * server's port in network order. Comments please Emeric.
2452 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002453 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002454 if (*p != '.')
2455 goto no_cookie;
2456 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002457
2458 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002459 if (*p != '.')
2460 goto no_cookie;
2461
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002462 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002463 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002464 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002465 port == srv->svc_port &&
2466 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002467 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002468 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002469 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002470 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002471 break;
2472 }
2473 }
2474 srv = srv->next;
2475 }
2476
2477no_cookie:
2478 req->analysers &= ~an_bit;
2479 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002480 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002481 return 1;
2482}
2483
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002484int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002485 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002486 return px->down_time;
2487
2488 return now.tv_sec - px->last_change + px->down_time;
2489}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002490
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002491/*
2492 * This function returns a string containing the balancing
2493 * mode of the proxy in a format suitable for stats.
2494 */
2495
2496const char *backend_lb_algo_str(int algo) {
2497
2498 if (algo == BE_LB_ALGO_RR)
2499 return "roundrobin";
2500 else if (algo == BE_LB_ALGO_SRR)
2501 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002502 else if (algo == BE_LB_ALGO_FAS)
2503 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002504 else if (algo == BE_LB_ALGO_LC)
2505 return "leastconn";
2506 else if (algo == BE_LB_ALGO_SH)
2507 return "source";
2508 else if (algo == BE_LB_ALGO_UH)
2509 return "uri";
2510 else if (algo == BE_LB_ALGO_PH)
2511 return "url_param";
2512 else if (algo == BE_LB_ALGO_HH)
2513 return "hdr";
2514 else if (algo == BE_LB_ALGO_RCH)
2515 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002516 else if (algo == BE_LB_ALGO_NONE)
2517 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002518 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002519 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002520}
2521
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002522/* This function parses a "balance" statement in a backend section describing
2523 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002524 * returns -1, it will write an error message into the <err> buffer which will
2525 * automatically be allocated and must be passed as NULL. The trailing '\n'
2526 * will not be written. The function must be called with <args> pointing to the
2527 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002528 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002529int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002530{
2531 if (!*(args[0])) {
2532 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002533 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2534 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002535 return 0;
2536 }
2537
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002538 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002539 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2540 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002541 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002542 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002543 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2544 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2545 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002546 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002547 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2548 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2549 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002550 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002551 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2552 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2553 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002554 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002555 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2556 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002557 curproxy->lbprm.arg_opt1 = 2;
2558
2559 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2560 const char *beg;
2561 char *end;
2562
2563 beg = args[0] + 7;
2564 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2565
2566 if (*end != ')') {
2567 if (!*end)
2568 memprintf(err, "random : missing closing parenthesis.");
2569 else
2570 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2571 return -1;
2572 }
2573
2574 if (curproxy->lbprm.arg_opt1 < 1) {
2575 memprintf(err, "random : number of draws must be at least 1.");
2576 return -1;
2577 }
2578 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002579 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002580 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002581 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2582 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002583 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002584 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002585 int arg = 1;
2586
Willy Tarreau31682232007-11-29 15:38:04 +01002587 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2588 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002589 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002590 curproxy->lbprm.arg_opt2 = 0; // "len"
2591 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002592
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002593 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002594 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002595 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002596 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002597 return -1;
2598 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002599 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002600 arg += 2;
2601 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002602 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002603 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002604 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002605 return -1;
2606 }
2607 /* hint: we store the position of the ending '/' (depth+1) so
2608 * that we avoid a comparison while computing the hash.
2609 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002610 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002611 arg += 2;
2612 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002613 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002614 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002615 arg += 1;
2616 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002617 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002618 curproxy->lbprm.arg_opt1 |= 2;
2619 arg += 1;
2620 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002621 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002622 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 +02002623 return -1;
2624 }
2625 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002626 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002627 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002628 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002629 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002630 return -1;
2631 }
Willy Tarreau31682232007-11-29 15:38:04 +01002632 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2633 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002634
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002635 free(curproxy->lbprm.arg_str);
2636 curproxy->lbprm.arg_str = strdup(args[1]);
2637 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002638 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002639 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002640 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002641 return -1;
2642 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002643 }
Benoitaffb4812009-03-25 13:02:10 +01002644 }
2645 else if (!strncmp(args[0], "hdr(", 4)) {
2646 const char *beg, *end;
2647
2648 beg = args[0] + 4;
2649 end = strchr(beg, ')');
2650
2651 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002652 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002653 return -1;
2654 }
2655
2656 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2657 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2658
Willy Tarreau484ff072019-01-14 15:28:53 +01002659 free(curproxy->lbprm.arg_str);
2660 curproxy->lbprm.arg_len = end - beg;
2661 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002662 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002663
2664 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002665 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002666 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002667 return -1;
2668 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002669 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002670 }
Emeric Brun736aa232009-06-30 17:56:00 +02002671 }
2672 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2673 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2674 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2675
2676 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2677 const char *beg, *end;
2678
2679 beg = args[0] + 11;
2680 end = strchr(beg, ')');
2681
2682 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002683 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002684 return -1;
2685 }
2686
Willy Tarreau484ff072019-01-14 15:28:53 +01002687 free(curproxy->lbprm.arg_str);
2688 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2689 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002690 }
2691 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002692 free(curproxy->lbprm.arg_str);
2693 curproxy->lbprm.arg_str = strdup("mstshash");
2694 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002695 }
2696 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002697 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002698 return -1;
2699 }
Willy Tarreau01732802007-11-01 22:48:15 +01002700 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002701 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002702 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 +01002703 return -1;
2704 }
2705 return 0;
2706}
2707
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002708
2709/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002710/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002711/************************************************************************/
2712
Willy Tarreau34db1082012-04-19 17:16:54 +02002713/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002714 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002715 * undefined behaviour.
2716 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002717static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002718smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002719{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002720 struct proxy *px;
2721
Willy Tarreau37406352012-04-23 16:16:37 +02002722 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002723 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002724 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002725
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002726 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002727
2728 return 1;
2729}
2730
Willy Tarreau37406352012-04-23 16:16:37 +02002731/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002732 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002733 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2734 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002735 */
2736static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002737smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002738{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002739 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002740
Willy Tarreau37406352012-04-23 16:16:37 +02002741 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002742 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002743 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2744 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002745 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002746 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002747 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002748 return 1;
2749}
2750
Willy Tarreau34db1082012-04-19 17:16:54 +02002751/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002752 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002753 * undefined behaviour.
2754 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002755static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002756smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002757{
2758 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002759
Willy Tarreau37406352012-04-23 16:16:37 +02002760 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002761 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002762 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002763
Willy Tarreau24e32d82012-04-23 23:55:44 +02002764 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002765 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002766 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002767
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002768 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002769 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002770 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002771 return 1;
2772 }
2773
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002774 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002775 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002776 }
2777
2778 return 1;
2779}
2780
Willy Tarreaua5e37562011-12-16 17:06:15 +01002781/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002782static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002783smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002784{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002785 struct proxy *px = NULL;
2786
2787 if (smp->strm)
2788 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002789 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002790 px = __objt_check(smp->sess->origin)->proxy;
2791 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002792 return 0;
2793
Willy Tarreauf853c462012-04-23 18:53:56 +02002794 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002795 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002796 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002797 return 1;
2798}
2799
Marcin Deranekd2471c22016-12-12 14:08:05 +01002800/* set string to the name of the backend */
2801static int
2802smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2803{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002804 struct proxy *px = NULL;
2805
2806 if (smp->strm)
2807 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002808 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002809 px = __objt_check(smp->sess->origin)->proxy;
2810 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002811 return 0;
2812
Christopher Fauletd1b44642020-04-30 09:51:15 +02002813 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002814 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002815 return 0;
2816
2817 smp->data.type = SMP_T_STR;
2818 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002819 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002820
2821 return 1;
2822}
2823
Willy Tarreaua5e37562011-12-16 17:06:15 +01002824/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002825static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002826smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002827{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002828 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002829
Christopher Fauletd1b44642020-04-30 09:51:15 +02002830 if (smp->strm)
2831 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002832 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002833 srv = __objt_check(smp->sess->origin)->server;
2834 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002835 return 0;
2836
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002837 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002838 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002839
2840 return 1;
2841}
2842
vkill1dfd1652019-10-30 16:58:14 +08002843/* set string to the name of the server */
2844static int
2845smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2846{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002847 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002848
Christopher Fauletd1b44642020-04-30 09:51:15 +02002849 if (smp->strm)
2850 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002851 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002852 srv = __objt_check(smp->sess->origin)->server;
2853 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002854 return 0;
2855
Christopher Fauletd1b44642020-04-30 09:51:15 +02002856 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002857 if (!smp->data.u.str.area)
2858 return 0;
2859
2860 smp->data.type = SMP_T_STR;
2861 smp->data.u.str.data = strlen(smp->data.u.str.area);
2862
2863 return 1;
2864}
2865
Willy Tarreau34db1082012-04-19 17:16:54 +02002866/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002867 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002868 * undefined behaviour.
2869 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002870static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002871smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002872{
Willy Tarreau37406352012-04-23 16:16:37 +02002873 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002874 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002875 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002876 return 1;
2877}
2878
Willy Tarreau34db1082012-04-19 17:16:54 +02002879/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002880 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002881 * undefined behaviour.
2882 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002883static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002884smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002885{
Willy Tarreau37406352012-04-23 16:16:37 +02002886 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002887 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002888 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002889 return 1;
2890}
2891
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002892/* set temp integer to the number of available connections across available
2893 * servers on the backend.
2894 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2895 * undefined behaviour.
2896 */
2897static int
2898smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2899{
2900 struct server *iterator;
2901 struct proxy *px;
2902 unsigned int maxconn;
2903
2904 smp->flags = SMP_F_VOL_TEST;
2905 smp->data.type = SMP_T_SINT;
2906 smp->data.u.sint = 0;
2907
2908 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2909 if (iterator->cur_state == SRV_ST_STOPPED)
2910 continue;
2911
2912 px = iterator->proxy;
2913 if (!srv_currently_usable(iterator) ||
2914 ((iterator->flags & SRV_F_BACKUP) &&
2915 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2916 continue;
2917
2918 if (iterator->maxconn == 0) {
2919 /* one active server is unlimited, return -1 */
2920 smp->data.u.sint = -1;
2921 return 1;
2922 }
2923
2924 maxconn = srv_dynamic_maxconn(iterator);
2925 if (maxconn > iterator->cur_sess)
2926 smp->data.u.sint += maxconn - iterator->cur_sess;
2927 }
2928
2929 return 1;
2930}
2931
Willy Tarreau34db1082012-04-19 17:16:54 +02002932/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002933 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002934 * undefined behaviour.
2935 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002936static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002937smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002938{
Willy Tarreau37406352012-04-23 16:16:37 +02002939 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002940 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002941 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002942 return 1;
2943}
2944
Willy Tarreaua5e37562011-12-16 17:06:15 +01002945/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002946 * by the number of running servers and rounded up. If there is no running
2947 * server, we return twice the total, just as if we had half a running server.
2948 * This is more or less correct anyway, since we expect the last server to come
2949 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002950 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002951 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002952 */
2953static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002954smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002955{
2956 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002957 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002958
Willy Tarreau37406352012-04-23 16:16:37 +02002959 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002960 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002961 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002962
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002963 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002964
2965 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002966 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002967 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002968 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002969
2970 return 1;
2971}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002972
Willy Tarreau34db1082012-04-19 17:16:54 +02002973/* set temp integer to the number of concurrent connections on the server in the backend.
2974 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2975 * undefined behaviour.
2976 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002977static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002978smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002979{
Willy Tarreauf853c462012-04-23 18:53:56 +02002980 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002981 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002982 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002983 return 1;
2984}
2985
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002986/* set temp integer to the number of available connections on the server in the backend.
2987 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2988 * undefined behaviour.
2989 */
2990static int
2991smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2992{
2993 unsigned int maxconn;
2994
2995 smp->flags = SMP_F_VOL_TEST;
2996 smp->data.type = SMP_T_SINT;
2997
2998 if (args->data.srv->maxconn == 0) {
2999 /* one active server is unlimited, return -1 */
3000 smp->data.u.sint = -1;
3001 return 1;
3002 }
3003
3004 maxconn = srv_dynamic_maxconn(args->data.srv);
3005 if (maxconn > args->data.srv->cur_sess)
3006 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
3007 else
3008 smp->data.u.sint = 0;
3009
3010 return 1;
3011}
3012
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003013/* set temp integer to the number of connections pending in the server's queue.
3014 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3015 * undefined behaviour.
3016 */
3017static int
3018smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
3019{
3020 smp->flags = SMP_F_VOL_TEST;
3021 smp->data.type = SMP_T_SINT;
3022 smp->data.u.sint = args->data.srv->nbpend;
3023 return 1;
3024}
3025
Tait Clarridge7896d522012-12-05 21:39:31 -05003026/* set temp integer to the number of enabled servers on the proxy.
3027 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3028 * undefined behaviour.
3029 */
3030static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003031smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05003032{
3033 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003034 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003035 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05003036 return 1;
3037}
3038
Christopher Faulet1bea8652020-07-10 16:03:45 +02003039/* set temp integer to the server weight.
3040 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3041 * undefined behaviour.
3042 */
3043static int
3044smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3045{
3046 struct server *srv = args->data.srv;
3047 struct proxy *px = srv->proxy;
3048
3049 smp->flags = SMP_F_VOL_TEST;
3050 smp->data.type = SMP_T_SINT;
3051 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
3052 return 1;
3053}
3054
3055/* set temp integer to the server initial weight.
3056 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3057 * undefined behaviour.
3058 */
3059static int
3060smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3061{
3062 smp->flags = SMP_F_VOL_TEST;
3063 smp->data.type = SMP_T_SINT;
3064 smp->data.u.sint = args->data.srv->iweight;
3065 return 1;
3066}
3067
3068/* set temp integer to the server user-specified weight.
3069 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3070 * undefined behaviour.
3071 */
3072static int
3073smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3074{
3075 smp->flags = SMP_F_VOL_TEST;
3076 smp->data.type = SMP_T_SINT;
3077 smp->data.u.sint = args->data.srv->uweight;
3078 return 1;
3079}
3080
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003081static int
3082smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3083{
3084 struct proxy *px = NULL;
3085
3086 if (smp->strm)
3087 px = smp->strm->be;
3088 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3089 px = __objt_check(smp->sess->origin)->proxy;
3090 if (!px)
3091 return 0;
3092
3093 smp->flags = SMP_F_VOL_TXN;
3094 smp->data.type = SMP_T_SINT;
3095 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
3096 return 1;
3097}
3098
3099static int
3100smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3101{
3102 struct proxy *px = NULL;
3103
3104 if (smp->strm)
3105 px = smp->strm->be;
3106 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3107 px = __objt_check(smp->sess->origin)->proxy;
3108 if (!px)
3109 return 0;
3110
3111 smp->flags = SMP_F_VOL_TXN;
3112 smp->data.type = SMP_T_SINT;
3113 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
3114 return 1;
3115}
3116
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003117static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
3118{
3119
3120 struct proxy *px;
3121
3122 if (!smp_make_safe(smp))
3123 return 0;
3124
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003125 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003126 if (!px)
3127 return 0;
3128
3129 smp->data.type = SMP_T_SINT;
3130 smp->data.u.sint = be_usable_srv(px);
3131
3132 return 1;
3133}
3134
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003135static int
3136sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3137{
3138 struct proxy *px;
3139 struct server *srv;
3140 char *bksep;
3141
3142 if (!smp_make_safe(smp))
3143 return 0;
3144
3145 bksep = strchr(smp->data.u.str.area, '/');
3146
3147 if (bksep) {
3148 *bksep = '\0';
3149 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3150 if (!px)
3151 return 0;
3152 smp->data.u.str.area = bksep + 1;
3153 } else {
3154 if (!(smp->px->cap & PR_CAP_BE))
3155 return 0;
3156 px = smp->px;
3157 }
3158
3159 srv = server_find_by_name(px, smp->data.u.str.area);
3160 if (!srv)
3161 return 0;
3162
3163 smp->data.type = SMP_T_SINT;
3164 smp->data.u.sint = srv->nbpend;
3165 return 1;
3166}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003167
3168/* Note: must not be declared <const> as its list will be overwritten.
3169 * Please take care of keeping this list alphabetically sorted.
3170 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003171static struct sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003172 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3173 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3174 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3175 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3176 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3177 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3178 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3179 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3180 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3181 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3182 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3183 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3184 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3185 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3186 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3187 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3188 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3189 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3190 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3191 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3192 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003193 { /* END */ },
3194}};
3195
Willy Tarreau0108d902018-11-25 19:14:37 +01003196INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3197
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003198/* Note: must not be declared <const> as its list will be overwritten */
3199static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003200 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3201 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003202 { /* END */ },
3203}};
3204
Willy Tarreau0108d902018-11-25 19:14:37 +01003205INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003206
Willy Tarreau61612d42012-04-19 18:42:05 +02003207/* Note: must not be declared <const> as its list will be overwritten.
3208 * Please take care of keeping this list alphabetically sorted.
3209 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003210static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003211 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003212}};
3213
Willy Tarreau0108d902018-11-25 19:14:37 +01003214INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003215
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216/*
3217 * Local variables:
3218 * c-indent-level: 8
3219 * c-basic-offset: 8
3220 * End:
3221 */