blob: 2d2c0d6e093d4373de623fa80ceca2e1d236b596 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau63617db2021-10-06 18:23:40 +020022#include <import/ebmbtree.h>
23
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020024#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020025#include <haproxy/acl.h>
26#include <haproxy/activity.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/arg.h>
28#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020029#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020030#include <haproxy/check.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020031#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020033#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020034#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020035#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020036#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020037#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020038#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020039#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020040#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020041#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020042#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020043#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020045#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020046#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020047#include <haproxy/proto_tcp.h>
48#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020049#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020050#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020052#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020053#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020054#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020055#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020056#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020057#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020058#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020059#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020060#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020061
Christopher Fauleteea8fc72019-11-05 16:18:10 +010062#define TRACE_SOURCE &trace_strm
63
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050064int be_lastsession(const struct proxy *be)
65{
66 if (be->be_counters.last_sess)
67 return now.tv_sec - be->be_counters.last_sess;
68
69 return -1;
70}
71
Bhaskar98634f02013-10-29 23:30:51 -040072/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040074{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040076
77 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
78 case BE_LB_HFCN_DJB2:
79 hash = hash_djb2(key, len);
80 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010081 case BE_LB_HFCN_WT6:
82 hash = hash_wt6(key, len);
83 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010084 case BE_LB_HFCN_CRC32:
85 hash = hash_crc32(key, len);
86 break;
Bhaskar98634f02013-10-29 23:30:51 -040087 case BE_LB_HFCN_SDBM:
88 /* this is the default hash function */
89 default:
90 hash = hash_sdbm(key, len);
91 break;
92 }
93
94 return hash;
95}
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097/*
98 * This function recounts the number of usable active and backup servers for
99 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100101 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 * This functions is designed to be called before server's weight and state
104 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200105 *
106 * threads: this is the caller responsibility to lock data. For now, this
107 * function is called from lb modules, so it should be ok. But if you need to
108 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200110void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111{
112 struct server *srv;
113
Willy Tarreau20697042007-11-15 23:26:18 +0100114 px->srv_act = px->srv_bck = 0;
115 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 continue;
120
Willy Tarreauc93cd162014-05-13 15:54:22 +0200121 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100123 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 px->lbprm.fbck = srv;
125 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400126 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200127 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 } else {
129 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400130 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200131 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 }
133 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100134}
Willy Tarreau20697042007-11-15 23:26:18 +0100135
Willy Tarreaub625a082007-11-26 01:15:43 +0100136/* This function simply updates the backend's tot_weight and tot_used values
137 * after servers weights have been updated. It is designed to be used after
138 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200139 *
140 * threads: this is the caller responsibility to lock data. For now, this
141 * function is called from lb modules, so it should be ok. But if you need to
142 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100143 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200144void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100145{
Willy Tarreau20697042007-11-15 23:26:18 +0100146 if (px->srv_act) {
147 px->lbprm.tot_weight = px->lbprm.tot_wact;
148 px->lbprm.tot_used = px->srv_act;
149 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 else if (px->lbprm.fbck) {
151 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100154 }
155 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100156 px->lbprm.tot_weight = px->lbprm.tot_wbck;
157 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100158 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100159}
160
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200161/*
162 * This function tries to find a running server for the proxy <px> following
163 * the source hash method. Depending on the number of active/backup servers,
164 * it will either look for active servers, or for backup servers.
165 * If any server is found, it will be returned. If no valid server is found,
166 * NULL is returned.
167 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100168static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169{
170 unsigned int h, l;
171
172 if (px->lbprm.tot_weight == 0)
173 return NULL;
174
175 l = h = 0;
176
177 /* note: we won't hash if there's only one server left */
178 if (px->lbprm.tot_used == 1)
179 goto hash_done;
180
181 while ((l + sizeof (int)) <= len) {
182 h ^= ntohl(*(unsigned int *)(&addr[l]));
183 l += sizeof (int);
184 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500185 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100186 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100188 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100189 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200190 else
191 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200192}
193
194/*
195 * This function tries to find a running server for the proxy <px> following
196 * the URI hash method. In order to optimize cache hits, the hash computation
197 * ends at the question mark. Depending on the number of active/backup servers,
198 * it will either look for active servers, or for backup servers.
199 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100200 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200201 * the "whole" optional argument (boolean, bit0), the "len" argument (numeric)
202 * and the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200203 *
204 * This code was contributed by Guillaume Dallaire, who also selected this hash
205 * algorithm out of a tens because it gave him the best results.
206 *
207 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100208static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700210 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211 int c;
212 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400213 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200214
215 if (px->lbprm.tot_weight == 0)
216 return NULL;
217
218 /* note: we won't hash if there's only one server left */
219 if (px->lbprm.tot_used == 1)
220 goto hash_done;
221
Willy Tarreaua9a72492019-01-14 16:14:15 +0100222 if (px->lbprm.arg_opt2) // "len"
223 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200224
Bhaskar98634f02013-10-29 23:30:51 -0400225 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200226 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200227 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 if (c == '/') {
229 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100230 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
232 }
Willy Tarreau3d1119d2020-09-23 08:05:47 +0200233 else if (c == '?' && !(px->lbprm.arg_opt1 & 1)) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200234 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200235 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200236 }
Bhaskar98634f02013-10-29 23:30:51 -0400237
238 hash = gen_hash(px, start, (end - start));
239
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500240 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100241 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200242 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100243 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100244 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200245 else
246 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200247}
248
Christopher Faulet5b517552017-06-09 14:17:53 +0200249/*
Willy Tarreau01732802007-11-01 22:48:15 +0100250 * This function tries to find a running server for the proxy <px> following
251 * the URL parameter hash method. It looks for a specific parameter in the
252 * URL and hashes it to compute the server ID. This is useful to optimize
253 * performance by avoiding bounces between servers in contexts where sessions
254 * are shared but cookies are not usable. If the parameter is not found, NULL
255 * is returned. If any server is found, it will be returned. If no valid server
256 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100257 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100258static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len, const struct server *avoid)
Willy Tarreau01732802007-11-01 22:48:15 +0100259{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700260 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400261 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262 const char *p;
263 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100264 int plen;
265
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200266 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100267 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100268 return NULL;
269
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200270 if ((p = memchr(uri, '?', uri_len)) == NULL)
271 return NULL;
272
Willy Tarreau01732802007-11-01 22:48:15 +0100273 p++;
274
275 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100276 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200277 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100278
279 while (uri_len > plen) {
280 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200281 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100282 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100284 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100286 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200287 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400288 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200289 uri_len -= plen + 1;
290
Bhaskar98634f02013-10-29 23:30:51 -0400291 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100292 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400293 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100294 }
Bhaskar98634f02013-10-29 23:30:51 -0400295 hash = gen_hash(px, start, (end - start));
296
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500297 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100298 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400299
Willy Tarreau6c30be52019-01-14 17:07:39 +0100300 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100301 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200302 else
303 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100304 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305 }
306 /* skip to next parameter */
307 p = memchr(params, '&', uri_len);
308 if (!p)
309 return NULL;
310 p++;
311 uri_len -= (p - params);
312 params = p;
313 }
314 return NULL;
315}
316
317/*
318 * this does the same as the previous server_ph, but check the body contents
319 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100320static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700322 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100323 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200324 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200325 struct htx *htx = htxbuf(&req->buf);
326 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100327 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 unsigned long len;
329 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200330
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100331 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 return NULL;
333
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200334 p = params = NULL;
335 len = 0;
336 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
337 enum htx_blk_type type = htx_get_blk_type(blk);
338 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200339
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200340 if (type != HTX_BLK_DATA)
341 continue;
342 v = htx_get_blk_value(htx, blk);
343 p = params = v.ptr;
344 len = v.len;
345 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100346 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200347
348 while (len > plen) {
349 /* Look for the parameter name followed by an equal symbol */
350 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100351 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200352 /* OK, we have the parameter here at <params>, and
353 * the value after the equal sign, at <p>
354 * skip the equal symbol
355 */
356 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400357 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 len -= plen + 1;
359
Bhaskar98634f02013-10-29 23:30:51 -0400360 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200361 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100362 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400363 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100364 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200365 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
366 break;
367 return NULL; /* oh, no; this is not uri-encoded.
368 * This body does not contain parameters.
369 */
370 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200371 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400372 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 /* should we break if vlen exceeds limit? */
374 }
Bhaskar98634f02013-10-29 23:30:51 -0400375 hash = gen_hash(px, start, (end - start));
376
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500377 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100378 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400379
Willy Tarreau6c30be52019-01-14 17:07:39 +0100380 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100381 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200382 else
383 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 }
385 }
Willy Tarreau01732802007-11-01 22:48:15 +0100386 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200387 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100388 if (!p)
389 return NULL;
390 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200391 len -= (p - params);
392 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100393 }
394 return NULL;
395}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200397
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398/*
Benoitaffb4812009-03-25 13:02:10 +0100399 * This function tries to find a running server for the proxy <px> following
400 * the Header parameter hash method. It looks for a specific parameter in the
401 * URL and hashes it to compute the server ID. This is useful to optimize
402 * performance by avoiding bounces between servers in contexts where sessions
403 * are shared but cookies are not usable. If the parameter is not found, NULL
404 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100405 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
406 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100407 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100408static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100409{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700410 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100411 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100412 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100413 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100414 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400415 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200416 struct htx *htx = htxbuf(&s->req.buf);
417 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100418
419 /* tot_weight appears to mean srv_count */
420 if (px->lbprm.tot_weight == 0)
421 return NULL;
422
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200423 /* note: we won't hash if there's only one server left */
424 if (px->lbprm.tot_used == 1)
425 goto hash_done;
426
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200427 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100428
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200429 /* if the header is not found or empty, let's fallback to round robin */
430 if (!ctx.blk || !ctx.value.len)
431 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100432
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200433 /* Found a the param_name in the headers.
434 * we will compute the hash based on this value ctx.val.
435 */
436 len = ctx.value.len;
437 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100438
Willy Tarreau9fed8582019-01-14 16:04:54 +0100439 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400440 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100441 } else {
442 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100443 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100444 /* special computation, use only main domain name, not tld/host
445 * going back from the end of string, start hashing at first
446 * dot stop at next.
447 * This is designed to work with the 'Host' header, and requires
448 * a special option to activate this.
449 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100450 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100451 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100452 if (dohash) {
453 /* Rewind the pointer until the previous char
454 * is a dot, this will allow to set the start
455 * position of the domain. */
456 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100457 break;
Benoitaffb4812009-03-25 13:02:10 +0100458 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100459 else if (*p == '.') {
460 /* The pointer is rewinded to the dot before the
461 * tld, we memorize the end of the domain and
462 * can enter the domain processing. */
463 end = p;
464 dohash = 1;
465 }
Benoitaffb4812009-03-25 13:02:10 +0100466 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100467 len--;
Benoitaffb4812009-03-25 13:02:10 +0100468 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100469 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400470 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100471 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500472 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100473 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200474 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100475 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100476 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200477 else
478 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100479}
480
Willy Tarreau34db1082012-04-19 17:16:54 +0200481/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100482static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200483{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700484 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200485 struct proxy *px = s->be;
486 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200487 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200488 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200489 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200490
491 /* tot_weight appears to mean srv_count */
492 if (px->lbprm.tot_weight == 0)
493 return NULL;
494
Willy Tarreau37406352012-04-23 16:16:37 +0200495 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200496
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200497 rewind = co_data(&s->req);
498 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200499
Willy Tarreau484ff072019-01-14 15:28:53 +0100500 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200501 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100502
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200503 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200504
Willy Tarreau37406352012-04-23 16:16:37 +0200505 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200506 return NULL;
507
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200508 /* note: we won't hash if there's only one server left */
509 if (px->lbprm.tot_used == 1)
510 goto hash_done;
511
Willy Tarreau484ff072019-01-14 15:28:53 +0100512 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200513 * we will compute the hash based on this value ctx.val.
514 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200515 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400516
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500517 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100518 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200519 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100520 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100521 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200522 else
523 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200524}
Christopher Faulet5b517552017-06-09 14:17:53 +0200525
Willy Tarreau760e81d2018-05-03 07:20:40 +0200526/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100527static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200528{
529 unsigned int hash = 0;
530 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100531 struct server *prev, *curr;
532 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200533
534 /* tot_weight appears to mean srv_count */
535 if (px->lbprm.tot_weight == 0)
536 return NULL;
537
Willy Tarreau21c741a2019-01-14 18:14:27 +0100538 curr = NULL;
539 do {
540 prev = curr;
Ubuntu1adaddb2021-03-01 07:57:54 +0000541 hash = statistical_prng();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100542 curr = chash_get_server_hash(px, hash, avoid);
543 if (!curr)
544 break;
545
546 /* compare the new server to the previous best choice and pick
547 * the one with the least currently served requests.
548 */
549 if (prev && prev != curr &&
550 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
551 curr = prev;
552 } while (--draws > 0);
553
Willy Tarreaub88ae182020-09-29 16:58:30 +0200554 /* if the selected server is full, pretend we have none so that we reach
555 * the backend's queue instead.
556 */
557 if (curr &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200558 (curr->queue.length || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr))))
Willy Tarreaub88ae182020-09-29 16:58:30 +0200559 curr = NULL;
560
Willy Tarreau21c741a2019-01-14 18:14:27 +0100561 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200562}
563
Benoitaffb4812009-03-25 13:02:10 +0100564/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200565 * This function applies the load-balancing algorithm to the stream, as
566 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200567 * 'assigned'.
568 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200569 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200570 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100571 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200572 * The function tries to keep the original connection slot if it reconnects to
573 * the same server, otherwise it releases it and tries to offer it.
574 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200575 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200576 *
577 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100578 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200579 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
580 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581 * SRV_STATUS_INTERNAL for other unrecoverable errors.
582 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200583 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100584 * it does not need to be called anymore. This means that target_srv(&s->target)
585 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200586 *
587 */
588
Willy Tarreau87b09662015-04-03 00:22:06 +0200589int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200590{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100591 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200592 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100593 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200594 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100595
Simon Horman8effd3d2011-08-13 08:03:52 +0900596 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200597
Willy Tarreau7c669d72008-06-20 15:04:11 +0200598 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200599 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100601
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100602 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200603 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604
Willy Tarreau7c669d72008-06-20 15:04:11 +0200605 /* We have to release any connection slot before applying any LB algo,
606 * otherwise we may erroneously end up with no available slot.
607 */
608 if (conn_slot)
609 sess_change_server(s, NULL);
610
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100611 /* We will now try to find the good server and store it into <objt_server(s->target)>.
612 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200613 * as well as if no server is available (check error code).
614 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100615
Willy Tarreau827aee92011-03-10 16:55:02 +0100616 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100617 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100618
Olivier Houchardba4fff52018-12-01 14:40:40 +0100619 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200620 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100621 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100622 struct sess_srv_list *srv_list;
623 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
624 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100625
626 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200627 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100628 (!s->be->max_ka_queue ||
629 server_has_room(tmpsrv) || (
Willy Tarreaua0570452021-06-18 09:30:30 +0200630 tmpsrv->queue.length + 1 < s->be->max_ka_queue))) &&
Olivier Houchardba4fff52018-12-01 14:40:40 +0100631 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100632 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100633 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100634 srv = tmpsrv;
635 s->target = &srv->obj_type;
Christopher Faulete91a5262020-07-01 18:56:30 +0200636 if (conn->flags & CO_FL_SESS_IDLE) {
637 conn->flags &= ~CO_FL_SESS_IDLE;
638 s->sess->idle_conns--;
639 }
Olivier Houchardba4fff52018-12-01 14:40:40 +0100640 goto out_ok;
641 }
642 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100643 }
644 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100645 }
Christopher Faulet5b517552017-06-09 14:17:53 +0200646
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200647 if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200648 /* we must check if we have at least one server available */
649 if (!s->be->lbprm.tot_weight) {
650 err = SRV_STATUS_NOSRV;
651 goto out;
652 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200653
Willy Tarreau82cd5c12020-09-29 17:07:21 +0200654 /* if there's some queue on the backend, with certain algos we
655 * know it's because all servers are full.
656 */
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200657 if (s->be->queue.length && s->be->queue.length != s->be->beconn &&
Willy Tarreau8ae8c482020-10-22 17:19:07 +0200658 (((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 +0200659 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin
660 ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr
661 err = SRV_STATUS_FULL;
662 goto out;
663 }
664
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200665 /* First check whether we need to fetch some data or simply call
666 * the LB lookup function. Only the hashing functions will need
667 * some input data in fact, and will support multiple algorithms.
668 */
669 switch (s->be->lbprm.algo & BE_LB_LKUP) {
670 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100671 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200672 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200673
Willy Tarreauf09c6602012-02-13 17:12:08 +0100674 case BE_LB_LKUP_FSTREE:
675 srv = fas_get_next_server(s->be, prev_srv);
676 break;
677
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100679 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200680 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200681
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200682 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200683 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200684 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau5ffb0452021-06-22 17:31:51 +0200685 /* static-rr (map) or random (chash) */
Willy Tarreau760e81d2018-05-03 07:20:40 +0200686 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100687 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200688 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100689 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200690 break;
691 }
692 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200693 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200694 err = SRV_STATUS_INTERNAL;
695 goto out;
696 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200697
698 switch (s->be->lbprm.algo & BE_LB_PARM) {
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200699 const struct sockaddr_storage *src;
700
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200701 case BE_LB_HASH_SRC:
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200702 src = si_src(&s->si[0]);
703 if (src && src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200704 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200705 (void *)&((struct sockaddr_in *)src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100706 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200707 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200708 else if (src && src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200709 srv = get_server_sh(s->be,
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200710 (void *)&((struct sockaddr_in6 *)src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100711 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200712 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200713 else {
714 /* unknown IP family */
715 err = SRV_STATUS_INTERNAL;
716 goto out;
717 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200718 break;
719
720 case BE_LB_HASH_URI:
721 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200722 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100723 struct ist uri;
724
Christopher Faulet297fbb42019-05-13 14:41:27 +0200725 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Willy Tarreau57a37412020-09-23 08:56:29 +0200726 if (s->be->lbprm.arg_opt1 & 2) {
Amaury Denoyellec453f952021-07-06 11:40:12 +0200727 struct http_uri_parser parser =
728 http_uri_parser_init(uri);
729
730 uri = http_parse_path(&parser);
Tim Duesterhus7b5777d2021-03-02 18:57:28 +0100731 if (!isttest(uri))
Willy Tarreau57a37412020-09-23 08:56:29 +0200732 uri = ist("");
733 }
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100734 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
735 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200736 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200737
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200738 case BE_LB_HASH_PRM:
739 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200740 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100741 struct ist uri;
742
Christopher Faulet297fbb42019-05-13 14:41:27 +0200743 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100744 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100745
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200746 if (!srv && s->txn->meth == HTTP_METH_POST)
747 srv = get_server_ph_post(s, prev_srv);
748 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200749 break;
Benoitaffb4812009-03-25 13:02:10 +0100750
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200751 case BE_LB_HASH_HDR:
752 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200753 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
754 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200755 break;
756
757 case BE_LB_HASH_RDP:
758 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100759 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200760 break;
761
762 default:
763 /* unknown balancing algorithm */
764 err = SRV_STATUS_INTERNAL;
765 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100766 }
Emeric Brun736aa232009-06-30 17:56:00 +0200767
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200768 /* If the hashing parameter was not found, let's fall
769 * back to round robin on the map.
770 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100771 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100772 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100773 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200774 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100775 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200776 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200777
778 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200779 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200780
Willy Tarreau7c669d72008-06-20 15:04:11 +0200781 default:
782 /* unknown balancing algorithm */
783 err = SRV_STATUS_INTERNAL;
784 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200786
Willy Tarreau827aee92011-03-10 16:55:02 +0100787 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200788 err = SRV_STATUS_FULL;
789 goto out;
790 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100791 else if (srv != prev_srv) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200792 _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn);
793 _HA_ATOMIC_INC(&srv->counters.cum_lbconn);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100794 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100795 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200796 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200797 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100798 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200799 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100800 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200801 err = SRV_STATUS_NOSRV;
802 goto out;
803 }
804
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100805out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200806 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200807 err = SRV_STATUS_OK;
808 out:
809
810 /* Either we take back our connection slot, or we offer it to someone
811 * else if we don't need it anymore.
812 */
813 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100814 if (conn_slot == srv) {
815 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200816 } else {
817 if (may_dequeue_tasks(conn_slot, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +0200818 process_srv_queue(conn_slot);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200819 }
820 }
821
822 out_err:
823 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824}
825
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100826/* Allocate an address for the destination endpoint
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827 * The address is taken from the currently assigned server, or from the
828 * dispatch or transparent address.
829 *
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100830 * Returns SRV_STATUS_OK on success.
Amaury Denoyellef7bdf002021-01-21 09:40:19 +0100831 * On error, no address is allocated and SRV_STATUS_INTERNAL is returned.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100833static int alloc_dst_address(struct sockaddr_storage **ss,
834 struct server *srv, struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200835{
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200836 const struct sockaddr_storage *dst;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200837
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100838 *ss = NULL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200839 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200840 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200841 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200842 return SRV_STATUS_INTERNAL;
843
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100844 if (!sockaddr_alloc(ss, NULL, 0))
845 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200846
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100847 **ss = srv->addr;
848 set_host_port(*ss, srv->svc_port);
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100849 if (!is_addr(*ss)) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200850 /* if the server has no address, we use the same address
851 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200852 * locally on multiple addresses at once. Nothing is done
853 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200854 */
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100855 dst = si_dst(&s->si[0]);
856 if (dst && 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 =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200859 ((struct sockaddr_in *)dst)->sin_addr;
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100860 } else if (dst && 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 =
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200863 ((struct sockaddr_in6 *)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. */
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100869 if ((srv->flags & SRV_F_MAPPORTS)) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100870 int base_port;
871
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100872 dst = si_dst(&s->si[0]);
873 if (dst) {
874 /* First, retrieve the port from the incoming connection */
875 base_port = get_host_port(dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100876
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100877 /* Second, assign the outgoing connection's port */
878 base_port += get_host_port(*ss);
879 set_host_port(*ss, base_port);
880 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881 }
882 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200883 else if (s->be->options & PR_O_DISPATCH) {
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100884 if (!sockaddr_alloc(ss, NULL, 0))
885 return SRV_STATUS_INTERNAL;
886
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887 /* connect to the defined dispatch addr */
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100888 **ss = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200889 }
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200890 else if ((s->be->options & PR_O_TRANSP)) {
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100891 if (!sockaddr_alloc(ss, NULL, 0))
Amaury Denoyelle68cf3952021-01-11 15:24:31 +0100892 return SRV_STATUS_INTERNAL;
893
Willy Tarreaubaaee002006-06-26 02:48:02 +0200894 /* in transparent mode, use the original dest addr if no dispatch specified */
Christopher Faulet34a3eb42021-11-05 12:02:56 +0100895 dst = si_dst(&s->si[0]);
896 if (dst && (dst->ss_family == AF_INET || dst->ss_family == AF_INET6))
Christopher Fauleta8e95fe2021-10-25 08:13:25 +0200897 **ss = *dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200898 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100899 else {
900 /* no server and no LB algorithm ! */
901 return SRV_STATUS_INTERNAL;
902 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200903
Willy Tarreaubaaee002006-06-26 02:48:02 +0200904 return SRV_STATUS_OK;
905}
906
Willy Tarreau87b09662015-04-03 00:22:06 +0200907/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200908 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200909 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200910 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200911 * be called before any connection and after any retry or redispatch occurs.
912 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200913 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200914 *
915 * Returns :
916 *
917 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100918 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919 * SRV_STATUS_QUEUED if the connection has been queued.
920 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100921 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200922 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200923 * SRV_STATUS_INTERNAL for other unrecoverable errors.
924 *
925 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200926int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927{
928 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100929 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930 int err;
931
932 if (s->pend_pos)
933 return SRV_STATUS_INTERNAL;
934
Willy Tarreau7c669d72008-06-20 15:04:11 +0200935 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200936 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100937 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100938
Willy Tarreau7c669d72008-06-20 15:04:11 +0200939 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100940 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200941 /* This stream was previously assigned to a server. We have to
942 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200943 * - if the server changed :
944 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200945 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200946 * - increment srv->redispatches and be->redispatches
947 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100948 */
949
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100950 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200951 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
952 s->txn->flags &= ~TX_CK_MASK;
953 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200954 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200955 s->flags |= SF_REDISP;
Willy Tarreau4781b152021-04-06 13:53:36 +0200956 _HA_ATOMIC_INC(&prev_srv->counters.redispatches);
957 _HA_ATOMIC_INC(&s->be->be_counters.redispatches);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200958 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +0200959 _HA_ATOMIC_INC(&prev_srv->counters.retries);
960 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100961 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100962 }
963 }
964
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965 switch (err) {
966 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200967 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100968 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100969 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200970 return SRV_STATUS_OK; /* dispatch or proxy mode */
971
972 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100973 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200974 return SRV_STATUS_OK;
975
Willy Tarreau87b09662015-04-03 00:22:06 +0200976 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200977 * connection slot yet. Either it is a redispatch, or it was
978 * assigned from persistence information (direct mode).
979 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200980 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200981 /* server scheduled for redirection, and already assigned. We
982 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100983 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100984 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100985 return SRV_STATUS_OK;
986 }
987
Willy Tarreau87b09662015-04-03 00:22:06 +0200988 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200989 * We know we have to queue it into the server's queue, so if a maxqueue
990 * is set on the server, we must also check that the server's queue is
991 * not full, in which case we have to return FULL.
992 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100993 if (srv->maxconn &&
Willy Tarreaua0570452021-06-18 09:30:30 +0200994 (srv->queue.length || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200995
Willy Tarreaua0570452021-06-18 09:30:30 +0200996 if (srv->maxqueue > 0 && srv->queue.length >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200997 return SRV_STATUS_FULL;
998
Willy Tarreaubaaee002006-06-26 02:48:02 +0200999 p = pendconn_add(s);
1000 if (p)
1001 return SRV_STATUS_QUEUED;
1002 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001003 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001005
1006 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001007 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001008 return SRV_STATUS_OK;
1009
1010 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001011 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001012 p = pendconn_add(s);
1013 if (p)
1014 return SRV_STATUS_QUEUED;
1015 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001016 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001017
1018 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001019 return err;
1020
Willy Tarreaubaaee002006-06-26 02:48:02 +02001021 case SRV_STATUS_INTERNAL:
1022 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001023
Willy Tarreaubaaee002006-06-26 02:48:02 +02001024 default:
1025 return SRV_STATUS_INTERNAL;
1026 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001027}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001028
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001029/* Allocate an address for source binding on the specified server or backend.
1030 * The allocation is only performed if the connection is intended to be used
1031 * with transparent mode.
1032 *
1033 * Returns SRV_STATUS_OK if no transparent mode or the address was successfully
1034 * allocated. Otherwise returns SRV_STATUS_INTERNAL.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001035 */
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001036static int alloc_bind_address(struct sockaddr_storage **ss,
1037 struct server *srv, struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001038{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001039#if defined(CONFIG_HAP_TRANSPARENT)
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001040 const struct sockaddr_storage *addr;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001041 struct conn_src *src = NULL;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001042 struct sockaddr_in *sin;
1043 char *vptr;
1044 size_t vlen;
1045#endif
Olivier Houchard09a0f032019-01-17 15:59:13 +01001046
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001047 *ss = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001048
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001049#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001050 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1051 src = &srv->conn_src;
1052 else if (s->be->conn_src.opts & CO_SRC_BIND)
1053 src = &s->be->conn_src;
Willy Tarreau294c4732011-12-16 21:35:50 +01001054
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001055 /* no transparent mode, no need to allocate an address, returns OK */
1056 if (!src)
1057 return SRV_STATUS_OK;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001058
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001059 switch (src->opts & CO_SRC_TPROXY_MASK) {
1060 case CO_SRC_TPROXY_ADDR:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001061 if (!sockaddr_alloc(ss, NULL, 0))
1062 return SRV_STATUS_INTERNAL;
1063
1064 **ss = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001065 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001066
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001067 case CO_SRC_TPROXY_CLI:
1068 case CO_SRC_TPROXY_CIP:
1069 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001070 addr = si_src(&s->si[0]);
1071 if (!addr)
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001072 return SRV_STATUS_INTERNAL;
1073
1074 if (!sockaddr_alloc(ss, NULL, 0))
1075 return SRV_STATUS_INTERNAL;
1076
Christopher Fauleta8e95fe2021-10-25 08:13:25 +02001077 **ss = *addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001078 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001079
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001080 case CO_SRC_TPROXY_DYN:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001081 if (!src->bind_hdr_occ || !IS_HTX_STRM(s))
1082 return SRV_STATUS_INTERNAL;
Willy Tarreau294c4732011-12-16 21:35:50 +01001083
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001084 if (!sockaddr_alloc(ss, NULL, 0))
1085 return SRV_STATUS_INTERNAL;
1086
1087 /* bind to the IP in a header */
1088 sin = (struct sockaddr_in *)*ss;
1089 sin->sin_family = AF_INET;
1090 sin->sin_port = 0;
1091 sin->sin_addr.s_addr = 0;
1092 if (!http_get_htx_hdr(htxbuf(&s->req.buf),
1093 ist2(src->bind_hdr_name, src->bind_hdr_len),
1094 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1095 sockaddr_free(ss);
1096 return SRV_STATUS_INTERNAL;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001097 }
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001098
1099 sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001100 break;
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001101
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001102 default:
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001103 ;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001104 }
1105#endif
Amaury Denoyellef7bdf002021-01-21 09:40:19 +01001106
1107 return SRV_STATUS_OK;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001108}
1109
Olivier Houchard566df302020-03-06 18:18:56 +01001110/* Attempt to get a backend connection from the specified mt_list array
Willy Tarreau0d587112020-07-01 15:04:38 +02001111 * (safe or idle connections). The <is_safe> argument means what type of
1112 * connection the caller wants.
Olivier Houchard566df302020-03-06 18:18:56 +01001113 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001114static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash)
Olivier Houchard566df302020-03-06 18:18:56 +01001115{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001116 struct connection *conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001117 int i; // thread number
Olivier Houchard566df302020-03-06 18:18:56 +01001118 int found = 0;
Willy Tarreau364f25a2020-07-01 15:55:30 +02001119 int stop;
Olivier Houchard566df302020-03-06 18:18:56 +01001120
1121 /* We need to lock even if this is our own list, because another
1122 * thread may be trying to migrate that connection, and we don't want
1123 * to end up with two threads using the same connection.
1124 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001125 i = tid;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001126 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001127 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 +01001128 if (conn)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001129 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001130
1131 /* If we failed to pick a connection from the idle list, let's try again with
1132 * the safe list.
1133 */
1134 if (!conn && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001135 conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash);
Willy Tarreau0d587112020-07-01 15:04:38 +02001136 if (conn) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001137 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau0d587112020-07-01 15:04:38 +02001138 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001139 }
1140 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001141 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001142
1143 /* If we found a connection in our own list, and we don't have to
1144 * steal one from another thread, then we're done.
1145 */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001146 if (conn)
1147 goto done;
1148
Willy Tarreau76cc6992020-07-01 18:49:24 +02001149 /* pool sharing globally disabled ? */
1150 if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED))
1151 goto done;
1152
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001153 /* Are we allowed to pick from another thread ? We'll still try
1154 * it if we're running low on FDs as we don't want to create
1155 * extra conns in this case, otherwise we can give up if we have
1156 * too few idle conns.
1157 */
1158 if (srv->curr_idle_conns < srv->low_idle_conns &&
1159 ha_used_fds < global.tune.pool_low_count)
1160 goto done;
Olivier Houchard566df302020-03-06 18:18:56 +01001161
Willy Tarreau364f25a2020-07-01 15:55:30 +02001162 /* Lookup all other threads for an idle connection, starting from last
1163 * unvisited thread.
1164 */
1165 stop = srv->next_takeover;
1166 if (stop >= global.nbthread)
1167 stop = 0;
1168
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001169 i = stop;
1170 do {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001171 if (!srv->curr_idle_thr[i] || i == tid)
Willy Tarreau151c2532020-07-01 08:24:44 +02001172 continue;
1173
Ubuntub1adf032021-03-01 06:22:17 +00001174 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1175 continue;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001176 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 +01001177 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001178 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001179 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001180 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Olivier Houchard566df302020-03-06 18:18:56 +01001181 found = 1;
1182 break;
1183 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001184
1185 conn = srv_lookup_conn_next(conn);
Olivier Houchard566df302020-03-06 18:18:56 +01001186 }
Willy Tarreau0d587112020-07-01 15:04:38 +02001187
1188 if (!found && !is_safe && srv->curr_safe_nb > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001189 conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001190 while (conn) {
Olivier Houchard1662cdb2020-07-03 14:04:37 +02001191 if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001192 conn_delete_from_tree(&conn->hash_node->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001193 _HA_ATOMIC_INC(&activity[tid].fd_takeover);
Willy Tarreau0d587112020-07-01 15:04:38 +02001194 found = 1;
1195 is_safe = 1;
Willy Tarreau0d587112020-07-01 15:04:38 +02001196 break;
1197 }
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001198
1199 conn = srv_lookup_conn_next(conn);
Willy Tarreau0d587112020-07-01 15:04:38 +02001200 }
1201 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001202 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyelle5f1ded52020-10-14 18:17:03 +02001203 } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop);
Olivier Houchard566df302020-03-06 18:18:56 +01001204
1205 if (!found)
1206 conn = NULL;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001207 done:
1208 if (conn) {
Willy Tarreau364f25a2020-07-01 15:55:30 +02001209 _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001210
1211 srv_use_conn(srv, conn);
1212
Willy Tarreau4781b152021-04-06 13:53:36 +02001213 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
1214 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
1215 _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]);
Amaury Denoyelle9c13b622020-10-14 18:17:04 +02001216 conn->flags &= ~CO_FL_LIST_MASK;
1217 __ha_barrier_atomic_store();
1218
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001219 if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE &&
1220 conn->mux->flags & MX_FL_HOL_RISK) {
1221 /* attach the connection to the session private list
1222 */
1223 conn->owner = s->sess;
Willy Tarreau38b4d2e2020-11-20 17:08:15 +01001224 session_add_conn(s->sess, conn, conn->target);
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001225 }
1226 else {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001227 ebmb_insert(&srv->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001228 &conn->hash_node->node,
1229 sizeof(conn->hash_node->hash));
Amaury Denoyelle0d21dea2020-10-14 18:17:09 +02001230 }
Olivier Houchard566df302020-03-06 18:18:56 +01001231 }
1232 return conn;
1233}
1234
Willy Tarreaubaaee002006-06-26 02:48:02 +02001235/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001236 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001237 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001238 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001239 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001240 * - SF_ERR_NONE if everything's OK
1241 * - SF_ERR_SRVTO if there are no more servers
1242 * - SF_ERR_SRVCL if the connection was refused by the server
1243 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1244 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1245 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001246 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001247 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001248 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001249 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001250int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001251{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001252 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001253 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001254 struct conn_stream *srv_cs = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001255 struct server *srv;
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001256 const int reuse_mode = s->be->options & PR_O_REUSE_MASK;
Willy Tarreau34601a82013-12-15 16:33:46 +01001257 int reuse = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001258 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001259 int err;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001260#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001261 struct sample *sni_smp = NULL;
Amaury Denoyelleedadf192021-02-12 13:49:42 +01001262#endif
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001263 struct sockaddr_storage *bind_addr;
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001264 int proxy_line_ret;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001265 int64_t hash = 0;
Amaury Denoyelle81c6f762021-01-18 14:57:50 +01001266 struct conn_hash_params hash_params;
1267
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001268 /* in standard configuration, srv will be valid
1269 * it can be NULL for dispatch mode or transparent backend */
1270 srv = objt_server(s->target);
1271
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001272 if (!(s->flags & SF_ADDR_SET)) {
Christopher Faulet16f16af2021-10-27 09:34:56 +02001273 err = alloc_dst_address(&s->si[1].dst, srv, s);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001274 if (err != SRV_STATUS_OK)
1275 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001276
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001277 s->flags |= SF_ADDR_SET;
1278 }
1279
1280 err = alloc_bind_address(&bind_addr, srv, s);
1281 if (err != SRV_STATUS_OK)
1282 return SF_ERR_INTERNAL;
Amaury Denoyelle1a58aca2021-01-22 16:47:46 +01001283
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001284#ifdef USE_OPENSSL
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001285 if (srv && srv->ssl_ctx.sni) {
1286 sni_smp = sample_fetch_as_type(s->be, s->sess, s,
1287 SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1288 srv->ssl_ctx.sni, SMP_T_STR);
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001289 }
1290#endif
Amaury Denoyelle4c098002021-02-17 15:59:02 +01001291
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001292 /* do not reuse if mode is not http */
1293 if (!IS_HTX_STRM(s)) {
1294 DBG_TRACE_STATE("skip idle connections reuse: no htx", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1295 goto skip_reuse;
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001296 }
Amaury Denoyelle9b626e32021-01-06 17:03:27 +01001297
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001298 /* disable reuse if websocket stream and the protocol to use is not the
1299 * same as the main protocol of the server.
1300 */
1301 if (unlikely(s->flags & SF_WEBSOCKET) && srv) {
1302 if (!srv_check_reuse_ws(srv)) {
1303 DBG_TRACE_STATE("skip idle connections reuse: websocket stream", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1304 goto skip_reuse;
1305 }
1306 }
1307
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001308 /* first, set unique connection parameters and then calculate hash */
1309 memset(&hash_params, 0, sizeof(hash_params));
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001310
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001311 /* 1. target */
1312 hash_params.target = s->target;
1313
1314#ifdef USE_OPENSSL
1315 /* 2. sni
1316 * only test if the sample is not null as smp_make_safe (called before
1317 * ssl_sock_set_servername) can only fails if this is not the case
1318 */
1319 if (sni_smp) {
1320 hash_params.sni_prehash =
1321 conn_hash_prehash(sni_smp->data.u.str.area,
1322 sni_smp->data.u.str.data);
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001323 }
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001324#endif /* USE_OPENSSL */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001325
Amaury Denoyelle926712a2021-10-20 15:04:03 +02001326 /* 3. destination address */
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001327 if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS))
Christopher Faulet16f16af2021-10-27 09:34:56 +02001328 hash_params.dst_addr = s->si[1].dst;
Amaury Denoyelle01a287f2021-02-11 16:46:53 +01001329
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001330 /* 4. source address */
Amaury Denoyelled10a2002021-02-11 19:45:19 +01001331 hash_params.src_addr = bind_addr;
1332
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001333 /* 5. proxy protocol */
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001334 if (srv && srv->pp_opts) {
1335 proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s);
1336 if (proxy_line_ret) {
Amaury Denoyelle36441f42021-02-17 16:25:31 +01001337 hash_params.proxy_prehash =
1338 conn_hash_prehash(trash.area, proxy_line_ret);
Amaury Denoyelle1921d202021-01-14 10:15:29 +01001339 }
1340 }
1341
Amaury Denoyelle8ede3db2021-03-02 14:38:53 +01001342 hash = conn_calculate_hash(&hash_params);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001343
Willy Tarreaub0821862019-07-18 19:26:11 +02001344 /* first, search for a matching connection in the session's idle conns */
Amaury Denoyelle293dcc42021-01-25 10:29:35 +01001345 srv_conn = session_get_conn(s->sess, s->target, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001346 if (srv_conn) {
1347 DBG_TRACE_STATE("reuse connection from session", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Christopher Fauletfcc3d8a2020-07-01 16:36:51 +02001348 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001349 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001350
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001351 if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001352 /* Below we pick connections from the safe, idle or
1353 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001354 * on the strategy, the fact that this is a first or second
1355 * (retryable) request, with the indicated priority (1 or 2) :
1356 *
1357 * SAFE AGGR ALWS
1358 *
1359 * +-----+-----+ +-----+-----+ +-----+-----+
1360 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1361 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1362 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1363 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1364 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1365 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001366 *
1367 * Idle conns are necessarily looked up on the same thread so
1368 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001369 */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001370 if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) {
1371 srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash);
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001372 if (srv_conn) {
1373 DBG_TRACE_STATE("reuse connection from avail", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001374 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001375 }
Willy Tarreau449d74a2015-08-05 17:16:33 +02001376 }
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001377
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001378 /* if no available connections found, search for an idle/safe */
Amaury Denoyelle1399d692021-01-22 19:37:44 +01001379 if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) {
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001380 const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST;
1381 const int idle = srv->curr_idle_nb > 0;
1382 const int safe = srv->curr_safe_nb > 0;
1383
1384 /* second column of the tables above,
1385 * search for an idle then safe conn */
1386 if (not_first_req) {
1387 if (idle || safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001388 srv_conn = conn_backend_get(s, srv, 0, hash);
Olivier Houchard566df302020-03-06 18:18:56 +01001389 }
Amaury Denoyelle7f68d812021-01-26 14:35:26 +01001390 /* first column of the tables above */
1391 else if (reuse_mode >= PR_O_REUSE_AGGR) {
1392 /* search for a safe conn */
1393 if (safe)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001394 srv_conn = conn_backend_get(s, srv, 1, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001395
1396 /* search for an idle conn if no safe conn found
1397 * on always reuse mode */
1398 if (!srv_conn &&
1399 reuse_mode == PR_O_REUSE_ALWS && idle) {
1400 /* TODO conn_backend_get should not check the
1401 * safe list is this case */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001402 srv_conn = conn_backend_get(s, srv, 0, hash);
Amaury Denoyelleaa890ae2021-01-25 14:43:17 +01001403 }
Olivier Houchard566df302020-03-06 18:18:56 +01001404 }
Amaury Denoyelle37e25bc2021-01-26 14:35:25 +01001405
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001406 if (srv_conn) {
1407 DBG_TRACE_STATE("reuse connection from idle/safe", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Olivier Houchard566df302020-03-06 18:18:56 +01001408 reuse = 1;
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001409 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001410 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001411 }
1412
Willy Tarreaub0821862019-07-18 19:26:11 +02001413
1414 /* here reuse might have been set above, indicating srv_conn finally
1415 * is OK.
1416 */
Willy Tarreaub0821862019-07-18 19:26:11 +02001417
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001418 if (ha_used_fds > global.tune.pool_high_count && srv) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001419 struct connection *tokill_conn = NULL;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001420 struct conn_hash_node *conn_node = NULL;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001421 struct ebmb_node *node = NULL;
Olivier Houchard88698d92019-04-16 19:07:22 +02001422
1423 /* We can't reuse a connection, and e have more FDs than deemd
1424 * acceptable, attempt to kill an idling connection
1425 */
1426 /* First, try from our own idle list */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001427 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001428 node = ebmb_first(&srv->per_thr[tid].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001429 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001430 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1431 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001432 ebmb_delete(node);
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001433 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1434
1435 /* Release the idle lock before calling mux->destroy.
1436 * It will in turn call srv_release_conn through
1437 * conn_free which also uses it.
1438 */
Olivier Houchard88698d92019-04-16 19:07:22 +02001439 tokill_conn->mux->destroy(tokill_conn->ctx);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001440 }
Amaury Denoyelle65bf6002021-03-23 10:44:43 +01001441 else {
1442 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
1443 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001444
Olivier Houchard88698d92019-04-16 19:07:22 +02001445 /* If not, iterate over other thread's idling pool, and try to grab one */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001446 if (!tokill_conn) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001447 int i;
1448
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02001449 for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
Willy Tarreau08e2b412019-05-26 11:50:08 +02001450 // just silence stupid gcc which reports an absurd
1451 // out-of-bounds warning for <i> which is always
1452 // exactly zero without threads, but it seems to
1453 // see it possibly larger.
1454 ALREADY_CHECKED(i);
1455
Willy Tarreau9b9f8472021-03-26 20:52:10 +01001456 if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0)
1457 continue;
1458
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001459 node = ebmb_first(&srv->per_thr[i].idle_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001460 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001461 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1462 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001463 ebmb_delete(node);
1464 }
1465
1466 if (!tokill_conn) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001467 node = ebmb_first(&srv->per_thr[i].safe_conns);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001468 if (node) {
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001469 conn_node = ebmb_entry(node, struct conn_hash_node, node);
1470 tokill_conn = conn_node->conn;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001471 ebmb_delete(node);
1472 }
1473 }
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01001474 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellea3bf62e2021-01-28 10:16:29 +01001475
Olivier Houchard88698d92019-04-16 19:07:22 +02001476 if (tokill_conn) {
1477 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1478
Willy Tarreau2b718102021-04-21 07:32:39 +02001479 MT_LIST_APPEND(&idle_conns[i].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01001480 (struct mt_list *)&tokill_conn->toremove_list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001481 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Olivier Houchard88698d92019-04-16 19:07:22 +02001482 break;
1483 }
1484 }
1485 }
1486
1487 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001488
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001489 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001490 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001491 int avail = srv_conn->mux->avail_streams(srv_conn);
1492
1493 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001494 /* No more streams available, remove it from the list */
Amaury Denoyelle8990b012021-02-19 15:29:16 +01001495 conn_delete_from_tree(&srv_conn->hash_node->node);
Olivier Houchard2442f682018-12-01 17:03:38 +01001496 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001497
1498 if (avail >= 1) {
1499 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001500 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001501 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001502 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001503 srv_conn = NULL;
1504 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001505 else
1506 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001507 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001508 /* otherwise srv_conn is left intact */
1509 }
1510 else
1511 srv_conn = NULL;
1512
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001513skip_reuse:
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001514 /* no reuse or failed to reuse the connection above, pick a new one */
1515 if (!srv_conn) {
Christopher Faulet236c93b2020-07-02 09:19:54 +02001516 srv_conn = conn_new(s->target);
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001517 srv_cs = NULL;
Christopher Fauletc64badd2020-07-01 15:12:43 +02001518
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001519 if (srv_conn) {
Amaury Denoyelle1252b6f2021-10-20 15:22:01 +02001520 DBG_TRACE_STATE("alloc new be connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaudc2ac812020-07-15 17:46:32 +02001521 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 Denoyelleaee4fdb2021-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 */
Christopher Faulet16f16af2021-10-27 09:34:56 +02001550 *srv_conn->dst = *s->si[1].dst;
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001551
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) {
Willy Tarreau14e7f292021-10-27 17:41:07 +02001558 if (conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), srv->xprt)) {
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001559 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 */
Willy Tarreau14e7f292021-10-27 17:41:07 +02001566 ret = conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), xprt_get(XPRT_RAW));
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001567 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 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001597
Alexander Liu2a54bb72019-05-22 19:44:48 +08001598 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1599 srv_conn->send_proxy_ofs = 1;
1600 srv_conn->flags |= CO_FL_SOCKS4;
1601 }
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001602
1603#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1604 /* if websocket stream, try to update connection ALPN. */
1605 if (unlikely(s->flags & SF_WEBSOCKET) &&
1606 srv && srv->use_ssl && srv->ssl_ctx.alpn_str) {
1607 char *alpn = "";
1608 int force = 0;
1609
1610 switch (srv->ws) {
1611 case SRV_WS_AUTO:
1612 alpn = "\x08http/1.1";
1613 force = 0;
1614 break;
1615 case SRV_WS_H1:
1616 alpn = "\x08http/1.1";
1617 force = 1;
1618 break;
1619 case SRV_WS_H2:
1620 alpn = "\x02h2";
1621 force = 1;
1622 break;
1623 }
1624
1625 if (!conn_update_alpn(srv_conn, ist(alpn), force))
1626 DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1627 }
1628#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001629 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001630 else {
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001631 s->flags |= SF_SRV_REUSED;
1632
Amaury Denoyelled7faa3d2021-03-05 15:27:41 +01001633 /* Currently there seems to be no known cases of xprt ready
1634 * without the mux installed here.
1635 */
1636 BUG_ON(!srv_conn->mux);
1637
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02001638 if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY))
1639 s->flags |= SF_SRV_REUSED_ANTICIPATED;
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001640 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001641
William Lallemandb7ff6a32012-03-02 14:35:21 +01001642 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001643 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001644 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001645
Willy Tarreau14f8e862012-08-30 22:23:13 +02001646 /* disable lingering */
1647 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001648 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001649
Willy Tarreauf1573842018-12-14 11:35:36 +01001650 if (s->flags & SF_SRV_REUSED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001651 _HA_ATOMIC_INC(&s->be->be_counters.reuse);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001652 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001653 _HA_ATOMIC_INC(&srv->counters.reuse);
Willy Tarreauf1573842018-12-14 11:35:36 +01001654 } else {
Willy Tarreau4781b152021-04-06 13:53:36 +02001655 _HA_ATOMIC_INC(&s->be->be_counters.connect);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001656 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001657 _HA_ATOMIC_INC(&srv->counters.connect);
Willy Tarreauf1573842018-12-14 11:35:36 +01001658 }
1659
Olivier Houchard201b9f42018-11-21 00:16:29 +01001660 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001661 if (err != SF_ERR_NONE)
1662 return err;
1663
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001664#ifdef USE_OPENSSL
Amaury Denoyelle655dec82021-06-01 17:04:10 +02001665 if (!(s->flags & SF_SRV_REUSED)) {
1666 if (smp_make_safe(sni_smp))
1667 ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area);
1668 }
Christopher Faulet27bd6ff2020-07-01 11:00:18 +02001669#endif /* USE_OPENSSL */
1670
Willy Tarreaua3b17562020-07-31 08:39:31 +02001671 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1672 * if so, add our handshake pseudo-XPRT now.
1673 */
1674 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
1675 if (xprt_add_hs(srv_conn) < 0) {
1676 conn_full_close(srv_conn);
1677 return SF_ERR_INTERNAL;
1678 }
1679 }
Olivier Houchard1b3c9312021-03-05 23:37:48 +01001680 conn_xprt_start(srv_conn);
Willy Tarreaua3b17562020-07-31 08:39:31 +02001681
Olivier Houchard5cd62172019-01-04 15:52:26 +01001682 /* We have to defer the mux initialization until after si_connect()
1683 * has been called, as we need the xprt to have been properly
1684 * initialized, or any attempt to recv during the mux init may
1685 * fail, and flag the connection as CO_FL_ERROR.
1686 */
1687 if (init_mux) {
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02001688 const struct mux_ops *alt_mux =
1689 likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv);
1690 if (conn_install_mux_be(srv_conn, srv_cs, s->sess, alt_mux) < 0) {
Olivier Houchard74931142019-01-29 19:11:16 +01001691 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001692 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001693 }
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01001694 if (IS_HTX_STRM(s)) {
Amaury Denoyelle08d87b32021-01-26 17:35:46 +01001695 /* If we're doing http-reuse always, and the connection
1696 * is not private with available streams (an http2
1697 * connection), add it to the available list, so that
1698 * others can use it right away. If the connection is
1699 * private or we're doing http-reuse safe and the mux
1700 * protocol supports multiplexing, add it in the
1701 * session server list.
1702 */
1703 if (srv && reuse_mode == PR_O_REUSE_ALWS &&
1704 !(srv_conn->flags & CO_FL_PRIVATE) &&
1705 srv_conn->mux->avail_streams(srv_conn) > 0) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01001706 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 +01001707 }
1708 else if (srv_conn->flags & CO_FL_PRIVATE ||
1709 (reuse_mode == PR_O_REUSE_SAFE &&
1710 srv_conn->mux->flags & MX_FL_HOL_RISK)) {
1711 /* If it fail now, the same will be done in mux->detach() callback */
1712 session_add_conn(s->sess, srv_conn, srv_conn->target);
1713 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02001714 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001715 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001716
Willy Tarreaub1310492021-08-30 09:35:18 +02001717#if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001718
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001719 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001720 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001721 /* Only attempt to use early data if either the client sent
1722 * early data, so that we know it can handle a 425, or if
1723 * we are allwoed to retry requests on early data failure, and
1724 * it's our first try
1725 */
1726 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1727 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1728 s->si[1].conn_retries == s->be->conn_retries)) &&
1729 !channel_is_empty(si_oc(&s->si[1])) &&
1730 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001731 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001732#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001733
Willy Tarreau14f8e862012-08-30 22:23:13 +02001734 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001735 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001736
Willy Tarreau827aee92011-03-10 16:55:02 +01001737 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001738 int count;
1739
Willy Tarreaue7dff022015-04-03 01:14:29 +02001740 s->flags |= SF_CURR_SESS;
Willy Tarreau1db42732021-04-06 11:44:07 +02001741 count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001742 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau59b0fec2021-02-17 16:01:37 +01001743 if (s->be->lbprm.server_take_conn)
Willy Tarreau5941ef02021-06-18 18:29:25 +02001744 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001745 }
1746
Willy Tarreauada4c582020-03-04 16:42:03 +01001747 /* Now handle synchronously connected sockets. We know the stream-int
1748 * is at least in state SI_ST_CON. These ones typically are UNIX
1749 * sockets, socket pairs, and occasionally TCP connections on the
1750 * loopback on a heavily loaded system.
1751 */
1752 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1753 s->si[1].flags |= SI_FL_ERR;
1754
1755 /* If we had early data, and the handshake ended, then
1756 * we can remove the flag, and attempt to wake the task up,
1757 * in the event there's an analyser waiting for the end of
1758 * the handshake.
1759 */
1760 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1761 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1762
1763 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1764 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1765 s->si[1].exp = TICK_ETERNITY;
1766 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1767 if (s->si[1].state == SI_ST_CON)
1768 s->si[1].state = SI_ST_RDY;
1769 }
1770
1771 /* Report EOI on the channel if it was reached from the mux point of
1772 * view.
1773 *
1774 * Note: This test is only required because si_cs_process is also the SI
1775 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1776 * care of it.
1777 */
1778 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1779 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1780
Christopher Faulet3f5bcd02020-07-29 22:42:27 +02001781 /* catch all sync connect while the mux is not already installed */
1782 if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) {
1783 if (conn_create_mux(srv_conn) < 0) {
1784 conn_full_close(srv_conn);
1785 return SF_ERR_INTERNAL;
1786 }
1787 }
1788
Willy Tarreaue7dff022015-04-03 01:14:29 +02001789 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001790}
1791
1792
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793/* This function performs the "redispatch" part of a connection attempt. It
1794 * will assign a server if required, queue the connection if required, and
1795 * handle errors that might arise at this level. It can change the server
1796 * state. It will return 1 if it encounters an error, switches the server
1797 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1798 * that the connection is ready to use.
1799 */
1800
Willy Tarreau87b09662015-04-03 00:22:06 +02001801int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001802{
Willy Tarreau827aee92011-03-10 16:55:02 +01001803 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001804 int conn_err;
1805
1806 /* We know that we don't have any connection pending, so we will
1807 * try to get a new one, and wait in this state if it's queued
1808 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001809 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001810 conn_err = assign_server_and_queue(s);
1811 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001812
Willy Tarreaubaaee002006-06-26 02:48:02 +02001813 switch (conn_err) {
1814 case SRV_STATUS_OK:
1815 break;
1816
Willy Tarreau7c669d72008-06-20 15:04:11 +02001817 case SRV_STATUS_FULL:
1818 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1819 * and we can redispatch to another server, or it is not and we return
1820 * 503. This only makes sense in DIRECT mode however, because normal LB
1821 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001822 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001823 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001824 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001825 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001826 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001827 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Christopher Faulet16f16af2021-10-27 09:34:56 +02001828 sockaddr_free(&s->si[1].dst);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001829 goto redispatch;
1830 }
1831
Willy Tarreau350f4872014-11-28 14:42:25 +01001832 if (!s->si[1].err_type) {
1833 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001834 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001835
Willy Tarreau4781b152021-04-06 13:53:36 +02001836 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1837 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001838 return 1;
1839
Willy Tarreaubaaee002006-06-26 02:48:02 +02001840 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001841 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001842 if (!s->si[1].err_type) {
1843 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001844 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001845
Willy Tarreau4781b152021-04-06 13:53:36 +02001846 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 return 1;
1848
1849 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001850 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1851 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001852 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001853 return 1;
1854
Willy Tarreaubaaee002006-06-26 02:48:02 +02001855 case SRV_STATUS_INTERNAL:
1856 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001857 if (!s->si[1].err_type) {
1858 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001859 }
1860
Willy Tarreau827aee92011-03-10 16:55:02 +01001861 if (srv)
1862 srv_inc_sess_ctr(srv);
1863 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001864 srv_set_sess_last(srv);
1865 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001866 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1867 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868
Willy Tarreau87b09662015-04-03 00:22:06 +02001869 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001870 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001871 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001872 return 1;
1873 }
1874 /* if we get here, it's because we got SRV_STATUS_OK, which also
1875 * means that the connection has not been queued.
1876 */
1877 return 0;
1878}
1879
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001880/* Check if the connection request is in such a state that it can be aborted. */
1881static int back_may_abort_req(struct channel *req, struct stream *s)
1882{
1883 return ((req->flags & (CF_READ_ERROR)) ||
1884 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1885 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1886}
1887
1888/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1889 * SI_ST_TAR. Other input states are simply ignored.
1890 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1891 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1892 * conditions.
1893 */
1894void back_try_conn_req(struct stream *s)
1895{
1896 struct server *srv = objt_server(s->target);
1897 struct stream_interface *si = &s->si[1];
1898 struct channel *req = &s->req;
1899
1900 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1901
1902 if (si->state == SI_ST_ASS) {
1903 /* Server assigned to connection request, we have to try to connect now */
1904 int conn_err;
1905
1906 /* Before we try to initiate the connection, see if the
1907 * request may be aborted instead.
1908 */
1909 if (back_may_abort_req(req, s)) {
1910 si->err_type |= SI_ET_CONN_ABRT;
1911 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1912 goto abort_connection;
1913 }
1914
1915 conn_err = connect_server(s);
1916 srv = objt_server(s->target);
1917
1918 if (conn_err == SF_ERR_NONE) {
1919 /* state = SI_ST_CON or SI_ST_EST now */
1920 if (srv)
1921 srv_inc_sess_ctr(srv);
1922 if (srv)
1923 srv_set_sess_last(srv);
1924 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1925 goto end;
1926 }
1927
1928 /* We have received a synchronous error. We might have to
1929 * abort, retry immediately or redispatch.
1930 */
1931 if (conn_err == SF_ERR_INTERNAL) {
1932 if (!si->err_type) {
1933 si->err_type = SI_ET_CONN_OTHER;
1934 }
1935
1936 if (srv)
1937 srv_inc_sess_ctr(srv);
1938 if (srv)
1939 srv_set_sess_last(srv);
1940 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02001941 _HA_ATOMIC_INC(&srv->counters.failed_conns);
1942 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001943
1944 /* release other streams waiting for this server */
1945 sess_change_server(s, NULL);
1946 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001947 process_srv_queue(srv);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001948
1949 /* Failed and not retryable. */
1950 si_shutr(si);
1951 si_shutw(si);
1952 req->flags |= CF_WRITE_ERROR;
1953
1954 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1955
1956 /* we may need to know the position in the queue for logging */
1957 pendconn_cond_unlink(s->pend_pos);
1958
1959 /* no stream was ever accounted for this server */
1960 si->state = SI_ST_CLO;
1961 if (s->srv_error)
1962 s->srv_error(s, si);
1963 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1964 goto end;
1965 }
1966
1967 /* We are facing a retryable error, but we don't want to run a
1968 * turn-around now, as the problem is likely a source port
1969 * allocation problem, so we want to retry now.
1970 */
1971 si->state = SI_ST_CER;
1972 si->flags &= ~SI_FL_ERR;
1973 back_handle_st_cer(s);
1974
1975 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1976 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1977 }
1978 else if (si->state == SI_ST_QUE) {
1979 /* connection request was queued, check for any update */
1980 if (!pendconn_dequeue(s)) {
1981 /* The connection is not in the queue anymore. Either
1982 * we have a server connection slot available and we
1983 * go directly to the assigned state, or we need to
1984 * load-balance first and go to the INI state.
1985 */
1986 si->exp = TICK_ETERNITY;
1987 if (unlikely(!(s->flags & SF_ASSIGNED)))
1988 si->state = SI_ST_REQ;
1989 else {
1990 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1991 si->state = SI_ST_ASS;
1992 }
1993 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1994 goto end;
1995 }
1996
1997 /* Connection request still in queue... */
1998 if (si->flags & SI_FL_EXP) {
1999 /* ... and timeout expired */
2000 si->exp = TICK_ETERNITY;
2001 si->flags &= ~SI_FL_EXP;
2002 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2003
2004 /* we may need to know the position in the queue for logging */
2005 pendconn_cond_unlink(s->pend_pos);
2006
2007 if (srv)
Willy Tarreau4781b152021-04-06 13:53:36 +02002008 _HA_ATOMIC_INC(&srv->counters.failed_conns);
2009 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002010 si_shutr(si);
2011 si_shutw(si);
2012 req->flags |= CF_WRITE_TIMEOUT;
2013 if (!si->err_type)
2014 si->err_type = SI_ET_QUEUE_TO;
2015 si->state = SI_ST_CLO;
2016 if (s->srv_error)
2017 s->srv_error(s, si);
2018 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2019 goto end;
2020 }
2021
2022 /* Connection remains in queue, check if we have to abort it */
2023 if (back_may_abort_req(req, s)) {
2024 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2025
2026 /* we may need to know the position in the queue for logging */
2027 pendconn_cond_unlink(s->pend_pos);
2028
2029 si->err_type |= SI_ET_QUEUE_ABRT;
2030 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2031 goto abort_connection;
2032 }
2033
2034 /* Nothing changed */
2035 }
2036 else if (si->state == SI_ST_TAR) {
2037 /* Connection request might be aborted */
2038 if (back_may_abort_req(req, s)) {
2039 si->err_type |= SI_ET_CONN_ABRT;
2040 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2041 goto abort_connection;
2042 }
2043
2044 if (!(si->flags & SI_FL_EXP))
2045 return; /* still in turn-around */
2046
2047 si->flags &= ~SI_FL_EXP;
2048 si->exp = TICK_ETERNITY;
2049
2050 /* we keep trying on the same server as long as the stream is
2051 * marked "assigned".
2052 * FIXME: Should we force a redispatch attempt when the server is down ?
2053 */
2054 if (s->flags & SF_ASSIGNED)
2055 si->state = SI_ST_ASS;
2056 else
2057 si->state = SI_ST_REQ;
2058
2059 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2060 }
2061
2062 end:
2063 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2064 return;
2065
2066abort_connection:
2067 /* give up */
2068 si->exp = TICK_ETERNITY;
2069 si->flags &= ~SI_FL_EXP;
2070 si_shutr(si);
2071 si_shutw(si);
2072 si->state = SI_ST_CLO;
2073 if (s->srv_error)
2074 s->srv_error(s, si);
2075 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2076 return;
2077}
2078
2079/* This function initiates a server connection request on a stream interface
2080 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
2081 * a real connection to a server, indicating that a server has been assigned,
2082 * or SI_ST_EST for a successful connection to an applet. It may also return
2083 * SI_ST_QUE, or SI_ST_CLO upon error.
2084 */
2085void back_handle_st_req(struct stream *s)
2086{
2087 struct stream_interface *si = &s->si[1];
2088
2089 if (si->state != SI_ST_REQ)
2090 return;
2091
2092 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2093
2094 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
2095 /* the applet directly goes to the EST state */
2096 struct appctx *appctx = objt_appctx(si->end);
2097
2098 if (!appctx || appctx->applet != __objt_applet(s->target))
2099 appctx = si_register_handler(si, objt_applet(s->target));
2100
2101 if (!appctx) {
2102 /* No more memory, let's immediately abort. Force the
2103 * error code to ignore the ERR_LOCAL which is not a
2104 * real error.
2105 */
2106 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
2107
2108 si_shutr(si);
2109 si_shutw(si);
2110 s->req.flags |= CF_WRITE_ERROR;
2111 si->err_type = SI_ET_CONN_RES;
2112 si->state = SI_ST_CLO;
2113 if (s->srv_error)
2114 s->srv_error(s, si);
2115 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2116 goto end;
2117 }
2118
2119 if (tv_iszero(&s->logs.tv_request))
2120 s->logs.tv_request = now;
2121 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2122 si->state = SI_ST_EST;
2123 si->err_type = SI_ET_NONE;
2124 be_set_sess_last(s->be);
2125
2126 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2127 /* let back_establish() finish the job */
2128 goto end;
2129 }
2130
2131 /* Try to assign a server */
2132 if (srv_redispatch_connect(s) != 0) {
2133 /* We did not get a server. Either we queued the
2134 * connection request, or we encountered an error.
2135 */
2136 if (si->state == SI_ST_QUE) {
2137 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2138 goto end;
2139 }
2140
2141 /* we did not get any server, let's check the cause */
2142 si_shutr(si);
2143 si_shutw(si);
2144 s->req.flags |= CF_WRITE_ERROR;
2145 if (!si->err_type)
2146 si->err_type = SI_ET_CONN_OTHER;
2147 si->state = SI_ST_CLO;
2148 if (s->srv_error)
2149 s->srv_error(s, si);
2150 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2151 goto end;
2152 }
2153
2154 /* The server is assigned */
2155 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
2156 si->state = SI_ST_ASS;
2157 be_set_sess_last(s->be);
2158 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2159
2160 end:
2161 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2162}
2163
2164/* This function is called with (si->state == SI_ST_CON) meaning that a
2165 * connection was attempted and that the file descriptor is already allocated.
2166 * We must check for timeout, error and abort. Possible output states are
2167 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
2168 * works with connection-based streams. We know that there were no I/O event
2169 * when reaching this function. Timeouts and errors are *not* cleared.
2170 */
2171void back_handle_st_con(struct stream *s)
2172{
2173 struct stream_interface *si = &s->si[1];
2174 struct channel *req = &s->req;
2175 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002176
2177 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2178
2179 /* the client might want to abort */
2180 if ((rep->flags & CF_SHUTW) ||
2181 ((req->flags & CF_SHUTW_NOW) &&
2182 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2183 si->flags |= SI_FL_NOLINGER;
2184 si_shutw(si);
2185 si->err_type |= SI_ET_CONN_ABRT;
2186 if (s->srv_error)
2187 s->srv_error(s, si);
2188 /* Note: state = SI_ST_DIS now */
2189 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 +01002190 goto end;
2191 }
2192
Willy Tarreau062df2c2020-01-10 06:17:03 +01002193 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002194 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01002195 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002196 if (!si->err_type) {
2197 if (si->flags & SI_FL_ERR)
2198 si->err_type = SI_ET_CONN_ERR;
2199 else
2200 si->err_type = SI_ET_CONN_TO;
2201 }
2202
2203 si->state = SI_ST_CER;
2204 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2205 }
2206
Willy Tarreau062df2c2020-01-10 06:17:03 +01002207 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002208 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2209}
2210
2211/* This function is called with (si->state == SI_ST_CER) meaning that a
2212 * previous connection attempt has failed and that the file descriptor
2213 * has already been released. Possible causes include asynchronous error
2214 * notification and time out. Possible output states are SI_ST_CLO when
2215 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
2216 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
2217 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
2218 * marked as in error state. Timeouts and errors are cleared before retrying.
2219 */
2220void back_handle_st_cer(struct stream *s)
2221{
2222 struct stream_interface *si = &s->si[1];
2223 struct conn_stream *cs = objt_cs(si->end);
2224 struct connection *conn = cs_conn(cs);
2225
2226 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2227
2228 si->exp = TICK_ETERNITY;
2229 si->flags &= ~SI_FL_EXP;
2230
2231 /* we probably have to release last stream from the server */
2232 if (objt_server(s->target)) {
2233 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
2234
2235 if (s->flags & SF_CURR_SESS) {
2236 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002237 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002238 }
2239
2240 if ((si->flags & SI_FL_ERR) &&
2241 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2242 /* We tried to connect to a server which is configured
2243 * with "verify required" and which doesn't have the
2244 * "verifyhost" directive. The server presented a wrong
2245 * certificate (a certificate for an unexpected name),
2246 * which implies that we have used SNI in the handshake,
2247 * and that the server doesn't have the associated cert
2248 * and presented a default one.
2249 *
2250 * This is a serious enough issue not to retry. It's
2251 * especially important because this wrong name might
2252 * either be the result of a configuration error, and
2253 * retrying will only hammer the server, or is caused
2254 * by the use of a wrong SNI value, most likely
2255 * provided by the client and we don't want to let the
2256 * client provoke retries.
2257 */
2258 si->conn_retries = 0;
2259 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2260 }
2261 }
2262
2263 /* ensure that we have enough retries left */
2264 si->conn_retries--;
2265 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2266 if (!si->err_type) {
2267 si->err_type = SI_ET_CONN_ERR;
2268 }
2269
2270 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002271 _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns);
2272 _HA_ATOMIC_INC(&s->be->be_counters.failed_conns);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002273 sess_change_server(s, NULL);
2274 if (may_dequeue_tasks(objt_server(s->target), s->be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002275 process_srv_queue(objt_server(s->target));
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002276
2277 /* shutw is enough so stop a connecting socket */
2278 si_shutw(si);
2279 s->req.flags |= CF_WRITE_ERROR;
2280 s->res.flags |= CF_READ_ERROR;
2281
2282 si->state = SI_ST_CLO;
2283 if (s->srv_error)
2284 s->srv_error(s, si);
2285
2286 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2287 goto end;
2288 }
2289
Christopher Fauletf822dec2021-06-01 14:06:05 +02002290 /* At this stage, we will trigger a connection retry (with or without
2291 * redispatch). Thus we must release the SI endpoint on the server side
2292 * an close the attached connection. It is especially important to do it
2293 * now if the retry is not immediately performed, to be sure to release
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002294 * resources as soon as possible and to not catch errors from the lower
Christopher Fauletf822dec2021-06-01 14:06:05 +02002295 * layers in an unexpected state (i.e < ST_CONN).
2296 *
2297 * Note: the stream-interface will be switched to ST_REQ, ST_ASS or
2298 * ST_TAR and SI_FL_ERR and SI_FL_EXP flags will be unset.
2299 */
2300 si_release_endpoint(&s->si[1]);
2301
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002302 stream_choose_redispatch(s);
2303
2304 if (si->flags & SI_FL_ERR) {
2305 /* The error was an asynchronous connection error, and we will
2306 * likely have to retry connecting to the same server, most
2307 * likely leading to the same result. To avoid this, we wait
2308 * MIN(one second, connect timeout) before retrying. We don't
2309 * do it when the failure happened on a reused connection
2310 * though.
2311 */
2312
2313 int delay = 1000;
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002314 const int reused = (s->flags & SF_SRV_REUSED) &&
2315 !(s->flags & SF_SRV_REUSED_ANTICIPATED);
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002316
2317 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2318 delay = s->be->timeout.connect;
2319
2320 if (!si->err_type)
2321 si->err_type = SI_ET_CONN_ERR;
2322
2323 /* only wait when we're retrying on the same server */
2324 if ((si->state == SI_ST_ASS ||
2325 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
Amaury Denoyelle2b1d9172021-06-17 15:14:49 +02002326 (s->be->srv_act <= 1)) && !reused) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002327 si->state = SI_ST_TAR;
2328 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2329 }
2330 si->flags &= ~SI_FL_ERR;
2331 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2332 }
2333
2334 end:
2335 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2336}
2337
2338/* This function is called with (si->state == SI_ST_RDY) meaning that a
2339 * connection was attempted, that the file descriptor is already allocated,
2340 * and that it has succeeded. We must still check for errors and aborts.
2341 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2342 * and SI_ST_DIS (abort). This only works with connection-based streams.
2343 * Timeouts and errors are *not* cleared.
2344 */
2345void back_handle_st_rdy(struct stream *s)
2346{
2347 struct stream_interface *si = &s->si[1];
2348 struct channel *req = &s->req;
2349 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002350
2351 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2352 /* We know the connection at least succeeded, though it could have
2353 * since met an error for any other reason. At least it didn't time out
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07002354 * even though the timeout might have been reported right after success.
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002355 * We need to take care of various situations here :
2356 * - everything might be OK. We have to switch to established.
2357 * - an I/O error might have been reported after a successful transfer,
2358 * which is not retryable and needs to be logged correctly, and needs
2359 * established as well
2360 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2361 * have validated a connection with incoming data (e.g. TCP with a
2362 * banner protocol), or just a successful connect() probe.
2363 * - the client might have requested a connection abort, this needs to
2364 * be checked before we decide to retry anything.
2365 */
2366
2367 /* it's still possible to handle client aborts or connection retries
2368 * before any data were sent.
2369 */
2370 if (!(req->flags & CF_WROTE_DATA)) {
2371 /* client abort ? */
2372 if ((rep->flags & CF_SHUTW) ||
2373 ((req->flags & CF_SHUTW_NOW) &&
2374 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2375 /* give up */
2376 si->flags |= SI_FL_NOLINGER;
2377 si_shutw(si);
2378 si->err_type |= SI_ET_CONN_ABRT;
2379 if (s->srv_error)
2380 s->srv_error(s, si);
2381 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2382 goto end;
2383 }
2384
2385 /* retryable error ? */
2386 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002387 if (!si->err_type)
2388 si->err_type = SI_ET_CONN_ERR;
2389 si->state = SI_ST_CER;
2390 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2391 goto end;
2392 }
2393 }
2394
2395 /* data were sent and/or we had no error, back_establish() will
2396 * now take over.
2397 */
2398 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2399 si->err_type = SI_ET_NONE;
2400 si->state = SI_ST_EST;
2401
2402 end:
2403 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2404}
2405
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002406/* sends a log message when a backend goes down, and also sets last
2407 * change date.
2408 */
2409void set_backend_down(struct proxy *be)
2410{
2411 be->last_change = now.tv_sec;
Willy Tarreau4781b152021-04-06 13:53:36 +02002412 _HA_ATOMIC_INC(&be->down_trans);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002413
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002414 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002415 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002416 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2417 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002418}
2419
Willy Tarreau87b09662015-04-03 00:22:06 +02002420/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002421 * tries to extract an RDP cookie from the request buffer, and look for the
2422 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002423 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002424 * list. Nothing is performed if a server was already assigned.
2425 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002426int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002427{
2428 struct proxy *px = s->be;
2429 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002430 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002431 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002432 uint16_t port;
2433 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002434 char *p;
2435
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002436 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002437
Willy Tarreaue7dff022015-04-03 01:14:29 +02002438 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002439 goto no_cookie;
2440
Willy Tarreau37406352012-04-23 16:16:37 +02002441 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002442
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002443 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002444 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002445 goto no_cookie;
2446
Willy Tarreau04276f32017-01-06 17:41:29 +01002447 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2448 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2449 * server's IP address in network order, and "port" is the integer corresponding to the
2450 * server's port in network order. Comments please Emeric.
2451 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002452 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002453 if (*p != '.')
2454 goto no_cookie;
2455 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002456
2457 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002458 if (*p != '.')
2459 goto no_cookie;
2460
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002461 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002462 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002463 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002464 port == srv->svc_port &&
2465 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002466 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002467 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002468 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002469 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002470 break;
2471 }
2472 }
2473 srv = srv->next;
2474 }
2475
2476no_cookie:
2477 req->analysers &= ~an_bit;
2478 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002479 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002480 return 1;
2481}
2482
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002483int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002484 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002485 return px->down_time;
2486
2487 return now.tv_sec - px->last_change + px->down_time;
2488}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002489
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002490/*
2491 * This function returns a string containing the balancing
2492 * mode of the proxy in a format suitable for stats.
2493 */
2494
2495const char *backend_lb_algo_str(int algo) {
2496
2497 if (algo == BE_LB_ALGO_RR)
2498 return "roundrobin";
2499 else if (algo == BE_LB_ALGO_SRR)
2500 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002501 else if (algo == BE_LB_ALGO_FAS)
2502 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002503 else if (algo == BE_LB_ALGO_LC)
2504 return "leastconn";
2505 else if (algo == BE_LB_ALGO_SH)
2506 return "source";
2507 else if (algo == BE_LB_ALGO_UH)
2508 return "uri";
2509 else if (algo == BE_LB_ALGO_PH)
2510 return "url_param";
2511 else if (algo == BE_LB_ALGO_HH)
2512 return "hdr";
2513 else if (algo == BE_LB_ALGO_RCH)
2514 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002515 else if (algo == BE_LB_ALGO_NONE)
2516 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002517 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002518 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002519}
2520
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002521/* This function parses a "balance" statement in a backend section describing
2522 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002523 * returns -1, it will write an error message into the <err> buffer which will
2524 * automatically be allocated and must be passed as NULL. The trailing '\n'
2525 * will not be written. The function must be called with <args> pointing to the
2526 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002527 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002528int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002529{
2530 if (!*(args[0])) {
2531 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002532 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2533 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002534 return 0;
2535 }
2536
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002537 if (strcmp(args[0], "roundrobin") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002538 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2539 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002540 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002541 else if (strcmp(args[0], "static-rr") == 0) {
Willy Tarreau9757a382009-10-03 12:56:50 +02002542 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2543 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2544 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002545 else if (strcmp(args[0], "first") == 0) {
Willy Tarreauf09c6602012-02-13 17:12:08 +01002546 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2547 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2548 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002549 else if (strcmp(args[0], "leastconn") == 0) {
Willy Tarreau51406232008-03-10 22:04:20 +01002550 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2551 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2552 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002553 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002554 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2555 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002556 curproxy->lbprm.arg_opt1 = 2;
2557
2558 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2559 const char *beg;
2560 char *end;
2561
2562 beg = args[0] + 7;
2563 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2564
2565 if (*end != ')') {
2566 if (!*end)
2567 memprintf(err, "random : missing closing parenthesis.");
2568 else
2569 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2570 return -1;
2571 }
2572
2573 if (curproxy->lbprm.arg_opt1 < 1) {
2574 memprintf(err, "random : number of draws must be at least 1.");
2575 return -1;
2576 }
2577 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002578 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002579 else if (strcmp(args[0], "source") == 0) {
Willy Tarreau31682232007-11-29 15:38:04 +01002580 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2581 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002582 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002583 else if (strcmp(args[0], "uri") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002584 int arg = 1;
2585
Willy Tarreau31682232007-11-29 15:38:04 +01002586 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2587 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreau57a37412020-09-23 08:56:29 +02002588 curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only"
Willy Tarreaua9a72492019-01-14 16:14:15 +01002589 curproxy->lbprm.arg_opt2 = 0; // "len"
2590 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002591
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002592 while (*args[arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002593 if (strcmp(args[arg], "len") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002594 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002595 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002596 return -1;
2597 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002598 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002599 arg += 2;
2600 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002601 else if (strcmp(args[arg], "depth") == 0) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002602 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002603 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002604 return -1;
2605 }
2606 /* hint: we store the position of the ending '/' (depth+1) so
2607 * that we avoid a comparison while computing the hash.
2608 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002609 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002610 arg += 2;
2611 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002612 else if (strcmp(args[arg], "whole") == 0) {
Willy Tarreau3d1119d2020-09-23 08:05:47 +02002613 curproxy->lbprm.arg_opt1 |= 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002614 arg += 1;
2615 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002616 else if (strcmp(args[arg], "path-only") == 0) {
Willy Tarreau57a37412020-09-23 08:56:29 +02002617 curproxy->lbprm.arg_opt1 |= 2;
2618 arg += 1;
2619 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002620 else {
Willy Tarreau57a37412020-09-23 08:56:29 +02002621 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 +02002622 return -1;
2623 }
2624 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002625 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002626 else if (strcmp(args[0], "url_param") == 0) {
Willy Tarreau01732802007-11-01 22:48:15 +01002627 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002628 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002629 return -1;
2630 }
Willy Tarreau31682232007-11-29 15:38:04 +01002631 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2632 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002633
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002634 free(curproxy->lbprm.arg_str);
2635 curproxy->lbprm.arg_str = strdup(args[1]);
2636 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002637 if (*args[2]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002638 if (strcmp(args[2], "check_post") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002639 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002640 return -1;
2641 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002642 }
Benoitaffb4812009-03-25 13:02:10 +01002643 }
2644 else if (!strncmp(args[0], "hdr(", 4)) {
2645 const char *beg, *end;
2646
2647 beg = args[0] + 4;
2648 end = strchr(beg, ')');
2649
2650 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002651 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002652 return -1;
2653 }
2654
2655 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2656 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2657
Willy Tarreau484ff072019-01-14 15:28:53 +01002658 free(curproxy->lbprm.arg_str);
2659 curproxy->lbprm.arg_len = end - beg;
2660 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002661 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002662
2663 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002664 if (strcmp(args[1], "use_domain_only") != 0) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002665 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002666 return -1;
2667 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002668 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002669 }
Emeric Brun736aa232009-06-30 17:56:00 +02002670 }
2671 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2672 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2673 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2674
2675 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2676 const char *beg, *end;
2677
2678 beg = args[0] + 11;
2679 end = strchr(beg, ')');
2680
2681 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002682 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002683 return -1;
2684 }
2685
Willy Tarreau484ff072019-01-14 15:28:53 +01002686 free(curproxy->lbprm.arg_str);
2687 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2688 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002689 }
2690 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002691 free(curproxy->lbprm.arg_str);
2692 curproxy->lbprm.arg_str = strdup("mstshash");
2693 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002694 }
2695 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002696 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002697 return -1;
2698 }
Willy Tarreau01732802007-11-01 22:48:15 +01002699 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002700 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002701 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 +01002702 return -1;
2703 }
2704 return 0;
2705}
2706
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002707
2708/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002709/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002710/************************************************************************/
2711
Willy Tarreau34db1082012-04-19 17:16:54 +02002712/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002713 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002714 * undefined behaviour.
2715 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002716static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002717smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002718{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002719 struct proxy *px = args->data.prx;
2720
2721 if (px == NULL)
2722 return 0;
2723 if (px->cap & PR_CAP_DEF)
2724 px = smp->px;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002725
Willy Tarreau37406352012-04-23 16:16:37 +02002726 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002727 smp->data.type = SMP_T_SINT;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002728
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002729 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002730
2731 return 1;
2732}
2733
Willy Tarreau37406352012-04-23 16:16:37 +02002734/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002735 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002736 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2737 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002738 */
2739static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002740smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002741{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002742 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002743
Willy Tarreau37406352012-04-23 16:16:37 +02002744 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002745 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002746 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2747 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002748 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002749 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002750 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002751 return 1;
2752}
2753
Willy Tarreau34db1082012-04-19 17:16:54 +02002754/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002755 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002756 * undefined behaviour.
2757 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002758static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002759smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002760{
2761 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002762 struct proxy *px = args->data.prx;
2763
2764 if (px == NULL)
2765 return 0;
2766 if (px->cap & PR_CAP_DEF)
2767 px = smp->px;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002768
Willy Tarreau37406352012-04-23 16:16:37 +02002769 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002770 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002771 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002772
Christopher Faulet37a9e212021-10-12 18:48:05 +02002773 for (iterator = px->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002774 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002775 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002776
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002777 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002778 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002779 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002780 return 1;
2781 }
2782
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002783 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreaua0570452021-06-18 09:30:30 +02002784 + (iterator->maxqueue - iterator->queue.length);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002785 }
2786
2787 return 1;
2788}
2789
Willy Tarreaua5e37562011-12-16 17:06:15 +01002790/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002791static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002792smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002793{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002794 struct proxy *px = NULL;
2795
2796 if (smp->strm)
2797 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002798 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002799 px = __objt_check(smp->sess->origin)->proxy;
2800 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002801 return 0;
2802
Willy Tarreauf853c462012-04-23 18:53:56 +02002803 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002804 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002805 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002806 return 1;
2807}
2808
Marcin Deranekd2471c22016-12-12 14:08:05 +01002809/* set string to the name of the backend */
2810static int
2811smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2812{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002813 struct proxy *px = NULL;
2814
2815 if (smp->strm)
2816 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002817 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002818 px = __objt_check(smp->sess->origin)->proxy;
2819 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002820 return 0;
2821
Christopher Fauletd1b44642020-04-30 09:51:15 +02002822 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002823 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002824 return 0;
2825
2826 smp->data.type = SMP_T_STR;
2827 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002828 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002829
2830 return 1;
2831}
2832
Willy Tarreaua5e37562011-12-16 17:06:15 +01002833/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002834static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002835smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002836{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002837 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002838
Christopher Fauletd1b44642020-04-30 09:51:15 +02002839 if (smp->strm)
2840 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002841 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002842 srv = __objt_check(smp->sess->origin)->server;
2843 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002844 return 0;
2845
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002846 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002847 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002848
2849 return 1;
2850}
2851
vkill1dfd1652019-10-30 16:58:14 +08002852/* set string to the name of the server */
2853static int
2854smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2855{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002856 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002857
Christopher Fauletd1b44642020-04-30 09:51:15 +02002858 if (smp->strm)
2859 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002860 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002861 srv = __objt_check(smp->sess->origin)->server;
2862 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002863 return 0;
2864
Christopher Fauletd1b44642020-04-30 09:51:15 +02002865 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002866 if (!smp->data.u.str.area)
2867 return 0;
2868
2869 smp->data.type = SMP_T_STR;
2870 smp->data.u.str.data = strlen(smp->data.u.str.area);
2871
2872 return 1;
2873}
2874
Willy Tarreau34db1082012-04-19 17:16:54 +02002875/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002876 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002877 * undefined behaviour.
2878 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002879static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002880smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002881{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002882 struct proxy *px = args->data.prx;
2883
2884 if (px == NULL)
2885 return 0;
2886 if (px->cap & PR_CAP_DEF)
2887 px = smp->px;
2888
Willy Tarreau37406352012-04-23 16:16:37 +02002889 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002890 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002891 smp->data.u.sint = read_freq_ctr(&px->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002892 return 1;
2893}
2894
Willy Tarreau34db1082012-04-19 17:16:54 +02002895/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002896 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002897 * undefined behaviour.
2898 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002899static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002900smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002901{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002902 struct proxy *px = args->data.prx;
2903
2904 if (px == NULL)
2905 return 0;
2906 if (px->cap & PR_CAP_DEF)
2907 px = smp->px;
2908
Willy Tarreau37406352012-04-23 16:16:37 +02002909 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002910 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002911 smp->data.u.sint = px->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002912 return 1;
2913}
2914
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002915/* set temp integer to the number of available connections across available
2916 * servers on the backend.
2917 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2918 * undefined behaviour.
2919 */
2920static int
2921smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2922{
2923 struct server *iterator;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002924 struct proxy *px = args->data.prx;
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002925 unsigned int maxconn;
2926
Christopher Faulet37a9e212021-10-12 18:48:05 +02002927 if (px == NULL)
2928 return 0;
2929 if (px->cap & PR_CAP_DEF)
2930 px = smp->px;
2931
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002932 smp->flags = SMP_F_VOL_TEST;
2933 smp->data.type = SMP_T_SINT;
2934 smp->data.u.sint = 0;
2935
Christopher Faulet37a9e212021-10-12 18:48:05 +02002936 for (iterator = px->srv; iterator; iterator = iterator->next) {
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002937 if (iterator->cur_state == SRV_ST_STOPPED)
2938 continue;
2939
2940 px = iterator->proxy;
2941 if (!srv_currently_usable(iterator) ||
2942 ((iterator->flags & SRV_F_BACKUP) &&
2943 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2944 continue;
2945
2946 if (iterator->maxconn == 0) {
2947 /* one active server is unlimited, return -1 */
2948 smp->data.u.sint = -1;
2949 return 1;
2950 }
2951
2952 maxconn = srv_dynamic_maxconn(iterator);
2953 if (maxconn > iterator->cur_sess)
2954 smp->data.u.sint += maxconn - iterator->cur_sess;
2955 }
2956
2957 return 1;
2958}
2959
Willy Tarreau34db1082012-04-19 17:16:54 +02002960/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002961 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002962 * undefined behaviour.
2963 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002964static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002965smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002966{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002967 struct proxy *px = args->data.prx;
2968
2969 if (px == NULL)
2970 return 0;
2971 if (px->cap & PR_CAP_DEF)
2972 px = smp->px;
2973
Willy Tarreau37406352012-04-23 16:16:37 +02002974 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002975 smp->data.type = SMP_T_SINT;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002976 smp->data.u.sint = px->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002977 return 1;
2978}
2979
Willy Tarreaua5e37562011-12-16 17:06:15 +01002980/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002981 * by the number of running servers and rounded up. If there is no running
2982 * server, we return twice the total, just as if we had half a running server.
2983 * This is more or less correct anyway, since we expect the last server to come
2984 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002985 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002986 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002987 */
2988static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002989smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002990{
Christopher Faulet37a9e212021-10-12 18:48:05 +02002991 struct proxy *px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002992 int nbsrv;
Christopher Faulet37a9e212021-10-12 18:48:05 +02002993
2994 if (px == NULL)
2995 return 0;
2996 if (px->cap & PR_CAP_DEF)
2997 px = smp->px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002998
Willy Tarreau37406352012-04-23 16:16:37 +02002999 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003000 smp->data.type = SMP_T_SINT;
Willy Tarreaua36af912009-10-10 12:02:45 +02003001
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01003002 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02003003
3004 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003005 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02003006 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003007 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02003008
3009 return 1;
3010}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003011
Willy Tarreau34db1082012-04-19 17:16:54 +02003012/* set temp integer to the number of concurrent connections on the server in the backend.
3013 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3014 * undefined behaviour.
3015 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003016static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003017smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003018{
Willy Tarreauf853c462012-04-23 18:53:56 +02003019 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003020 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003021 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02003022 return 1;
3023}
3024
Patrick Hemmer155e93e2018-06-14 18:01:35 -04003025/* set temp integer to the number of available connections on the server in the backend.
3026 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3027 * undefined behaviour.
3028 */
3029static int
3030smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
3031{
3032 unsigned int maxconn;
3033
3034 smp->flags = SMP_F_VOL_TEST;
3035 smp->data.type = SMP_T_SINT;
3036
3037 if (args->data.srv->maxconn == 0) {
3038 /* one active server is unlimited, return -1 */
3039 smp->data.u.sint = -1;
3040 return 1;
3041 }
3042
3043 maxconn = srv_dynamic_maxconn(args->data.srv);
3044 if (maxconn > args->data.srv->cur_sess)
3045 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
3046 else
3047 smp->data.u.sint = 0;
3048
3049 return 1;
3050}
3051
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003052/* set temp integer to the number of connections pending in the server's queue.
3053 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3054 * undefined behaviour.
3055 */
3056static int
3057smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
3058{
3059 smp->flags = SMP_F_VOL_TEST;
3060 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003061 smp->data.u.sint = args->data.srv->queue.length;
Willy Tarreauff2b7af2017-10-13 11:46:26 +02003062 return 1;
3063}
3064
Tait Clarridge7896d522012-12-05 21:39:31 -05003065/* set temp integer to the number of enabled servers on the proxy.
3066 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3067 * undefined behaviour.
3068 */
3069static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003070smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05003071{
3072 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003073 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003074 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05003075 return 1;
3076}
3077
Christopher Faulet1bea8652020-07-10 16:03:45 +02003078/* set temp integer to the server weight.
3079 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3080 * undefined behaviour.
3081 */
3082static int
3083smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3084{
3085 struct server *srv = args->data.srv;
3086 struct proxy *px = srv->proxy;
3087
3088 smp->flags = SMP_F_VOL_TEST;
3089 smp->data.type = SMP_T_SINT;
3090 smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv;
3091 return 1;
3092}
3093
3094/* set temp integer to the server initial weight.
3095 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3096 * undefined behaviour.
3097 */
3098static int
3099smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3100{
3101 smp->flags = SMP_F_VOL_TEST;
3102 smp->data.type = SMP_T_SINT;
3103 smp->data.u.sint = args->data.srv->iweight;
3104 return 1;
3105}
3106
3107/* set temp integer to the server user-specified weight.
3108 * Accepts exactly 1 argument. Argument is a server, other types will lead to
3109 * undefined behaviour.
3110 */
3111static int
3112smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private)
3113{
3114 smp->flags = SMP_F_VOL_TEST;
3115 smp->data.type = SMP_T_SINT;
3116 smp->data.u.sint = args->data.srv->uweight;
3117 return 1;
3118}
3119
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003120static int
3121smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3122{
3123 struct proxy *px = NULL;
3124
3125 if (smp->strm)
3126 px = smp->strm->be;
3127 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3128 px = __objt_check(smp->sess->origin)->proxy;
3129 if (!px)
3130 return 0;
3131
3132 smp->flags = SMP_F_VOL_TXN;
3133 smp->data.type = SMP_T_SINT;
3134 smp->data.u.sint = TICKS_TO_MS(px->timeout.server);
3135 return 1;
3136}
3137
3138static int
3139smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private)
3140{
3141 struct proxy *px = NULL;
3142
3143 if (smp->strm)
3144 px = smp->strm->be;
3145 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
3146 px = __objt_check(smp->sess->origin)->proxy;
3147 if (!px)
3148 return 0;
3149
3150 smp->flags = SMP_F_VOL_TXN;
3151 smp->data.type = SMP_T_SINT;
3152 smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel);
3153 return 1;
3154}
3155
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003156static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
3157{
3158
3159 struct proxy *px;
3160
3161 if (!smp_make_safe(smp))
3162 return 0;
3163
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003164 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003165 if (!px)
3166 return 0;
3167
3168 smp->data.type = SMP_T_SINT;
3169 smp->data.u.sint = be_usable_srv(px);
3170
3171 return 1;
3172}
3173
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003174static int
3175sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
3176{
3177 struct proxy *px;
3178 struct server *srv;
3179 char *bksep;
3180
3181 if (!smp_make_safe(smp))
3182 return 0;
3183
3184 bksep = strchr(smp->data.u.str.area, '/');
3185
3186 if (bksep) {
3187 *bksep = '\0';
3188 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
3189 if (!px)
3190 return 0;
3191 smp->data.u.str.area = bksep + 1;
3192 } else {
3193 if (!(smp->px->cap & PR_CAP_BE))
3194 return 0;
3195 px = smp->px;
3196 }
3197
3198 srv = server_find_by_name(px, smp->data.u.str.area);
3199 if (!srv)
3200 return 0;
3201
3202 smp->data.type = SMP_T_SINT;
Willy Tarreaua0570452021-06-18 09:30:30 +02003203 smp->data.u.sint = srv->queue.length;
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003204 return 1;
3205}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003206
3207/* 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 sample_fetch_kw_list smp_kws = {ILH, {
Amaury Denoyelled91d7792020-12-10 13:43:56 +01003211 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3212 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3213 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3214 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3215 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
3216 { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3217 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3218 { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
3219 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3220 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3221 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3222 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3223 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3224 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
3225 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3226 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
3227 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3228 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3229 { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3230 { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
3231 { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003232 { /* END */ },
3233}};
3234
Willy Tarreau0108d902018-11-25 19:14:37 +01003235INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3236
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003237/* Note: must not be declared <const> as its list will be overwritten */
3238static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02003239 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
3240 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01003241 { /* END */ },
3242}};
3243
Willy Tarreau0108d902018-11-25 19:14:37 +01003244INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003245
Willy Tarreau61612d42012-04-19 18:42:05 +02003246/* Note: must not be declared <const> as its list will be overwritten.
3247 * Please take care of keeping this list alphabetically sorted.
3248 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003249static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01003250 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003251}};
3252
Willy Tarreau0108d902018-11-25 19:14:37 +01003253INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01003254
Willy Tarreaubaaee002006-06-26 02:48:02 +02003255/*
3256 * Local variables:
3257 * c-indent-level: 8
3258 * c-basic-offset: 8
3259 * End:
3260 */