blob: ece412c7c5d2d5482e1066ce317b8bed9cd63304 [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 Tarreau4c7e4b72020-05-27 12:58:42 +020022#include <haproxy/api.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020023#include <common/buffer.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020024#include <common/debug.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020025#include <haproxy/hash.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010026#include <common/htx.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020027#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010029#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010033#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020034#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020036#include <proto/channel.h>
Willy Tarreau3a9312a2020-01-09 18:43:15 +010037#include <proto/checks.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020038#include <proto/frontend.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010039#include <proto/http_htx.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020040#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010041#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020042#include <proto/lb_fwlc.h>
43#include <proto/lb_fwrr.h>
44#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020045#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020046#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010047#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010048#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020049#include <proto/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020050#include <proto/http_ana.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020051#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020052#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010054#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010055#include <proto/server.h>
Olivier Houchard00cf70f2018-11-30 17:24:55 +010056#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020057#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010058#include <proto/stream_interface.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020059#include <proto/ssl_sock.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020060#include <proto/task.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020061
Christopher Fauleteea8fc72019-11-05 16:18:10 +010062#define TRACE_SOURCE &trace_strm
63
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050064int be_lastsession(const struct proxy *be)
65{
66 if (be->be_counters.last_sess)
67 return now.tv_sec - be->be_counters.last_sess;
68
69 return -1;
70}
71
Bhaskar98634f02013-10-29 23:30:51 -040072/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040074{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070075 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040076
77 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
78 case BE_LB_HFCN_DJB2:
79 hash = hash_djb2(key, len);
80 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010081 case BE_LB_HFCN_WT6:
82 hash = hash_wt6(key, len);
83 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010084 case BE_LB_HFCN_CRC32:
85 hash = hash_crc32(key, len);
86 break;
Bhaskar98634f02013-10-29 23:30:51 -040087 case BE_LB_HFCN_SDBM:
88 /* this is the default hash function */
89 default:
90 hash = hash_sdbm(key, len);
91 break;
92 }
93
94 return hash;
95}
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097/*
98 * This function recounts the number of usable active and backup servers for
99 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100101 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100102 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 * This functions is designed to be called before server's weight and state
104 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200105 *
106 * threads: this is the caller responsibility to lock data. For now, this
107 * function is called from lb modules, so it should be ok. But if you need to
108 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200110void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111{
112 struct server *srv;
113
Willy Tarreau20697042007-11-15 23:26:18 +0100114 px->srv_act = px->srv_bck = 0;
115 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200118 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 continue;
120
Willy Tarreauc93cd162014-05-13 15:54:22 +0200121 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100123 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100124 px->lbprm.fbck = srv;
125 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400126 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200127 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 } else {
129 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400130 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200131 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 }
133 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100134}
Willy Tarreau20697042007-11-15 23:26:18 +0100135
Willy Tarreaub625a082007-11-26 01:15:43 +0100136/* This function simply updates the backend's tot_weight and tot_used values
137 * after servers weights have been updated. It is designed to be used after
138 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200139 *
140 * threads: this is the caller responsibility to lock data. For now, this
141 * function is called from lb modules, so it should be ok. But if you need to
142 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100143 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200144void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100145{
Willy Tarreau20697042007-11-15 23:26:18 +0100146 if (px->srv_act) {
147 px->lbprm.tot_weight = px->lbprm.tot_wact;
148 px->lbprm.tot_used = px->srv_act;
149 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 else if (px->lbprm.fbck) {
151 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200152 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100154 }
155 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100156 px->lbprm.tot_weight = px->lbprm.tot_wbck;
157 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100158 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100159}
160
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200161/*
162 * This function tries to find a running server for the proxy <px> following
163 * the source hash method. Depending on the number of active/backup servers,
164 * it will either look for active servers, or for backup servers.
165 * If any server is found, it will be returned. If no valid server is found,
166 * NULL is returned.
167 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100168static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200169{
170 unsigned int h, l;
171
172 if (px->lbprm.tot_weight == 0)
173 return NULL;
174
175 l = h = 0;
176
177 /* note: we won't hash if there's only one server left */
178 if (px->lbprm.tot_used == 1)
179 goto hash_done;
180
181 while ((l + sizeof (int)) <= len) {
182 h ^= ntohl(*(unsigned int *)(&addr[l]));
183 l += sizeof (int);
184 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500185 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100186 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100188 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100189 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200190 else
191 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200192}
193
194/*
195 * This function tries to find a running server for the proxy <px> following
196 * the URI hash method. In order to optimize cache hits, the hash computation
197 * ends at the question mark. Depending on the number of active/backup servers,
198 * it will either look for active servers, or for backup servers.
199 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100200 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
201 * the "whole" optional argument (boolean), the "len" argument (numeric) and
202 * the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200203 *
204 * This code was contributed by Guillaume Dallaire, who also selected this hash
205 * algorithm out of a tens because it gave him the best results.
206 *
207 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100208static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700210 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211 int c;
212 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400213 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200214
215 if (px->lbprm.tot_weight == 0)
216 return NULL;
217
218 /* note: we won't hash if there's only one server left */
219 if (px->lbprm.tot_used == 1)
220 goto hash_done;
221
Willy Tarreaua9a72492019-01-14 16:14:15 +0100222 if (px->lbprm.arg_opt2) // "len"
223 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200224
Bhaskar98634f02013-10-29 23:30:51 -0400225 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200226 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200227 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 if (c == '/') {
229 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100230 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
232 }
Willy Tarreaua9a72492019-01-14 16:14:15 +0100233 else if (c == '?' && !px->lbprm.arg_opt1) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200234 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200235 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200236 }
Bhaskar98634f02013-10-29 23:30:51 -0400237
238 hash = gen_hash(px, start, (end - start));
239
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500240 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100241 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200242 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100243 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100244 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200245 else
246 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200247}
248
Christopher Faulet5b517552017-06-09 14:17:53 +0200249/*
Willy Tarreau01732802007-11-01 22:48:15 +0100250 * This function tries to find a running server for the proxy <px> following
251 * the URL parameter hash method. It looks for a specific parameter in the
252 * URL and hashes it to compute the server ID. This is useful to optimize
253 * performance by avoiding bounces between servers in contexts where sessions
254 * are shared but cookies are not usable. If the parameter is not found, NULL
255 * is returned. If any server is found, it will be returned. If no valid server
256 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100257 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100258static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len, const struct server *avoid)
Willy Tarreau01732802007-11-01 22:48:15 +0100259{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700260 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400261 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262 const char *p;
263 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100264 int plen;
265
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200266 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100267 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100268 return NULL;
269
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200270 if ((p = memchr(uri, '?', uri_len)) == NULL)
271 return NULL;
272
Willy Tarreau01732802007-11-01 22:48:15 +0100273 p++;
274
275 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100276 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200277 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100278
279 while (uri_len > plen) {
280 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200281 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100282 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100284 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100286 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200287 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400288 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200289 uri_len -= plen + 1;
290
Bhaskar98634f02013-10-29 23:30:51 -0400291 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100292 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400293 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100294 }
Bhaskar98634f02013-10-29 23:30:51 -0400295 hash = gen_hash(px, start, (end - start));
296
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500297 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100298 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400299
Willy Tarreau6c30be52019-01-14 17:07:39 +0100300 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100301 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200302 else
303 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100304 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200305 }
306 /* skip to next parameter */
307 p = memchr(params, '&', uri_len);
308 if (!p)
309 return NULL;
310 p++;
311 uri_len -= (p - params);
312 params = p;
313 }
314 return NULL;
315}
316
317/*
318 * this does the same as the previous server_ph, but check the body contents
319 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100320static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700322 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100323 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200324 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200325 struct htx *htx = htxbuf(&req->buf);
326 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100327 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 unsigned long len;
329 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200330
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100331 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 return NULL;
333
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200334 p = params = NULL;
335 len = 0;
336 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
337 enum htx_blk_type type = htx_get_blk_type(blk);
338 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200339
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200340 if (type != HTX_BLK_DATA)
341 continue;
342 v = htx_get_blk_value(htx, blk);
343 p = params = v.ptr;
344 len = v.len;
345 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100346 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200347
348 while (len > plen) {
349 /* Look for the parameter name followed by an equal symbol */
350 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100351 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200352 /* OK, we have the parameter here at <params>, and
353 * the value after the equal sign, at <p>
354 * skip the equal symbol
355 */
356 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400357 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 len -= plen + 1;
359
Bhaskar98634f02013-10-29 23:30:51 -0400360 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200361 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100362 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400363 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100364 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200365 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
366 break;
367 return NULL; /* oh, no; this is not uri-encoded.
368 * This body does not contain parameters.
369 */
370 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200371 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400372 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 /* should we break if vlen exceeds limit? */
374 }
Bhaskar98634f02013-10-29 23:30:51 -0400375 hash = gen_hash(px, start, (end - start));
376
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500377 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100378 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400379
Willy Tarreau6c30be52019-01-14 17:07:39 +0100380 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100381 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200382 else
383 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 }
385 }
Willy Tarreau01732802007-11-01 22:48:15 +0100386 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200387 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100388 if (!p)
389 return NULL;
390 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200391 len -= (p - params);
392 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100393 }
394 return NULL;
395}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200397
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398/*
Benoitaffb4812009-03-25 13:02:10 +0100399 * This function tries to find a running server for the proxy <px> following
400 * the Header parameter hash method. It looks for a specific parameter in the
401 * URL and hashes it to compute the server ID. This is useful to optimize
402 * performance by avoiding bounces between servers in contexts where sessions
403 * are shared but cookies are not usable. If the parameter is not found, NULL
404 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100405 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
406 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100407 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100408static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100409{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700410 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100411 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100412 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100413 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100414 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400415 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200416 struct htx *htx = htxbuf(&s->req.buf);
417 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100418
419 /* tot_weight appears to mean srv_count */
420 if (px->lbprm.tot_weight == 0)
421 return NULL;
422
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200423 /* note: we won't hash if there's only one server left */
424 if (px->lbprm.tot_used == 1)
425 goto hash_done;
426
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200427 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100428
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200429 /* if the header is not found or empty, let's fallback to round robin */
430 if (!ctx.blk || !ctx.value.len)
431 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100432
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200433 /* Found a the param_name in the headers.
434 * we will compute the hash based on this value ctx.val.
435 */
436 len = ctx.value.len;
437 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100438
Willy Tarreau9fed8582019-01-14 16:04:54 +0100439 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400440 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100441 } else {
442 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100443 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100444 /* special computation, use only main domain name, not tld/host
445 * going back from the end of string, start hashing at first
446 * dot stop at next.
447 * This is designed to work with the 'Host' header, and requires
448 * a special option to activate this.
449 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100450 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100451 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100452 if (dohash) {
453 /* Rewind the pointer until the previous char
454 * is a dot, this will allow to set the start
455 * position of the domain. */
456 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100457 break;
Benoitaffb4812009-03-25 13:02:10 +0100458 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100459 else if (*p == '.') {
460 /* The pointer is rewinded to the dot before the
461 * tld, we memorize the end of the domain and
462 * can enter the domain processing. */
463 end = p;
464 dohash = 1;
465 }
Benoitaffb4812009-03-25 13:02:10 +0100466 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100467 len--;
Benoitaffb4812009-03-25 13:02:10 +0100468 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100469 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400470 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100471 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500472 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100473 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200474 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100475 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100476 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200477 else
478 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100479}
480
Willy Tarreau34db1082012-04-19 17:16:54 +0200481/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100482static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200483{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700484 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200485 struct proxy *px = s->be;
486 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200487 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200488 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200489 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200490
491 /* tot_weight appears to mean srv_count */
492 if (px->lbprm.tot_weight == 0)
493 return NULL;
494
Willy Tarreau37406352012-04-23 16:16:37 +0200495 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200496
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200497 rewind = co_data(&s->req);
498 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200499
Willy Tarreau484ff072019-01-14 15:28:53 +0100500 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200501 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100502
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200503 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200504
Willy Tarreau37406352012-04-23 16:16:37 +0200505 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200506 return NULL;
507
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200508 /* note: we won't hash if there's only one server left */
509 if (px->lbprm.tot_used == 1)
510 goto hash_done;
511
Willy Tarreau484ff072019-01-14 15:28:53 +0100512 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200513 * we will compute the hash based on this value ctx.val.
514 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200515 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400516
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500517 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100518 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200519 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100520 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100521 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200522 else
523 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200524}
Christopher Faulet5b517552017-06-09 14:17:53 +0200525
Willy Tarreau760e81d2018-05-03 07:20:40 +0200526/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100527static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200528{
529 unsigned int hash = 0;
530 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100531 struct server *prev, *curr;
532 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200533
534 /* tot_weight appears to mean srv_count */
535 if (px->lbprm.tot_weight == 0)
536 return NULL;
537
Willy Tarreau21c741a2019-01-14 18:14:27 +0100538 curr = NULL;
539 do {
540 prev = curr;
Willy Tarreaub9f54c52020-03-08 17:31:39 +0100541 hash = ha_random32();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100542 curr = chash_get_server_hash(px, hash, avoid);
543 if (!curr)
544 break;
545
546 /* compare the new server to the previous best choice and pick
547 * the one with the least currently served requests.
548 */
549 if (prev && prev != curr &&
550 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
551 curr = prev;
552 } while (--draws > 0);
553
554 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200555}
556
Benoitaffb4812009-03-25 13:02:10 +0100557/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200558 * This function applies the load-balancing algorithm to the stream, as
559 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 * 'assigned'.
561 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200562 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200563 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100564 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200565 * The function tries to keep the original connection slot if it reconnects to
566 * the same server, otherwise it releases it and tries to offer it.
567 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200568 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569 *
570 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100571 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200572 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
573 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200574 * SRV_STATUS_INTERNAL for other unrecoverable errors.
575 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200576 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100577 * it does not need to be called anymore. This means that target_srv(&s->target)
578 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200579 *
580 */
581
Willy Tarreau87b09662015-04-03 00:22:06 +0200582int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100584 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200585 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100586 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200587 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100588
Simon Horman8effd3d2011-08-13 08:03:52 +0900589 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200590
Willy Tarreau7c669d72008-06-20 15:04:11 +0200591 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200592 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100594
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100595 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200596 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200597
Willy Tarreau7c669d72008-06-20 15:04:11 +0200598 /* We have to release any connection slot before applying any LB algo,
599 * otherwise we may erroneously end up with no available slot.
600 */
601 if (conn_slot)
602 sess_change_server(s, NULL);
603
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100604 /* We will now try to find the good server and store it into <objt_server(s->target)>.
605 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200606 * as well as if no server is available (check error code).
607 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100608
Willy Tarreau827aee92011-03-10 16:55:02 +0100609 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100610 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100611
Olivier Houchardba4fff52018-12-01 14:40:40 +0100612 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200613 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100614 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100615 struct sess_srv_list *srv_list;
616 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
617 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100618
619 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200620 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100621 (!s->be->max_ka_queue ||
622 server_has_room(tmpsrv) || (
623 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
624 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100625 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100626 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100627 srv = tmpsrv;
628 s->target = &srv->obj_type;
629 goto out_ok;
630 }
631 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100632 }
633 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100634 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100635 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200636
Willy Tarreau7c669d72008-06-20 15:04:11 +0200637 /* we must check if we have at least one server available */
638 if (!s->be->lbprm.tot_weight) {
639 err = SRV_STATUS_NOSRV;
640 goto out;
641 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200642
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200643 /* First check whether we need to fetch some data or simply call
644 * the LB lookup function. Only the hashing functions will need
645 * some input data in fact, and will support multiple algorithms.
646 */
647 switch (s->be->lbprm.algo & BE_LB_LKUP) {
648 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100649 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200650 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200651
Willy Tarreauf09c6602012-02-13 17:12:08 +0100652 case BE_LB_LKUP_FSTREE:
653 srv = fas_get_next_server(s->be, prev_srv);
654 break;
655
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200656 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100657 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200658 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200659
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200660 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200661 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200662 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200663 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100664 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100665 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100666 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200667 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100668 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200669 break;
670 }
671 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200672 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200673 err = SRV_STATUS_INTERNAL;
674 goto out;
675 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200676
677 switch (s->be->lbprm.algo & BE_LB_PARM) {
678 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200679 conn = objt_conn(strm_orig(s));
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200680 if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200681 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200682 (void *)&((struct sockaddr_in *)conn->src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100683 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200684 }
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200685 else if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200686 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200687 (void *)&((struct sockaddr_in6 *)conn->src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100688 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200689 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200690 else {
691 /* unknown IP family */
692 err = SRV_STATUS_INTERNAL;
693 goto out;
694 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200695 break;
696
697 case BE_LB_HASH_URI:
698 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200699 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100700 struct ist uri;
701
Christopher Faulet297fbb42019-05-13 14:41:27 +0200702 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100703 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
704 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200705 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200706
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200707 case BE_LB_HASH_PRM:
708 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200709 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100710 struct ist uri;
711
Christopher Faulet297fbb42019-05-13 14:41:27 +0200712 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100713 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100714
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200715 if (!srv && s->txn->meth == HTTP_METH_POST)
716 srv = get_server_ph_post(s, prev_srv);
717 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200718 break;
Benoitaffb4812009-03-25 13:02:10 +0100719
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200720 case BE_LB_HASH_HDR:
721 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200722 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
723 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200724 break;
725
726 case BE_LB_HASH_RDP:
727 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100728 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200729 break;
730
731 default:
732 /* unknown balancing algorithm */
733 err = SRV_STATUS_INTERNAL;
734 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100735 }
Emeric Brun736aa232009-06-30 17:56:00 +0200736
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200737 /* If the hashing parameter was not found, let's fall
738 * back to round robin on the map.
739 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100740 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100741 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100742 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200743 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100744 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200745 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200746
747 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200748 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200749
Willy Tarreau7c669d72008-06-20 15:04:11 +0200750 default:
751 /* unknown balancing algorithm */
752 err = SRV_STATUS_INTERNAL;
753 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200754 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200755
Willy Tarreau827aee92011-03-10 16:55:02 +0100756 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200757 err = SRV_STATUS_FULL;
758 goto out;
759 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100760 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100761 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
762 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100763 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100764 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200765 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200766 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100767 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100769 else if ((s->be->options & PR_O_HTTP_PROXY)) {
770 conn = cs_conn(objt_cs(s->si[1].end));
771
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200772 if (conn && conn->dst && is_addr(conn->dst)) {
Olivier Houchard2442f682018-12-01 17:03:38 +0100773 /* in proxy mode, we need a valid destination address */
774 s->target = &s->be->obj_type;
775 } else {
776 err = SRV_STATUS_NOSRV;
777 goto out;
778 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100779 }
780 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200781 err = SRV_STATUS_NOSRV;
782 goto out;
783 }
784
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100785out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200786 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200787 err = SRV_STATUS_OK;
788 out:
789
790 /* Either we take back our connection slot, or we offer it to someone
791 * else if we don't need it anymore.
792 */
793 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100794 if (conn_slot == srv) {
795 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200796 } else {
797 if (may_dequeue_tasks(conn_slot, s->be))
798 process_srv_queue(conn_slot);
799 }
800 }
801
802 out_err:
803 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804}
805
Willy Tarreaubaaee002006-06-26 02:48:02 +0200806/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200807 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200808 * The address is taken from the currently assigned server, or from the
809 * dispatch or transparent address.
810 *
811 * It may return :
812 * SRV_STATUS_OK if everything is OK.
813 * SRV_STATUS_INTERNAL for other unrecoverable errors.
814 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200815 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816 * not cleared, so it's to the caller to clear it if required.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200817 */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200818int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200820 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200821
Christopher Faulet56803b12017-11-24 16:06:18 +0100822 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200824 if (!sockaddr_alloc(&s->target_addr))
Willy Tarreauca79f592019-07-17 19:04:47 +0200825 return SRV_STATUS_INTERNAL;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200826
Willy Tarreaue7dff022015-04-03 01:14:29 +0200827 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200828 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200829 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200830 return SRV_STATUS_INTERNAL;
831
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200832 *s->target_addr = __objt_server(s->target)->addr;
833 set_host_port(s->target_addr, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200834
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200835 if (!is_addr(s->target_addr) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200836 /* if the server has no address, we use the same address
837 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200838 * locally on multiple addresses at once. Nothing is done
839 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200840 */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200841 if (!conn_get_dst(cli_conn)) {
842 /* do nothing if we can't retrieve the address */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200843 } else if (cli_conn->dst->ss_family == AF_INET) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200844 ((struct sockaddr_in *)s->target_addr)->sin_addr = ((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200845 } else if (cli_conn->dst->ss_family == AF_INET6) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200846 ((struct sockaddr_in6 *)s->target_addr)->sin6_addr = ((struct sockaddr_in6 *)cli_conn->dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200847 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200848 }
849
Willy Tarreaubaaee002006-06-26 02:48:02 +0200850 /* if this server remaps proxied ports, we'll use
851 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200852 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100853 int base_port;
854
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200855 if (conn_get_dst(cli_conn)) {
856 /* First, retrieve the port from the incoming connection */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200857 base_port = get_host_port(cli_conn->dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100858
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200859 /* Second, assign the outgoing connection's port */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200860 base_port += get_host_port(s->target_addr);
861 set_host_port(s->target_addr, base_port);
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200862 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200863 }
864 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200865 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200866 /* connect to the defined dispatch addr */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200867 *s->target_addr = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200869 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200870 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200871 if (conn_get_dst(cli_conn) &&
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200872 (cli_conn->dst->ss_family == AF_INET || cli_conn->dst->ss_family == AF_INET6))
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200873 *s->target_addr = *cli_conn->dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200874 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100875 else if (s->be->options & PR_O_HTTP_PROXY) {
876 /* If HTTP PROXY option is set, then server is already assigned
877 * during incoming client request parsing. */
878 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100879 else {
880 /* no server and no LB algorithm ! */
881 return SRV_STATUS_INTERNAL;
882 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200883
Willy Tarreaue7dff022015-04-03 01:14:29 +0200884 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200885 return SRV_STATUS_OK;
886}
887
Willy Tarreau87b09662015-04-03 00:22:06 +0200888/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200889 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200890 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200891 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200892 * be called before any connection and after any retry or redispatch occurs.
893 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200894 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200895 *
896 * Returns :
897 *
898 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100899 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200900 * SRV_STATUS_QUEUED if the connection has been queued.
901 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100902 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200903 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200904 * SRV_STATUS_INTERNAL for other unrecoverable errors.
905 *
906 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200907int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200908{
909 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100910 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911 int err;
912
913 if (s->pend_pos)
914 return SRV_STATUS_INTERNAL;
915
Willy Tarreau7c669d72008-06-20 15:04:11 +0200916 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200917 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100918 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100919
Willy Tarreau7c669d72008-06-20 15:04:11 +0200920 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100921 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200922 /* This stream was previously assigned to a server. We have to
923 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 * - if the server changed :
925 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200926 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200927 * - increment srv->redispatches and be->redispatches
928 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100929 */
930
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100931 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200932 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
933 s->txn->flags &= ~TX_CK_MASK;
934 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200935 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200936 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +0100937 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
938 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200939 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +0100940 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
941 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100942 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100943 }
944 }
945
Willy Tarreaubaaee002006-06-26 02:48:02 +0200946 switch (err) {
947 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200948 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100949 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100950 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200951 return SRV_STATUS_OK; /* dispatch or proxy mode */
952
953 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100954 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200955 return SRV_STATUS_OK;
956
Willy Tarreau87b09662015-04-03 00:22:06 +0200957 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200958 * connection slot yet. Either it is a redispatch, or it was
959 * assigned from persistence information (direct mode).
960 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200961 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200962 /* server scheduled for redirection, and already assigned. We
963 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100964 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100965 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100966 return SRV_STATUS_OK;
967 }
968
Willy Tarreau87b09662015-04-03 00:22:06 +0200969 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200970 * We know we have to queue it into the server's queue, so if a maxqueue
971 * is set on the server, we must also check that the server's queue is
972 * not full, in which case we have to return FULL.
973 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 if (srv->maxconn &&
975 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200976
Willy Tarreau827aee92011-03-10 16:55:02 +0100977 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200978 return SRV_STATUS_FULL;
979
Willy Tarreaubaaee002006-06-26 02:48:02 +0200980 p = pendconn_add(s);
981 if (p)
982 return SRV_STATUS_QUEUED;
983 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200984 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200985 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200986
987 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100988 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200989 return SRV_STATUS_OK;
990
991 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200992 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200993 p = pendconn_add(s);
994 if (p)
995 return SRV_STATUS_QUEUED;
996 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200997 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200998
999 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001000 return err;
1001
Willy Tarreaubaaee002006-06-26 02:48:02 +02001002 case SRV_STATUS_INTERNAL:
1003 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001004
Willy Tarreaubaaee002006-06-26 02:48:02 +02001005 default:
1006 return SRV_STATUS_INTERNAL;
1007 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001008}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001009
Willy Tarreaub1d67742010-03-29 19:36:59 +02001010/* If an explicit source binding is specified on the server and/or backend, and
1011 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001012 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001013 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001014 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001015static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001016{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001017#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001018 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001019 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001020 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001021 struct connection *srv_conn;
1022
1023 if (objt_cs(s->si[1].end))
1024 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1025 else
1026 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001027
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001028 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1029 src = &srv->conn_src;
1030 else if (s->be->conn_src.opts & CO_SRC_BIND)
1031 src = &s->be->conn_src;
1032 else
1033 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001034
Willy Tarreauca79f592019-07-17 19:04:47 +02001035 if (!sockaddr_alloc(&srv_conn->src))
1036 return;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001037
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001038 switch (src->opts & CO_SRC_TPROXY_MASK) {
1039 case CO_SRC_TPROXY_ADDR:
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001040 *srv_conn->src = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001041 break;
1042 case CO_SRC_TPROXY_CLI:
1043 case CO_SRC_TPROXY_CIP:
1044 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001045 cli_conn = objt_conn(strm_orig(s));
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001046 if (cli_conn && conn_get_src(cli_conn))
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001047 *srv_conn->src = *cli_conn->src;
1048 else {
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001049 sockaddr_free(&srv_conn->src);
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001050 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001051 break;
1052 case CO_SRC_TPROXY_DYN:
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001053 if (src->bind_hdr_occ && IS_HTX_STRM(s)) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001054 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001055 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001056
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001057 /* bind to the IP in a header */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001058 ((struct sockaddr_in *)srv_conn->src)->sin_family = AF_INET;
1059 ((struct sockaddr_in *)srv_conn->src)->sin_port = 0;
1060 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr = 0;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001061 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1062 ist2(src->bind_hdr_name, src->bind_hdr_len),
1063 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001064 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr =
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001065 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001066 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001067 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001068 break;
1069 default:
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001070 sockaddr_free(&srv_conn->src);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001071 }
1072#endif
1073}
1074
Olivier Houchard566df302020-03-06 18:18:56 +01001075/* Attempt to get a backend connection from the specified mt_list array
1076 * (safe or idle connections).
1077 */
1078static struct connection *conn_backend_get(struct server *srv, int is_safe)
1079{
1080 struct mt_list *mt_list = is_safe ? srv->safe_conns : srv->idle_conns;
1081 struct connection *conn;
1082 int i;
1083 int found = 0;
1084
1085 /* We need to lock even if this is our own list, because another
1086 * thread may be trying to migrate that connection, and we don't want
1087 * to end up with two threads using the same connection.
1088 */
1089 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
1090 conn = MT_LIST_POP(&mt_list[tid], struct connection *, list);
1091 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
1092
1093 /* If we found a connection in our own list, and we don't have to
1094 * steal one from another thread, then we're done.
1095 */
Olivier Houchardfdc7ee22020-03-19 23:52:28 +01001096 if (conn) {
1097 i = tid;
1098 goto fix_conn;
1099 }
Olivier Houchard566df302020-03-06 18:18:56 +01001100
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 {
Olivier Houchardfdc7ee22020-03-19 23:52:28 +01001119fix_conn:
Olivier Houchard566df302020-03-06 18:18:56 +01001120 conn->idle_time = 0;
1121 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1122 _HA_ATOMIC_SUB(&srv->curr_idle_thr[i], 1);
1123 _HA_ATOMIC_SUB(is_safe ? &srv->curr_safe_nb : &srv->curr_idle_nb, 1);
1124 __ha_barrier_atomic_store();
1125 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&conn->list));
1126 }
1127 return conn;
1128}
1129
Willy Tarreaubaaee002006-06-26 02:48:02 +02001130/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001131 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001132 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001133 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001134 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001135 * - SF_ERR_NONE if everything's OK
1136 * - SF_ERR_SRVTO if there are no more servers
1137 * - SF_ERR_SRVCL if the connection was refused by the server
1138 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1139 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1140 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001141 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001142 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001143 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001144 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001145int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001146{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001147 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001148 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001149 struct conn_stream *srv_cs = NULL;
Willy Tarreaub0821862019-07-18 19:26:11 +02001150 struct sess_srv_list *srv_list;
Willy Tarreau827aee92011-03-10 16:55:02 +01001151 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001152 int reuse = 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001153 int reuse_orphan = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001154 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001155 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001157
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001158 /* This will catch some corner cases such as lying connections resulting from
1159 * retries or connect timeouts but will rarely trigger.
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001160 */
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001161 si_release_endpoint(&s->si[1]);
1162
Willy Tarreaub0821862019-07-18 19:26:11 +02001163 /* first, search for a matching connection in the session's idle conns */
1164 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
1165 if (srv_list->target == s->target) {
1166 list_for_each_entry(srv_conn, &srv_list->conn_list, session_list) {
1167 if (conn_xprt_ready(srv_conn) &&
1168 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1169 reuse = 1;
1170 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001171 }
1172 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001173 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001174 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001175 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001176
Olivier Houchard2444aa52020-01-20 13:56:01 +01001177 if (!reuse)
Willy Tarreaub0821862019-07-18 19:26:11 +02001178 srv_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001179
Willy Tarreau7b004922015-08-04 19:34:21 +02001180 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001181
Willy Tarreau8dff9982015-08-04 20:45:52 +02001182 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001183 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001184
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001185 /* Below we pick connections from the safe, idle or
1186 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001187 * on the strategy, the fact that this is a first or second
1188 * (retryable) request, with the indicated priority (1 or 2) :
1189 *
1190 * SAFE AGGR ALWS
1191 *
1192 * +-----+-----+ +-----+-----+ +-----+-----+
1193 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1194 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1195 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1196 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1197 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1198 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001199 *
1200 * Idle conns are necessarily looked up on the same thread so
1201 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001202 */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001203 if (srv->available_conns && !LIST_ISEMPTY(&srv->available_conns[tid]) &&
Olivier Houchard566df302020-03-06 18:18:56 +01001204 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001205 srv_conn = LIST_ELEM(srv->available_conns[tid].n, struct connection *, list);
Olivier Houchard566df302020-03-06 18:18:56 +01001206 reuse = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001207 }
Olivier Houchard566df302020-03-06 18:18:56 +01001208 else if (!srv_conn && srv->curr_idle_conns > 0) {
1209 if (srv->idle_conns &&
1210 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1211 s->txn && (s->txn->flags & TX_NOT_FIRST)) &&
1212 srv->curr_idle_nb > 0) {
1213 srv_conn = conn_backend_get(srv, 0);
1214 }
1215 else if (srv->safe_conns &&
1216 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1217 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR) &&
1218 srv->curr_safe_nb > 0) {
1219 srv_conn = conn_backend_get(srv, 1);
1220 }
1221 else if (srv->idle_conns &&
1222 ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1223 srv->curr_idle_nb > 0) {
1224 srv_conn = conn_backend_get(srv, 0);
1225 }
1226 /* If we've picked a connection from the pool, we now have to
1227 * detach it. We may have to get rid of the previous idle
1228 * connection we had, so for this we try to swap it with the
1229 * other owner's. That way it may remain alive for others to
1230 * pick.
1231 */
1232 if (srv_conn) {
1233 reuse_orphan = 1;
1234 reuse = 1;
1235 srv_conn->flags &= ~CO_FL_LIST_MASK;
1236 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001237 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001238 }
1239
Willy Tarreaub0821862019-07-18 19:26:11 +02001240
1241 /* here reuse might have been set above, indicating srv_conn finally
1242 * is OK.
1243 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001244 if (reuse) {
1245 /* Disable connection reuse if a dynamic source is used.
1246 * As long as we don't share connections between servers,
1247 * we don't need to disable connection reuse on no-idempotent
1248 * requests nor when PROXY protocol is used.
1249 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001250 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1251 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1252 reuse = 0;
1253 }
1254 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1255 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1256 reuse = 0;
1257 }
1258 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001259
Olivier Houchardb3397362020-03-16 13:49:00 +01001260 if (ha_used_fds > global.tune.pool_high_count && srv && srv->idle_conns) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001261 struct connection *tokill_conn;
1262
1263 /* We can't reuse a connection, and e have more FDs than deemd
1264 * acceptable, attempt to kill an idling connection
1265 */
1266 /* First, try from our own idle list */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001267 tokill_conn = MT_LIST_POP(&srv->idle_conns[tid],
Olivier Houchard88698d92019-04-16 19:07:22 +02001268 struct connection *, list);
1269 if (tokill_conn)
1270 tokill_conn->mux->destroy(tokill_conn->ctx);
1271 /* If not, iterate over other thread's idling pool, and try to grab one */
1272 else {
1273 int i;
1274
1275 for (i = 0; i < global.nbthread; i++) {
1276 if (i == tid)
1277 continue;
Willy Tarreau08e2b412019-05-26 11:50:08 +02001278
1279 // just silence stupid gcc which reports an absurd
1280 // out-of-bounds warning for <i> which is always
1281 // exactly zero without threads, but it seems to
1282 // see it possibly larger.
1283 ALREADY_CHECKED(i);
1284
Olivier Houchard14023742019-12-30 18:15:40 +01001285 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001286 tokill_conn = MT_LIST_POP(&srv->idle_conns[i],
Olivier Houchard88698d92019-04-16 19:07:22 +02001287 struct connection *, list);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001288 if (!tokill_conn)
1289 tokill_conn = MT_LIST_POP(&srv->safe_conns[i],
1290 struct connection *, list);
Olivier Houchard88698d92019-04-16 19:07:22 +02001291 if (tokill_conn) {
1292 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1293
Olivier Houchard859dc802019-08-08 15:47:21 +02001294 MT_LIST_ADDQ(&toremove_connections[i],
1295 (struct mt_list *)&tokill_conn->list);
Olivier Houchard88698d92019-04-16 19:07:22 +02001296 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
Olivier Houchard849d4f02020-01-31 17:22:08 +01001297 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001298 break;
1299 }
Olivier Houchard14023742019-12-30 18:15:40 +01001300 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Olivier Houchard88698d92019-04-16 19:07:22 +02001301 }
1302 }
1303
1304 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001305 /* If we're really reusing the connection, remove it from the orphan
1306 * list and add it back to the idle list.
1307 */
Christopher Faulet46451d62019-04-19 15:39:22 +02001308 if (reuse) {
Olivier Houchard566df302020-03-06 18:18:56 +01001309 if (!reuse_orphan) {
Christopher Faulet46451d62019-04-19 15:39:22 +02001310 if (srv_conn->flags & CO_FL_SESS_IDLE) {
1311 struct session *sess = srv_conn->owner;
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001312
Christopher Faulet46451d62019-04-19 15:39:22 +02001313 srv_conn->flags &= ~CO_FL_SESS_IDLE;
1314 sess->idle_conns--;
1315 }
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001316 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001317 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001318
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001319 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001320 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001321 int avail = srv_conn->mux->avail_streams(srv_conn);
1322
1323 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001324 /* No more streams available, remove it from the list */
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001325 MT_LIST_DEL(&srv_conn->list);
Olivier Houchard2442f682018-12-01 17:03:38 +01001326 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001327
1328 if (avail >= 1) {
1329 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001330 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001331 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001332 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001333 srv_conn = NULL;
1334 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001335 else
1336 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001337 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001338 /* otherwise srv_conn is left intact */
1339 }
1340 else
1341 srv_conn = NULL;
1342
1343 /* no reuse or failed to reuse the connection above, pick a new one */
1344 if (!srv_conn) {
1345 srv_conn = conn_new();
Willy Tarreau1da41ec2019-02-01 16:38:48 +01001346 if (srv_conn)
1347 srv_conn->target = s->target;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001348 srv_cs = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001349 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001350
Olivier Houchardcf612a02020-03-25 19:41:03 +01001351 if (srv_conn && srv) {
1352 _HA_ATOMIC_ADD(&srv->curr_used_conns, 1);
1353 /* It's ok not to do that atomically, we don't need an
1354 * exact max.
1355 */
1356 if (srv->max_used_conns < srv->curr_used_conns)
1357 srv->max_used_conns = srv->curr_used_conns;
1358 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001359 if (!srv_conn || !sockaddr_alloc(&srv_conn->dst)) {
1360 if (srv_conn)
1361 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001362 return SF_ERR_RESOURCE;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001363 }
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001364
Willy Tarreaue7dff022015-04-03 01:14:29 +02001365 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001366 err = assign_server_address(s);
Olivier Houchardc0caac22020-03-20 14:26:32 +01001367 if (err != SRV_STATUS_OK) {
1368 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001369 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001370 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371 }
1372
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001373 /* copy the target address into the connection */
1374 *srv_conn->dst = *s->target_addr;
1375
1376 /* Copy network namespace from client connection */
1377 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1378
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001379 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001380 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001381 if (srv)
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001382 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001383 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1384 /* proxies exclusively run on raw_sock right now */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001385 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), xprt_get(XPRT_RAW));
Olivier Houchardc0caac22020-03-20 14:26:32 +01001386 if (!(srv_conn->ctrl)) {
1387 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001388 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001389 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001390 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001391 else {
1392 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001393 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001394 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001395
Olivier Houchard8af03b32020-01-22 17:34:54 +01001396 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1397 if (!srv_cs) {
1398 conn_free(srv_conn);
1399 return SF_ERR_RESOURCE;
1400 }
1401 srv_conn->ctx = srv_cs;
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001402#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001403 if (!srv ||
1404 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Olivier Houchardb4a8b2c2019-06-15 00:13:15 +02001405 srv->mux_proto || s->be->mode != PR_MODE_HTTP))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001406#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001407 init_mux = 1;
Olivier Houchard68ad53c2020-05-27 01:26:06 +02001408#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1409 else
1410 srv_conn->owner = s->sess;
1411#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001412 /* process the case where the server requires the PROXY protocol to be sent */
1413 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001414
Willy Tarreau7b004922015-08-04 19:34:21 +02001415 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001416 srv_conn->flags |= CO_FL_PRIVATE;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001417 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001418 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001419 if (cli_conn)
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001420 conn_get_dst(cli_conn);
Willy Tarreauff605db2013-12-20 11:09:51 +01001421 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001422
Willy Tarreauff605db2013-12-20 11:09:51 +01001423 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001424
1425 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1426 srv_conn->send_proxy_ofs = 1;
1427 srv_conn->flags |= CO_FL_SOCKS4;
1428 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001429 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001430 else if (!conn_xprt_ready(srv_conn)) {
1431 if (srv_conn->mux->reset)
1432 srv_conn->mux->reset(srv_conn);
1433 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001434 else {
1435 /* Only consider we're doing reuse if the connection was
1436 * ready.
1437 */
1438 if (srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1439 s->flags |= SF_SRV_REUSED;
1440 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001441
William Lallemandb7ff6a32012-03-02 14:35:21 +01001442 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001443 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001444 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001445
Willy Tarreau14f8e862012-08-30 22:23:13 +02001446 /* disable lingering */
1447 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001448 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001449
Willy Tarreauf1573842018-12-14 11:35:36 +01001450 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001451 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001452 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001453 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001454 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001455 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001456 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001457 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001458 }
1459
Olivier Houchard201b9f42018-11-21 00:16:29 +01001460 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001461 if (err != SF_ERR_NONE)
1462 return err;
1463
Olivier Houchard5cd62172019-01-04 15:52:26 +01001464 /* We have to defer the mux initialization until after si_connect()
1465 * has been called, as we need the xprt to have been properly
1466 * initialized, or any attempt to recv during the mux init may
1467 * fail, and flag the connection as CO_FL_ERROR.
1468 */
1469 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001470 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1471 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001472 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001473 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001474 /* If we're doing http-reuse always, and the connection
1475 * is an http2 connection, add it to the available list,
1476 * so that others can use it right away.
1477 */
1478 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1479 srv_conn->mux->avail_streams(srv_conn) > 0)
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001480 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&srv_conn->list));
Olivier Houchard5cd62172019-01-04 15:52:26 +01001481 }
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001482 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1483 * if so, add our handshake pseudo-XPRT now.
1484 */
Willy Tarreau4450b582020-01-23 15:23:13 +01001485 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001486 if (xprt_add_hs(srv_conn) < 0) {
1487 conn_full_close(srv_conn);
1488 return SF_ERR_INTERNAL;
1489 }
1490 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001491
Willy Tarreaubaaee002006-06-26 02:48:02 +02001492
Willy Tarreau5db847a2019-05-09 14:13:35 +02001493#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001494
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001495 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001496 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001497 /* Only attempt to use early data if either the client sent
1498 * early data, so that we know it can handle a 425, or if
1499 * we are allwoed to retry requests on early data failure, and
1500 * it's our first try
1501 */
1502 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1503 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1504 s->si[1].conn_retries == s->be->conn_retries)) &&
1505 !channel_is_empty(si_oc(&s->si[1])) &&
1506 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001507 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001508#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001509
Willy Tarreau14f8e862012-08-30 22:23:13 +02001510 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001511 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001512
Willy Tarreau827aee92011-03-10 16:55:02 +01001513 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001514 int count;
1515
Willy Tarreaue7dff022015-04-03 01:14:29 +02001516 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001517 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001518 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001519 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001520 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001521
1522#ifdef USE_OPENSSL
1523 if (srv->ssl_ctx.sni) {
1524 struct sample *smp;
Willy Tarreau732eac42015-07-09 11:40:25 +02001525
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001526 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1527 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001528 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001529 ssl_sock_set_servername(srv_conn,
1530 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001531 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001532 }
1533 }
1534#endif /* USE_OPENSSL */
1535
Willy Tarreaubaaee002006-06-26 02:48:02 +02001536 }
1537
Willy Tarreauada4c582020-03-04 16:42:03 +01001538 /* Now handle synchronously connected sockets. We know the stream-int
1539 * is at least in state SI_ST_CON. These ones typically are UNIX
1540 * sockets, socket pairs, and occasionally TCP connections on the
1541 * loopback on a heavily loaded system.
1542 */
1543 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1544 s->si[1].flags |= SI_FL_ERR;
1545
1546 /* If we had early data, and the handshake ended, then
1547 * we can remove the flag, and attempt to wake the task up,
1548 * in the event there's an analyser waiting for the end of
1549 * the handshake.
1550 */
1551 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1552 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1553
1554 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1555 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1556 s->si[1].exp = TICK_ETERNITY;
1557 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1558 if (s->si[1].state == SI_ST_CON)
1559 s->si[1].state = SI_ST_RDY;
1560 }
1561
1562 /* Report EOI on the channel if it was reached from the mux point of
1563 * view.
1564 *
1565 * Note: This test is only required because si_cs_process is also the SI
1566 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1567 * care of it.
1568 */
1569 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1570 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1571
Willy Tarreaue7dff022015-04-03 01:14:29 +02001572 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001573}
1574
1575
Willy Tarreaubaaee002006-06-26 02:48:02 +02001576/* This function performs the "redispatch" part of a connection attempt. It
1577 * will assign a server if required, queue the connection if required, and
1578 * handle errors that might arise at this level. It can change the server
1579 * state. It will return 1 if it encounters an error, switches the server
1580 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1581 * that the connection is ready to use.
1582 */
1583
Willy Tarreau87b09662015-04-03 00:22:06 +02001584int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001585{
Willy Tarreau827aee92011-03-10 16:55:02 +01001586 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001587 int conn_err;
1588
1589 /* We know that we don't have any connection pending, so we will
1590 * try to get a new one, and wait in this state if it's queued
1591 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001592 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001593 conn_err = assign_server_and_queue(s);
1594 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001595
Willy Tarreaubaaee002006-06-26 02:48:02 +02001596 switch (conn_err) {
1597 case SRV_STATUS_OK:
1598 break;
1599
Willy Tarreau7c669d72008-06-20 15:04:11 +02001600 case SRV_STATUS_FULL:
1601 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1602 * and we can redispatch to another server, or it is not and we return
1603 * 503. This only makes sense in DIRECT mode however, because normal LB
1604 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001605 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001606 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001607 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001608 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001609 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001610 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001611 sockaddr_free(&s->target_addr);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001612 goto redispatch;
1613 }
1614
Willy Tarreau350f4872014-11-28 14:42:25 +01001615 if (!s->si[1].err_type) {
1616 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001617 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001618
Olivier Houchard237f7812019-03-08 18:49:07 +01001619 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1620 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001621 return 1;
1622
Willy Tarreaubaaee002006-06-26 02:48:02 +02001623 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001624 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001625 if (!s->si[1].err_type) {
1626 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001627 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001628
Olivier Houchard237f7812019-03-08 18:49:07 +01001629 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001630 return 1;
1631
1632 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001633 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1634 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001635 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001636 return 1;
1637
Willy Tarreaubaaee002006-06-26 02:48:02 +02001638 case SRV_STATUS_INTERNAL:
1639 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001640 if (!s->si[1].err_type) {
1641 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001642 }
1643
Willy Tarreau827aee92011-03-10 16:55:02 +01001644 if (srv)
1645 srv_inc_sess_ctr(srv);
1646 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001647 srv_set_sess_last(srv);
1648 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001649 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1650 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001651
Willy Tarreau87b09662015-04-03 00:22:06 +02001652 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001653 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001654 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001655 return 1;
1656 }
1657 /* if we get here, it's because we got SRV_STATUS_OK, which also
1658 * means that the connection has not been queued.
1659 */
1660 return 0;
1661}
1662
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001663/* Check if the connection request is in such a state that it can be aborted. */
1664static int back_may_abort_req(struct channel *req, struct stream *s)
1665{
1666 return ((req->flags & (CF_READ_ERROR)) ||
1667 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1668 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1669}
1670
1671/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1672 * SI_ST_TAR. Other input states are simply ignored.
1673 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1674 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1675 * conditions.
1676 */
1677void back_try_conn_req(struct stream *s)
1678{
1679 struct server *srv = objt_server(s->target);
1680 struct stream_interface *si = &s->si[1];
1681 struct channel *req = &s->req;
1682
1683 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1684
1685 if (si->state == SI_ST_ASS) {
1686 /* Server assigned to connection request, we have to try to connect now */
1687 int conn_err;
1688
1689 /* Before we try to initiate the connection, see if the
1690 * request may be aborted instead.
1691 */
1692 if (back_may_abort_req(req, s)) {
1693 si->err_type |= SI_ET_CONN_ABRT;
1694 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1695 goto abort_connection;
1696 }
1697
1698 conn_err = connect_server(s);
1699 srv = objt_server(s->target);
1700
1701 if (conn_err == SF_ERR_NONE) {
1702 /* state = SI_ST_CON or SI_ST_EST now */
1703 if (srv)
1704 srv_inc_sess_ctr(srv);
1705 if (srv)
1706 srv_set_sess_last(srv);
1707 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1708 goto end;
1709 }
1710
1711 /* We have received a synchronous error. We might have to
1712 * abort, retry immediately or redispatch.
1713 */
1714 if (conn_err == SF_ERR_INTERNAL) {
1715 if (!si->err_type) {
1716 si->err_type = SI_ET_CONN_OTHER;
1717 }
1718
1719 if (srv)
1720 srv_inc_sess_ctr(srv);
1721 if (srv)
1722 srv_set_sess_last(srv);
1723 if (srv)
1724 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1725 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1726
1727 /* release other streams waiting for this server */
1728 sess_change_server(s, NULL);
1729 if (may_dequeue_tasks(srv, s->be))
1730 process_srv_queue(srv);
1731
1732 /* Failed and not retryable. */
1733 si_shutr(si);
1734 si_shutw(si);
1735 req->flags |= CF_WRITE_ERROR;
1736
1737 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1738
1739 /* we may need to know the position in the queue for logging */
1740 pendconn_cond_unlink(s->pend_pos);
1741
1742 /* no stream was ever accounted for this server */
1743 si->state = SI_ST_CLO;
1744 if (s->srv_error)
1745 s->srv_error(s, si);
1746 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1747 goto end;
1748 }
1749
1750 /* We are facing a retryable error, but we don't want to run a
1751 * turn-around now, as the problem is likely a source port
1752 * allocation problem, so we want to retry now.
1753 */
1754 si->state = SI_ST_CER;
1755 si->flags &= ~SI_FL_ERR;
1756 back_handle_st_cer(s);
1757
1758 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1759 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1760 }
1761 else if (si->state == SI_ST_QUE) {
1762 /* connection request was queued, check for any update */
1763 if (!pendconn_dequeue(s)) {
1764 /* The connection is not in the queue anymore. Either
1765 * we have a server connection slot available and we
1766 * go directly to the assigned state, or we need to
1767 * load-balance first and go to the INI state.
1768 */
1769 si->exp = TICK_ETERNITY;
1770 if (unlikely(!(s->flags & SF_ASSIGNED)))
1771 si->state = SI_ST_REQ;
1772 else {
1773 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1774 si->state = SI_ST_ASS;
1775 }
1776 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1777 goto end;
1778 }
1779
1780 /* Connection request still in queue... */
1781 if (si->flags & SI_FL_EXP) {
1782 /* ... and timeout expired */
1783 si->exp = TICK_ETERNITY;
1784 si->flags &= ~SI_FL_EXP;
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 if (srv)
1791 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1792 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1793 si_shutr(si);
1794 si_shutw(si);
1795 req->flags |= CF_WRITE_TIMEOUT;
1796 if (!si->err_type)
1797 si->err_type = SI_ET_QUEUE_TO;
1798 si->state = SI_ST_CLO;
1799 if (s->srv_error)
1800 s->srv_error(s, si);
1801 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1802 goto end;
1803 }
1804
1805 /* Connection remains in queue, check if we have to abort it */
1806 if (back_may_abort_req(req, s)) {
1807 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1808
1809 /* we may need to know the position in the queue for logging */
1810 pendconn_cond_unlink(s->pend_pos);
1811
1812 si->err_type |= SI_ET_QUEUE_ABRT;
1813 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1814 goto abort_connection;
1815 }
1816
1817 /* Nothing changed */
1818 }
1819 else if (si->state == SI_ST_TAR) {
1820 /* Connection request might be aborted */
1821 if (back_may_abort_req(req, s)) {
1822 si->err_type |= SI_ET_CONN_ABRT;
1823 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1824 goto abort_connection;
1825 }
1826
1827 if (!(si->flags & SI_FL_EXP))
1828 return; /* still in turn-around */
1829
1830 si->flags &= ~SI_FL_EXP;
1831 si->exp = TICK_ETERNITY;
1832
1833 /* we keep trying on the same server as long as the stream is
1834 * marked "assigned".
1835 * FIXME: Should we force a redispatch attempt when the server is down ?
1836 */
1837 if (s->flags & SF_ASSIGNED)
1838 si->state = SI_ST_ASS;
1839 else
1840 si->state = SI_ST_REQ;
1841
1842 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1843 }
1844
1845 end:
1846 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1847 return;
1848
1849abort_connection:
1850 /* give up */
1851 si->exp = TICK_ETERNITY;
1852 si->flags &= ~SI_FL_EXP;
1853 si_shutr(si);
1854 si_shutw(si);
1855 si->state = SI_ST_CLO;
1856 if (s->srv_error)
1857 s->srv_error(s, si);
1858 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1859 return;
1860}
1861
1862/* This function initiates a server connection request on a stream interface
1863 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1864 * a real connection to a server, indicating that a server has been assigned,
1865 * or SI_ST_EST for a successful connection to an applet. It may also return
1866 * SI_ST_QUE, or SI_ST_CLO upon error.
1867 */
1868void back_handle_st_req(struct stream *s)
1869{
1870 struct stream_interface *si = &s->si[1];
1871
1872 if (si->state != SI_ST_REQ)
1873 return;
1874
1875 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1876
1877 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1878 /* the applet directly goes to the EST state */
1879 struct appctx *appctx = objt_appctx(si->end);
1880
1881 if (!appctx || appctx->applet != __objt_applet(s->target))
1882 appctx = si_register_handler(si, objt_applet(s->target));
1883
1884 if (!appctx) {
1885 /* No more memory, let's immediately abort. Force the
1886 * error code to ignore the ERR_LOCAL which is not a
1887 * real error.
1888 */
1889 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
1890
1891 si_shutr(si);
1892 si_shutw(si);
1893 s->req.flags |= CF_WRITE_ERROR;
1894 si->err_type = SI_ET_CONN_RES;
1895 si->state = SI_ST_CLO;
1896 if (s->srv_error)
1897 s->srv_error(s, si);
1898 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1899 goto end;
1900 }
1901
1902 if (tv_iszero(&s->logs.tv_request))
1903 s->logs.tv_request = now;
1904 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1905 si->state = SI_ST_EST;
1906 si->err_type = SI_ET_NONE;
1907 be_set_sess_last(s->be);
1908
1909 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1910 /* let back_establish() finish the job */
1911 goto end;
1912 }
1913
1914 /* Try to assign a server */
1915 if (srv_redispatch_connect(s) != 0) {
1916 /* We did not get a server. Either we queued the
1917 * connection request, or we encountered an error.
1918 */
1919 if (si->state == SI_ST_QUE) {
1920 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1921 goto end;
1922 }
1923
1924 /* we did not get any server, let's check the cause */
1925 si_shutr(si);
1926 si_shutw(si);
1927 s->req.flags |= CF_WRITE_ERROR;
1928 if (!si->err_type)
1929 si->err_type = SI_ET_CONN_OTHER;
1930 si->state = SI_ST_CLO;
1931 if (s->srv_error)
1932 s->srv_error(s, si);
1933 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1934 goto end;
1935 }
1936
1937 /* The server is assigned */
1938 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1939 si->state = SI_ST_ASS;
1940 be_set_sess_last(s->be);
1941 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1942
1943 end:
1944 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1945}
1946
1947/* This function is called with (si->state == SI_ST_CON) meaning that a
1948 * connection was attempted and that the file descriptor is already allocated.
1949 * We must check for timeout, error and abort. Possible output states are
1950 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
1951 * works with connection-based streams. We know that there were no I/O event
1952 * when reaching this function. Timeouts and errors are *not* cleared.
1953 */
1954void back_handle_st_con(struct stream *s)
1955{
1956 struct stream_interface *si = &s->si[1];
1957 struct channel *req = &s->req;
1958 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001959
1960 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1961
1962 /* the client might want to abort */
1963 if ((rep->flags & CF_SHUTW) ||
1964 ((req->flags & CF_SHUTW_NOW) &&
1965 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
1966 si->flags |= SI_FL_NOLINGER;
1967 si_shutw(si);
1968 si->err_type |= SI_ET_CONN_ABRT;
1969 if (s->srv_error)
1970 s->srv_error(s, si);
1971 /* Note: state = SI_ST_DIS now */
1972 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 +01001973 goto end;
1974 }
1975
Willy Tarreau062df2c2020-01-10 06:17:03 +01001976 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001977 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01001978 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001979 if (!si->err_type) {
1980 if (si->flags & SI_FL_ERR)
1981 si->err_type = SI_ET_CONN_ERR;
1982 else
1983 si->err_type = SI_ET_CONN_TO;
1984 }
1985
1986 si->state = SI_ST_CER;
1987 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1988 }
1989
Willy Tarreau062df2c2020-01-10 06:17:03 +01001990 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001991 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1992}
1993
1994/* This function is called with (si->state == SI_ST_CER) meaning that a
1995 * previous connection attempt has failed and that the file descriptor
1996 * has already been released. Possible causes include asynchronous error
1997 * notification and time out. Possible output states are SI_ST_CLO when
1998 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
1999 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
2000 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
2001 * marked as in error state. Timeouts and errors are cleared before retrying.
2002 */
2003void back_handle_st_cer(struct stream *s)
2004{
2005 struct stream_interface *si = &s->si[1];
2006 struct conn_stream *cs = objt_cs(si->end);
2007 struct connection *conn = cs_conn(cs);
2008
2009 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2010
2011 si->exp = TICK_ETERNITY;
2012 si->flags &= ~SI_FL_EXP;
2013
2014 /* we probably have to release last stream from the server */
2015 if (objt_server(s->target)) {
2016 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
2017
2018 if (s->flags & SF_CURR_SESS) {
2019 s->flags &= ~SF_CURR_SESS;
2020 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
2021 }
2022
2023 if ((si->flags & SI_FL_ERR) &&
2024 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2025 /* We tried to connect to a server which is configured
2026 * with "verify required" and which doesn't have the
2027 * "verifyhost" directive. The server presented a wrong
2028 * certificate (a certificate for an unexpected name),
2029 * which implies that we have used SNI in the handshake,
2030 * and that the server doesn't have the associated cert
2031 * and presented a default one.
2032 *
2033 * This is a serious enough issue not to retry. It's
2034 * especially important because this wrong name might
2035 * either be the result of a configuration error, and
2036 * retrying will only hammer the server, or is caused
2037 * by the use of a wrong SNI value, most likely
2038 * provided by the client and we don't want to let the
2039 * client provoke retries.
2040 */
2041 si->conn_retries = 0;
2042 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2043 }
2044 }
2045
2046 /* ensure that we have enough retries left */
2047 si->conn_retries--;
2048 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2049 if (!si->err_type) {
2050 si->err_type = SI_ET_CONN_ERR;
2051 }
2052
2053 if (objt_server(s->target))
2054 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
2055 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
2056 sess_change_server(s, NULL);
2057 if (may_dequeue_tasks(objt_server(s->target), s->be))
2058 process_srv_queue(objt_server(s->target));
2059
2060 /* shutw is enough so stop a connecting socket */
2061 si_shutw(si);
2062 s->req.flags |= CF_WRITE_ERROR;
2063 s->res.flags |= CF_READ_ERROR;
2064
2065 si->state = SI_ST_CLO;
2066 if (s->srv_error)
2067 s->srv_error(s, si);
2068
2069 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2070 goto end;
2071 }
2072
2073 stream_choose_redispatch(s);
2074
2075 if (si->flags & SI_FL_ERR) {
2076 /* The error was an asynchronous connection error, and we will
2077 * likely have to retry connecting to the same server, most
2078 * likely leading to the same result. To avoid this, we wait
2079 * MIN(one second, connect timeout) before retrying. We don't
2080 * do it when the failure happened on a reused connection
2081 * though.
2082 */
2083
2084 int delay = 1000;
2085
2086 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2087 delay = s->be->timeout.connect;
2088
2089 if (!si->err_type)
2090 si->err_type = SI_ET_CONN_ERR;
2091
2092 /* only wait when we're retrying on the same server */
2093 if ((si->state == SI_ST_ASS ||
2094 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
2095 (s->be->srv_act <= 1)) && !(s->flags & SF_SRV_REUSED)) {
2096 si->state = SI_ST_TAR;
2097 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2098 }
2099 si->flags &= ~SI_FL_ERR;
2100 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2101 }
2102
2103 end:
2104 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2105}
2106
2107/* This function is called with (si->state == SI_ST_RDY) meaning that a
2108 * connection was attempted, that the file descriptor is already allocated,
2109 * and that it has succeeded. We must still check for errors and aborts.
2110 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2111 * and SI_ST_DIS (abort). This only works with connection-based streams.
2112 * Timeouts and errors are *not* cleared.
2113 */
2114void back_handle_st_rdy(struct stream *s)
2115{
2116 struct stream_interface *si = &s->si[1];
2117 struct channel *req = &s->req;
2118 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002119
2120 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2121 /* We know the connection at least succeeded, though it could have
2122 * since met an error for any other reason. At least it didn't time out
2123 * eventhough the timeout might have been reported right after success.
2124 * We need to take care of various situations here :
2125 * - everything might be OK. We have to switch to established.
2126 * - an I/O error might have been reported after a successful transfer,
2127 * which is not retryable and needs to be logged correctly, and needs
2128 * established as well
2129 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2130 * have validated a connection with incoming data (e.g. TCP with a
2131 * banner protocol), or just a successful connect() probe.
2132 * - the client might have requested a connection abort, this needs to
2133 * be checked before we decide to retry anything.
2134 */
2135
2136 /* it's still possible to handle client aborts or connection retries
2137 * before any data were sent.
2138 */
2139 if (!(req->flags & CF_WROTE_DATA)) {
2140 /* client abort ? */
2141 if ((rep->flags & CF_SHUTW) ||
2142 ((req->flags & CF_SHUTW_NOW) &&
2143 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2144 /* give up */
2145 si->flags |= SI_FL_NOLINGER;
2146 si_shutw(si);
2147 si->err_type |= SI_ET_CONN_ABRT;
2148 if (s->srv_error)
2149 s->srv_error(s, si);
2150 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2151 goto end;
2152 }
2153
2154 /* retryable error ? */
2155 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002156 if (!si->err_type)
2157 si->err_type = SI_ET_CONN_ERR;
2158 si->state = SI_ST_CER;
2159 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2160 goto end;
2161 }
2162 }
2163
2164 /* data were sent and/or we had no error, back_establish() will
2165 * now take over.
2166 */
2167 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2168 si->err_type = SI_ET_NONE;
2169 si->state = SI_ST_EST;
2170
2171 end:
2172 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2173}
2174
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002175/* sends a log message when a backend goes down, and also sets last
2176 * change date.
2177 */
2178void set_backend_down(struct proxy *be)
2179{
2180 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01002181 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002182
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002183 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002184 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002185 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2186 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002187}
2188
Willy Tarreau87b09662015-04-03 00:22:06 +02002189/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002190 * tries to extract an RDP cookie from the request buffer, and look for the
2191 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002192 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002193 * list. Nothing is performed if a server was already assigned.
2194 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002195int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002196{
2197 struct proxy *px = s->be;
2198 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002199 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002200 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002201 uint16_t port;
2202 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002203 char *p;
2204
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002205 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002206
Willy Tarreaue7dff022015-04-03 01:14:29 +02002207 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002208 goto no_cookie;
2209
Willy Tarreau37406352012-04-23 16:16:37 +02002210 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002211
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002212 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002213 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002214 goto no_cookie;
2215
Willy Tarreau04276f32017-01-06 17:41:29 +01002216 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2217 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2218 * server's IP address in network order, and "port" is the integer corresponding to the
2219 * server's port in network order. Comments please Emeric.
2220 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002221 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002222 if (*p != '.')
2223 goto no_cookie;
2224 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002225
2226 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002227 if (*p != '.')
2228 goto no_cookie;
2229
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002230 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002231 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002232 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002233 port == srv->svc_port &&
2234 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002235 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002236 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002237 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002238 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002239 break;
2240 }
2241 }
2242 srv = srv->next;
2243 }
2244
2245no_cookie:
2246 req->analysers &= ~an_bit;
2247 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002248 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002249 return 1;
2250}
2251
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002252int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002253 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002254 return px->down_time;
2255
2256 return now.tv_sec - px->last_change + px->down_time;
2257}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002258
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002259/*
2260 * This function returns a string containing the balancing
2261 * mode of the proxy in a format suitable for stats.
2262 */
2263
2264const char *backend_lb_algo_str(int algo) {
2265
2266 if (algo == BE_LB_ALGO_RR)
2267 return "roundrobin";
2268 else if (algo == BE_LB_ALGO_SRR)
2269 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002270 else if (algo == BE_LB_ALGO_FAS)
2271 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002272 else if (algo == BE_LB_ALGO_LC)
2273 return "leastconn";
2274 else if (algo == BE_LB_ALGO_SH)
2275 return "source";
2276 else if (algo == BE_LB_ALGO_UH)
2277 return "uri";
2278 else if (algo == BE_LB_ALGO_PH)
2279 return "url_param";
2280 else if (algo == BE_LB_ALGO_HH)
2281 return "hdr";
2282 else if (algo == BE_LB_ALGO_RCH)
2283 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002284 else if (algo == BE_LB_ALGO_NONE)
2285 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002286 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002287 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002288}
2289
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002290/* This function parses a "balance" statement in a backend section describing
2291 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002292 * returns -1, it will write an error message into the <err> buffer which will
2293 * automatically be allocated and must be passed as NULL. The trailing '\n'
2294 * will not be written. The function must be called with <args> pointing to the
2295 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002296 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002297int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002298{
2299 if (!*(args[0])) {
2300 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002301 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2302 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002303 return 0;
2304 }
2305
2306 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002307 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2308 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002309 }
Willy Tarreau9757a382009-10-03 12:56:50 +02002310 else if (!strcmp(args[0], "static-rr")) {
2311 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2312 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2313 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01002314 else if (!strcmp(args[0], "first")) {
2315 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2316 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2317 }
Willy Tarreau51406232008-03-10 22:04:20 +01002318 else if (!strcmp(args[0], "leastconn")) {
2319 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2320 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2321 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002322 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002323 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2324 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002325 curproxy->lbprm.arg_opt1 = 2;
2326
2327 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2328 const char *beg;
2329 char *end;
2330
2331 beg = args[0] + 7;
2332 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2333
2334 if (*end != ')') {
2335 if (!*end)
2336 memprintf(err, "random : missing closing parenthesis.");
2337 else
2338 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2339 return -1;
2340 }
2341
2342 if (curproxy->lbprm.arg_opt1 < 1) {
2343 memprintf(err, "random : number of draws must be at least 1.");
2344 return -1;
2345 }
2346 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002347 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002348 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002349 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2350 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002351 }
2352 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002353 int arg = 1;
2354
Willy Tarreau31682232007-11-29 15:38:04 +01002355 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2356 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreaua9a72492019-01-14 16:14:15 +01002357 curproxy->lbprm.arg_opt1 = 0; // "whole"
2358 curproxy->lbprm.arg_opt2 = 0; // "len"
2359 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002360
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002361 while (*args[arg]) {
2362 if (!strcmp(args[arg], "len")) {
2363 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002364 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002365 return -1;
2366 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002367 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002368 arg += 2;
2369 }
2370 else if (!strcmp(args[arg], "depth")) {
2371 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002372 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002373 return -1;
2374 }
2375 /* hint: we store the position of the ending '/' (depth+1) so
2376 * that we avoid a comparison while computing the hash.
2377 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002378 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002379 arg += 2;
2380 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01002381 else if (!strcmp(args[arg], "whole")) {
Willy Tarreaua9a72492019-01-14 16:14:15 +01002382 curproxy->lbprm.arg_opt1 = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002383 arg += 1;
2384 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002385 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01002386 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002387 return -1;
2388 }
2389 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002390 }
Willy Tarreau01732802007-11-01 22:48:15 +01002391 else if (!strcmp(args[0], "url_param")) {
2392 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002393 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002394 return -1;
2395 }
Willy Tarreau31682232007-11-29 15:38:04 +01002396 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2397 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002398
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002399 free(curproxy->lbprm.arg_str);
2400 curproxy->lbprm.arg_str = strdup(args[1]);
2401 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002402 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002403 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002404 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002405 return -1;
2406 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002407 }
Benoitaffb4812009-03-25 13:02:10 +01002408 }
2409 else if (!strncmp(args[0], "hdr(", 4)) {
2410 const char *beg, *end;
2411
2412 beg = args[0] + 4;
2413 end = strchr(beg, ')');
2414
2415 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002416 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002417 return -1;
2418 }
2419
2420 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2421 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2422
Willy Tarreau484ff072019-01-14 15:28:53 +01002423 free(curproxy->lbprm.arg_str);
2424 curproxy->lbprm.arg_len = end - beg;
2425 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002426 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002427
2428 if (*args[1]) {
2429 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002430 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002431 return -1;
2432 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002433 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002434 }
Emeric Brun736aa232009-06-30 17:56:00 +02002435 }
2436 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2437 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2438 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2439
2440 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2441 const char *beg, *end;
2442
2443 beg = args[0] + 11;
2444 end = strchr(beg, ')');
2445
2446 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002447 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002448 return -1;
2449 }
2450
Willy Tarreau484ff072019-01-14 15:28:53 +01002451 free(curproxy->lbprm.arg_str);
2452 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2453 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002454 }
2455 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002456 free(curproxy->lbprm.arg_str);
2457 curproxy->lbprm.arg_str = strdup("mstshash");
2458 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002459 }
2460 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002461 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002462 return -1;
2463 }
Willy Tarreau01732802007-11-01 22:48:15 +01002464 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002465 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002466 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 +01002467 return -1;
2468 }
2469 return 0;
2470}
2471
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002472
2473/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002474/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002475/************************************************************************/
2476
Willy Tarreau34db1082012-04-19 17:16:54 +02002477/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002478 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002479 * undefined behaviour.
2480 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002481static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002482smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002483{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002484 struct proxy *px;
2485
Willy Tarreau37406352012-04-23 16:16:37 +02002486 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002487 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002488 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002489
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002490 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002491
2492 return 1;
2493}
2494
Willy Tarreau37406352012-04-23 16:16:37 +02002495/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002496 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002497 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2498 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002499 */
2500static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002501smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002502{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002503 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002504
Willy Tarreau37406352012-04-23 16:16:37 +02002505 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002506 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002507 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2508 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002509 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002510 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002511 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002512 return 1;
2513}
2514
Willy Tarreau34db1082012-04-19 17:16:54 +02002515/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002516 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002517 * undefined behaviour.
2518 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002519static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002520smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002521{
2522 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002523
Willy Tarreau37406352012-04-23 16:16:37 +02002524 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002525 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002526 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002527
Willy Tarreau24e32d82012-04-23 23:55:44 +02002528 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002529 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002530 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002531
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002532 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002533 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002534 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002535 return 1;
2536 }
2537
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002538 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002539 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002540 }
2541
2542 return 1;
2543}
2544
Willy Tarreaua5e37562011-12-16 17:06:15 +01002545/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002546static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002547smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002548{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002549 struct proxy *px = NULL;
2550
2551 if (smp->strm)
2552 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002553 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002554 px = __objt_check(smp->sess->origin)->proxy;
2555 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002556 return 0;
2557
Willy Tarreauf853c462012-04-23 18:53:56 +02002558 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002559 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002560 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002561 return 1;
2562}
2563
Marcin Deranekd2471c22016-12-12 14:08:05 +01002564/* set string to the name of the backend */
2565static int
2566smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2567{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002568 struct proxy *px = NULL;
2569
2570 if (smp->strm)
2571 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002572 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002573 px = __objt_check(smp->sess->origin)->proxy;
2574 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002575 return 0;
2576
Christopher Fauletd1b44642020-04-30 09:51:15 +02002577 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002578 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002579 return 0;
2580
2581 smp->data.type = SMP_T_STR;
2582 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002583 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002584
2585 return 1;
2586}
2587
Willy Tarreaua5e37562011-12-16 17:06:15 +01002588/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002589static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002590smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002591{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002592 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002593
Christopher Fauletd1b44642020-04-30 09:51:15 +02002594 if (smp->strm)
2595 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002596 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002597 srv = __objt_check(smp->sess->origin)->server;
2598 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002599 return 0;
2600
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002601 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002602 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002603
2604 return 1;
2605}
2606
vkill1dfd1652019-10-30 16:58:14 +08002607/* set string to the name of the server */
2608static int
2609smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2610{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002611 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002612
Christopher Fauletd1b44642020-04-30 09:51:15 +02002613 if (smp->strm)
2614 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002615 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002616 srv = __objt_check(smp->sess->origin)->server;
2617 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002618 return 0;
2619
Christopher Fauletd1b44642020-04-30 09:51:15 +02002620 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002621 if (!smp->data.u.str.area)
2622 return 0;
2623
2624 smp->data.type = SMP_T_STR;
2625 smp->data.u.str.data = strlen(smp->data.u.str.area);
2626
2627 return 1;
2628}
2629
Willy Tarreau34db1082012-04-19 17:16:54 +02002630/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002631 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002632 * undefined behaviour.
2633 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002634static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002635smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002636{
Willy Tarreau37406352012-04-23 16:16:37 +02002637 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002638 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002639 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002640 return 1;
2641}
2642
Willy Tarreau34db1082012-04-19 17:16:54 +02002643/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002644 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002645 * undefined behaviour.
2646 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002647static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002648smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002649{
Willy Tarreau37406352012-04-23 16:16:37 +02002650 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002651 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002652 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002653 return 1;
2654}
2655
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002656/* set temp integer to the number of available connections across available
2657 * servers on the backend.
2658 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2659 * undefined behaviour.
2660 */
2661static int
2662smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2663{
2664 struct server *iterator;
2665 struct proxy *px;
2666 unsigned int maxconn;
2667
2668 smp->flags = SMP_F_VOL_TEST;
2669 smp->data.type = SMP_T_SINT;
2670 smp->data.u.sint = 0;
2671
2672 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2673 if (iterator->cur_state == SRV_ST_STOPPED)
2674 continue;
2675
2676 px = iterator->proxy;
2677 if (!srv_currently_usable(iterator) ||
2678 ((iterator->flags & SRV_F_BACKUP) &&
2679 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2680 continue;
2681
2682 if (iterator->maxconn == 0) {
2683 /* one active server is unlimited, return -1 */
2684 smp->data.u.sint = -1;
2685 return 1;
2686 }
2687
2688 maxconn = srv_dynamic_maxconn(iterator);
2689 if (maxconn > iterator->cur_sess)
2690 smp->data.u.sint += maxconn - iterator->cur_sess;
2691 }
2692
2693 return 1;
2694}
2695
Willy Tarreau34db1082012-04-19 17:16:54 +02002696/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002697 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002698 * undefined behaviour.
2699 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002700static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002701smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002702{
Willy Tarreau37406352012-04-23 16:16:37 +02002703 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002704 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002705 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002706 return 1;
2707}
2708
Willy Tarreaua5e37562011-12-16 17:06:15 +01002709/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002710 * by the number of running servers and rounded up. If there is no running
2711 * server, we return twice the total, just as if we had half a running server.
2712 * This is more or less correct anyway, since we expect the last server to come
2713 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002714 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002715 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002716 */
2717static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002718smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002719{
2720 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002721 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002722
Willy Tarreau37406352012-04-23 16:16:37 +02002723 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002724 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002725 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002726
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002727 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002728
2729 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002730 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002731 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002732 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002733
2734 return 1;
2735}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002736
Willy Tarreau34db1082012-04-19 17:16:54 +02002737/* set temp integer to the number of concurrent connections on the server in the backend.
2738 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2739 * undefined behaviour.
2740 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002741static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002742smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002743{
Willy Tarreauf853c462012-04-23 18:53:56 +02002744 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002745 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002746 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002747 return 1;
2748}
2749
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002750/* set temp integer to the number of available connections on the server in the backend.
2751 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2752 * undefined behaviour.
2753 */
2754static int
2755smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2756{
2757 unsigned int maxconn;
2758
2759 smp->flags = SMP_F_VOL_TEST;
2760 smp->data.type = SMP_T_SINT;
2761
2762 if (args->data.srv->maxconn == 0) {
2763 /* one active server is unlimited, return -1 */
2764 smp->data.u.sint = -1;
2765 return 1;
2766 }
2767
2768 maxconn = srv_dynamic_maxconn(args->data.srv);
2769 if (maxconn > args->data.srv->cur_sess)
2770 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2771 else
2772 smp->data.u.sint = 0;
2773
2774 return 1;
2775}
2776
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002777/* set temp integer to the number of connections pending in the server's queue.
2778 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2779 * undefined behaviour.
2780 */
2781static int
2782smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2783{
2784 smp->flags = SMP_F_VOL_TEST;
2785 smp->data.type = SMP_T_SINT;
2786 smp->data.u.sint = args->data.srv->nbpend;
2787 return 1;
2788}
2789
Tait Clarridge7896d522012-12-05 21:39:31 -05002790/* set temp integer to the number of enabled servers on the proxy.
2791 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2792 * undefined behaviour.
2793 */
2794static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002795smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002796{
2797 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002798 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002799 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002800 return 1;
2801}
2802
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002803static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2804{
2805
2806 struct proxy *px;
2807
2808 if (!smp_make_safe(smp))
2809 return 0;
2810
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002811 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002812 if (!px)
2813 return 0;
2814
2815 smp->data.type = SMP_T_SINT;
2816 smp->data.u.sint = be_usable_srv(px);
2817
2818 return 1;
2819}
2820
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002821static int
2822sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
2823{
2824 struct proxy *px;
2825 struct server *srv;
2826 char *bksep;
2827
2828 if (!smp_make_safe(smp))
2829 return 0;
2830
2831 bksep = strchr(smp->data.u.str.area, '/');
2832
2833 if (bksep) {
2834 *bksep = '\0';
2835 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
2836 if (!px)
2837 return 0;
2838 smp->data.u.str.area = bksep + 1;
2839 } else {
2840 if (!(smp->px->cap & PR_CAP_BE))
2841 return 0;
2842 px = smp->px;
2843 }
2844
2845 srv = server_find_by_name(px, smp->data.u.str.area);
2846 if (!srv)
2847 return 0;
2848
2849 smp->data.type = SMP_T_SINT;
2850 smp->data.u.sint = srv->nbpend;
2851 return 1;
2852}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002853
2854/* Note: must not be declared <const> as its list will be overwritten.
2855 * Please take care of keeping this list alphabetically sorted.
2856 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002857static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002858 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2859 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002860 { "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 +02002861 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002862 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002863 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2864 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2865 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2866 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2867 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002868 { "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 +02002869 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002870 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
vkill1dfd1652019-10-30 16:58:14 +08002871 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002872 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002873 { "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 +01002874 { /* END */ },
2875}};
2876
Willy Tarreau0108d902018-11-25 19:14:37 +01002877INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2878
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002879/* Note: must not be declared <const> as its list will be overwritten */
2880static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002881 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2882 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002883 { /* END */ },
2884}};
2885
Willy Tarreau0108d902018-11-25 19:14:37 +01002886INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002887
Willy Tarreau61612d42012-04-19 18:42:05 +02002888/* Note: must not be declared <const> as its list will be overwritten.
2889 * Please take care of keeping this list alphabetically sorted.
2890 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002891static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002892 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002893}};
2894
Willy Tarreau0108d902018-11-25 19:14:37 +01002895INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002896
Willy Tarreaubaaee002006-06-26 02:48:02 +02002897/*
2898 * Local variables:
2899 * c-indent-level: 8
2900 * c-basic-offset: 8
2901 * End:
2902 */