blob: a9e20e0782c89869e3388fdf57b74cf4b90419fc [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreauc7e42382012-08-24 19:22:53 +020022#include <common/buffer.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020023#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020025#include <common/debug.h>
Bhaskar98634f02013-10-29 23:30:51 -040026#include <common/hash.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010027#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010028#include <common/initcall.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010031#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010035#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020036#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020038#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020039#include <proto/frontend.h>
Christopher Fauletf7679ad2019-02-04 12:02:18 +010040#include <proto/http_htx.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020041#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010042#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020043#include <proto/lb_fwlc.h>
44#include <proto/lb_fwrr.h>
45#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020046#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020047#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010048#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010049#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020050#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020052#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020053#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010055#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010056#include <proto/server.h>
Olivier Houchard00cf70f2018-11-30 17:24:55 +010057#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020058#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010059#include <proto/stream_interface.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020060#include <proto/ssl_sock.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020061#include <proto/task.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020062
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050063int be_lastsession(const struct proxy *be)
64{
65 if (be->be_counters.last_sess)
66 return now.tv_sec - be->be_counters.last_sess;
67
68 return -1;
69}
70
Bhaskar98634f02013-10-29 23:30:51 -040071/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070072static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040073{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070074 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040075
76 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
77 case BE_LB_HFCN_DJB2:
78 hash = hash_djb2(key, len);
79 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010080 case BE_LB_HFCN_WT6:
81 hash = hash_wt6(key, len);
82 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010083 case BE_LB_HFCN_CRC32:
84 hash = hash_crc32(key, len);
85 break;
Bhaskar98634f02013-10-29 23:30:51 -040086 case BE_LB_HFCN_SDBM:
87 /* this is the default hash function */
88 default:
89 hash = hash_sdbm(key, len);
90 break;
91 }
92
93 return hash;
94}
95
Willy Tarreaubaaee002006-06-26 02:48:02 +020096/*
97 * This function recounts the number of usable active and backup servers for
98 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010099 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +0100100 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100101 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200102 * This functions is designed to be called before server's weight and state
103 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200104 *
105 * threads: this is the caller responsibility to lock data. For now, this
106 * function is called from lb modules, so it should be ok. But if you need to
107 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200109void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110{
111 struct server *srv;
112
Willy Tarreau20697042007-11-15 23:26:18 +0100113 px->srv_act = px->srv_bck = 0;
114 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100115 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200117 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100118 continue;
119
Willy Tarreauc93cd162014-05-13 15:54:22 +0200120 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100122 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100123 px->lbprm.fbck = srv;
124 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400125 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200126 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100127 } else {
128 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400129 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200130 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 }
132 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100133}
Willy Tarreau20697042007-11-15 23:26:18 +0100134
Willy Tarreaub625a082007-11-26 01:15:43 +0100135/* This function simply updates the backend's tot_weight and tot_used values
136 * after servers weights have been updated. It is designed to be used after
137 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200138 *
139 * threads: this is the caller responsibility to lock data. For now, this
140 * function is called from lb modules, so it should be ok. But if you need to
141 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100142 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200143void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100144{
Willy Tarreau20697042007-11-15 23:26:18 +0100145 if (px->srv_act) {
146 px->lbprm.tot_weight = px->lbprm.tot_wact;
147 px->lbprm.tot_used = px->srv_act;
148 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100149 else if (px->lbprm.fbck) {
150 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200151 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100152 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100153 }
154 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100155 px->lbprm.tot_weight = px->lbprm.tot_wbck;
156 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100157 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100158}
159
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200160/*
161 * This function tries to find a running server for the proxy <px> following
162 * the source hash method. Depending on the number of active/backup servers,
163 * it will either look for active servers, or for backup servers.
164 * If any server is found, it will be returned. If no valid server is found,
165 * NULL is returned.
166 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100167static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200168{
169 unsigned int h, l;
170
171 if (px->lbprm.tot_weight == 0)
172 return NULL;
173
174 l = h = 0;
175
176 /* note: we won't hash if there's only one server left */
177 if (px->lbprm.tot_used == 1)
178 goto hash_done;
179
180 while ((l + sizeof (int)) <= len) {
181 h ^= ntohl(*(unsigned int *)(&addr[l]));
182 l += sizeof (int);
183 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500184 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100185 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200186 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100187 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100188 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200189 else
190 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200191}
192
193/*
194 * This function tries to find a running server for the proxy <px> following
195 * the URI hash method. In order to optimize cache hits, the hash computation
196 * ends at the question mark. Depending on the number of active/backup servers,
197 * it will either look for active servers, or for backup servers.
198 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100199 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
200 * the "whole" optional argument (boolean), the "len" argument (numeric) and
201 * the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200202 *
203 * This code was contributed by Guillaume Dallaire, who also selected this hash
204 * algorithm out of a tens because it gave him the best results.
205 *
206 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100207static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700209 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200210 int c;
211 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400212 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200213
214 if (px->lbprm.tot_weight == 0)
215 return NULL;
216
217 /* note: we won't hash if there's only one server left */
218 if (px->lbprm.tot_used == 1)
219 goto hash_done;
220
Willy Tarreaua9a72492019-01-14 16:14:15 +0100221 if (px->lbprm.arg_opt2) // "len"
222 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223
Bhaskar98634f02013-10-29 23:30:51 -0400224 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200225 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200226 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200227 if (c == '/') {
228 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100229 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200230 break;
231 }
Willy Tarreaua9a72492019-01-14 16:14:15 +0100232 else if (c == '?' && !px->lbprm.arg_opt1) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200233 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200234 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200235 }
Bhaskar98634f02013-10-29 23:30:51 -0400236
237 hash = gen_hash(px, start, (end - start));
238
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500239 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100240 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200241 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100242 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100243 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200244 else
245 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200246}
247
Christopher Faulet5b517552017-06-09 14:17:53 +0200248/*
Willy Tarreau01732802007-11-01 22:48:15 +0100249 * This function tries to find a running server for the proxy <px> following
250 * the URL parameter hash method. It looks for a specific parameter in the
251 * URL and hashes it to compute the server ID. This is useful to optimize
252 * performance by avoiding bounces between servers in contexts where sessions
253 * are shared but cookies are not usable. If the parameter is not found, NULL
254 * is returned. If any server is found, it will be returned. If no valid server
255 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100256 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100257static 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 +0100258{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700259 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400260 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200261 const char *p;
262 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100263 int plen;
264
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200265 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100266 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100267 return NULL;
268
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200269 if ((p = memchr(uri, '?', uri_len)) == NULL)
270 return NULL;
271
Willy Tarreau01732802007-11-01 22:48:15 +0100272 p++;
273
274 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100275 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200276 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100277
278 while (uri_len > plen) {
279 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200280 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100281 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100283 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100285 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400287 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200288 uri_len -= plen + 1;
289
Bhaskar98634f02013-10-29 23:30:51 -0400290 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100291 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400292 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100293 }
Bhaskar98634f02013-10-29 23:30:51 -0400294 hash = gen_hash(px, start, (end - start));
295
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500296 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100297 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400298
Willy Tarreau6c30be52019-01-14 17:07:39 +0100299 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100300 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200301 else
302 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100303 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200304 }
305 /* skip to next parameter */
306 p = memchr(params, '&', uri_len);
307 if (!p)
308 return NULL;
309 p++;
310 uri_len -= (p - params);
311 params = p;
312 }
313 return NULL;
314}
315
316/*
317 * this does the same as the previous server_ph, but check the body contents
318 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100319static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200320{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700321 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100322 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200323 struct proxy *px = s->be;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100324 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100325 unsigned long len;
326 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200327
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 return NULL;
330
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100331 if (!IS_HTX_STRM(s)) {
332 struct http_txn *txn = s->txn;
333 struct http_msg *msg = &txn->req;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200334
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100335 len = http_body_bytes(msg);
336 p = params = c_ptr(req, -http_data_rewind(msg));
337
338 if (len == 0)
339 return NULL;
340 if (len > b_wrap(&req->buf) - p)
341 len = b_wrap(&req->buf) - p;
342
343 }
344 else {
345 struct htx *htx = htxbuf(&req->buf);
346 struct htx_blk *blk;
347
348 p = params = NULL;
349 len = 0;
Christopher Fauleta3f15502019-05-13 15:27:23 +0200350 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100351 enum htx_blk_type type = htx_get_blk_type(blk);
352 struct ist v;
353
354 if (type != HTX_BLK_DATA)
355 continue;
356 v = htx_get_blk_value(htx, blk);
357 p = params = v.ptr;
358 len = v.len;
359 break;
360 }
361 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362
363 while (len > plen) {
364 /* Look for the parameter name followed by an equal symbol */
365 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100366 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200367 /* OK, we have the parameter here at <params>, and
368 * the value after the equal sign, at <p>
369 * skip the equal symbol
370 */
371 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400372 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 len -= plen + 1;
374
Bhaskar98634f02013-10-29 23:30:51 -0400375 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200376 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100377 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400378 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100379 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200380 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
381 break;
382 return NULL; /* oh, no; this is not uri-encoded.
383 * This body does not contain parameters.
384 */
385 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200386 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400387 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388 /* should we break if vlen exceeds limit? */
389 }
Bhaskar98634f02013-10-29 23:30:51 -0400390 hash = gen_hash(px, start, (end - start));
391
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500392 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100393 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400394
Willy Tarreau6c30be52019-01-14 17:07:39 +0100395 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100396 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200397 else
398 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200399 }
400 }
Willy Tarreau01732802007-11-01 22:48:15 +0100401 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200402 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100403 if (!p)
404 return NULL;
405 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200406 len -= (p - params);
407 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100408 }
409 return NULL;
410}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200412
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413/*
Benoitaffb4812009-03-25 13:02:10 +0100414 * This function tries to find a running server for the proxy <px> following
415 * the Header parameter hash method. It looks for a specific parameter in the
416 * URL and hashes it to compute the server ID. This is useful to optimize
417 * performance by avoiding bounces between servers in contexts where sessions
418 * are shared but cookies are not usable. If the parameter is not found, NULL
419 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100420 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
421 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100422 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100423static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100424{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700425 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100426 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100427 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100428 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100429 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400430 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100431
432 /* tot_weight appears to mean srv_count */
433 if (px->lbprm.tot_weight == 0)
434 return NULL;
435
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200436 /* note: we won't hash if there's only one server left */
437 if (px->lbprm.tot_used == 1)
438 goto hash_done;
439
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100440 if (!IS_HTX_STRM(s)) {
441 struct http_txn *txn = s->txn;
442 struct hdr_ctx ctx = { .idx = 0 };
443
444 /* if the message is chunked, we skip the chunk size, but use the value as len */
445 http_find_header2(px->lbprm.arg_str, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)),
446 &txn->hdr_idx, &ctx);
447
448 /* if the header is not found or empty, let's fallback to round robin */
449 if (!ctx.idx || !ctx.vlen)
450 return NULL;
451
452 /* Found the param_name in the headers.
453 * we will compute the hash based on this value ctx.val.
454 */
455 len = ctx.vlen;
456 p = (char *)ctx.line + ctx.val;
457 }
458 else {
459 struct htx *htx = htxbuf(&s->req.buf);
460 struct http_hdr_ctx ctx = { .blk = NULL };
461
462 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
463
464 /* if the header is not found or empty, let's fallback to round robin */
465 if (!ctx.blk || !ctx.value.len)
466 return NULL;
467
468 /* Found a the param_name in the headers.
469 * we will compute the hash based on this value ctx.val.
470 */
471 len = ctx.value.len;
472 p = ctx.value.ptr;
473 }
474
Willy Tarreau9fed8582019-01-14 16:04:54 +0100475 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400476 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100477 } else {
478 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100479 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100480 /* special computation, use only main domain name, not tld/host
481 * going back from the end of string, start hashing at first
482 * dot stop at next.
483 * This is designed to work with the 'Host' header, and requires
484 * a special option to activate this.
485 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100486 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100487 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100488 if (dohash) {
489 /* Rewind the pointer until the previous char
490 * is a dot, this will allow to set the start
491 * position of the domain. */
492 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100493 break;
Benoitaffb4812009-03-25 13:02:10 +0100494 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100495 else if (*p == '.') {
496 /* The pointer is rewinded to the dot before the
497 * tld, we memorize the end of the domain and
498 * can enter the domain processing. */
499 end = p;
500 dohash = 1;
501 }
Benoitaffb4812009-03-25 13:02:10 +0100502 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100503 len--;
Benoitaffb4812009-03-25 13:02:10 +0100504 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100505 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400506 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100507 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500508 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100509 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200510 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100511 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100512 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200513 else
514 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100515}
516
Willy Tarreau34db1082012-04-19 17:16:54 +0200517/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100518static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200519{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700520 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200521 struct proxy *px = s->be;
522 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200523 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200524 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200525 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200526
527 /* tot_weight appears to mean srv_count */
528 if (px->lbprm.tot_weight == 0)
529 return NULL;
530
Willy Tarreau37406352012-04-23 16:16:37 +0200531 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200532
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200533 rewind = co_data(&s->req);
534 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200535
Willy Tarreau484ff072019-01-14 15:28:53 +0100536 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200537 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100538
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200539 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200540
Willy Tarreau37406352012-04-23 16:16:37 +0200541 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200542 return NULL;
543
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200544 /* note: we won't hash if there's only one server left */
545 if (px->lbprm.tot_used == 1)
546 goto hash_done;
547
Willy Tarreau484ff072019-01-14 15:28:53 +0100548 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200549 * we will compute the hash based on this value ctx.val.
550 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200551 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400552
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500553 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100554 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200555 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100556 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100557 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200558 else
559 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200560}
Christopher Faulet5b517552017-06-09 14:17:53 +0200561
Willy Tarreau760e81d2018-05-03 07:20:40 +0200562/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100563static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200564{
565 unsigned int hash = 0;
566 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100567 struct server *prev, *curr;
568 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200569
570 /* tot_weight appears to mean srv_count */
571 if (px->lbprm.tot_weight == 0)
572 return NULL;
573
Willy Tarreau21c741a2019-01-14 18:14:27 +0100574 curr = NULL;
575 do {
576 prev = curr;
577 /* ensure all 32 bits are covered as long as RAND_MAX >= 65535 */
578 hash = ((uint64_t)random() * ((uint64_t)RAND_MAX + 1)) ^ random();
579 curr = chash_get_server_hash(px, hash, avoid);
580 if (!curr)
581 break;
582
583 /* compare the new server to the previous best choice and pick
584 * the one with the least currently served requests.
585 */
586 if (prev && prev != curr &&
587 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
588 curr = prev;
589 } while (--draws > 0);
590
591 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200592}
593
Benoitaffb4812009-03-25 13:02:10 +0100594/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200595 * This function applies the load-balancing algorithm to the stream, as
596 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200597 * 'assigned'.
598 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200599 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100601 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200602 * The function tries to keep the original connection slot if it reconnects to
603 * the same server, otherwise it releases it and tries to offer it.
604 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200605 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200606 *
607 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100608 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200609 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
610 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200611 * SRV_STATUS_INTERNAL for other unrecoverable errors.
612 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200613 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100614 * it does not need to be called anymore. This means that target_srv(&s->target)
615 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200616 *
617 */
618
Willy Tarreau87b09662015-04-03 00:22:06 +0200619int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200620{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100621 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200622 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100623 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200624 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100625
Simon Horman8effd3d2011-08-13 08:03:52 +0900626 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627
Willy Tarreau7c669d72008-06-20 15:04:11 +0200628 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200629 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200630 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100631
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100632 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200633 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634
Willy Tarreau7c669d72008-06-20 15:04:11 +0200635 /* We have to release any connection slot before applying any LB algo,
636 * otherwise we may erroneously end up with no available slot.
637 */
638 if (conn_slot)
639 sess_change_server(s, NULL);
640
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100641 /* We will now try to find the good server and store it into <objt_server(s->target)>.
642 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200643 * as well as if no server is available (check error code).
644 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100645
Willy Tarreau827aee92011-03-10 16:55:02 +0100646 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100647 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100648
Olivier Houchardba4fff52018-12-01 14:40:40 +0100649 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200650 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100651 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100652 struct sess_srv_list *srv_list;
653 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
654 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100655
656 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200657 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100658 (!s->be->max_ka_queue ||
659 server_has_room(tmpsrv) || (
660 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
661 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100662 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100663 if (conn->flags & CO_FL_CONNECTED) {
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100664
Olivier Houchardba4fff52018-12-01 14:40:40 +0100665 srv = tmpsrv;
666 s->target = &srv->obj_type;
667 goto out_ok;
668 }
669 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100670 }
671 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100672 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100673 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200674
Willy Tarreau7c669d72008-06-20 15:04:11 +0200675 /* we must check if we have at least one server available */
676 if (!s->be->lbprm.tot_weight) {
677 err = SRV_STATUS_NOSRV;
678 goto out;
679 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200680
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200681 /* First check whether we need to fetch some data or simply call
682 * the LB lookup function. Only the hashing functions will need
683 * some input data in fact, and will support multiple algorithms.
684 */
685 switch (s->be->lbprm.algo & BE_LB_LKUP) {
686 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200688 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200689
Willy Tarreauf09c6602012-02-13 17:12:08 +0100690 case BE_LB_LKUP_FSTREE:
691 srv = fas_get_next_server(s->be, prev_srv);
692 break;
693
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200694 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100695 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200696 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200697
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200698 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200699 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200700 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200701 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100702 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100703 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100704 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200705 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100706 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200707 break;
708 }
709 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200710 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200711 err = SRV_STATUS_INTERNAL;
712 goto out;
713 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200714
715 switch (s->be->lbprm.algo & BE_LB_PARM) {
716 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200717 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200718 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200719 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200720 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100721 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200722 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200723 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200724 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200725 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100726 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200727 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200728 else {
729 /* unknown IP family */
730 err = SRV_STATUS_INTERNAL;
731 goto out;
732 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200733 break;
734
735 case BE_LB_HASH_URI:
736 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200737 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100738 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100739 if (!IS_HTX_STRM(s))
740 srv = get_server_uh(s->be,
741 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
742 s->txn->req.sl.rq.u_l, prev_srv);
743 else {
744 struct ist uri;
745
Christopher Faulet297fbb42019-05-13 14:41:27 +0200746 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100747 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
748 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200749 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200750
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200751 case BE_LB_HASH_PRM:
752 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200753 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100754 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100755
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100756 if (!IS_HTX_STRM(s))
757 srv = get_server_ph(s->be,
758 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
759 s->txn->req.sl.rq.u_l, prev_srv);
760 else {
761 struct ist uri;
762
Christopher Faulet297fbb42019-05-13 14:41:27 +0200763 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100764 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
765 }
Willy Tarreau61a21a32011-03-01 20:35:49 +0100766
Willy Tarreaueee5b512015-04-03 23:46:31 +0200767 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau59884a62019-01-02 14:48:31 +0100768 srv = get_server_ph_post(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200769 break;
Benoitaffb4812009-03-25 13:02:10 +0100770
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200771 case BE_LB_HASH_HDR:
772 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200773 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100774 break;
Willy Tarreau59884a62019-01-02 14:48:31 +0100775 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200776 break;
777
778 case BE_LB_HASH_RDP:
779 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100780 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200781 break;
782
783 default:
784 /* unknown balancing algorithm */
785 err = SRV_STATUS_INTERNAL;
786 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100787 }
Emeric Brun736aa232009-06-30 17:56:00 +0200788
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200789 /* If the hashing parameter was not found, let's fall
790 * back to round robin on the map.
791 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100792 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100793 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100794 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200795 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100796 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200797 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200798
799 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200800 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200801
Willy Tarreau7c669d72008-06-20 15:04:11 +0200802 default:
803 /* unknown balancing algorithm */
804 err = SRV_STATUS_INTERNAL;
805 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200806 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200807
Willy Tarreau827aee92011-03-10 16:55:02 +0100808 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200809 err = SRV_STATUS_FULL;
810 goto out;
811 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100812 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100813 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
814 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100815 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100816 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200817 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200818 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100819 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100821 else if ((s->be->options & PR_O_HTTP_PROXY)) {
822 conn = cs_conn(objt_cs(s->si[1].end));
823
824 if (conn && is_addr(&conn->addr.to)) {
825 /* in proxy mode, we need a valid destination address */
826 s->target = &s->be->obj_type;
827 } else {
828 err = SRV_STATUS_NOSRV;
829 goto out;
830 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100831 }
832 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200833 err = SRV_STATUS_NOSRV;
834 goto out;
835 }
836
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100837out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200838 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200839 err = SRV_STATUS_OK;
840 out:
841
842 /* Either we take back our connection slot, or we offer it to someone
843 * else if we don't need it anymore.
844 */
845 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100846 if (conn_slot == srv) {
847 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200848 } else {
849 if (may_dequeue_tasks(conn_slot, s->be))
850 process_srv_queue(conn_slot);
851 }
852 }
853
854 out_err:
855 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200856}
857
Willy Tarreaubaaee002006-06-26 02:48:02 +0200858/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200859 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200860 * The address is taken from the currently assigned server, or from the
861 * dispatch or transparent address.
862 *
863 * It may return :
864 * SRV_STATUS_OK if everything is OK.
865 * SRV_STATUS_INTERNAL for other unrecoverable errors.
866 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200867 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 * not cleared, so it's to the caller to clear it if required.
869 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200870 * The caller is responsible for having already assigned a connection
871 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200872 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 */
Olivier Houchard201b9f42018-11-21 00:16:29 +0100874int assign_server_address(struct stream *s, struct connection *srv_conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200875{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200876 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200877
Christopher Faulet56803b12017-11-24 16:06:18 +0100878 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200879
Willy Tarreaue7dff022015-04-03 01:14:29 +0200880 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200881 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200882 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200883 return SRV_STATUS_INTERNAL;
884
Willy Tarreau1e582e52018-09-20 11:29:28 +0200885 srv_conn->addr.to = __objt_server(s->target)->addr;
886 set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200888 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200889 /* if the server has no address, we use the same address
890 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200891 * locally on multiple addresses at once. Nothing is done
892 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200893 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200894 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200895
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200896 if (cli_conn->addr.to.ss_family == AF_INET) {
897 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
898 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
899 ((struct sockaddr_in6 *)&srv_conn->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200900 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200901 }
902
Willy Tarreaubaaee002006-06-26 02:48:02 +0200903 /* if this server remaps proxied ports, we'll use
904 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200905 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100906 int base_port;
907
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200908 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100909
910 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200911 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100912
913 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200914 base_port += get_host_port(&srv_conn->addr.to);
915 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200916 }
917 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200918 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200919 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200920 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200922 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200923 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200924 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200926 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
927 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100929 else if (s->be->options & PR_O_HTTP_PROXY) {
930 /* If HTTP PROXY option is set, then server is already assigned
931 * during incoming client request parsing. */
932 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100933 else {
934 /* no server and no LB algorithm ! */
935 return SRV_STATUS_INTERNAL;
936 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100938 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100939 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100940
Willy Tarreaue7dff022015-04-03 01:14:29 +0200941 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200942 return SRV_STATUS_OK;
943}
944
Willy Tarreau87b09662015-04-03 00:22:06 +0200945/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200946 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200947 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200948 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200949 * be called before any connection and after any retry or redispatch occurs.
950 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200951 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200952 *
953 * Returns :
954 *
955 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100956 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200957 * SRV_STATUS_QUEUED if the connection has been queued.
958 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100959 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200960 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200961 * SRV_STATUS_INTERNAL for other unrecoverable errors.
962 *
963 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200964int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965{
966 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100967 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200968 int err;
969
970 if (s->pend_pos)
971 return SRV_STATUS_INTERNAL;
972
Willy Tarreau7c669d72008-06-20 15:04:11 +0200973 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200974 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100975 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100976
Willy Tarreau7c669d72008-06-20 15:04:11 +0200977 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100978 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200979 /* This stream was previously assigned to a server. We have to
980 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200981 * - if the server changed :
982 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200983 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200984 * - increment srv->redispatches and be->redispatches
985 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100986 */
987
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100988 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200989 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
990 s->txn->flags &= ~TX_CK_MASK;
991 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200992 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200993 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +0100994 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
995 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200996 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +0100997 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
998 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100999 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001000 }
1001 }
1002
Willy Tarreaubaaee002006-06-26 02:48:02 +02001003 switch (err) {
1004 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +02001005 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001006 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001007 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001008 return SRV_STATUS_OK; /* dispatch or proxy mode */
1009
1010 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +01001011 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001012 return SRV_STATUS_OK;
1013
Willy Tarreau87b09662015-04-03 00:22:06 +02001014 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +02001015 * connection slot yet. Either it is a redispatch, or it was
1016 * assigned from persistence information (direct mode).
1017 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001018 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001019 /* server scheduled for redirection, and already assigned. We
1020 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +01001021 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001022 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +01001023 return SRV_STATUS_OK;
1024 }
1025
Willy Tarreau87b09662015-04-03 00:22:06 +02001026 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001027 * We know we have to queue it into the server's queue, so if a maxqueue
1028 * is set on the server, we must also check that the server's queue is
1029 * not full, in which case we have to return FULL.
1030 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001031 if (srv->maxconn &&
1032 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +02001033
Willy Tarreau827aee92011-03-10 16:55:02 +01001034 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +02001035 return SRV_STATUS_FULL;
1036
Willy Tarreaubaaee002006-06-26 02:48:02 +02001037 p = pendconn_add(s);
1038 if (p)
1039 return SRV_STATUS_QUEUED;
1040 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001041 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001042 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001043
1044 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +01001045 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001046 return SRV_STATUS_OK;
1047
1048 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +02001049 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001050 p = pendconn_add(s);
1051 if (p)
1052 return SRV_STATUS_QUEUED;
1053 else
Willy Tarreau7c669d72008-06-20 15:04:11 +02001054 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001055
1056 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +02001057 return err;
1058
Willy Tarreaubaaee002006-06-26 02:48:02 +02001059 case SRV_STATUS_INTERNAL:
1060 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001061
Willy Tarreaubaaee002006-06-26 02:48:02 +02001062 default:
1063 return SRV_STATUS_INTERNAL;
1064 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001065}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001066
Willy Tarreaub1d67742010-03-29 19:36:59 +02001067/* If an explicit source binding is specified on the server and/or backend, and
1068 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001069 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001070 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001071 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001072static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001073{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001074#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001075 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001076 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001077 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001078 struct connection *srv_conn;
1079
1080 if (objt_cs(s->si[1].end))
1081 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1082 else
1083 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001084
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001085 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1086 src = &srv->conn_src;
1087 else if (s->be->conn_src.opts & CO_SRC_BIND)
1088 src = &s->be->conn_src;
1089 else
1090 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001091
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001092 switch (src->opts & CO_SRC_TPROXY_MASK) {
1093 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001094 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001095 break;
1096 case CO_SRC_TPROXY_CLI:
1097 case CO_SRC_TPROXY_CIP:
1098 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001099 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001100 if (cli_conn)
1101 srv_conn->addr.from = cli_conn->addr.from;
1102 else
1103 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001104 break;
1105 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +02001106 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001107 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001108 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001109
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001110 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001111 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1112 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1113 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001114 if (!IS_HTX_STRM(s)) {
1115 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001116
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001117 c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req));
1118 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1119 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1120 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
1121 htonl(inetaddr_host_lim(vptr, vptr + vlen));
1122 }
1123 c_adv(&s->req, rewind);
1124 }
1125 else {
1126 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1127 ist2(src->bind_hdr_name, src->bind_hdr_len),
1128 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
1129 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
1130 htonl(inetaddr_host_lim(vptr, vptr + vlen));
1131 }
Willy Tarreaubce70882009-09-07 11:51:47 +02001132 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001133 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001134 break;
1135 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001136 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001137 }
1138#endif
1139}
1140
Lukas Tribusda95fd92018-11-25 13:21:27 +01001141#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001142/*
1143 * Pick the right mux once the connection is established, we should now have
Willy Tarreau94031d32018-12-19 14:36:29 +01001144 * an alpn if available, so we are now able to choose. In this specific case
1145 * the connection's context is &si[i].end.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001146 */
1147static int conn_complete_server(struct connection *conn)
1148{
1149 struct conn_stream *cs = NULL;
Willy Tarreau94031d32018-12-19 14:36:29 +01001150 struct stream *s = container_of(conn->ctx, struct stream, si[1].end);
Olivier Houchardbf024f02018-11-29 17:08:53 +01001151 struct server *srv;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001152
Olivier Houchard70d9b2f2018-11-29 16:57:32 +01001153 task_wakeup(s->task, TASK_WOKEN_IO);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001154 conn_clear_xprt_done_cb(conn);
1155 /* Verify if the connection just established. */
1156 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
1157 conn->flags |= CO_FL_CONNECTED;
1158
Olivier Houchard201b9f42018-11-21 00:16:29 +01001159 if (conn->flags & CO_FL_ERROR)
1160 goto fail;
Olivier Houchardd76bd2d2018-11-29 16:58:49 +01001161 si_detach_endpoint(&s->si[1]);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001162 cs = si_alloc_cs(&s->si[1], conn);
1163 if (!cs)
1164 goto fail;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001165 if (conn_install_mux_be(conn, cs, s->sess) < 0)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001166 goto fail;
Olivier Houchardbf024f02018-11-29 17:08:53 +01001167 srv = objt_server(s->target);
Olivier Houchard7aec9ed2018-12-14 19:31:51 +01001168 if (srv && ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
Olivier Houchardbf024f02018-11-29 17:08:53 +01001169 conn->mux->avail_streams(conn) > 0)
1170 LIST_ADD(&srv->idle_conns[tid], &conn->list);
1171
Olivier Houchard201b9f42018-11-21 00:16:29 +01001172 return 0;
1173
1174fail:
Willy Tarreaud8220132019-01-28 16:33:35 +01001175 si_detach_endpoint(&s->si[1]);
1176
Olivier Houchard201b9f42018-11-21 00:16:29 +01001177 if (cs)
1178 cs_free(cs);
1179 /* kill the connection now */
1180 conn_stop_tracking(conn);
1181 conn_full_close(conn);
1182 conn_free(conn);
Olivier Houchard4f417512018-12-27 18:59:46 +01001183 /* Let process_stream know it went wrong */
1184 s->si[1].flags |= SI_FL_ERR;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001185 return -1;
1186}
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001187#endif
Olivier Houchard201b9f42018-11-21 00:16:29 +01001188
Willy Tarreaub1d67742010-03-29 19:36:59 +02001189
Willy Tarreaubaaee002006-06-26 02:48:02 +02001190/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001191 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001192 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001193 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001194 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001195 * - SF_ERR_NONE if everything's OK
1196 * - SF_ERR_SRVTO if there are no more servers
1197 * - SF_ERR_SRVCL if the connection was refused by the server
1198 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1199 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1200 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001201 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001202 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001203 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001204 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001205int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001206{
Olivier Houchard522eea72017-11-03 16:27:47 +01001207 struct connection *cli_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001208 struct connection *srv_conn = NULL;
1209 struct connection *old_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001210 struct conn_stream *srv_cs = NULL;
Willy Tarreau827aee92011-03-10 16:55:02 +01001211 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001212 int reuse = 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001213 int reuse_orphan = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001214 int init_mux = 0;
Olivier Houchard4dc85532019-01-29 15:50:38 +01001215 int alloced_cs = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001216 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001217
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001218
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001219 /* Some, such as http_proxy and the LUA, create their connection and
1220 * conn_stream manually, so if we already have a conn_stream, try
1221 * to use it.
1222 */
1223 srv_cs = objt_cs(s->si[1].end);
Olivier Houchard9ef51552019-01-28 15:33:15 +01001224 if (!srv_cs)
1225 srv_conn = objt_conn(s->si[1].end);
1226 else
1227 srv_conn = cs_conn(srv_cs);
1228
1229 if (srv_conn) {
1230 if (!srv_conn->target || srv_conn->target == s->target) {
1231 srv_conn->flags &= ~(CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH);
1232 if (srv_cs)
Willy Tarreau7bb39d72019-06-03 14:23:33 +02001233 srv_cs->flags &= ~(CS_FL_ERROR | CS_FL_EOS);
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001234 reuse = 1;
Olivier Houchard9ef51552019-01-28 15:33:15 +01001235 old_conn = srv_conn;
1236 } else {
1237 srv_conn = NULL;
1238 si_release_endpoint(&s->si[1]);
Olivier Houchardac1ce6f2018-12-08 19:08:48 +01001239 }
Olivier Houchard9ef51552019-01-28 15:33:15 +01001240 }
1241
1242 if (!old_conn) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001243 struct sess_srv_list *srv_list;
1244 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
1245 if (srv_list->target == s->target) {
1246 list_for_each_entry(srv_conn, &srv_list->conn_list,
Olivier Houchard2442f682018-12-01 17:03:38 +01001247 session_list) {
1248 if (conn_xprt_ready(srv_conn) &&
1249 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1250 reuse = 1;
1251 break;
1252 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001253 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001254 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001255 }
1256 }
Olivier Houchardc3fa6382018-12-27 15:29:53 +01001257 if (reuse == 0) {
1258 srv_conn = NULL;
Olivier Houchard351411f2018-12-27 17:20:54 +01001259 if (!LIST_ISEMPTY(&s->sess->srv_list)) {
1260 srv_list = LIST_ELEM(s->sess->srv_list.n,
1261 struct sess_srv_list *, srv_list);
1262 if (!LIST_ISEMPTY(&srv_list->conn_list))
1263 srv_conn = LIST_ELEM(srv_list->conn_list.n,
1264 struct connection *, session_list);
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001265 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001266
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001267 }
1268 }
1269 old_conn = srv_conn;
1270
Willy Tarreau7b004922015-08-04 19:34:21 +02001271 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001272
Willy Tarreau8dff9982015-08-04 20:45:52 +02001273 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001274 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001275
Willy Tarreau449d74a2015-08-05 17:16:33 +02001276 /* Below we pick connections from the safe or idle lists based
1277 * on the strategy, the fact that this is a first or second
1278 * (retryable) request, with the indicated priority (1 or 2) :
1279 *
1280 * SAFE AGGR ALWS
1281 *
1282 * +-----+-----+ +-----+-----+ +-----+-----+
1283 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1284 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1285 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1286 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1287 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1288 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1289 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001290 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001291 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1292 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001293 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001294 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001295 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001296 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1297 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001298 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001299 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001300 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001301 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001302 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001303 } else if (srv->idle_orphan_conns && !LIST_ISEMPTY(&srv->idle_orphan_conns[tid]) &&
1304 (((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) ||
1305 (((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
1306 s->txn && (s->txn->flags & TX_NOT_FIRST)))) {
Olivier Houchard7f1bc312019-01-22 16:11:03 +01001307 srv_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid],
Willy Tarreauc912f942019-02-28 16:06:56 +01001308 struct connection *, list);
1309 if (srv_conn)
Olivier Houchard7f1bc312019-01-22 16:11:03 +01001310 reuse_orphan = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001311 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001312
Willy Tarreau449d74a2015-08-05 17:16:33 +02001313 /* If we've picked a connection from the pool, we now have to
1314 * detach it. We may have to get rid of the previous idle
1315 * connection we had, so for this we try to swap it with the
1316 * other owner's. That way it may remain alive for others to
1317 * pick.
1318 */
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001319 if (srv_conn)
Willy Tarreau8dff9982015-08-04 20:45:52 +02001320 reuse = 1;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001321 }
1322
Willy Tarreau34601a82013-12-15 16:33:46 +01001323 if (reuse) {
1324 /* Disable connection reuse if a dynamic source is used.
1325 * As long as we don't share connections between servers,
1326 * we don't need to disable connection reuse on no-idempotent
1327 * requests nor when PROXY protocol is used.
1328 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001329 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1330 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1331 reuse = 0;
1332 }
1333 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1334 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1335 reuse = 0;
1336 }
1337 }
Olivier Houchard88698d92019-04-16 19:07:22 +02001338 if ((!reuse || (srv_conn && !(srv_conn->flags & CO_FL_CONNECTED)))
1339 && ha_used_fds > global.tune.pool_high_count) {
1340 struct connection *tokill_conn;
1341
1342 /* We can't reuse a connection, and e have more FDs than deemd
1343 * acceptable, attempt to kill an idling connection
1344 */
1345 /* First, try from our own idle list */
1346 tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid],
1347 struct connection *, list);
1348 if (tokill_conn)
1349 tokill_conn->mux->destroy(tokill_conn->ctx);
1350 /* If not, iterate over other thread's idling pool, and try to grab one */
1351 else {
1352 int i;
1353
1354 for (i = 0; i < global.nbthread; i++) {
1355 if (i == tid)
1356 continue;
Willy Tarreau08e2b412019-05-26 11:50:08 +02001357
1358 // just silence stupid gcc which reports an absurd
1359 // out-of-bounds warning for <i> which is always
1360 // exactly zero without threads, but it seems to
1361 // see it possibly larger.
1362 ALREADY_CHECKED(i);
1363
Olivier Houchard88698d92019-04-16 19:07:22 +02001364 tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[i],
1365 struct connection *, list);
1366 if (tokill_conn) {
1367 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1368
1369 LIST_ADDQ_LOCKED(&toremove_connections[i],
1370 &tokill_conn->list);
1371 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
1372 break;
1373 }
1374 }
1375 }
1376
1377 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001378 /* If we're really reusing the connection, remove it from the orphan
1379 * list and add it back to the idle list.
1380 */
Christopher Faulet46451d62019-04-19 15:39:22 +02001381 if (reuse) {
1382 if (reuse_orphan) {
1383 srv_conn->idle_time = 0;
1384 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1385 __ha_barrier_atomic_store();
1386 srv->curr_idle_thr[tid]--;
1387 LIST_ADDQ(&srv->idle_conns[tid], &srv_conn->list);
1388 }
1389 else {
1390 if (srv_conn->flags & CO_FL_SESS_IDLE) {
1391 struct session *sess = srv_conn->owner;
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001392
Christopher Faulet46451d62019-04-19 15:39:22 +02001393 srv_conn->flags &= ~CO_FL_SESS_IDLE;
1394 sess->idle_conns--;
1395 }
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001396 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001397 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001398
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001399 /* We're about to use another connection, let the mux know we're
1400 * done with this one
1401 */
Olivier Houchardc685d702018-12-28 16:20:25 +01001402 if (old_conn != srv_conn && old_conn && reuse && !reuse_orphan) {
1403 struct session *sess = srv_conn->owner;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001404
Olivier Houchardc685d702018-12-28 16:20:25 +01001405 if (sess) {
1406 if (old_conn && !(old_conn->flags & CO_FL_PRIVATE) &&
1407 old_conn->mux != NULL) {
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001408 if (old_conn->flags & CO_FL_SESS_IDLE)
1409 s->sess->idle_conns--;
Olivier Houchardc685d702018-12-28 16:20:25 +01001410 session_unown_conn(s->sess, old_conn);
1411 old_conn->owner = sess;
Willy Tarreau3c4e19f2019-02-01 11:54:23 +01001412 if (!session_add_conn(sess, old_conn, old_conn->target)) {
Olivier Houcharda48237f2019-05-02 12:04:15 +02001413 old_conn->flags &= ~CO_FL_SESS_IDLE;
Olivier Houchardc685d702018-12-28 16:20:25 +01001414 old_conn->owner = NULL;
Christopher Faulet73c12072019-04-08 11:23:22 +02001415 old_conn->mux->destroy(old_conn->ctx);
Olivier Houchardc685d702018-12-28 16:20:25 +01001416 } else
1417 session_check_idle_conn(sess, old_conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001418 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001419 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001420 }
1421
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001422 if (reuse) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001423 /* We already created a cs earlier when using http_proxy, so
1424 * only create a new one if we don't have one already.
1425 */
Olivier Houchard9ef51552019-01-28 15:33:15 +01001426 if (!srv_cs && srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001427 int avail = srv_conn->mux->avail_streams(srv_conn);
1428
1429 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001430 /* No more streams available, remove it from the list */
1431 LIST_DEL(&srv_conn->list);
1432 LIST_INIT(&srv_conn->list);
1433 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001434
1435 if (avail >= 1) {
1436 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard4dc85532019-01-29 15:50:38 +01001437 if (srv_cs) {
1438 alloced_cs = 1;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001439 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard4dc85532019-01-29 15:50:38 +01001440 } else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001441 srv_conn = NULL;
1442 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001443 else
1444 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001445 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001446 /* otherwise srv_conn is left intact */
1447 }
1448 else
1449 srv_conn = NULL;
1450
1451 /* no reuse or failed to reuse the connection above, pick a new one */
1452 if (!srv_conn) {
1453 srv_conn = conn_new();
Willy Tarreau1da41ec2019-02-01 16:38:48 +01001454 if (srv_conn)
1455 srv_conn->target = s->target;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001456 srv_cs = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001457 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001458
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001459 if (srv_conn && old_conn != srv_conn) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001460 if (srv_conn->owner)
1461 session_unown_conn(srv_conn->owner, srv_conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001462 srv_conn->owner = s->sess;
Willy Tarreau3c4e19f2019-02-01 11:54:23 +01001463 if (!session_add_conn(s->sess, srv_conn, srv_conn->target)) {
Olivier Houchard351411f2018-12-27 17:20:54 +01001464 /* If we failed to attach the connection, detach the
1465 * conn_stream, possibly destroying the connection */
Olivier Houchard4dc85532019-01-29 15:50:38 +01001466 if (alloced_cs)
1467 si_release_endpoint(&s->si[1]);
Olivier Houchard351411f2018-12-27 17:20:54 +01001468 srv_conn->owner = NULL;
Olivier Houchard26da3232019-01-29 16:05:02 +01001469 if (srv_conn->mux && !srv_add_to_idle_list(objt_server(srv_conn->target), srv_conn))
Olivier Houchard351411f2018-12-27 17:20:54 +01001470 /* The server doesn't want it, let's kill the connection right away */
Christopher Faulet73c12072019-04-08 11:23:22 +02001471 srv_conn->mux->destroy(srv_conn->ctx);
Olivier Houchard351411f2018-12-27 17:20:54 +01001472 srv_conn = NULL;
1473
1474 }
Willy Tarreau323a2d92015-08-04 19:00:17 +02001475 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001476
Olivier Houchard201b9f42018-11-21 00:16:29 +01001477 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001478 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001479
Willy Tarreaue7dff022015-04-03 01:14:29 +02001480 if (!(s->flags & SF_ADDR_SET)) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001481 err = assign_server_address(s, srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001482 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001483 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001484 }
1485
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001486 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001487 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001488 if (srv)
Willy Tarreau7b004922015-08-04 19:34:21 +02001489 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001490 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1491 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001492 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Olivier Houchard12950162018-11-23 14:32:08 +01001493 if (!(srv_conn->ctrl))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001494 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001495 }
1496 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001497 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001498
Lukas Tribusda95fd92018-11-25 13:21:27 +01001499#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001500 if (!srv ||
1501 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1502 srv->mux_proto))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001503#endif
1504 {
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001505 srv_cs = objt_cs(s->si[1].end);
1506 if (!srv_cs || srv_cs->conn != srv_conn)
1507 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
Olivier Houchard201b9f42018-11-21 00:16:29 +01001508 if (!srv_cs) {
1509 conn_free(srv_conn);
1510 return SF_ERR_RESOURCE;
1511 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001512 init_mux = 1;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001513 }
Lukas Tribusda95fd92018-11-25 13:21:27 +01001514#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard201b9f42018-11-21 00:16:29 +01001515 else {
Willy Tarreau94031d32018-12-19 14:36:29 +01001516 srv_conn->ctx = &s->si[1].end;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001517 /* Store the connection into the stream interface,
1518 * while we still don't have a mux, so that if the
1519 * stream is destroyed before the connection is
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001520 * established, we have a chance to destroy it even
1521 * if it is no longer referenced in the session.
Olivier Houchard201b9f42018-11-21 00:16:29 +01001522 */
Olivier Houchardee23b2a2018-11-23 17:07:04 +01001523 s->si[1].end = &srv_conn->obj_type;
Olivier Houchard201b9f42018-11-21 00:16:29 +01001524 conn_set_xprt_done_cb(srv_conn, conn_complete_server);
1525 }
1526
1527#endif
1528
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001529
Willy Tarreauff605db2013-12-20 11:09:51 +01001530 /* process the case where the server requires the PROXY protocol to be sent */
1531 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001532 cli_conn = objt_conn(strm_orig(s));
1533
Willy Tarreau7b004922015-08-04 19:34:21 +02001534 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001535 srv_conn->flags |= CO_FL_PRIVATE;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001536 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001537 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001538 if (cli_conn)
1539 conn_get_to_addr(cli_conn);
1540 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001541
Willy Tarreauff605db2013-12-20 11:09:51 +01001542 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001543
1544 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1545 srv_conn->send_proxy_ofs = 1;
1546 srv_conn->flags |= CO_FL_SOCKS4;
1547 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001548 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001549 else if (!conn_xprt_ready(srv_conn)) {
1550 if (srv_conn->mux->reset)
1551 srv_conn->mux->reset(srv_conn);
1552 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001553 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001554 s->flags |= SF_SRV_REUSED;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001555
William Lallemandb7ff6a32012-03-02 14:35:21 +01001556 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001557 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001558 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001559
Willy Tarreau14f8e862012-08-30 22:23:13 +02001560 /* disable lingering */
1561 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001562 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001563
Willy Tarreauf1573842018-12-14 11:35:36 +01001564 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001565 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001566 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001567 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001568 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001569 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001570 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001571 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001572 }
1573
Olivier Houchard201b9f42018-11-21 00:16:29 +01001574 err = si_connect(&s->si[1], srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001575 /* We have to defer the mux initialization until after si_connect()
1576 * has been called, as we need the xprt to have been properly
1577 * initialized, or any attempt to recv during the mux init may
1578 * fail, and flag the connection as CO_FL_ERROR.
1579 */
1580 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001581 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1582 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001583 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001584 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001585 /* If we're doing http-reuse always, and the connection
1586 * is an http2 connection, add it to the available list,
1587 * so that others can use it right away.
1588 */
1589 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1590 srv_conn->mux->avail_streams(srv_conn) > 0)
1591 LIST_ADD(&srv->idle_conns[tid], &srv_conn->list);
1592 }
1593
Willy Tarreaubaaee002006-06-26 02:48:02 +02001594
Willy Tarreau5db847a2019-05-09 14:13:35 +02001595#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001596
Olivier Houchard522eea72017-11-03 16:27:47 +01001597 if (!reuse && cli_conn && srv &&
1598 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001599 /* Only attempt to use early data if either the client sent
1600 * early data, so that we know it can handle a 425, or if
1601 * we are allwoed to retry requests on early data failure, and
1602 * it's our first try
1603 */
1604 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1605 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1606 s->si[1].conn_retries == s->be->conn_retries)) &&
1607 !channel_is_empty(si_oc(&s->si[1])) &&
1608 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001609 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001610#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001611
Willy Tarreaue7dff022015-04-03 01:14:29 +02001612 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001613 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001614
Willy Tarreau14f8e862012-08-30 22:23:13 +02001615 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001616 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001617
Willy Tarreau827aee92011-03-10 16:55:02 +01001618 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001619 int count;
1620
Willy Tarreaue7dff022015-04-03 01:14:29 +02001621 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001622 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001623 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001624 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001625 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001626
1627#ifdef USE_OPENSSL
1628 if (srv->ssl_ctx.sni) {
1629 struct sample *smp;
1630 int rewind;
1631
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001632 if (!IS_HTX_STRM(s)) {
1633 /* Tricky case : we have already scheduled the pending
1634 * HTTP request or TCP data for leaving. So in HTTP we
1635 * rewind exactly the headers, otherwise we rewind the
1636 * output data.
1637 */
1638 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req);
1639 c_rew(&s->req, rewind);
1640
1641 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1642 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau732eac42015-07-09 11:40:25 +02001643
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001644 /* restore the pointers */
1645 c_adv(&s->req, rewind);
1646 }
1647 else {
1648 /* rewind the output data. */
1649 rewind = co_data(&s->req);
1650 c_rew(&s->req, rewind);
1651
1652 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1653 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau732eac42015-07-09 11:40:25 +02001654
Christopher Fauletf7679ad2019-02-04 12:02:18 +01001655 /* restore the pointers */
1656 c_adv(&s->req, rewind);
1657 }
Willy Tarreau732eac42015-07-09 11:40:25 +02001658
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001659 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001660 ssl_sock_set_servername(srv_conn,
1661 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001662 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001663 }
1664 }
1665#endif /* USE_OPENSSL */
1666
Willy Tarreaubaaee002006-06-26 02:48:02 +02001667 }
1668
Willy Tarreaue7dff022015-04-03 01:14:29 +02001669 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001670}
1671
1672
Willy Tarreaubaaee002006-06-26 02:48:02 +02001673/* This function performs the "redispatch" part of a connection attempt. It
1674 * will assign a server if required, queue the connection if required, and
1675 * handle errors that might arise at this level. It can change the server
1676 * state. It will return 1 if it encounters an error, switches the server
1677 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1678 * that the connection is ready to use.
1679 */
1680
Willy Tarreau87b09662015-04-03 00:22:06 +02001681int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001682{
Willy Tarreau827aee92011-03-10 16:55:02 +01001683 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001684 int conn_err;
1685
1686 /* We know that we don't have any connection pending, so we will
1687 * try to get a new one, and wait in this state if it's queued
1688 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001689 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001690 conn_err = assign_server_and_queue(s);
1691 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001692
Willy Tarreaubaaee002006-06-26 02:48:02 +02001693 switch (conn_err) {
1694 case SRV_STATUS_OK:
1695 break;
1696
Willy Tarreau7c669d72008-06-20 15:04:11 +02001697 case SRV_STATUS_FULL:
1698 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1699 * and we can redispatch to another server, or it is not and we return
1700 * 503. This only makes sense in DIRECT mode however, because normal LB
1701 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001702 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001703 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001704 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001705 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001706 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001707 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001708 goto redispatch;
1709 }
1710
Willy Tarreau350f4872014-11-28 14:42:25 +01001711 if (!s->si[1].err_type) {
1712 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001713 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001714
Olivier Houchard237f7812019-03-08 18:49:07 +01001715 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1716 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001717 return 1;
1718
Willy Tarreaubaaee002006-06-26 02:48:02 +02001719 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001720 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001721 if (!s->si[1].err_type) {
1722 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001723 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001724
Olivier Houchard237f7812019-03-08 18:49:07 +01001725 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001726 return 1;
1727
1728 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001729 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1730 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001731 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001732 return 1;
1733
Willy Tarreaubaaee002006-06-26 02:48:02 +02001734 case SRV_STATUS_INTERNAL:
1735 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001736 if (!s->si[1].err_type) {
1737 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001738 }
1739
Willy Tarreau827aee92011-03-10 16:55:02 +01001740 if (srv)
1741 srv_inc_sess_ctr(srv);
1742 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001743 srv_set_sess_last(srv);
1744 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001745 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1746 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001747
Willy Tarreau87b09662015-04-03 00:22:06 +02001748 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001749 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001750 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001751 return 1;
1752 }
1753 /* if we get here, it's because we got SRV_STATUS_OK, which also
1754 * means that the connection has not been queued.
1755 */
1756 return 0;
1757}
1758
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001759/* sends a log message when a backend goes down, and also sets last
1760 * change date.
1761 */
1762void set_backend_down(struct proxy *be)
1763{
1764 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01001765 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001766
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001767 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001768 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001769 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1770 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001771}
1772
Willy Tarreau87b09662015-04-03 00:22:06 +02001773/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001774 * tries to extract an RDP cookie from the request buffer, and look for the
1775 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001776 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001777 * list. Nothing is performed if a server was already assigned.
1778 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001779int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001780{
1781 struct proxy *px = s->be;
1782 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001783 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001784 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001785 uint16_t port;
1786 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001787 char *p;
1788
Christopher Faulet45073512018-07-20 10:16:29 +02001789 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001790 now_ms, __FUNCTION__,
1791 s,
1792 req,
1793 req->rex, req->wex,
1794 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001795 ci_data(req),
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001796 req->analysers);
1797
Willy Tarreaue7dff022015-04-03 01:14:29 +02001798 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001799 goto no_cookie;
1800
Willy Tarreau37406352012-04-23 16:16:37 +02001801 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001802
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001803 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001804 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001805 goto no_cookie;
1806
Willy Tarreau04276f32017-01-06 17:41:29 +01001807 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1808 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1809 * server's IP address in network order, and "port" is the integer corresponding to the
1810 * server's port in network order. Comments please Emeric.
1811 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001812 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001813 if (*p != '.')
1814 goto no_cookie;
1815 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001816
1817 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001818 if (*p != '.')
1819 goto no_cookie;
1820
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001821 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001822 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001823 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001824 port == srv->svc_port &&
1825 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001826 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001827 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001828 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001829 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001830 break;
1831 }
1832 }
1833 srv = srv->next;
1834 }
1835
1836no_cookie:
1837 req->analysers &= ~an_bit;
1838 req->analyse_exp = TICK_ETERNITY;
1839 return 1;
1840}
1841
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001842int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001843 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001844 return px->down_time;
1845
1846 return now.tv_sec - px->last_change + px->down_time;
1847}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001848
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001849/*
1850 * This function returns a string containing the balancing
1851 * mode of the proxy in a format suitable for stats.
1852 */
1853
1854const char *backend_lb_algo_str(int algo) {
1855
1856 if (algo == BE_LB_ALGO_RR)
1857 return "roundrobin";
1858 else if (algo == BE_LB_ALGO_SRR)
1859 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001860 else if (algo == BE_LB_ALGO_FAS)
1861 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001862 else if (algo == BE_LB_ALGO_LC)
1863 return "leastconn";
1864 else if (algo == BE_LB_ALGO_SH)
1865 return "source";
1866 else if (algo == BE_LB_ALGO_UH)
1867 return "uri";
1868 else if (algo == BE_LB_ALGO_PH)
1869 return "url_param";
1870 else if (algo == BE_LB_ALGO_HH)
1871 return "hdr";
1872 else if (algo == BE_LB_ALGO_RCH)
1873 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001874 else if (algo == BE_LB_ALGO_NONE)
1875 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001876 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001877 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001878}
1879
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001880/* This function parses a "balance" statement in a backend section describing
1881 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001882 * returns -1, it will write an error message into the <err> buffer which will
1883 * automatically be allocated and must be passed as NULL. The trailing '\n'
1884 * will not be written. The function must be called with <args> pointing to the
1885 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001886 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001887int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001888{
1889 if (!*(args[0])) {
1890 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001891 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1892 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001893 return 0;
1894 }
1895
1896 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001897 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1898 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001899 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001900 else if (!strcmp(args[0], "static-rr")) {
1901 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1902 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1903 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001904 else if (!strcmp(args[0], "first")) {
1905 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1906 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1907 }
Willy Tarreau51406232008-03-10 22:04:20 +01001908 else if (!strcmp(args[0], "leastconn")) {
1909 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1910 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1911 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01001912 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02001913 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1914 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01001915 curproxy->lbprm.arg_opt1 = 2;
1916
1917 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
1918 const char *beg;
1919 char *end;
1920
1921 beg = args[0] + 7;
1922 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
1923
1924 if (*end != ')') {
1925 if (!*end)
1926 memprintf(err, "random : missing closing parenthesis.");
1927 else
1928 memprintf(err, "random : unexpected character '%c' after argument.", *end);
1929 return -1;
1930 }
1931
1932 if (curproxy->lbprm.arg_opt1 < 1) {
1933 memprintf(err, "random : number of draws must be at least 1.");
1934 return -1;
1935 }
1936 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02001937 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001938 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001939 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1940 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001941 }
1942 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001943 int arg = 1;
1944
Willy Tarreau31682232007-11-29 15:38:04 +01001945 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1946 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreaua9a72492019-01-14 16:14:15 +01001947 curproxy->lbprm.arg_opt1 = 0; // "whole"
1948 curproxy->lbprm.arg_opt2 = 0; // "len"
1949 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01001950
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001951 while (*args[arg]) {
1952 if (!strcmp(args[arg], "len")) {
1953 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001954 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001955 return -1;
1956 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01001957 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001958 arg += 2;
1959 }
1960 else if (!strcmp(args[arg], "depth")) {
1961 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001962 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001963 return -1;
1964 }
1965 /* hint: we store the position of the ending '/' (depth+1) so
1966 * that we avoid a comparison while computing the hash.
1967 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01001968 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001969 arg += 2;
1970 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001971 else if (!strcmp(args[arg], "whole")) {
Willy Tarreaua9a72492019-01-14 16:14:15 +01001972 curproxy->lbprm.arg_opt1 = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01001973 arg += 1;
1974 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001975 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001976 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001977 return -1;
1978 }
1979 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001980 }
Willy Tarreau01732802007-11-01 22:48:15 +01001981 else if (!strcmp(args[0], "url_param")) {
1982 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001983 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001984 return -1;
1985 }
Willy Tarreau31682232007-11-29 15:38:04 +01001986 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1987 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001988
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01001989 free(curproxy->lbprm.arg_str);
1990 curproxy->lbprm.arg_str = strdup(args[1]);
1991 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001992 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001993 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001994 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001995 return -1;
1996 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001997 }
Benoitaffb4812009-03-25 13:02:10 +01001998 }
1999 else if (!strncmp(args[0], "hdr(", 4)) {
2000 const char *beg, *end;
2001
2002 beg = args[0] + 4;
2003 end = strchr(beg, ')');
2004
2005 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002006 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002007 return -1;
2008 }
2009
2010 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2011 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2012
Willy Tarreau484ff072019-01-14 15:28:53 +01002013 free(curproxy->lbprm.arg_str);
2014 curproxy->lbprm.arg_len = end - beg;
2015 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002016 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002017
2018 if (*args[1]) {
2019 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002020 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002021 return -1;
2022 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002023 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002024 }
Emeric Brun736aa232009-06-30 17:56:00 +02002025 }
2026 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2027 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2028 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2029
2030 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2031 const char *beg, *end;
2032
2033 beg = args[0] + 11;
2034 end = strchr(beg, ')');
2035
2036 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002037 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002038 return -1;
2039 }
2040
Willy Tarreau484ff072019-01-14 15:28:53 +01002041 free(curproxy->lbprm.arg_str);
2042 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2043 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002044 }
2045 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002046 free(curproxy->lbprm.arg_str);
2047 curproxy->lbprm.arg_str = strdup("mstshash");
2048 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002049 }
2050 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002051 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002052 return -1;
2053 }
Willy Tarreau01732802007-11-01 22:48:15 +01002054 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002055 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002056 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 +01002057 return -1;
2058 }
2059 return 0;
2060}
2061
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002062
2063/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002064/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002065/************************************************************************/
2066
Willy Tarreau34db1082012-04-19 17:16:54 +02002067/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002068 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002069 * undefined behaviour.
2070 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002071static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002072smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002073{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002074 struct proxy *px;
2075
Willy Tarreau37406352012-04-23 16:16:37 +02002076 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002077 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002078 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002079
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002080 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002081
2082 return 1;
2083}
2084
Willy Tarreau37406352012-04-23 16:16:37 +02002085/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002086 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002087 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2088 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002089 */
2090static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002091smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002092{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002093 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002094
Willy Tarreau37406352012-04-23 16:16:37 +02002095 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002096 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002097 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2098 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002099 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002100 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002101 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002102 return 1;
2103}
2104
Willy Tarreau34db1082012-04-19 17:16:54 +02002105/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002106 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002107 * undefined behaviour.
2108 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002109static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002110smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002111{
2112 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002113
Willy Tarreau37406352012-04-23 16:16:37 +02002114 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002115 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002116 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002117
Willy Tarreau24e32d82012-04-23 23:55:44 +02002118 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002119 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002120 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002121
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002122 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002123 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002124 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002125 return 1;
2126 }
2127
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002128 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002129 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002130 }
2131
2132 return 1;
2133}
2134
Willy Tarreaua5e37562011-12-16 17:06:15 +01002135/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002136static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002137smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002138{
Willy Tarreaube508f12016-03-10 11:47:01 +01002139 if (!smp->strm)
2140 return 0;
2141
Willy Tarreauf853c462012-04-23 18:53:56 +02002142 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002143 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002144 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002145 return 1;
2146}
2147
Marcin Deranekd2471c22016-12-12 14:08:05 +01002148/* set string to the name of the backend */
2149static int
2150smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2151{
2152 if (!smp->strm)
2153 return 0;
2154
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002155 smp->data.u.str.area = (char *)smp->strm->be->id;
2156 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002157 return 0;
2158
2159 smp->data.type = SMP_T_STR;
2160 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002161 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002162
2163 return 1;
2164}
2165
Willy Tarreaua5e37562011-12-16 17:06:15 +01002166/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002167static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002168smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002169{
Willy Tarreaube508f12016-03-10 11:47:01 +01002170 if (!smp->strm)
2171 return 0;
2172
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002173 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01002174 return 0;
2175
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002176 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02002177 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002178
2179 return 1;
2180}
2181
Willy Tarreau34db1082012-04-19 17:16:54 +02002182/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002183 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002184 * undefined behaviour.
2185 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002186static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002187smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002188{
Willy Tarreau37406352012-04-23 16:16:37 +02002189 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002190 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002191 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002192 return 1;
2193}
2194
Willy Tarreau34db1082012-04-19 17:16:54 +02002195/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002196 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002197 * undefined behaviour.
2198 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002199static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002200smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002201{
Willy Tarreau37406352012-04-23 16:16:37 +02002202 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002203 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002204 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002205 return 1;
2206}
2207
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002208/* set temp integer to the number of available connections across available
2209 * servers on the backend.
2210 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2211 * undefined behaviour.
2212 */
2213static int
2214smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2215{
2216 struct server *iterator;
2217 struct proxy *px;
2218 unsigned int maxconn;
2219
2220 smp->flags = SMP_F_VOL_TEST;
2221 smp->data.type = SMP_T_SINT;
2222 smp->data.u.sint = 0;
2223
2224 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2225 if (iterator->cur_state == SRV_ST_STOPPED)
2226 continue;
2227
2228 px = iterator->proxy;
2229 if (!srv_currently_usable(iterator) ||
2230 ((iterator->flags & SRV_F_BACKUP) &&
2231 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2232 continue;
2233
2234 if (iterator->maxconn == 0) {
2235 /* one active server is unlimited, return -1 */
2236 smp->data.u.sint = -1;
2237 return 1;
2238 }
2239
2240 maxconn = srv_dynamic_maxconn(iterator);
2241 if (maxconn > iterator->cur_sess)
2242 smp->data.u.sint += maxconn - iterator->cur_sess;
2243 }
2244
2245 return 1;
2246}
2247
Willy Tarreau34db1082012-04-19 17:16:54 +02002248/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002249 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002250 * undefined behaviour.
2251 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002252static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002253smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002254{
Willy Tarreau37406352012-04-23 16:16:37 +02002255 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002256 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002257 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002258 return 1;
2259}
2260
Willy Tarreaua5e37562011-12-16 17:06:15 +01002261/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002262 * by the number of running servers and rounded up. If there is no running
2263 * server, we return twice the total, just as if we had half a running server.
2264 * This is more or less correct anyway, since we expect the last server to come
2265 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002266 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002267 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002268 */
2269static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002270smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002271{
2272 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002273 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002274
Willy Tarreau37406352012-04-23 16:16:37 +02002275 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002276 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002277 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002278
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002279 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002280
2281 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002282 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002283 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002284 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002285
2286 return 1;
2287}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002288
Willy Tarreau34db1082012-04-19 17:16:54 +02002289/* set temp integer to the number of concurrent connections on the server in the backend.
2290 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2291 * undefined behaviour.
2292 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002293static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002294smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002295{
Willy Tarreauf853c462012-04-23 18:53:56 +02002296 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002297 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002298 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002299 return 1;
2300}
2301
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002302/* set temp integer to the number of available connections on the server in the backend.
2303 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2304 * undefined behaviour.
2305 */
2306static int
2307smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2308{
2309 unsigned int maxconn;
2310
2311 smp->flags = SMP_F_VOL_TEST;
2312 smp->data.type = SMP_T_SINT;
2313
2314 if (args->data.srv->maxconn == 0) {
2315 /* one active server is unlimited, return -1 */
2316 smp->data.u.sint = -1;
2317 return 1;
2318 }
2319
2320 maxconn = srv_dynamic_maxconn(args->data.srv);
2321 if (maxconn > args->data.srv->cur_sess)
2322 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2323 else
2324 smp->data.u.sint = 0;
2325
2326 return 1;
2327}
2328
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002329/* set temp integer to the number of connections pending in the server's queue.
2330 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2331 * undefined behaviour.
2332 */
2333static int
2334smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2335{
2336 smp->flags = SMP_F_VOL_TEST;
2337 smp->data.type = SMP_T_SINT;
2338 smp->data.u.sint = args->data.srv->nbpend;
2339 return 1;
2340}
2341
Tait Clarridge7896d522012-12-05 21:39:31 -05002342/* set temp integer to the number of enabled servers on the proxy.
2343 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2344 * undefined behaviour.
2345 */
2346static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002347smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002348{
2349 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002350 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002351 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002352 return 1;
2353}
2354
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002355static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2356{
2357
2358 struct proxy *px;
2359
2360 if (!smp_make_safe(smp))
2361 return 0;
2362
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002363 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002364 if (!px)
2365 return 0;
2366
2367 smp->data.type = SMP_T_SINT;
2368 smp->data.u.sint = be_usable_srv(px);
2369
2370 return 1;
2371}
2372
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002373
2374/* Note: must not be declared <const> as its list will be overwritten.
2375 * Please take care of keeping this list alphabetically sorted.
2376 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002377static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002378 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2379 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002380 { "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 +02002381 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002382 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002383 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2384 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2385 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2386 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2387 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002388 { "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 +02002389 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002390 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002391 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002392 { "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 +01002393 { /* END */ },
2394}};
2395
Willy Tarreau0108d902018-11-25 19:14:37 +01002396INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2397
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002398/* Note: must not be declared <const> as its list will be overwritten */
2399static struct sample_conv_kw_list sample_conv_kws = {ILH, {
2400 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2401 { /* END */ },
2402}};
2403
Willy Tarreau0108d902018-11-25 19:14:37 +01002404INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002405
Willy Tarreau61612d42012-04-19 18:42:05 +02002406/* Note: must not be declared <const> as its list will be overwritten.
2407 * Please take care of keeping this list alphabetically sorted.
2408 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002409static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002410 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002411}};
2412
Willy Tarreau0108d902018-11-25 19:14:37 +01002413INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002414
Willy Tarreaubaaee002006-06-26 02:48:02 +02002415/*
2416 * Local variables:
2417 * c-indent-level: 8
2418 * c-basic-offset: 8
2419 * End:
2420 */