blob: 96d8d17ad8dda012274290ad77ac89818f387f20 [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 Tarreauc7e42382012-08-24 19:22:53 +020022#include <common/buffer.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020023#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020025#include <common/debug.h>
Bhaskar98634f02013-10-29 23:30:51 -040026#include <common/hash.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010027#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010028#include <common/initcall.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010031#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010035#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020036#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020038#include <proto/channel.h>
Willy Tarreau3a9312a2020-01-09 18:43:15 +010039#include <proto/checks.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020040#include <proto/frontend.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010041#include <proto/http_htx.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020042#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010043#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020044#include <proto/lb_fwlc.h>
45#include <proto/lb_fwrr.h>
46#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020047#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020048#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010049#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010050#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020051#include <proto/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020052#include <proto/http_ana.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020053#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020054#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010056#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010057#include <proto/server.h>
Olivier Houchard00cf70f2018-11-30 17:24:55 +010058#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020059#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010060#include <proto/stream_interface.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020061#include <proto/ssl_sock.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020062#include <proto/task.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020063
Christopher Fauleteea8fc72019-11-05 16:18:10 +010064#define TRACE_SOURCE &trace_strm
65
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050066int be_lastsession(const struct proxy *be)
67{
68 if (be->be_counters.last_sess)
69 return now.tv_sec - be->be_counters.last_sess;
70
71 return -1;
72}
73
Bhaskar98634f02013-10-29 23:30:51 -040074/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040076{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070077 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040078
79 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
80 case BE_LB_HFCN_DJB2:
81 hash = hash_djb2(key, len);
82 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010083 case BE_LB_HFCN_WT6:
84 hash = hash_wt6(key, len);
85 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010086 case BE_LB_HFCN_CRC32:
87 hash = hash_crc32(key, len);
88 break;
Bhaskar98634f02013-10-29 23:30:51 -040089 case BE_LB_HFCN_SDBM:
90 /* this is the default hash function */
91 default:
92 hash = hash_sdbm(key, len);
93 break;
94 }
95
96 return hash;
97}
98
Willy Tarreaubaaee002006-06-26 02:48:02 +020099/*
100 * This function recounts the number of usable active and backup servers for
101 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100103 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100104 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200105 * This functions is designed to be called before server's weight and state
106 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200107 *
108 * threads: this is the caller responsibility to lock data. For now, this
109 * function is called from lb modules, so it should be ok. But if you need to
110 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200112void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113{
114 struct server *srv;
115
Willy Tarreau20697042007-11-15 23:26:18 +0100116 px->srv_act = px->srv_bck = 0;
117 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100118 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200120 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 continue;
122
Willy Tarreauc93cd162014-05-13 15:54:22 +0200123 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100125 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100126 px->lbprm.fbck = srv;
127 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400128 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200129 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100130 } else {
131 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400132 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200133 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134 }
135 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100136}
Willy Tarreau20697042007-11-15 23:26:18 +0100137
Willy Tarreaub625a082007-11-26 01:15:43 +0100138/* This function simply updates the backend's tot_weight and tot_used values
139 * after servers weights have been updated. It is designed to be used after
140 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200141 *
142 * threads: this is the caller responsibility to lock data. For now, this
143 * function is called from lb modules, so it should be ok. But if you need to
144 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100145 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200146void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100147{
Willy Tarreau20697042007-11-15 23:26:18 +0100148 if (px->srv_act) {
149 px->lbprm.tot_weight = px->lbprm.tot_wact;
150 px->lbprm.tot_used = px->srv_act;
151 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100152 else if (px->lbprm.fbck) {
153 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200154 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100155 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100156 }
157 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100158 px->lbprm.tot_weight = px->lbprm.tot_wbck;
159 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100160 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100161}
162
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200163/*
164 * This function tries to find a running server for the proxy <px> following
165 * the source hash method. Depending on the number of active/backup servers,
166 * it will either look for active servers, or for backup servers.
167 * If any server is found, it will be returned. If no valid server is found,
168 * NULL is returned.
169 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100170static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200171{
172 unsigned int h, l;
173
174 if (px->lbprm.tot_weight == 0)
175 return NULL;
176
177 l = h = 0;
178
179 /* note: we won't hash if there's only one server left */
180 if (px->lbprm.tot_used == 1)
181 goto hash_done;
182
183 while ((l + sizeof (int)) <= len) {
184 h ^= ntohl(*(unsigned int *)(&addr[l]));
185 l += sizeof (int);
186 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500187 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100188 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200189 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100190 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100191 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200192 else
193 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200194}
195
196/*
197 * This function tries to find a running server for the proxy <px> following
198 * the URI hash method. In order to optimize cache hits, the hash computation
199 * ends at the question mark. Depending on the number of active/backup servers,
200 * it will either look for active servers, or for backup servers.
201 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100202 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
203 * the "whole" optional argument (boolean), the "len" argument (numeric) and
204 * the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200205 *
206 * This code was contributed by Guillaume Dallaire, who also selected this hash
207 * algorithm out of a tens because it gave him the best results.
208 *
209 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100210static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700212 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200213 int c;
214 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400215 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200216
217 if (px->lbprm.tot_weight == 0)
218 return NULL;
219
220 /* note: we won't hash if there's only one server left */
221 if (px->lbprm.tot_used == 1)
222 goto hash_done;
223
Willy Tarreaua9a72492019-01-14 16:14:15 +0100224 if (px->lbprm.arg_opt2) // "len"
225 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200226
Bhaskar98634f02013-10-29 23:30:51 -0400227 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200229 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200230 if (c == '/') {
231 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100232 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200233 break;
234 }
Willy Tarreaua9a72492019-01-14 16:14:15 +0100235 else if (c == '?' && !px->lbprm.arg_opt1) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200236 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200237 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200238 }
Bhaskar98634f02013-10-29 23:30:51 -0400239
240 hash = gen_hash(px, start, (end - start));
241
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500242 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100243 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200244 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100245 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100246 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200247 else
248 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200249}
250
Christopher Faulet5b517552017-06-09 14:17:53 +0200251/*
Willy Tarreau01732802007-11-01 22:48:15 +0100252 * This function tries to find a running server for the proxy <px> following
253 * the URL parameter hash method. It looks for a specific parameter in the
254 * URL and hashes it to compute the server ID. This is useful to optimize
255 * performance by avoiding bounces between servers in contexts where sessions
256 * are shared but cookies are not usable. If the parameter is not found, NULL
257 * is returned. If any server is found, it will be returned. If no valid server
258 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100259 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100260static 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 +0100261{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700262 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400263 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200264 const char *p;
265 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100266 int plen;
267
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200268 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100269 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100270 return NULL;
271
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200272 if ((p = memchr(uri, '?', uri_len)) == NULL)
273 return NULL;
274
Willy Tarreau01732802007-11-01 22:48:15 +0100275 p++;
276
277 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100278 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200279 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100280
281 while (uri_len > plen) {
282 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100284 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100286 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200287 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100288 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200289 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400290 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200291 uri_len -= plen + 1;
292
Bhaskar98634f02013-10-29 23:30:51 -0400293 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100294 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400295 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100296 }
Bhaskar98634f02013-10-29 23:30:51 -0400297 hash = gen_hash(px, start, (end - start));
298
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500299 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100300 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400301
Willy Tarreau6c30be52019-01-14 17:07:39 +0100302 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100303 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200304 else
305 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100306 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200307 }
308 /* skip to next parameter */
309 p = memchr(params, '&', uri_len);
310 if (!p)
311 return NULL;
312 p++;
313 uri_len -= (p - params);
314 params = p;
315 }
316 return NULL;
317}
318
319/*
320 * this does the same as the previous server_ph, but check the body contents
321 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100322static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200323{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700324 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100325 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200326 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200327 struct htx *htx = htxbuf(&req->buf);
328 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100329 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100330 unsigned long len;
331 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100333 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200334 return NULL;
335
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200336 p = params = NULL;
337 len = 0;
338 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
339 enum htx_blk_type type = htx_get_blk_type(blk);
340 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200341
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200342 if (type != HTX_BLK_DATA)
343 continue;
344 v = htx_get_blk_value(htx, blk);
345 p = params = v.ptr;
346 len = v.len;
347 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100348 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200349
350 while (len > plen) {
351 /* Look for the parameter name followed by an equal symbol */
352 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100353 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200354 /* OK, we have the parameter here at <params>, and
355 * the value after the equal sign, at <p>
356 * skip the equal symbol
357 */
358 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400359 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200360 len -= plen + 1;
361
Bhaskar98634f02013-10-29 23:30:51 -0400362 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200363 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100364 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400365 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100366 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200367 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
368 break;
369 return NULL; /* oh, no; this is not uri-encoded.
370 * This body does not contain parameters.
371 */
372 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400374 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200375 /* should we break if vlen exceeds limit? */
376 }
Bhaskar98634f02013-10-29 23:30:51 -0400377 hash = gen_hash(px, start, (end - start));
378
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500379 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100380 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400381
Willy Tarreau6c30be52019-01-14 17:07:39 +0100382 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100383 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200384 else
385 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200386 }
387 }
Willy Tarreau01732802007-11-01 22:48:15 +0100388 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200389 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100390 if (!p)
391 return NULL;
392 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200393 len -= (p - params);
394 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100395 }
396 return NULL;
397}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200399
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400/*
Benoitaffb4812009-03-25 13:02:10 +0100401 * This function tries to find a running server for the proxy <px> following
402 * the Header parameter hash method. It looks for a specific parameter in the
403 * URL and hashes it to compute the server ID. This is useful to optimize
404 * performance by avoiding bounces between servers in contexts where sessions
405 * are shared but cookies are not usable. If the parameter is not found, NULL
406 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100407 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
408 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100409 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100410static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100411{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700412 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100413 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100414 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100415 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100416 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400417 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200418 struct htx *htx = htxbuf(&s->req.buf);
419 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100420
421 /* tot_weight appears to mean srv_count */
422 if (px->lbprm.tot_weight == 0)
423 return NULL;
424
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200425 /* note: we won't hash if there's only one server left */
426 if (px->lbprm.tot_used == 1)
427 goto hash_done;
428
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200429 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100430
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200431 /* if the header is not found or empty, let's fallback to round robin */
432 if (!ctx.blk || !ctx.value.len)
433 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100434
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200435 /* Found a the param_name in the headers.
436 * we will compute the hash based on this value ctx.val.
437 */
438 len = ctx.value.len;
439 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100440
Willy Tarreau9fed8582019-01-14 16:04:54 +0100441 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400442 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100443 } else {
444 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100445 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100446 /* special computation, use only main domain name, not tld/host
447 * going back from the end of string, start hashing at first
448 * dot stop at next.
449 * This is designed to work with the 'Host' header, and requires
450 * a special option to activate this.
451 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100452 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100453 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100454 if (dohash) {
455 /* Rewind the pointer until the previous char
456 * is a dot, this will allow to set the start
457 * position of the domain. */
458 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100459 break;
Benoitaffb4812009-03-25 13:02:10 +0100460 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100461 else if (*p == '.') {
462 /* The pointer is rewinded to the dot before the
463 * tld, we memorize the end of the domain and
464 * can enter the domain processing. */
465 end = p;
466 dohash = 1;
467 }
Benoitaffb4812009-03-25 13:02:10 +0100468 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100469 len--;
Benoitaffb4812009-03-25 13:02:10 +0100470 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100471 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400472 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100473 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500474 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100475 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200476 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100477 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100478 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200479 else
480 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100481}
482
Willy Tarreau34db1082012-04-19 17:16:54 +0200483/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100484static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200485{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700486 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200487 struct proxy *px = s->be;
488 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200489 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200490 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200491 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200492
493 /* tot_weight appears to mean srv_count */
494 if (px->lbprm.tot_weight == 0)
495 return NULL;
496
Willy Tarreau37406352012-04-23 16:16:37 +0200497 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200498
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200499 rewind = co_data(&s->req);
500 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200501
Willy Tarreau484ff072019-01-14 15:28:53 +0100502 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200503 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100504
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200505 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200506
Willy Tarreau37406352012-04-23 16:16:37 +0200507 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200508 return NULL;
509
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200510 /* note: we won't hash if there's only one server left */
511 if (px->lbprm.tot_used == 1)
512 goto hash_done;
513
Willy Tarreau484ff072019-01-14 15:28:53 +0100514 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200515 * we will compute the hash based on this value ctx.val.
516 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200517 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400518
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500519 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100520 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200521 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100522 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100523 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200524 else
525 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200526}
Christopher Faulet5b517552017-06-09 14:17:53 +0200527
Willy Tarreau760e81d2018-05-03 07:20:40 +0200528/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100529static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200530{
531 unsigned int hash = 0;
532 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100533 struct server *prev, *curr;
534 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200535
536 /* tot_weight appears to mean srv_count */
537 if (px->lbprm.tot_weight == 0)
538 return NULL;
539
Willy Tarreau21c741a2019-01-14 18:14:27 +0100540 curr = NULL;
541 do {
542 prev = curr;
Willy Tarreaub9f54c52020-03-08 17:31:39 +0100543 hash = ha_random32();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100544 curr = chash_get_server_hash(px, hash, avoid);
545 if (!curr)
546 break;
547
548 /* compare the new server to the previous best choice and pick
549 * the one with the least currently served requests.
550 */
551 if (prev && prev != curr &&
552 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
553 curr = prev;
554 } while (--draws > 0);
555
556 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200557}
558
Benoitaffb4812009-03-25 13:02:10 +0100559/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200560 * This function applies the load-balancing algorithm to the stream, as
561 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200562 * 'assigned'.
563 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200564 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200565 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100566 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200567 * The function tries to keep the original connection slot if it reconnects to
568 * the same server, otherwise it releases it and tries to offer it.
569 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200570 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200571 *
572 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100573 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200574 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
575 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200576 * SRV_STATUS_INTERNAL for other unrecoverable errors.
577 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200578 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100579 * it does not need to be called anymore. This means that target_srv(&s->target)
580 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581 *
582 */
583
Willy Tarreau87b09662015-04-03 00:22:06 +0200584int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200585{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100586 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200587 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100588 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200589 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100590
Simon Horman8effd3d2011-08-13 08:03:52 +0900591 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200592
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200594 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200595 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100596
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100597 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200598 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200599
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 /* We have to release any connection slot before applying any LB algo,
601 * otherwise we may erroneously end up with no available slot.
602 */
603 if (conn_slot)
604 sess_change_server(s, NULL);
605
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100606 /* We will now try to find the good server and store it into <objt_server(s->target)>.
607 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200608 * as well as if no server is available (check error code).
609 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100610
Willy Tarreau827aee92011-03-10 16:55:02 +0100611 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100612 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100613
Olivier Houchardba4fff52018-12-01 14:40:40 +0100614 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200615 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100616 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100617 struct sess_srv_list *srv_list;
618 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
619 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100620
621 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200622 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100623 (!s->be->max_ka_queue ||
624 server_has_room(tmpsrv) || (
625 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
626 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100627 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100628 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100629 srv = tmpsrv;
630 s->target = &srv->obj_type;
631 goto out_ok;
632 }
633 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100634 }
635 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100636 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100637 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200638
Willy Tarreau7c669d72008-06-20 15:04:11 +0200639 /* we must check if we have at least one server available */
640 if (!s->be->lbprm.tot_weight) {
641 err = SRV_STATUS_NOSRV;
642 goto out;
643 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200644
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200645 /* First check whether we need to fetch some data or simply call
646 * the LB lookup function. Only the hashing functions will need
647 * some input data in fact, and will support multiple algorithms.
648 */
649 switch (s->be->lbprm.algo & BE_LB_LKUP) {
650 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100651 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200652 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200653
Willy Tarreauf09c6602012-02-13 17:12:08 +0100654 case BE_LB_LKUP_FSTREE:
655 srv = fas_get_next_server(s->be, prev_srv);
656 break;
657
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200658 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100659 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200660 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200661
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200662 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200663 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200664 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200665 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100666 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100667 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100668 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200669 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100670 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200671 break;
672 }
673 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200674 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200675 err = SRV_STATUS_INTERNAL;
676 goto out;
677 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200678
679 switch (s->be->lbprm.algo & BE_LB_PARM) {
680 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200681 conn = objt_conn(strm_orig(s));
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200682 if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200683 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200684 (void *)&((struct sockaddr_in *)conn->src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100685 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200686 }
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200687 else if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200688 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200689 (void *)&((struct sockaddr_in6 *)conn->src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100690 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200691 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200692 else {
693 /* unknown IP family */
694 err = SRV_STATUS_INTERNAL;
695 goto out;
696 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200697 break;
698
699 case BE_LB_HASH_URI:
700 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200701 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100702 struct ist uri;
703
Christopher Faulet297fbb42019-05-13 14:41:27 +0200704 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100705 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
706 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200707 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200708
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200709 case BE_LB_HASH_PRM:
710 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200711 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100712 struct ist uri;
713
Christopher Faulet297fbb42019-05-13 14:41:27 +0200714 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100715 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100716
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200717 if (!srv && s->txn->meth == HTTP_METH_POST)
718 srv = get_server_ph_post(s, prev_srv);
719 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200720 break;
Benoitaffb4812009-03-25 13:02:10 +0100721
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200722 case BE_LB_HASH_HDR:
723 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200724 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
725 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200726 break;
727
728 case BE_LB_HASH_RDP:
729 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100730 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200731 break;
732
733 default:
734 /* unknown balancing algorithm */
735 err = SRV_STATUS_INTERNAL;
736 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100737 }
Emeric Brun736aa232009-06-30 17:56:00 +0200738
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200739 /* If the hashing parameter was not found, let's fall
740 * back to round robin on the map.
741 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100742 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100743 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100744 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200745 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100746 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200747 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200748
749 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200750 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200751
Willy Tarreau7c669d72008-06-20 15:04:11 +0200752 default:
753 /* unknown balancing algorithm */
754 err = SRV_STATUS_INTERNAL;
755 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200756 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200757
Willy Tarreau827aee92011-03-10 16:55:02 +0100758 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200759 err = SRV_STATUS_FULL;
760 goto out;
761 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100762 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100763 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
764 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100765 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100766 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200767 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200768 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100769 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100771 else if ((s->be->options & PR_O_HTTP_PROXY)) {
772 conn = cs_conn(objt_cs(s->si[1].end));
773
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200774 if (conn && conn->dst && is_addr(conn->dst)) {
Olivier Houchard2442f682018-12-01 17:03:38 +0100775 /* in proxy mode, we need a valid destination address */
776 s->target = &s->be->obj_type;
777 } else {
778 err = SRV_STATUS_NOSRV;
779 goto out;
780 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100781 }
782 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200783 err = SRV_STATUS_NOSRV;
784 goto out;
785 }
786
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100787out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200788 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200789 err = SRV_STATUS_OK;
790 out:
791
792 /* Either we take back our connection slot, or we offer it to someone
793 * else if we don't need it anymore.
794 */
795 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100796 if (conn_slot == srv) {
797 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200798 } else {
799 if (may_dequeue_tasks(conn_slot, s->be))
800 process_srv_queue(conn_slot);
801 }
802 }
803
804 out_err:
805 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200806}
807
Willy Tarreaubaaee002006-06-26 02:48:02 +0200808/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200809 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200810 * The address is taken from the currently assigned server, or from the
811 * dispatch or transparent address.
812 *
813 * It may return :
814 * SRV_STATUS_OK if everything is OK.
815 * SRV_STATUS_INTERNAL for other unrecoverable errors.
816 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200817 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818 * not cleared, so it's to the caller to clear it if required.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200820int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200822 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200823
Christopher Faulet56803b12017-11-24 16:06:18 +0100824 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200825
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200826 if (!sockaddr_alloc(&s->target_addr))
Willy Tarreauca79f592019-07-17 19:04:47 +0200827 return SRV_STATUS_INTERNAL;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200828
Willy Tarreaue7dff022015-04-03 01:14:29 +0200829 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200830 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200831 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200832 return SRV_STATUS_INTERNAL;
833
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200834 *s->target_addr = __objt_server(s->target)->addr;
835 set_host_port(s->target_addr, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200836
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200837 if (!is_addr(s->target_addr) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200838 /* if the server has no address, we use the same address
839 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200840 * locally on multiple addresses at once. Nothing is done
841 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200842 */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200843 if (!conn_get_dst(cli_conn)) {
844 /* do nothing if we can't retrieve the address */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200845 } else if (cli_conn->dst->ss_family == AF_INET) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200846 ((struct sockaddr_in *)s->target_addr)->sin_addr = ((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200847 } else if (cli_conn->dst->ss_family == AF_INET6) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200848 ((struct sockaddr_in6 *)s->target_addr)->sin6_addr = ((struct sockaddr_in6 *)cli_conn->dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200849 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200850 }
851
Willy Tarreaubaaee002006-06-26 02:48:02 +0200852 /* if this server remaps proxied ports, we'll use
853 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200854 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100855 int base_port;
856
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200857 if (conn_get_dst(cli_conn)) {
858 /* First, retrieve the port from the incoming connection */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200859 base_port = get_host_port(cli_conn->dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100860
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200861 /* Second, assign the outgoing connection's port */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200862 base_port += get_host_port(s->target_addr);
863 set_host_port(s->target_addr, base_port);
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200864 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865 }
866 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200867 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 /* connect to the defined dispatch addr */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200869 *s->target_addr = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200870 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200871 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200872 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200873 if (conn_get_dst(cli_conn) &&
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200874 (cli_conn->dst->ss_family == AF_INET || cli_conn->dst->ss_family == AF_INET6))
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200875 *s->target_addr = *cli_conn->dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200876 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100877 else if (s->be->options & PR_O_HTTP_PROXY) {
878 /* If HTTP PROXY option is set, then server is already assigned
879 * during incoming client request parsing. */
880 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100881 else {
882 /* no server and no LB algorithm ! */
883 return SRV_STATUS_INTERNAL;
884 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200885
Willy Tarreaue7dff022015-04-03 01:14:29 +0200886 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887 return SRV_STATUS_OK;
888}
889
Willy Tarreau87b09662015-04-03 00:22:06 +0200890/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200891 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200892 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200893 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200894 * be called before any connection and after any retry or redispatch occurs.
895 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200896 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200897 *
898 * Returns :
899 *
900 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100901 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200902 * SRV_STATUS_QUEUED if the connection has been queued.
903 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100904 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200905 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200906 * SRV_STATUS_INTERNAL for other unrecoverable errors.
907 *
908 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200909int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200910{
911 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100912 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200913 int err;
914
915 if (s->pend_pos)
916 return SRV_STATUS_INTERNAL;
917
Willy Tarreau7c669d72008-06-20 15:04:11 +0200918 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200919 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100920 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100921
Willy Tarreau7c669d72008-06-20 15:04:11 +0200922 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100923 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200924 /* This stream was previously assigned to a server. We have to
925 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200926 * - if the server changed :
927 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200928 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200929 * - increment srv->redispatches and be->redispatches
930 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100931 */
932
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100933 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200934 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
935 s->txn->flags &= ~TX_CK_MASK;
936 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200937 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200938 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +0100939 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
940 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200941 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +0100942 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
943 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100944 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100945 }
946 }
947
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948 switch (err) {
949 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200950 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100951 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100952 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200953 return SRV_STATUS_OK; /* dispatch or proxy mode */
954
955 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100956 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200957 return SRV_STATUS_OK;
958
Willy Tarreau87b09662015-04-03 00:22:06 +0200959 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200960 * connection slot yet. Either it is a redispatch, or it was
961 * assigned from persistence information (direct mode).
962 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200963 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200964 /* server scheduled for redirection, and already assigned. We
965 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100966 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100967 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100968 return SRV_STATUS_OK;
969 }
970
Willy Tarreau87b09662015-04-03 00:22:06 +0200971 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200972 * We know we have to queue it into the server's queue, so if a maxqueue
973 * is set on the server, we must also check that the server's queue is
974 * not full, in which case we have to return FULL.
975 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100976 if (srv->maxconn &&
977 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200978
Willy Tarreau827aee92011-03-10 16:55:02 +0100979 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200980 return SRV_STATUS_FULL;
981
Willy Tarreaubaaee002006-06-26 02:48:02 +0200982 p = pendconn_add(s);
983 if (p)
984 return SRV_STATUS_QUEUED;
985 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200986 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200987 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200988
989 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100990 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200991 return SRV_STATUS_OK;
992
993 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200994 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200995 p = pendconn_add(s);
996 if (p)
997 return SRV_STATUS_QUEUED;
998 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200999 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000
1001 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001002 return err;
1003
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004 case SRV_STATUS_INTERNAL:
1005 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001006
Willy Tarreaubaaee002006-06-26 02:48:02 +02001007 default:
1008 return SRV_STATUS_INTERNAL;
1009 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001010}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001011
Willy Tarreaub1d67742010-03-29 19:36:59 +02001012/* If an explicit source binding is specified on the server and/or backend, and
1013 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001014 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001015 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001016 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001017static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001018{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001019#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001020 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001021 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001022 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001023 struct connection *srv_conn;
1024
1025 if (objt_cs(s->si[1].end))
1026 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1027 else
1028 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001029
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001030 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1031 src = &srv->conn_src;
1032 else if (s->be->conn_src.opts & CO_SRC_BIND)
1033 src = &s->be->conn_src;
1034 else
1035 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001036
Willy Tarreauca79f592019-07-17 19:04:47 +02001037 if (!sockaddr_alloc(&srv_conn->src))
1038 return;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001039
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001040 switch (src->opts & CO_SRC_TPROXY_MASK) {
1041 case CO_SRC_TPROXY_ADDR:
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001042 *srv_conn->src = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001043 break;
1044 case CO_SRC_TPROXY_CLI:
1045 case CO_SRC_TPROXY_CIP:
1046 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001047 cli_conn = objt_conn(strm_orig(s));
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001048 if (cli_conn && conn_get_src(cli_conn))
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001049 *srv_conn->src = *cli_conn->src;
1050 else {
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001051 sockaddr_free(&srv_conn->src);
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001052 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001053 break;
1054 case CO_SRC_TPROXY_DYN:
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001055 if (src->bind_hdr_occ && IS_HTX_STRM(s)) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001056 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001057 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001058
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001059 /* bind to the IP in a header */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001060 ((struct sockaddr_in *)srv_conn->src)->sin_family = AF_INET;
1061 ((struct sockaddr_in *)srv_conn->src)->sin_port = 0;
1062 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr = 0;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001063 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1064 ist2(src->bind_hdr_name, src->bind_hdr_len),
1065 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001066 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr =
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001067 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001068 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001069 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001070 break;
1071 default:
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001072 sockaddr_free(&srv_conn->src);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001073 }
1074#endif
1075}
1076
Olivier Houchard566df302020-03-06 18:18:56 +01001077/* Attempt to get a backend connection from the specified mt_list array
1078 * (safe or idle connections).
1079 */
1080static struct connection *conn_backend_get(struct server *srv, int is_safe)
1081{
1082 struct mt_list *mt_list = is_safe ? srv->safe_conns : srv->idle_conns;
1083 struct connection *conn;
1084 int i;
1085 int found = 0;
1086
1087 /* We need to lock even if this is our own list, because another
1088 * thread may be trying to migrate that connection, and we don't want
1089 * to end up with two threads using the same connection.
1090 */
1091 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
1092 conn = MT_LIST_POP(&mt_list[tid], struct connection *, list);
1093 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
1094
1095 /* If we found a connection in our own list, and we don't have to
1096 * steal one from another thread, then we're done.
1097 */
1098 if (conn)
1099 return conn;
1100
1101 /* Lookup all other threads for an idle connection, starting from tid + 1 */
1102 for (i = tid; !found && (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
1103 struct mt_list *elt1, elt2;
1104
1105 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
1106 mt_list_for_each_entry_safe(conn, &mt_list[i], list, elt1, elt2) {
1107 if (conn->mux->takeover && conn->mux->takeover(conn) == 0) {
1108 MT_LIST_DEL_SAFE(elt1);
1109 found = 1;
1110 break;
1111 }
1112 }
1113 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
1114 }
1115
1116 if (!found)
1117 conn = NULL;
1118 else {
1119 conn->idle_time = 0;
1120 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1121 _HA_ATOMIC_SUB(&srv->curr_idle_thr[i], 1);
1122 _HA_ATOMIC_SUB(is_safe ? &srv->curr_safe_nb : &srv->curr_idle_nb, 1);
1123 __ha_barrier_atomic_store();
1124 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&conn->list));
1125 }
1126 return conn;
1127}
1128
Willy Tarreaubaaee002006-06-26 02:48:02 +02001129/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001130 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001131 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001132 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001133 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001134 * - SF_ERR_NONE if everything's OK
1135 * - SF_ERR_SRVTO if there are no more servers
1136 * - SF_ERR_SRVCL if the connection was refused by the server
1137 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1138 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1139 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001140 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001141 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001142 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001143 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001144int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001145{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001146 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001147 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001148 struct conn_stream *srv_cs = NULL;
Willy Tarreaub0821862019-07-18 19:26:11 +02001149 struct sess_srv_list *srv_list;
Willy Tarreau827aee92011-03-10 16:55:02 +01001150 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001151 int reuse = 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001152 int reuse_orphan = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001153 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001154 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001155
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001156
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001157 /* This will catch some corner cases such as lying connections resulting from
1158 * retries or connect timeouts but will rarely trigger.
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001159 */
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001160 si_release_endpoint(&s->si[1]);
1161
Willy Tarreaub0821862019-07-18 19:26:11 +02001162 /* first, search for a matching connection in the session's idle conns */
1163 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
1164 if (srv_list->target == s->target) {
1165 list_for_each_entry(srv_conn, &srv_list->conn_list, session_list) {
1166 if (conn_xprt_ready(srv_conn) &&
1167 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1168 reuse = 1;
1169 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001170 }
1171 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001172 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001173 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001174 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001175
Olivier Houchard2444aa52020-01-20 13:56:01 +01001176 if (!reuse)
Willy Tarreaub0821862019-07-18 19:26:11 +02001177 srv_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001178
Willy Tarreau7b004922015-08-04 19:34:21 +02001179 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001180
Willy Tarreau8dff9982015-08-04 20:45:52 +02001181 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001182 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001183
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001184 /* Below we pick connections from the safe, idle or
1185 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001186 * on the strategy, the fact that this is a first or second
1187 * (retryable) request, with the indicated priority (1 or 2) :
1188 *
1189 * SAFE AGGR ALWS
1190 *
1191 * +-----+-----+ +-----+-----+ +-----+-----+
1192 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1193 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1194 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1195 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1196 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1197 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001198 *
1199 * Idle conns are necessarily looked up on the same thread so
1200 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001201 */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001202 if (srv->available_conns && !LIST_ISEMPTY(&srv->available_conns[tid]) &&
Olivier Houchard566df302020-03-06 18:18:56 +01001203 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001204 srv_conn = LIST_ELEM(srv->available_conns[tid].n, struct connection *, list);
Olivier Houchard566df302020-03-06 18:18:56 +01001205 reuse = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001206 }
Olivier Houchard566df302020-03-06 18:18:56 +01001207 else if (!srv_conn && srv->curr_idle_conns > 0) {
1208 if (srv->idle_conns &&
1209 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1210 s->txn && (s->txn->flags & TX_NOT_FIRST)) &&
1211 srv->curr_idle_nb > 0) {
1212 srv_conn = conn_backend_get(srv, 0);
1213 }
1214 else if (srv->safe_conns &&
1215 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1216 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR) &&
1217 srv->curr_safe_nb > 0) {
1218 srv_conn = conn_backend_get(srv, 1);
1219 }
1220 else if (srv->idle_conns &&
1221 ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1222 srv->curr_idle_nb > 0) {
1223 srv_conn = conn_backend_get(srv, 0);
1224 }
1225 /* If we've picked a connection from the pool, we now have to
1226 * detach it. We may have to get rid of the previous idle
1227 * connection we had, so for this we try to swap it with the
1228 * other owner's. That way it may remain alive for others to
1229 * pick.
1230 */
1231 if (srv_conn) {
1232 reuse_orphan = 1;
1233 reuse = 1;
1234 srv_conn->flags &= ~CO_FL_LIST_MASK;
1235 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001236 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001237 }
1238
Willy Tarreaub0821862019-07-18 19:26:11 +02001239
1240 /* here reuse might have been set above, indicating srv_conn finally
1241 * is OK.
1242 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001243 if (reuse) {
1244 /* Disable connection reuse if a dynamic source is used.
1245 * As long as we don't share connections between servers,
1246 * we don't need to disable connection reuse on no-idempotent
1247 * requests nor when PROXY protocol is used.
1248 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001249 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1250 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1251 reuse = 0;
1252 }
1253 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1254 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1255 reuse = 0;
1256 }
1257 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001258
Olivier Houchardb3397362020-03-16 13:49:00 +01001259 if (ha_used_fds > global.tune.pool_high_count && srv && srv->idle_conns) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001260 struct connection *tokill_conn;
1261
1262 /* We can't reuse a connection, and e have more FDs than deemd
1263 * acceptable, attempt to kill an idling connection
1264 */
1265 /* First, try from our own idle list */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001266 tokill_conn = MT_LIST_POP(&srv->idle_conns[tid],
Olivier Houchard88698d92019-04-16 19:07:22 +02001267 struct connection *, list);
1268 if (tokill_conn)
1269 tokill_conn->mux->destroy(tokill_conn->ctx);
1270 /* If not, iterate over other thread's idling pool, and try to grab one */
1271 else {
1272 int i;
1273
1274 for (i = 0; i < global.nbthread; i++) {
1275 if (i == tid)
1276 continue;
Willy Tarreau08e2b412019-05-26 11:50:08 +02001277
1278 // just silence stupid gcc which reports an absurd
1279 // out-of-bounds warning for <i> which is always
1280 // exactly zero without threads, but it seems to
1281 // see it possibly larger.
1282 ALREADY_CHECKED(i);
1283
Olivier Houchard14023742019-12-30 18:15:40 +01001284 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001285 tokill_conn = MT_LIST_POP(&srv->idle_conns[i],
Olivier Houchard88698d92019-04-16 19:07:22 +02001286 struct connection *, list);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001287 if (!tokill_conn)
1288 tokill_conn = MT_LIST_POP(&srv->safe_conns[i],
1289 struct connection *, list);
Olivier Houchard88698d92019-04-16 19:07:22 +02001290 if (tokill_conn) {
1291 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1292
Olivier Houchard859dc802019-08-08 15:47:21 +02001293 MT_LIST_ADDQ(&toremove_connections[i],
1294 (struct mt_list *)&tokill_conn->list);
Olivier Houchard88698d92019-04-16 19:07:22 +02001295 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
Olivier Houchard849d4f02020-01-31 17:22:08 +01001296 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001297 break;
1298 }
Olivier Houchard14023742019-12-30 18:15:40 +01001299 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001300 }
1301 }
1302
1303 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001304 /* If we're really reusing the connection, remove it from the orphan
1305 * list and add it back to the idle list.
1306 */
Christopher Faulet46451d62019-04-19 15:39:22 +02001307 if (reuse) {
Olivier Houchard566df302020-03-06 18:18:56 +01001308 if (!reuse_orphan) {
Christopher Faulet46451d62019-04-19 15:39:22 +02001309 if (srv_conn->flags & CO_FL_SESS_IDLE) {
1310 struct session *sess = srv_conn->owner;
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001311
Christopher Faulet46451d62019-04-19 15:39:22 +02001312 srv_conn->flags &= ~CO_FL_SESS_IDLE;
1313 sess->idle_conns--;
1314 }
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001315 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001316 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001317
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001318 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001319 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001320 int avail = srv_conn->mux->avail_streams(srv_conn);
1321
1322 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001323 /* No more streams available, remove it from the list */
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001324 MT_LIST_DEL(&srv_conn->list);
Olivier Houchard2442f682018-12-01 17:03:38 +01001325 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001326
1327 if (avail >= 1) {
1328 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001329 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001330 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001331 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001332 srv_conn = NULL;
1333 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001334 else
1335 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001336 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001337 /* otherwise srv_conn is left intact */
1338 }
1339 else
1340 srv_conn = NULL;
1341
1342 /* no reuse or failed to reuse the connection above, pick a new one */
1343 if (!srv_conn) {
1344 srv_conn = conn_new();
Willy Tarreau1da41ec2019-02-01 16:38:48 +01001345 if (srv_conn)
1346 srv_conn->target = s->target;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001347 srv_cs = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001348 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001349
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001350 if (!srv_conn || !sockaddr_alloc(&srv_conn->dst))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001351 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001352
Willy Tarreaue7dff022015-04-03 01:14:29 +02001353 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001354 err = assign_server_address(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001355 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001356 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001357 }
1358
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001359 /* copy the target address into the connection */
1360 *srv_conn->dst = *s->target_addr;
1361
1362 /* Copy network namespace from client connection */
1363 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1364
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001365 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001366 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001367 if (srv)
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001368 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001369 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1370 /* proxies exclusively run on raw_sock right now */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001371 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), xprt_get(XPRT_RAW));
Olivier Houchard12950162018-11-23 14:32:08 +01001372 if (!(srv_conn->ctrl))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001373 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001374 }
1375 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001376 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001377
Olivier Houchard8af03b32020-01-22 17:34:54 +01001378 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1379 if (!srv_cs) {
1380 conn_free(srv_conn);
1381 return SF_ERR_RESOURCE;
1382 }
1383 srv_conn->ctx = srv_cs;
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001384#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001385 if (!srv ||
1386 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Olivier Houchardb4a8b2c2019-06-15 00:13:15 +02001387 srv->mux_proto || s->be->mode != PR_MODE_HTTP))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001388#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001389 init_mux = 1;
Willy Tarreauff605db2013-12-20 11:09:51 +01001390 /* process the case where the server requires the PROXY protocol to be sent */
1391 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001392
Willy Tarreau7b004922015-08-04 19:34:21 +02001393 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001394 srv_conn->flags |= CO_FL_PRIVATE;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001395 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001396 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001397 if (cli_conn)
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001398 conn_get_dst(cli_conn);
Willy Tarreauff605db2013-12-20 11:09:51 +01001399 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001400
Willy Tarreauff605db2013-12-20 11:09:51 +01001401 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001402
1403 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1404 srv_conn->send_proxy_ofs = 1;
1405 srv_conn->flags |= CO_FL_SOCKS4;
1406 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001407 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001408 else if (!conn_xprt_ready(srv_conn)) {
1409 if (srv_conn->mux->reset)
1410 srv_conn->mux->reset(srv_conn);
1411 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001412 else {
1413 /* Only consider we're doing reuse if the connection was
1414 * ready.
1415 */
1416 if (srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1417 s->flags |= SF_SRV_REUSED;
1418 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001419
William Lallemandb7ff6a32012-03-02 14:35:21 +01001420 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001421 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001422 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001423
Willy Tarreau14f8e862012-08-30 22:23:13 +02001424 /* disable lingering */
1425 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001426 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001427
Willy Tarreauf1573842018-12-14 11:35:36 +01001428 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001429 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001430 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001431 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001432 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001433 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001434 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001435 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001436 }
1437
Olivier Houchard201b9f42018-11-21 00:16:29 +01001438 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001439 if (err != SF_ERR_NONE)
1440 return err;
1441
Olivier Houchard5cd62172019-01-04 15:52:26 +01001442 /* We have to defer the mux initialization until after si_connect()
1443 * has been called, as we need the xprt to have been properly
1444 * initialized, or any attempt to recv during the mux init may
1445 * fail, and flag the connection as CO_FL_ERROR.
1446 */
1447 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001448 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1449 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001450 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001451 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001452 /* If we're doing http-reuse always, and the connection
1453 * is an http2 connection, add it to the available list,
1454 * so that others can use it right away.
1455 */
1456 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1457 srv_conn->mux->avail_streams(srv_conn) > 0)
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001458 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&srv_conn->list));
Olivier Houchard5cd62172019-01-04 15:52:26 +01001459 }
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001460 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1461 * if so, add our handshake pseudo-XPRT now.
1462 */
Willy Tarreau4450b582020-01-23 15:23:13 +01001463 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001464 if (xprt_add_hs(srv_conn) < 0) {
1465 conn_full_close(srv_conn);
1466 return SF_ERR_INTERNAL;
1467 }
1468 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001469
Willy Tarreaubaaee002006-06-26 02:48:02 +02001470
Willy Tarreau5db847a2019-05-09 14:13:35 +02001471#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001472
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001473 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001474 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001475 /* Only attempt to use early data if either the client sent
1476 * early data, so that we know it can handle a 425, or if
1477 * we are allwoed to retry requests on early data failure, and
1478 * it's our first try
1479 */
1480 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1481 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1482 s->si[1].conn_retries == s->be->conn_retries)) &&
1483 !channel_is_empty(si_oc(&s->si[1])) &&
1484 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001485 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001486#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001487
Willy Tarreau14f8e862012-08-30 22:23:13 +02001488 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001489 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001490
Willy Tarreau827aee92011-03-10 16:55:02 +01001491 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001492 int count;
1493
Willy Tarreaue7dff022015-04-03 01:14:29 +02001494 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001495 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001496 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001497 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001498 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001499
1500#ifdef USE_OPENSSL
1501 if (srv->ssl_ctx.sni) {
1502 struct sample *smp;
Willy Tarreau732eac42015-07-09 11:40:25 +02001503
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001504 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1505 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001506 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001507 ssl_sock_set_servername(srv_conn,
1508 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001509 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001510 }
1511 }
1512#endif /* USE_OPENSSL */
1513
Willy Tarreaubaaee002006-06-26 02:48:02 +02001514 }
1515
Willy Tarreauada4c582020-03-04 16:42:03 +01001516 /* Now handle synchronously connected sockets. We know the stream-int
1517 * is at least in state SI_ST_CON. These ones typically are UNIX
1518 * sockets, socket pairs, and occasionally TCP connections on the
1519 * loopback on a heavily loaded system.
1520 */
1521 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1522 s->si[1].flags |= SI_FL_ERR;
1523
1524 /* If we had early data, and the handshake ended, then
1525 * we can remove the flag, and attempt to wake the task up,
1526 * in the event there's an analyser waiting for the end of
1527 * the handshake.
1528 */
1529 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1530 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1531
1532 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1533 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1534 s->si[1].exp = TICK_ETERNITY;
1535 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1536 if (s->si[1].state == SI_ST_CON)
1537 s->si[1].state = SI_ST_RDY;
1538 }
1539
1540 /* Report EOI on the channel if it was reached from the mux point of
1541 * view.
1542 *
1543 * Note: This test is only required because si_cs_process is also the SI
1544 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1545 * care of it.
1546 */
1547 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1548 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1549
Willy Tarreaue7dff022015-04-03 01:14:29 +02001550 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001551}
1552
1553
Willy Tarreaubaaee002006-06-26 02:48:02 +02001554/* This function performs the "redispatch" part of a connection attempt. It
1555 * will assign a server if required, queue the connection if required, and
1556 * handle errors that might arise at this level. It can change the server
1557 * state. It will return 1 if it encounters an error, switches the server
1558 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1559 * that the connection is ready to use.
1560 */
1561
Willy Tarreau87b09662015-04-03 00:22:06 +02001562int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001563{
Willy Tarreau827aee92011-03-10 16:55:02 +01001564 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001565 int conn_err;
1566
1567 /* We know that we don't have any connection pending, so we will
1568 * try to get a new one, and wait in this state if it's queued
1569 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001570 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001571 conn_err = assign_server_and_queue(s);
1572 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001573
Willy Tarreaubaaee002006-06-26 02:48:02 +02001574 switch (conn_err) {
1575 case SRV_STATUS_OK:
1576 break;
1577
Willy Tarreau7c669d72008-06-20 15:04:11 +02001578 case SRV_STATUS_FULL:
1579 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1580 * and we can redispatch to another server, or it is not and we return
1581 * 503. This only makes sense in DIRECT mode however, because normal LB
1582 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001583 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001584 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001585 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001586 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001587 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001588 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001589 sockaddr_free(&s->target_addr);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001590 goto redispatch;
1591 }
1592
Willy Tarreau350f4872014-11-28 14:42:25 +01001593 if (!s->si[1].err_type) {
1594 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001595 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001596
Olivier Houchard237f7812019-03-08 18:49:07 +01001597 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1598 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001599 return 1;
1600
Willy Tarreaubaaee002006-06-26 02:48:02 +02001601 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001602 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001603 if (!s->si[1].err_type) {
1604 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001605 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001606
Olivier Houchard237f7812019-03-08 18:49:07 +01001607 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001608 return 1;
1609
1610 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001611 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1612 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001613 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001614 return 1;
1615
Willy Tarreaubaaee002006-06-26 02:48:02 +02001616 case SRV_STATUS_INTERNAL:
1617 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001618 if (!s->si[1].err_type) {
1619 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001620 }
1621
Willy Tarreau827aee92011-03-10 16:55:02 +01001622 if (srv)
1623 srv_inc_sess_ctr(srv);
1624 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001625 srv_set_sess_last(srv);
1626 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001627 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1628 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001629
Willy Tarreau87b09662015-04-03 00:22:06 +02001630 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001631 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001632 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001633 return 1;
1634 }
1635 /* if we get here, it's because we got SRV_STATUS_OK, which also
1636 * means that the connection has not been queued.
1637 */
1638 return 0;
1639}
1640
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001641/* Check if the connection request is in such a state that it can be aborted. */
1642static int back_may_abort_req(struct channel *req, struct stream *s)
1643{
1644 return ((req->flags & (CF_READ_ERROR)) ||
1645 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1646 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1647}
1648
1649/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1650 * SI_ST_TAR. Other input states are simply ignored.
1651 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1652 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1653 * conditions.
1654 */
1655void back_try_conn_req(struct stream *s)
1656{
1657 struct server *srv = objt_server(s->target);
1658 struct stream_interface *si = &s->si[1];
1659 struct channel *req = &s->req;
1660
1661 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1662
1663 if (si->state == SI_ST_ASS) {
1664 /* Server assigned to connection request, we have to try to connect now */
1665 int conn_err;
1666
1667 /* Before we try to initiate the connection, see if the
1668 * request may be aborted instead.
1669 */
1670 if (back_may_abort_req(req, s)) {
1671 si->err_type |= SI_ET_CONN_ABRT;
1672 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1673 goto abort_connection;
1674 }
1675
1676 conn_err = connect_server(s);
1677 srv = objt_server(s->target);
1678
1679 if (conn_err == SF_ERR_NONE) {
1680 /* state = SI_ST_CON or SI_ST_EST now */
1681 if (srv)
1682 srv_inc_sess_ctr(srv);
1683 if (srv)
1684 srv_set_sess_last(srv);
1685 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1686 goto end;
1687 }
1688
1689 /* We have received a synchronous error. We might have to
1690 * abort, retry immediately or redispatch.
1691 */
1692 if (conn_err == SF_ERR_INTERNAL) {
1693 if (!si->err_type) {
1694 si->err_type = SI_ET_CONN_OTHER;
1695 }
1696
1697 if (srv)
1698 srv_inc_sess_ctr(srv);
1699 if (srv)
1700 srv_set_sess_last(srv);
1701 if (srv)
1702 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1703 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1704
1705 /* release other streams waiting for this server */
1706 sess_change_server(s, NULL);
1707 if (may_dequeue_tasks(srv, s->be))
1708 process_srv_queue(srv);
1709
1710 /* Failed and not retryable. */
1711 si_shutr(si);
1712 si_shutw(si);
1713 req->flags |= CF_WRITE_ERROR;
1714
1715 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1716
1717 /* we may need to know the position in the queue for logging */
1718 pendconn_cond_unlink(s->pend_pos);
1719
1720 /* no stream was ever accounted for this server */
1721 si->state = SI_ST_CLO;
1722 if (s->srv_error)
1723 s->srv_error(s, si);
1724 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1725 goto end;
1726 }
1727
1728 /* We are facing a retryable error, but we don't want to run a
1729 * turn-around now, as the problem is likely a source port
1730 * allocation problem, so we want to retry now.
1731 */
1732 si->state = SI_ST_CER;
1733 si->flags &= ~SI_FL_ERR;
1734 back_handle_st_cer(s);
1735
1736 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1737 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1738 }
1739 else if (si->state == SI_ST_QUE) {
1740 /* connection request was queued, check for any update */
1741 if (!pendconn_dequeue(s)) {
1742 /* The connection is not in the queue anymore. Either
1743 * we have a server connection slot available and we
1744 * go directly to the assigned state, or we need to
1745 * load-balance first and go to the INI state.
1746 */
1747 si->exp = TICK_ETERNITY;
1748 if (unlikely(!(s->flags & SF_ASSIGNED)))
1749 si->state = SI_ST_REQ;
1750 else {
1751 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1752 si->state = SI_ST_ASS;
1753 }
1754 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1755 goto end;
1756 }
1757
1758 /* Connection request still in queue... */
1759 if (si->flags & SI_FL_EXP) {
1760 /* ... and timeout expired */
1761 si->exp = TICK_ETERNITY;
1762 si->flags &= ~SI_FL_EXP;
1763 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1764
1765 /* we may need to know the position in the queue for logging */
1766 pendconn_cond_unlink(s->pend_pos);
1767
1768 if (srv)
1769 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1770 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1771 si_shutr(si);
1772 si_shutw(si);
1773 req->flags |= CF_WRITE_TIMEOUT;
1774 if (!si->err_type)
1775 si->err_type = SI_ET_QUEUE_TO;
1776 si->state = SI_ST_CLO;
1777 if (s->srv_error)
1778 s->srv_error(s, si);
1779 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1780 goto end;
1781 }
1782
1783 /* Connection remains in queue, check if we have to abort it */
1784 if (back_may_abort_req(req, s)) {
1785 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1786
1787 /* we may need to know the position in the queue for logging */
1788 pendconn_cond_unlink(s->pend_pos);
1789
1790 si->err_type |= SI_ET_QUEUE_ABRT;
1791 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1792 goto abort_connection;
1793 }
1794
1795 /* Nothing changed */
1796 }
1797 else if (si->state == SI_ST_TAR) {
1798 /* Connection request might be aborted */
1799 if (back_may_abort_req(req, s)) {
1800 si->err_type |= SI_ET_CONN_ABRT;
1801 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1802 goto abort_connection;
1803 }
1804
1805 if (!(si->flags & SI_FL_EXP))
1806 return; /* still in turn-around */
1807
1808 si->flags &= ~SI_FL_EXP;
1809 si->exp = TICK_ETERNITY;
1810
1811 /* we keep trying on the same server as long as the stream is
1812 * marked "assigned".
1813 * FIXME: Should we force a redispatch attempt when the server is down ?
1814 */
1815 if (s->flags & SF_ASSIGNED)
1816 si->state = SI_ST_ASS;
1817 else
1818 si->state = SI_ST_REQ;
1819
1820 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1821 }
1822
1823 end:
1824 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1825 return;
1826
1827abort_connection:
1828 /* give up */
1829 si->exp = TICK_ETERNITY;
1830 si->flags &= ~SI_FL_EXP;
1831 si_shutr(si);
1832 si_shutw(si);
1833 si->state = SI_ST_CLO;
1834 if (s->srv_error)
1835 s->srv_error(s, si);
1836 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1837 return;
1838}
1839
1840/* This function initiates a server connection request on a stream interface
1841 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1842 * a real connection to a server, indicating that a server has been assigned,
1843 * or SI_ST_EST for a successful connection to an applet. It may also return
1844 * SI_ST_QUE, or SI_ST_CLO upon error.
1845 */
1846void back_handle_st_req(struct stream *s)
1847{
1848 struct stream_interface *si = &s->si[1];
1849
1850 if (si->state != SI_ST_REQ)
1851 return;
1852
1853 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1854
1855 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1856 /* the applet directly goes to the EST state */
1857 struct appctx *appctx = objt_appctx(si->end);
1858
1859 if (!appctx || appctx->applet != __objt_applet(s->target))
1860 appctx = si_register_handler(si, objt_applet(s->target));
1861
1862 if (!appctx) {
1863 /* No more memory, let's immediately abort. Force the
1864 * error code to ignore the ERR_LOCAL which is not a
1865 * real error.
1866 */
1867 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
1868
1869 si_shutr(si);
1870 si_shutw(si);
1871 s->req.flags |= CF_WRITE_ERROR;
1872 si->err_type = SI_ET_CONN_RES;
1873 si->state = SI_ST_CLO;
1874 if (s->srv_error)
1875 s->srv_error(s, si);
1876 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1877 goto end;
1878 }
1879
1880 if (tv_iszero(&s->logs.tv_request))
1881 s->logs.tv_request = now;
1882 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1883 si->state = SI_ST_EST;
1884 si->err_type = SI_ET_NONE;
1885 be_set_sess_last(s->be);
1886
1887 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1888 /* let back_establish() finish the job */
1889 goto end;
1890 }
1891
1892 /* Try to assign a server */
1893 if (srv_redispatch_connect(s) != 0) {
1894 /* We did not get a server. Either we queued the
1895 * connection request, or we encountered an error.
1896 */
1897 if (si->state == SI_ST_QUE) {
1898 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1899 goto end;
1900 }
1901
1902 /* we did not get any server, let's check the cause */
1903 si_shutr(si);
1904 si_shutw(si);
1905 s->req.flags |= CF_WRITE_ERROR;
1906 if (!si->err_type)
1907 si->err_type = SI_ET_CONN_OTHER;
1908 si->state = SI_ST_CLO;
1909 if (s->srv_error)
1910 s->srv_error(s, si);
1911 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1912 goto end;
1913 }
1914
1915 /* The server is assigned */
1916 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1917 si->state = SI_ST_ASS;
1918 be_set_sess_last(s->be);
1919 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1920
1921 end:
1922 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1923}
1924
1925/* This function is called with (si->state == SI_ST_CON) meaning that a
1926 * connection was attempted and that the file descriptor is already allocated.
1927 * We must check for timeout, error and abort. Possible output states are
1928 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
1929 * works with connection-based streams. We know that there were no I/O event
1930 * when reaching this function. Timeouts and errors are *not* cleared.
1931 */
1932void back_handle_st_con(struct stream *s)
1933{
1934 struct stream_interface *si = &s->si[1];
1935 struct channel *req = &s->req;
1936 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001937
1938 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1939
1940 /* the client might want to abort */
1941 if ((rep->flags & CF_SHUTW) ||
1942 ((req->flags & CF_SHUTW_NOW) &&
1943 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
1944 si->flags |= SI_FL_NOLINGER;
1945 si_shutw(si);
1946 si->err_type |= SI_ET_CONN_ABRT;
1947 if (s->srv_error)
1948 s->srv_error(s, si);
1949 /* Note: state = SI_ST_DIS now */
1950 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 +01001951 goto end;
1952 }
1953
Willy Tarreau062df2c2020-01-10 06:17:03 +01001954 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001955 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01001956 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001957 if (!si->err_type) {
1958 if (si->flags & SI_FL_ERR)
1959 si->err_type = SI_ET_CONN_ERR;
1960 else
1961 si->err_type = SI_ET_CONN_TO;
1962 }
1963
1964 si->state = SI_ST_CER;
1965 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1966 }
1967
Willy Tarreau062df2c2020-01-10 06:17:03 +01001968 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001969 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1970}
1971
1972/* This function is called with (si->state == SI_ST_CER) meaning that a
1973 * previous connection attempt has failed and that the file descriptor
1974 * has already been released. Possible causes include asynchronous error
1975 * notification and time out. Possible output states are SI_ST_CLO when
1976 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
1977 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
1978 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
1979 * marked as in error state. Timeouts and errors are cleared before retrying.
1980 */
1981void back_handle_st_cer(struct stream *s)
1982{
1983 struct stream_interface *si = &s->si[1];
1984 struct conn_stream *cs = objt_cs(si->end);
1985 struct connection *conn = cs_conn(cs);
1986
1987 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1988
1989 si->exp = TICK_ETERNITY;
1990 si->flags &= ~SI_FL_EXP;
1991
1992 /* we probably have to release last stream from the server */
1993 if (objt_server(s->target)) {
1994 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
1995
1996 if (s->flags & SF_CURR_SESS) {
1997 s->flags &= ~SF_CURR_SESS;
1998 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
1999 }
2000
2001 if ((si->flags & SI_FL_ERR) &&
2002 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2003 /* We tried to connect to a server which is configured
2004 * with "verify required" and which doesn't have the
2005 * "verifyhost" directive. The server presented a wrong
2006 * certificate (a certificate for an unexpected name),
2007 * which implies that we have used SNI in the handshake,
2008 * and that the server doesn't have the associated cert
2009 * and presented a default one.
2010 *
2011 * This is a serious enough issue not to retry. It's
2012 * especially important because this wrong name might
2013 * either be the result of a configuration error, and
2014 * retrying will only hammer the server, or is caused
2015 * by the use of a wrong SNI value, most likely
2016 * provided by the client and we don't want to let the
2017 * client provoke retries.
2018 */
2019 si->conn_retries = 0;
2020 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2021 }
2022 }
2023
2024 /* ensure that we have enough retries left */
2025 si->conn_retries--;
2026 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2027 if (!si->err_type) {
2028 si->err_type = SI_ET_CONN_ERR;
2029 }
2030
2031 if (objt_server(s->target))
2032 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
2033 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
2034 sess_change_server(s, NULL);
2035 if (may_dequeue_tasks(objt_server(s->target), s->be))
2036 process_srv_queue(objt_server(s->target));
2037
2038 /* shutw is enough so stop a connecting socket */
2039 si_shutw(si);
2040 s->req.flags |= CF_WRITE_ERROR;
2041 s->res.flags |= CF_READ_ERROR;
2042
2043 si->state = SI_ST_CLO;
2044 if (s->srv_error)
2045 s->srv_error(s, si);
2046
2047 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2048 goto end;
2049 }
2050
2051 stream_choose_redispatch(s);
2052
2053 if (si->flags & SI_FL_ERR) {
2054 /* The error was an asynchronous connection error, and we will
2055 * likely have to retry connecting to the same server, most
2056 * likely leading to the same result. To avoid this, we wait
2057 * MIN(one second, connect timeout) before retrying. We don't
2058 * do it when the failure happened on a reused connection
2059 * though.
2060 */
2061
2062 int delay = 1000;
2063
2064 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2065 delay = s->be->timeout.connect;
2066
2067 if (!si->err_type)
2068 si->err_type = SI_ET_CONN_ERR;
2069
2070 /* only wait when we're retrying on the same server */
2071 if ((si->state == SI_ST_ASS ||
2072 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
2073 (s->be->srv_act <= 1)) && !(s->flags & SF_SRV_REUSED)) {
2074 si->state = SI_ST_TAR;
2075 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2076 }
2077 si->flags &= ~SI_FL_ERR;
2078 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2079 }
2080
2081 end:
2082 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2083}
2084
2085/* This function is called with (si->state == SI_ST_RDY) meaning that a
2086 * connection was attempted, that the file descriptor is already allocated,
2087 * and that it has succeeded. We must still check for errors and aborts.
2088 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2089 * and SI_ST_DIS (abort). This only works with connection-based streams.
2090 * Timeouts and errors are *not* cleared.
2091 */
2092void back_handle_st_rdy(struct stream *s)
2093{
2094 struct stream_interface *si = &s->si[1];
2095 struct channel *req = &s->req;
2096 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002097
2098 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2099 /* We know the connection at least succeeded, though it could have
2100 * since met an error for any other reason. At least it didn't time out
2101 * eventhough the timeout might have been reported right after success.
2102 * We need to take care of various situations here :
2103 * - everything might be OK. We have to switch to established.
2104 * - an I/O error might have been reported after a successful transfer,
2105 * which is not retryable and needs to be logged correctly, and needs
2106 * established as well
2107 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2108 * have validated a connection with incoming data (e.g. TCP with a
2109 * banner protocol), or just a successful connect() probe.
2110 * - the client might have requested a connection abort, this needs to
2111 * be checked before we decide to retry anything.
2112 */
2113
2114 /* it's still possible to handle client aborts or connection retries
2115 * before any data were sent.
2116 */
2117 if (!(req->flags & CF_WROTE_DATA)) {
2118 /* client abort ? */
2119 if ((rep->flags & CF_SHUTW) ||
2120 ((req->flags & CF_SHUTW_NOW) &&
2121 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2122 /* give up */
2123 si->flags |= SI_FL_NOLINGER;
2124 si_shutw(si);
2125 si->err_type |= SI_ET_CONN_ABRT;
2126 if (s->srv_error)
2127 s->srv_error(s, si);
2128 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2129 goto end;
2130 }
2131
2132 /* retryable error ? */
2133 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002134 if (!si->err_type)
2135 si->err_type = SI_ET_CONN_ERR;
2136 si->state = SI_ST_CER;
2137 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2138 goto end;
2139 }
2140 }
2141
2142 /* data were sent and/or we had no error, back_establish() will
2143 * now take over.
2144 */
2145 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2146 si->err_type = SI_ET_NONE;
2147 si->state = SI_ST_EST;
2148
2149 end:
2150 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2151}
2152
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002153/* sends a log message when a backend goes down, and also sets last
2154 * change date.
2155 */
2156void set_backend_down(struct proxy *be)
2157{
2158 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01002159 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002160
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002161 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002162 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002163 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2164 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002165}
2166
Willy Tarreau87b09662015-04-03 00:22:06 +02002167/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002168 * tries to extract an RDP cookie from the request buffer, and look for the
2169 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002170 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002171 * list. Nothing is performed if a server was already assigned.
2172 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002173int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002174{
2175 struct proxy *px = s->be;
2176 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002177 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002178 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002179 uint16_t port;
2180 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002181 char *p;
2182
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002183 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002184
Willy Tarreaue7dff022015-04-03 01:14:29 +02002185 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002186 goto no_cookie;
2187
Willy Tarreau37406352012-04-23 16:16:37 +02002188 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002189
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002190 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002191 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002192 goto no_cookie;
2193
Willy Tarreau04276f32017-01-06 17:41:29 +01002194 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2195 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2196 * server's IP address in network order, and "port" is the integer corresponding to the
2197 * server's port in network order. Comments please Emeric.
2198 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002199 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002200 if (*p != '.')
2201 goto no_cookie;
2202 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002203
2204 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002205 if (*p != '.')
2206 goto no_cookie;
2207
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002208 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002209 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002210 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002211 port == srv->svc_port &&
2212 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002213 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002214 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002215 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002216 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002217 break;
2218 }
2219 }
2220 srv = srv->next;
2221 }
2222
2223no_cookie:
2224 req->analysers &= ~an_bit;
2225 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002226 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002227 return 1;
2228}
2229
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002230int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002231 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002232 return px->down_time;
2233
2234 return now.tv_sec - px->last_change + px->down_time;
2235}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002236
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002237/*
2238 * This function returns a string containing the balancing
2239 * mode of the proxy in a format suitable for stats.
2240 */
2241
2242const char *backend_lb_algo_str(int algo) {
2243
2244 if (algo == BE_LB_ALGO_RR)
2245 return "roundrobin";
2246 else if (algo == BE_LB_ALGO_SRR)
2247 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002248 else if (algo == BE_LB_ALGO_FAS)
2249 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002250 else if (algo == BE_LB_ALGO_LC)
2251 return "leastconn";
2252 else if (algo == BE_LB_ALGO_SH)
2253 return "source";
2254 else if (algo == BE_LB_ALGO_UH)
2255 return "uri";
2256 else if (algo == BE_LB_ALGO_PH)
2257 return "url_param";
2258 else if (algo == BE_LB_ALGO_HH)
2259 return "hdr";
2260 else if (algo == BE_LB_ALGO_RCH)
2261 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002262 else if (algo == BE_LB_ALGO_NONE)
2263 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002264 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002265 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002266}
2267
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002268/* This function parses a "balance" statement in a backend section describing
2269 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002270 * returns -1, it will write an error message into the <err> buffer which will
2271 * automatically be allocated and must be passed as NULL. The trailing '\n'
2272 * will not be written. The function must be called with <args> pointing to the
2273 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002274 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002275int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002276{
2277 if (!*(args[0])) {
2278 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002279 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2280 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002281 return 0;
2282 }
2283
2284 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002285 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2286 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002287 }
Willy Tarreau9757a382009-10-03 12:56:50 +02002288 else if (!strcmp(args[0], "static-rr")) {
2289 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2290 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2291 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01002292 else if (!strcmp(args[0], "first")) {
2293 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2294 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2295 }
Willy Tarreau51406232008-03-10 22:04:20 +01002296 else if (!strcmp(args[0], "leastconn")) {
2297 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2298 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2299 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002300 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002301 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2302 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002303 curproxy->lbprm.arg_opt1 = 2;
2304
2305 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2306 const char *beg;
2307 char *end;
2308
2309 beg = args[0] + 7;
2310 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2311
2312 if (*end != ')') {
2313 if (!*end)
2314 memprintf(err, "random : missing closing parenthesis.");
2315 else
2316 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2317 return -1;
2318 }
2319
2320 if (curproxy->lbprm.arg_opt1 < 1) {
2321 memprintf(err, "random : number of draws must be at least 1.");
2322 return -1;
2323 }
2324 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002325 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002326 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002327 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2328 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002329 }
2330 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002331 int arg = 1;
2332
Willy Tarreau31682232007-11-29 15:38:04 +01002333 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2334 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreaua9a72492019-01-14 16:14:15 +01002335 curproxy->lbprm.arg_opt1 = 0; // "whole"
2336 curproxy->lbprm.arg_opt2 = 0; // "len"
2337 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002338
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002339 while (*args[arg]) {
2340 if (!strcmp(args[arg], "len")) {
2341 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002342 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002343 return -1;
2344 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002345 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002346 arg += 2;
2347 }
2348 else if (!strcmp(args[arg], "depth")) {
2349 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002350 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002351 return -1;
2352 }
2353 /* hint: we store the position of the ending '/' (depth+1) so
2354 * that we avoid a comparison while computing the hash.
2355 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002356 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002357 arg += 2;
2358 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01002359 else if (!strcmp(args[arg], "whole")) {
Willy Tarreaua9a72492019-01-14 16:14:15 +01002360 curproxy->lbprm.arg_opt1 = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002361 arg += 1;
2362 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002363 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01002364 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002365 return -1;
2366 }
2367 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002368 }
Willy Tarreau01732802007-11-01 22:48:15 +01002369 else if (!strcmp(args[0], "url_param")) {
2370 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002371 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002372 return -1;
2373 }
Willy Tarreau31682232007-11-29 15:38:04 +01002374 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2375 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002376
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002377 free(curproxy->lbprm.arg_str);
2378 curproxy->lbprm.arg_str = strdup(args[1]);
2379 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002380 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002381 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002382 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002383 return -1;
2384 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002385 }
Benoitaffb4812009-03-25 13:02:10 +01002386 }
2387 else if (!strncmp(args[0], "hdr(", 4)) {
2388 const char *beg, *end;
2389
2390 beg = args[0] + 4;
2391 end = strchr(beg, ')');
2392
2393 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002394 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002395 return -1;
2396 }
2397
2398 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2399 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2400
Willy Tarreau484ff072019-01-14 15:28:53 +01002401 free(curproxy->lbprm.arg_str);
2402 curproxy->lbprm.arg_len = end - beg;
2403 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002404 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002405
2406 if (*args[1]) {
2407 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002408 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002409 return -1;
2410 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002411 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002412 }
Emeric Brun736aa232009-06-30 17:56:00 +02002413 }
2414 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2415 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2416 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2417
2418 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2419 const char *beg, *end;
2420
2421 beg = args[0] + 11;
2422 end = strchr(beg, ')');
2423
2424 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002425 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002426 return -1;
2427 }
2428
Willy Tarreau484ff072019-01-14 15:28:53 +01002429 free(curproxy->lbprm.arg_str);
2430 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2431 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002432 }
2433 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002434 free(curproxy->lbprm.arg_str);
2435 curproxy->lbprm.arg_str = strdup("mstshash");
2436 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002437 }
2438 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002439 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002440 return -1;
2441 }
Willy Tarreau01732802007-11-01 22:48:15 +01002442 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002443 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002444 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 +01002445 return -1;
2446 }
2447 return 0;
2448}
2449
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002450
2451/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002452/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002453/************************************************************************/
2454
Willy Tarreau34db1082012-04-19 17:16:54 +02002455/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002456 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002457 * undefined behaviour.
2458 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002459static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002460smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002461{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002462 struct proxy *px;
2463
Willy Tarreau37406352012-04-23 16:16:37 +02002464 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002465 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002466 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002467
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002468 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002469
2470 return 1;
2471}
2472
Willy Tarreau37406352012-04-23 16:16:37 +02002473/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002474 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002475 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2476 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002477 */
2478static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002479smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002480{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002481 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002482
Willy Tarreau37406352012-04-23 16:16:37 +02002483 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002484 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002485 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2486 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002487 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002488 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002489 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002490 return 1;
2491}
2492
Willy Tarreau34db1082012-04-19 17:16:54 +02002493/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002494 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002495 * undefined behaviour.
2496 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002497static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002498smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002499{
2500 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002501
Willy Tarreau37406352012-04-23 16:16:37 +02002502 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002503 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002504 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002505
Willy Tarreau24e32d82012-04-23 23:55:44 +02002506 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002507 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002508 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002509
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002510 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002511 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002512 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002513 return 1;
2514 }
2515
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002516 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002517 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002518 }
2519
2520 return 1;
2521}
2522
Willy Tarreaua5e37562011-12-16 17:06:15 +01002523/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002524static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002525smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002526{
Willy Tarreaube508f12016-03-10 11:47:01 +01002527 if (!smp->strm)
2528 return 0;
2529
Willy Tarreauf853c462012-04-23 18:53:56 +02002530 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002531 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002532 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002533 return 1;
2534}
2535
Marcin Deranekd2471c22016-12-12 14:08:05 +01002536/* set string to the name of the backend */
2537static int
2538smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2539{
2540 if (!smp->strm)
2541 return 0;
2542
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002543 smp->data.u.str.area = (char *)smp->strm->be->id;
2544 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002545 return 0;
2546
2547 smp->data.type = SMP_T_STR;
2548 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002549 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002550
2551 return 1;
2552}
2553
Willy Tarreaua5e37562011-12-16 17:06:15 +01002554/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002555static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002556smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002557{
Willy Tarreaube508f12016-03-10 11:47:01 +01002558 if (!smp->strm)
2559 return 0;
2560
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002561 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01002562 return 0;
2563
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002564 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02002565 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002566
2567 return 1;
2568}
2569
vkill1dfd1652019-10-30 16:58:14 +08002570/* set string to the name of the server */
2571static int
2572smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2573{
2574 if (!smp->strm)
2575 return 0;
2576
2577 if (!objt_server(smp->strm->target))
2578 return 0;
2579
2580 smp->data.u.str.area = (char *)__objt_server(smp->strm->target)->id;
2581 if (!smp->data.u.str.area)
2582 return 0;
2583
2584 smp->data.type = SMP_T_STR;
2585 smp->data.u.str.data = strlen(smp->data.u.str.area);
2586
2587 return 1;
2588}
2589
Willy Tarreau34db1082012-04-19 17:16:54 +02002590/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002591 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002592 * undefined behaviour.
2593 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002594static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002595smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002596{
Willy Tarreau37406352012-04-23 16:16:37 +02002597 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002598 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002599 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002600 return 1;
2601}
2602
Willy Tarreau34db1082012-04-19 17:16:54 +02002603/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002604 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002605 * undefined behaviour.
2606 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002607static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002608smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002609{
Willy Tarreau37406352012-04-23 16:16:37 +02002610 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002611 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002612 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002613 return 1;
2614}
2615
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002616/* set temp integer to the number of available connections across available
2617 * servers on the backend.
2618 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2619 * undefined behaviour.
2620 */
2621static int
2622smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2623{
2624 struct server *iterator;
2625 struct proxy *px;
2626 unsigned int maxconn;
2627
2628 smp->flags = SMP_F_VOL_TEST;
2629 smp->data.type = SMP_T_SINT;
2630 smp->data.u.sint = 0;
2631
2632 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2633 if (iterator->cur_state == SRV_ST_STOPPED)
2634 continue;
2635
2636 px = iterator->proxy;
2637 if (!srv_currently_usable(iterator) ||
2638 ((iterator->flags & SRV_F_BACKUP) &&
2639 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2640 continue;
2641
2642 if (iterator->maxconn == 0) {
2643 /* one active server is unlimited, return -1 */
2644 smp->data.u.sint = -1;
2645 return 1;
2646 }
2647
2648 maxconn = srv_dynamic_maxconn(iterator);
2649 if (maxconn > iterator->cur_sess)
2650 smp->data.u.sint += maxconn - iterator->cur_sess;
2651 }
2652
2653 return 1;
2654}
2655
Willy Tarreau34db1082012-04-19 17:16:54 +02002656/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002657 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002658 * undefined behaviour.
2659 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002660static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002661smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002662{
Willy Tarreau37406352012-04-23 16:16:37 +02002663 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002664 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002665 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002666 return 1;
2667}
2668
Willy Tarreaua5e37562011-12-16 17:06:15 +01002669/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002670 * by the number of running servers and rounded up. If there is no running
2671 * server, we return twice the total, just as if we had half a running server.
2672 * This is more or less correct anyway, since we expect the last server to come
2673 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002674 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002675 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002676 */
2677static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002678smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002679{
2680 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002681 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002682
Willy Tarreau37406352012-04-23 16:16:37 +02002683 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002684 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002685 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002686
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002687 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002688
2689 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002690 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002691 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002692 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002693
2694 return 1;
2695}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002696
Willy Tarreau34db1082012-04-19 17:16:54 +02002697/* set temp integer to the number of concurrent connections on the server in the backend.
2698 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2699 * undefined behaviour.
2700 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002701static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002702smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002703{
Willy Tarreauf853c462012-04-23 18:53:56 +02002704 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002705 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002706 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002707 return 1;
2708}
2709
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002710/* set temp integer to the number of available connections on the server in the backend.
2711 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2712 * undefined behaviour.
2713 */
2714static int
2715smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2716{
2717 unsigned int maxconn;
2718
2719 smp->flags = SMP_F_VOL_TEST;
2720 smp->data.type = SMP_T_SINT;
2721
2722 if (args->data.srv->maxconn == 0) {
2723 /* one active server is unlimited, return -1 */
2724 smp->data.u.sint = -1;
2725 return 1;
2726 }
2727
2728 maxconn = srv_dynamic_maxconn(args->data.srv);
2729 if (maxconn > args->data.srv->cur_sess)
2730 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2731 else
2732 smp->data.u.sint = 0;
2733
2734 return 1;
2735}
2736
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002737/* set temp integer to the number of connections pending in the server's queue.
2738 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2739 * undefined behaviour.
2740 */
2741static int
2742smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2743{
2744 smp->flags = SMP_F_VOL_TEST;
2745 smp->data.type = SMP_T_SINT;
2746 smp->data.u.sint = args->data.srv->nbpend;
2747 return 1;
2748}
2749
Tait Clarridge7896d522012-12-05 21:39:31 -05002750/* set temp integer to the number of enabled servers on the proxy.
2751 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2752 * undefined behaviour.
2753 */
2754static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002755smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002756{
2757 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002758 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002759 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002760 return 1;
2761}
2762
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002763static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2764{
2765
2766 struct proxy *px;
2767
2768 if (!smp_make_safe(smp))
2769 return 0;
2770
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002771 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002772 if (!px)
2773 return 0;
2774
2775 smp->data.type = SMP_T_SINT;
2776 smp->data.u.sint = be_usable_srv(px);
2777
2778 return 1;
2779}
2780
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002781static int
2782sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
2783{
2784 struct proxy *px;
2785 struct server *srv;
2786 char *bksep;
2787
2788 if (!smp_make_safe(smp))
2789 return 0;
2790
2791 bksep = strchr(smp->data.u.str.area, '/');
2792
2793 if (bksep) {
2794 *bksep = '\0';
2795 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
2796 if (!px)
2797 return 0;
2798 smp->data.u.str.area = bksep + 1;
2799 } else {
2800 if (!(smp->px->cap & PR_CAP_BE))
2801 return 0;
2802 px = smp->px;
2803 }
2804
2805 srv = server_find_by_name(px, smp->data.u.str.area);
2806 if (!srv)
2807 return 0;
2808
2809 smp->data.type = SMP_T_SINT;
2810 smp->data.u.sint = srv->nbpend;
2811 return 1;
2812}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002813
2814/* Note: must not be declared <const> as its list will be overwritten.
2815 * Please take care of keeping this list alphabetically sorted.
2816 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002817static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002818 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2819 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002820 { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002821 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002822 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002823 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2824 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2825 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2826 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2827 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002828 { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002829 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002830 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
vkill1dfd1652019-10-30 16:58:14 +08002831 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002832 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002833 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002834 { /* END */ },
2835}};
2836
Willy Tarreau0108d902018-11-25 19:14:37 +01002837INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2838
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002839/* Note: must not be declared <const> as its list will be overwritten */
2840static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002841 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2842 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002843 { /* END */ },
2844}};
2845
Willy Tarreau0108d902018-11-25 19:14:37 +01002846INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002847
Willy Tarreau61612d42012-04-19 18:42:05 +02002848/* Note: must not be declared <const> as its list will be overwritten.
2849 * Please take care of keeping this list alphabetically sorted.
2850 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002851static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002852 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002853}};
2854
Willy Tarreau0108d902018-11-25 19:14:37 +01002855INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002856
Willy Tarreaubaaee002006-06-26 02:48:02 +02002857/*
2858 * Local variables:
2859 * c-indent-level: 8
2860 * c-basic-offset: 8
2861 * End:
2862 */