blob: 51d954babf46bd49a57e3d95a85e7228e15ca82c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaudcc048a2020-06-04 19:11:43 +020022#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/arg.h>
25#include <haproxy/backend.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020026#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020027#include <haproxy/check.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020028#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020031#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020032#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020033#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020034#include <haproxy/htx.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020035#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020036#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020037#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020038#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020039#include <haproxy/lb_map.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020040#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020042#include <haproxy/obj_type.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020043#include <haproxy/payload.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/proto_tcp.h>
45#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020046#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020047#include <haproxy/queue.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020049#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020050#include <haproxy/session.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020051#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020052#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020053#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020054#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020055#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020056#include <haproxy/time.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020057#include <haproxy/trace.h>
Willy Tarreau732eac42015-07-09 11:40:25 +020058
Christopher Fauleteea8fc72019-11-05 16:18:10 +010059#define TRACE_SOURCE &trace_strm
60
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050061int be_lastsession(const struct proxy *be)
62{
63 if (be->be_counters.last_sess)
64 return now.tv_sec - be->be_counters.last_sess;
65
66 return -1;
67}
68
Bhaskar98634f02013-10-29 23:30:51 -040069/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070070static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040071{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070072 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040073
74 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
75 case BE_LB_HFCN_DJB2:
76 hash = hash_djb2(key, len);
77 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010078 case BE_LB_HFCN_WT6:
79 hash = hash_wt6(key, len);
80 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010081 case BE_LB_HFCN_CRC32:
82 hash = hash_crc32(key, len);
83 break;
Bhaskar98634f02013-10-29 23:30:51 -040084 case BE_LB_HFCN_SDBM:
85 /* this is the default hash function */
86 default:
87 hash = hash_sdbm(key, len);
88 break;
89 }
90
91 return hash;
92}
93
Willy Tarreaubaaee002006-06-26 02:48:02 +020094/*
95 * This function recounts the number of usable active and backup servers for
96 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010097 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010098 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010099 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200100 * This functions is designed to be called before server's weight and state
101 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200102 *
103 * threads: this is the caller responsibility to lock data. For now, this
104 * function is called from lb modules, so it should be ok. But if you need to
105 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200107void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108{
109 struct server *srv;
110
Willy Tarreau20697042007-11-15 23:26:18 +0100111 px->srv_act = px->srv_bck = 0;
112 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100113 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200115 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 continue;
117
Willy Tarreauc93cd162014-05-13 15:54:22 +0200118 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100120 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 px->lbprm.fbck = srv;
122 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400123 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200124 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100125 } else {
126 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400127 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200128 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 }
130 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100131}
Willy Tarreau20697042007-11-15 23:26:18 +0100132
Willy Tarreaub625a082007-11-26 01:15:43 +0100133/* This function simply updates the backend's tot_weight and tot_used values
134 * after servers weights have been updated. It is designed to be used after
135 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200136 *
137 * threads: this is the caller responsibility to lock data. For now, this
138 * function is called from lb modules, so it should be ok. But if you need to
139 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100140 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200141void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100142{
Willy Tarreau20697042007-11-15 23:26:18 +0100143 if (px->srv_act) {
144 px->lbprm.tot_weight = px->lbprm.tot_wact;
145 px->lbprm.tot_used = px->srv_act;
146 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100147 else if (px->lbprm.fbck) {
148 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200149 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100151 }
152 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_weight = px->lbprm.tot_wbck;
154 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100155 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100156}
157
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200158/*
159 * This function tries to find a running server for the proxy <px> following
160 * the source hash method. Depending on the number of active/backup servers,
161 * it will either look for active servers, or for backup servers.
162 * If any server is found, it will be returned. If no valid server is found,
163 * NULL is returned.
164 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100165static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200166{
167 unsigned int h, l;
168
169 if (px->lbprm.tot_weight == 0)
170 return NULL;
171
172 l = h = 0;
173
174 /* note: we won't hash if there's only one server left */
175 if (px->lbprm.tot_used == 1)
176 goto hash_done;
177
178 while ((l + sizeof (int)) <= len) {
179 h ^= ntohl(*(unsigned int *)(&addr[l]));
180 l += sizeof (int);
181 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500182 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100183 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200184 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100185 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100186 return chash_get_server_hash(px, h, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200187 else
188 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200189}
190
191/*
192 * This function tries to find a running server for the proxy <px> following
193 * the URI hash method. In order to optimize cache hits, the hash computation
194 * ends at the question mark. Depending on the number of active/backup servers,
195 * it will either look for active servers, or for backup servers.
196 * If any server is found, it will be returned. If no valid server is found,
Willy Tarreaua9a72492019-01-14 16:14:15 +0100197 * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to
198 * the "whole" optional argument (boolean), the "len" argument (numeric) and
199 * the "depth" argument (numeric).
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200200 *
201 * This code was contributed by Guillaume Dallaire, who also selected this hash
202 * algorithm out of a tens because it gave him the best results.
203 *
204 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100205static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200206{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700207 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200208 int c;
209 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400210 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200211
212 if (px->lbprm.tot_weight == 0)
213 return NULL;
214
215 /* note: we won't hash if there's only one server left */
216 if (px->lbprm.tot_used == 1)
217 goto hash_done;
218
Willy Tarreaua9a72492019-01-14 16:14:15 +0100219 if (px->lbprm.arg_opt2) // "len"
220 uri_len = MIN(uri_len, px->lbprm.arg_opt2);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200221
Bhaskar98634f02013-10-29 23:30:51 -0400222 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200224 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200225 if (c == '/') {
226 slashes++;
Willy Tarreaua9a72492019-01-14 16:14:15 +0100227 if (slashes == px->lbprm.arg_opt3) /* depth+1 */
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200228 break;
229 }
Willy Tarreaua9a72492019-01-14 16:14:15 +0100230 else if (c == '?' && !px->lbprm.arg_opt1) // "whole"
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200232 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200233 }
Bhaskar98634f02013-10-29 23:30:51 -0400234
235 hash = gen_hash(px, start, (end - start));
236
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500237 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100238 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200239 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100240 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100241 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200242 else
243 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200244}
245
Christopher Faulet5b517552017-06-09 14:17:53 +0200246/*
Willy Tarreau01732802007-11-01 22:48:15 +0100247 * This function tries to find a running server for the proxy <px> following
248 * the URL parameter hash method. It looks for a specific parameter in the
249 * URL and hashes it to compute the server ID. This is useful to optimize
250 * performance by avoiding bounces between servers in contexts where sessions
251 * are shared but cookies are not usable. If the parameter is not found, NULL
252 * is returned. If any server is found, it will be returned. If no valid server
253 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100254 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100255static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len, const struct server *avoid)
Willy Tarreau01732802007-11-01 22:48:15 +0100256{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700257 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400258 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200259 const char *p;
260 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100261 int plen;
262
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100264 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100265 return NULL;
266
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 if ((p = memchr(uri, '?', uri_len)) == NULL)
268 return NULL;
269
Willy Tarreau01732802007-11-01 22:48:15 +0100270 p++;
271
272 uri_len -= (p - uri);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100273 plen = px->lbprm.arg_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200274 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100275
276 while (uri_len > plen) {
277 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100279 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200280 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100281 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100283 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400285 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 uri_len -= plen + 1;
287
Bhaskar98634f02013-10-29 23:30:51 -0400288 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100289 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400290 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100291 }
Bhaskar98634f02013-10-29 23:30:51 -0400292 hash = gen_hash(px, start, (end - start));
293
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500294 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100295 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400296
Willy Tarreau6c30be52019-01-14 17:07:39 +0100297 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100298 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200299 else
300 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100301 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200302 }
303 /* skip to next parameter */
304 p = memchr(params, '&', uri_len);
305 if (!p)
306 return NULL;
307 p++;
308 uri_len -= (p - params);
309 params = p;
310 }
311 return NULL;
312}
313
314/*
315 * this does the same as the previous server_ph, but check the body contents
316 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100317static struct server *get_server_ph_post(struct stream *s, const struct server *avoid)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200318{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700319 unsigned int hash = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100320 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321 struct proxy *px = s->be;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200322 struct htx *htx = htxbuf(&req->buf);
323 struct htx_blk *blk;
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100324 unsigned int plen = px->lbprm.arg_len;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100325 unsigned long len;
326 const char *params, *p, *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200327
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100328 if (px->lbprm.tot_weight == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 return NULL;
330
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200331 p = params = NULL;
332 len = 0;
333 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
334 enum htx_blk_type type = htx_get_blk_type(blk);
335 struct ist v;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200336
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200337 if (type != HTX_BLK_DATA)
338 continue;
339 v = htx_get_blk_value(htx, blk);
340 p = params = v.ptr;
341 len = v.len;
342 break;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100343 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200344
345 while (len > plen) {
346 /* Look for the parameter name followed by an equal symbol */
347 if (params[plen] == '=') {
Willy Tarreau4c03d1c2019-01-14 15:23:54 +0100348 if (memcmp(params, px->lbprm.arg_str, plen) == 0) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200349 /* OK, we have the parameter here at <params>, and
350 * the value after the equal sign, at <p>
351 * skip the equal symbol
352 */
353 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400354 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200355 len -= plen + 1;
356
Bhaskar98634f02013-10-29 23:30:51 -0400357 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100359 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400360 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100361 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
363 break;
364 return NULL; /* oh, no; this is not uri-encoded.
365 * This body does not contain parameters.
366 */
367 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200368 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400369 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200370 /* should we break if vlen exceeds limit? */
371 }
Bhaskar98634f02013-10-29 23:30:51 -0400372 hash = gen_hash(px, start, (end - start));
373
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500374 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100375 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400376
Willy Tarreau6c30be52019-01-14 17:07:39 +0100377 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100378 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200379 else
380 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200381 }
382 }
Willy Tarreau01732802007-11-01 22:48:15 +0100383 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200384 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100385 if (!p)
386 return NULL;
387 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200388 len -= (p - params);
389 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100390 }
391 return NULL;
392}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200394
Willy Tarreaubaaee002006-06-26 02:48:02 +0200395/*
Benoitaffb4812009-03-25 13:02:10 +0100396 * This function tries to find a running server for the proxy <px> following
397 * the Header parameter hash method. It looks for a specific parameter in the
398 * URL and hashes it to compute the server ID. This is useful to optimize
399 * performance by avoiding bounces between servers in contexts where sessions
400 * are shared but cookies are not usable. If the parameter is not found, NULL
401 * is returned. If any server is found, it will be returned. If no valid server
Willy Tarreau9fed8582019-01-14 16:04:54 +0100402 * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only
403 * apply to the middle part of a domain name ("use_domain_only" option).
Benoitaffb4812009-03-25 13:02:10 +0100404 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100405static struct server *get_server_hh(struct stream *s, const struct server *avoid)
Benoitaffb4812009-03-25 13:02:10 +0100406{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700407 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100408 struct proxy *px = s->be;
Willy Tarreau484ff072019-01-14 15:28:53 +0100409 unsigned int plen = px->lbprm.arg_len;
Benoitaffb4812009-03-25 13:02:10 +0100410 unsigned long len;
Benoitaffb4812009-03-25 13:02:10 +0100411 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400412 const char *start, *end;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200413 struct htx *htx = htxbuf(&s->req.buf);
414 struct http_hdr_ctx ctx = { .blk = NULL };
Benoitaffb4812009-03-25 13:02:10 +0100415
416 /* tot_weight appears to mean srv_count */
417 if (px->lbprm.tot_weight == 0)
418 return NULL;
419
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200420 /* note: we won't hash if there's only one server left */
421 if (px->lbprm.tot_used == 1)
422 goto hash_done;
423
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200424 http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0);
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100425
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200426 /* if the header is not found or empty, let's fallback to round robin */
427 if (!ctx.blk || !ctx.value.len)
428 return NULL;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100429
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200430 /* Found a the param_name in the headers.
431 * we will compute the hash based on this value ctx.val.
432 */
433 len = ctx.value.len;
434 p = ctx.value.ptr;
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100435
Willy Tarreau9fed8582019-01-14 16:04:54 +0100436 if (!px->lbprm.arg_opt1) {
Bhaskar98634f02013-10-29 23:30:51 -0400437 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100438 } else {
439 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100440 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100441 /* special computation, use only main domain name, not tld/host
442 * going back from the end of string, start hashing at first
443 * dot stop at next.
444 * This is designed to work with the 'Host' header, and requires
445 * a special option to activate this.
446 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100447 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100448 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100449 if (dohash) {
450 /* Rewind the pointer until the previous char
451 * is a dot, this will allow to set the start
452 * position of the domain. */
453 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100454 break;
Benoitaffb4812009-03-25 13:02:10 +0100455 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100456 else if (*p == '.') {
457 /* The pointer is rewinded to the dot before the
458 * tld, we memorize the end of the domain and
459 * can enter the domain processing. */
460 end = p;
461 dohash = 1;
462 }
Benoitaffb4812009-03-25 13:02:10 +0100463 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100464 len--;
Benoitaffb4812009-03-25 13:02:10 +0100465 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100466 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400467 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100468 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500469 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100470 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200471 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100472 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100473 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200474 else
475 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100476}
477
Willy Tarreau34db1082012-04-19 17:16:54 +0200478/* RDP Cookie HASH. */
Willy Tarreau59884a62019-01-02 14:48:31 +0100479static struct server *get_server_rch(struct stream *s, const struct server *avoid)
Emeric Brun736aa232009-06-30 17:56:00 +0200480{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700481 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200482 struct proxy *px = s->be;
483 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200484 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200485 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200486 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200487
488 /* tot_weight appears to mean srv_count */
489 if (px->lbprm.tot_weight == 0)
490 return NULL;
491
Willy Tarreau37406352012-04-23 16:16:37 +0200492 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200493
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200494 rewind = co_data(&s->req);
495 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200496
Willy Tarreau484ff072019-01-14 15:28:53 +0100497 ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200498 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100499
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200500 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200501
Willy Tarreau37406352012-04-23 16:16:37 +0200502 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200503 return NULL;
504
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200505 /* note: we won't hash if there's only one server left */
506 if (px->lbprm.tot_used == 1)
507 goto hash_done;
508
Willy Tarreau484ff072019-01-14 15:28:53 +0100509 /* Found the param_name in the headers.
Emeric Brun736aa232009-06-30 17:56:00 +0200510 * we will compute the hash based on this value ctx.val.
511 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200512 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400513
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500514 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100515 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200516 hash_done:
Willy Tarreau6c30be52019-01-14 17:07:39 +0100517 if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau59884a62019-01-02 14:48:31 +0100518 return chash_get_server_hash(px, hash, avoid);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200519 else
520 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200521}
Christopher Faulet5b517552017-06-09 14:17:53 +0200522
Willy Tarreau760e81d2018-05-03 07:20:40 +0200523/* random value */
Willy Tarreau59884a62019-01-02 14:48:31 +0100524static struct server *get_server_rnd(struct stream *s, const struct server *avoid)
Willy Tarreau760e81d2018-05-03 07:20:40 +0200525{
526 unsigned int hash = 0;
527 struct proxy *px = s->be;
Willy Tarreau21c741a2019-01-14 18:14:27 +0100528 struct server *prev, *curr;
529 int draws = px->lbprm.arg_opt1; // number of draws
Willy Tarreau760e81d2018-05-03 07:20:40 +0200530
531 /* tot_weight appears to mean srv_count */
532 if (px->lbprm.tot_weight == 0)
533 return NULL;
534
Willy Tarreau21c741a2019-01-14 18:14:27 +0100535 curr = NULL;
536 do {
537 prev = curr;
Willy Tarreaub9f54c52020-03-08 17:31:39 +0100538 hash = ha_random32();
Willy Tarreau21c741a2019-01-14 18:14:27 +0100539 curr = chash_get_server_hash(px, hash, avoid);
540 if (!curr)
541 break;
542
543 /* compare the new server to the previous best choice and pick
544 * the one with the least currently served requests.
545 */
546 if (prev && prev != curr &&
547 curr->served * prev->cur_eweight > prev->served * curr->cur_eweight)
548 curr = prev;
549 } while (--draws > 0);
550
551 return curr;
Willy Tarreau760e81d2018-05-03 07:20:40 +0200552}
553
Benoitaffb4812009-03-25 13:02:10 +0100554/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200555 * This function applies the load-balancing algorithm to the stream, as
556 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200557 * 'assigned'.
558 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200559 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100561 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200562 * The function tries to keep the original connection slot if it reconnects to
563 * the same server, otherwise it releases it and tries to offer it.
564 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200565 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200566 *
567 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100568 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200569 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
570 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200571 * SRV_STATUS_INTERNAL for other unrecoverable errors.
572 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200573 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100574 * it does not need to be called anymore. This means that target_srv(&s->target)
575 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200576 *
577 */
578
Willy Tarreau87b09662015-04-03 00:22:06 +0200579int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200580{
Olivier Houchardba4fff52018-12-01 14:40:40 +0100581 struct connection *conn = NULL;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200582 struct server *conn_slot;
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100583 struct server *srv = NULL, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200584 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100585
Simon Horman8effd3d2011-08-13 08:03:52 +0900586 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200587
Willy Tarreau7c669d72008-06-20 15:04:11 +0200588 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200589 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200590 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100591
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100592 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200593 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200594
Willy Tarreau7c669d72008-06-20 15:04:11 +0200595 /* We have to release any connection slot before applying any LB algo,
596 * otherwise we may erroneously end up with no available slot.
597 */
598 if (conn_slot)
599 sess_change_server(s, NULL);
600
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100601 /* We will now try to find the good server and store it into <objt_server(s->target)>.
602 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200603 * as well as if no server is available (check error code).
604 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100605
Willy Tarreau827aee92011-03-10 16:55:02 +0100606 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100607 s->target = NULL;
Willy Tarreau664beb82011-03-10 11:38:29 +0100608
Olivier Houchardba4fff52018-12-01 14:40:40 +0100609 if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200610 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100611 (s->be->options & PR_O_PREF_LAST))) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100612 struct sess_srv_list *srv_list;
613 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
614 struct server *tmpsrv = objt_server(srv_list->target);
Olivier Houchardba4fff52018-12-01 14:40:40 +0100615
616 if (tmpsrv && tmpsrv->proxy == s->be &&
Olivier Houchard250031e2019-05-29 15:01:50 +0200617 ((s->sess->flags & SESS_FL_PREFER_LAST) ||
Olivier Houchardba4fff52018-12-01 14:40:40 +0100618 (!s->be->max_ka_queue ||
619 server_has_room(tmpsrv) || (
620 tmpsrv->nbpend + 1 < s->be->max_ka_queue))) &&
621 srv_currently_usable(tmpsrv)) {
Olivier Houchard351411f2018-12-27 17:20:54 +0100622 list_for_each_entry(conn, &srv_list->conn_list, session_list) {
Willy Tarreau911db9b2020-01-23 16:27:54 +0100623 if (!(conn->flags & CO_FL_WAIT_XPRT)) {
Olivier Houchardba4fff52018-12-01 14:40:40 +0100624 srv = tmpsrv;
625 s->target = &srv->obj_type;
626 goto out_ok;
627 }
628 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100629 }
630 }
Willy Tarreau9420b122013-12-15 18:58:25 +0100631 }
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100632 if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200633
Willy Tarreau7c669d72008-06-20 15:04:11 +0200634 /* we must check if we have at least one server available */
635 if (!s->be->lbprm.tot_weight) {
636 err = SRV_STATUS_NOSRV;
637 goto out;
638 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200639
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200640 /* First check whether we need to fetch some data or simply call
641 * the LB lookup function. Only the hashing functions will need
642 * some input data in fact, and will support multiple algorithms.
643 */
644 switch (s->be->lbprm.algo & BE_LB_LKUP) {
645 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100646 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200647 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200648
Willy Tarreauf09c6602012-02-13 17:12:08 +0100649 case BE_LB_LKUP_FSTREE:
650 srv = fas_get_next_server(s->be, prev_srv);
651 break;
652
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200653 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100654 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200655 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200656
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200657 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200658 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200659 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200660 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
Willy Tarreau59884a62019-01-02 14:48:31 +0100661 srv = get_server_rnd(s, prev_srv);
Willy Tarreau6c30be52019-01-14 17:07:39 +0100662 else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100663 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200664 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100665 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200666 break;
667 }
668 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200669 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200670 err = SRV_STATUS_INTERNAL;
671 goto out;
672 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200673
674 switch (s->be->lbprm.algo & BE_LB_PARM) {
675 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200676 conn = objt_conn(strm_orig(s));
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200677 if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200678 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200679 (void *)&((struct sockaddr_in *)conn->src)->sin_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100680 4, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200681 }
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200682 else if (conn && conn_get_src(conn) && conn->src->ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200683 srv = get_server_sh(s->be,
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200684 (void *)&((struct sockaddr_in6 *)conn->src)->sin6_addr,
Willy Tarreau59884a62019-01-02 14:48:31 +0100685 16, prev_srv);
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200686 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200687 else {
688 /* unknown IP family */
689 err = SRV_STATUS_INTERNAL;
690 goto out;
691 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200692 break;
693
694 case BE_LB_HASH_URI:
695 /* URI hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200696 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100697 struct ist uri;
698
Christopher Faulet297fbb42019-05-13 14:41:27 +0200699 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100700 srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv);
701 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200702 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200703
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200704 case BE_LB_HASH_PRM:
705 /* URL Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200706 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) {
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100707 struct ist uri;
708
Christopher Faulet297fbb42019-05-13 14:41:27 +0200709 uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf)));
Christopher Fauletf7679ad2019-02-04 12:02:18 +0100710 srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100711
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200712 if (!srv && s->txn->meth == HTTP_METH_POST)
713 srv = get_server_ph_post(s, prev_srv);
714 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200715 break;
Benoitaffb4812009-03-25 13:02:10 +0100716
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200717 case BE_LB_HASH_HDR:
718 /* Header Parameter hashing */
Christopher Faulet7d37fbb2019-07-15 15:37:57 +0200719 if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY)
720 srv = get_server_hh(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200721 break;
722
723 case BE_LB_HASH_RDP:
724 /* RDP Cookie hashing */
Willy Tarreau59884a62019-01-02 14:48:31 +0100725 srv = get_server_rch(s, prev_srv);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200726 break;
727
728 default:
729 /* unknown balancing algorithm */
730 err = SRV_STATUS_INTERNAL;
731 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100732 }
Emeric Brun736aa232009-06-30 17:56:00 +0200733
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200734 /* If the hashing parameter was not found, let's fall
735 * back to round robin on the map.
736 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100737 if (!srv) {
Willy Tarreau6c30be52019-01-14 17:07:39 +0100738 if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100739 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200740 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100741 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200742 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200743
744 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200745 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200746
Willy Tarreau7c669d72008-06-20 15:04:11 +0200747 default:
748 /* unknown balancing algorithm */
749 err = SRV_STATUS_INTERNAL;
750 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200751 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200752
Willy Tarreau827aee92011-03-10 16:55:02 +0100753 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200754 err = SRV_STATUS_FULL;
755 goto out;
756 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100757 else if (srv != prev_srv) {
Olivier Houchard237f7812019-03-08 18:49:07 +0100758 _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
759 _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100760 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100761 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200762 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200763 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100764 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200765 }
Olivier Houchard2442f682018-12-01 17:03:38 +0100766 else if ((s->be->options & PR_O_HTTP_PROXY)) {
767 conn = cs_conn(objt_cs(s->si[1].end));
768
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200769 if (conn && conn->dst && is_addr(conn->dst)) {
Olivier Houchard2442f682018-12-01 17:03:38 +0100770 /* in proxy mode, we need a valid destination address */
771 s->target = &s->be->obj_type;
772 } else {
773 err = SRV_STATUS_NOSRV;
774 goto out;
775 }
Willy Tarreau664beb82011-03-10 11:38:29 +0100776 }
777 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200778 err = SRV_STATUS_NOSRV;
779 goto out;
780 }
781
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100782out_ok:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200783 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200784 err = SRV_STATUS_OK;
785 out:
786
787 /* Either we take back our connection slot, or we offer it to someone
788 * else if we don't need it anymore.
789 */
790 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100791 if (conn_slot == srv) {
792 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200793 } else {
794 if (may_dequeue_tasks(conn_slot, s->be))
795 process_srv_queue(conn_slot);
796 }
797 }
798
799 out_err:
800 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801}
802
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200804 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200805 * The address is taken from the currently assigned server, or from the
806 * dispatch or transparent address.
807 *
808 * It may return :
809 * SRV_STATUS_OK if everything is OK.
810 * SRV_STATUS_INTERNAL for other unrecoverable errors.
811 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200812 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813 * not cleared, so it's to the caller to clear it if required.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200814 */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200815int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200817 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200818
Christopher Faulet56803b12017-11-24 16:06:18 +0100819 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200821 if (!sockaddr_alloc(&s->target_addr))
Willy Tarreauca79f592019-07-17 19:04:47 +0200822 return SRV_STATUS_INTERNAL;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200823
Willy Tarreaue7dff022015-04-03 01:14:29 +0200824 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200825 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200826 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827 return SRV_STATUS_INTERNAL;
828
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200829 *s->target_addr = __objt_server(s->target)->addr;
830 set_host_port(s->target_addr, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200831
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200832 if (!is_addr(s->target_addr) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200833 /* if the server has no address, we use the same address
834 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200835 * locally on multiple addresses at once. Nothing is done
836 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200837 */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200838 if (!conn_get_dst(cli_conn)) {
839 /* do nothing if we can't retrieve the address */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200840 } else if (cli_conn->dst->ss_family == AF_INET) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200841 ((struct sockaddr_in *)s->target_addr)->sin_addr = ((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200842 } else if (cli_conn->dst->ss_family == AF_INET6) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200843 ((struct sockaddr_in6 *)s->target_addr)->sin6_addr = ((struct sockaddr_in6 *)cli_conn->dst)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200844 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200845 }
846
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847 /* if this server remaps proxied ports, we'll use
848 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200849 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100850 int base_port;
851
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200852 if (conn_get_dst(cli_conn)) {
853 /* First, retrieve the port from the incoming connection */
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200854 base_port = get_host_port(cli_conn->dst);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100855
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200856 /* Second, assign the outgoing connection's port */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200857 base_port += get_host_port(s->target_addr);
858 set_host_port(s->target_addr, base_port);
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200859 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200860 }
861 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200862 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200863 /* connect to the defined dispatch addr */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200864 *s->target_addr = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200866 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200867 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreau3cc01d82019-07-17 11:27:38 +0200868 if (conn_get_dst(cli_conn) &&
Willy Tarreauc0e16f22019-07-17 18:16:30 +0200869 (cli_conn->dst->ss_family == AF_INET || cli_conn->dst->ss_family == AF_INET6))
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200870 *s->target_addr = *cli_conn->dst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200871 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100872 else if (s->be->options & PR_O_HTTP_PROXY) {
873 /* If HTTP PROXY option is set, then server is already assigned
874 * during incoming client request parsing. */
875 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100876 else {
877 /* no server and no LB algorithm ! */
878 return SRV_STATUS_INTERNAL;
879 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200880
Willy Tarreaue7dff022015-04-03 01:14:29 +0200881 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200882 return SRV_STATUS_OK;
883}
884
Willy Tarreau87b09662015-04-03 00:22:06 +0200885/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200886 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200887 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200888 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 * be called before any connection and after any retry or redispatch occurs.
890 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200891 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200892 *
893 * Returns :
894 *
895 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100896 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200897 * SRV_STATUS_QUEUED if the connection has been queued.
898 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100899 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200900 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200901 * SRV_STATUS_INTERNAL for other unrecoverable errors.
902 *
903 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200904int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905{
906 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100907 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200908 int err;
909
910 if (s->pend_pos)
911 return SRV_STATUS_INTERNAL;
912
Willy Tarreau7c669d72008-06-20 15:04:11 +0200913 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200914 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100915 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100916
Willy Tarreau7c669d72008-06-20 15:04:11 +0200917 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100918 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200919 /* This stream was previously assigned to a server. We have to
920 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200921 * - if the server changed :
922 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200923 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 * - increment srv->redispatches and be->redispatches
925 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100926 */
927
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100928 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200929 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
930 s->txn->flags &= ~TX_CK_MASK;
931 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200932 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200933 s->flags |= SF_REDISP;
Olivier Houchard237f7812019-03-08 18:49:07 +0100934 _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
935 _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200936 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +0100937 _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
938 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100939 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100940 }
941 }
942
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943 switch (err) {
944 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200945 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100946 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100947 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200948 return SRV_STATUS_OK; /* dispatch or proxy mode */
949
950 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100951 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200952 return SRV_STATUS_OK;
953
Willy Tarreau87b09662015-04-03 00:22:06 +0200954 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200955 * connection slot yet. Either it is a redispatch, or it was
956 * assigned from persistence information (direct mode).
957 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200958 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200959 /* server scheduled for redirection, and already assigned. We
960 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100961 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100962 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100963 return SRV_STATUS_OK;
964 }
965
Willy Tarreau87b09662015-04-03 00:22:06 +0200966 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200967 * We know we have to queue it into the server's queue, so if a maxqueue
968 * is set on the server, we must also check that the server's queue is
969 * not full, in which case we have to return FULL.
970 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100971 if (srv->maxconn &&
972 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200973
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200975 return SRV_STATUS_FULL;
976
Willy Tarreaubaaee002006-06-26 02:48:02 +0200977 p = pendconn_add(s);
978 if (p)
979 return SRV_STATUS_QUEUED;
980 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200981 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200982 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200983
984 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100985 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200986 return SRV_STATUS_OK;
987
988 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200989 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990 p = pendconn_add(s);
991 if (p)
992 return SRV_STATUS_QUEUED;
993 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200994 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200995
996 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200997 return err;
998
Willy Tarreaubaaee002006-06-26 02:48:02 +0200999 case SRV_STATUS_INTERNAL:
1000 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001001
Willy Tarreaubaaee002006-06-26 02:48:02 +02001002 default:
1003 return SRV_STATUS_INTERNAL;
1004 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +01001005}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001006
Willy Tarreaub1d67742010-03-29 19:36:59 +02001007/* If an explicit source binding is specified on the server and/or backend, and
1008 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +02001009 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +01001010 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +02001011 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001012static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +02001013{
Willy Tarreau29fbe512015-08-20 19:35:14 +02001014#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001015 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001016 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001017 struct connection *cli_conn;
Olivier Houchard09a0f032019-01-17 15:59:13 +01001018 struct connection *srv_conn;
1019
1020 if (objt_cs(s->si[1].end))
1021 srv_conn = cs_conn(__objt_cs(s->si[1].end));
1022 else
1023 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +01001024
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001025 if (srv && srv->conn_src.opts & CO_SRC_BIND)
1026 src = &srv->conn_src;
1027 else if (s->be->conn_src.opts & CO_SRC_BIND)
1028 src = &s->be->conn_src;
1029 else
1030 return;
Willy Tarreau294c4732011-12-16 21:35:50 +01001031
Willy Tarreauca79f592019-07-17 19:04:47 +02001032 if (!sockaddr_alloc(&srv_conn->src))
1033 return;
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001034
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001035 switch (src->opts & CO_SRC_TPROXY_MASK) {
1036 case CO_SRC_TPROXY_ADDR:
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001037 *srv_conn->src = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001038 break;
1039 case CO_SRC_TPROXY_CLI:
1040 case CO_SRC_TPROXY_CIP:
1041 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001042 cli_conn = objt_conn(strm_orig(s));
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001043 if (cli_conn && conn_get_src(cli_conn))
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001044 *srv_conn->src = *cli_conn->src;
1045 else {
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001046 sockaddr_free(&srv_conn->src);
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001047 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001048 break;
1049 case CO_SRC_TPROXY_DYN:
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001050 if (src->bind_hdr_occ && IS_HTX_STRM(s)) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001051 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001052 size_t vlen;
Willy Tarreau294c4732011-12-16 21:35:50 +01001053
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001054 /* bind to the IP in a header */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001055 ((struct sockaddr_in *)srv_conn->src)->sin_family = AF_INET;
1056 ((struct sockaddr_in *)srv_conn->src)->sin_port = 0;
1057 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr = 0;
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001058 if (http_get_htx_hdr(htxbuf(&s->req.buf),
1059 ist2(src->bind_hdr_name, src->bind_hdr_len),
1060 src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001061 ((struct sockaddr_in *)srv_conn->src)->sin_addr.s_addr =
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001062 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001063 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001064 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001065 break;
1066 default:
Willy Tarreau16aa4af2019-07-18 11:16:41 +02001067 sockaddr_free(&srv_conn->src);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001068 }
1069#endif
1070}
1071
Olivier Houchard566df302020-03-06 18:18:56 +01001072/* Attempt to get a backend connection from the specified mt_list array
1073 * (safe or idle connections).
1074 */
1075static struct connection *conn_backend_get(struct server *srv, int is_safe)
1076{
1077 struct mt_list *mt_list = is_safe ? srv->safe_conns : srv->idle_conns;
1078 struct connection *conn;
1079 int i;
1080 int found = 0;
1081
1082 /* We need to lock even if this is our own list, because another
1083 * thread may be trying to migrate that connection, and we don't want
1084 * to end up with two threads using the same connection.
1085 */
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001086 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].toremove_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001087 conn = MT_LIST_POP(&mt_list[tid], struct connection *, list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001088 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].toremove_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001089
1090 /* If we found a connection in our own list, and we don't have to
1091 * steal one from another thread, then we're done.
1092 */
Olivier Houchardfdc7ee22020-03-19 23:52:28 +01001093 if (conn) {
1094 i = tid;
1095 goto fix_conn;
1096 }
Olivier Houchard566df302020-03-06 18:18:56 +01001097
1098 /* Lookup all other threads for an idle connection, starting from tid + 1 */
1099 for (i = tid; !found && (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) {
1100 struct mt_list *elt1, elt2;
1101
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001102 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[i].toremove_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001103 mt_list_for_each_entry_safe(conn, &mt_list[i], list, elt1, elt2) {
1104 if (conn->mux->takeover && conn->mux->takeover(conn) == 0) {
1105 MT_LIST_DEL_SAFE(elt1);
1106 found = 1;
1107 break;
1108 }
1109 }
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001110 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[i].toremove_lock);
Olivier Houchard566df302020-03-06 18:18:56 +01001111 }
1112
1113 if (!found)
1114 conn = NULL;
1115 else {
Olivier Houchardfdc7ee22020-03-19 23:52:28 +01001116fix_conn:
Olivier Houchard566df302020-03-06 18:18:56 +01001117 conn->idle_time = 0;
1118 _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1);
1119 _HA_ATOMIC_SUB(&srv->curr_idle_thr[i], 1);
1120 _HA_ATOMIC_SUB(is_safe ? &srv->curr_safe_nb : &srv->curr_idle_nb, 1);
1121 __ha_barrier_atomic_store();
1122 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&conn->list));
1123 }
1124 return conn;
1125}
1126
Willy Tarreaubaaee002006-06-26 02:48:02 +02001127/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001128 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001129 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001130 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001131 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001132 * - SF_ERR_NONE if everything's OK
1133 * - SF_ERR_SRVTO if there are no more servers
1134 * - SF_ERR_SRVCL if the connection was refused by the server
1135 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1136 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1137 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001138 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001139 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001140 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001141 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001142int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001143{
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001144 struct connection *cli_conn = objt_conn(strm_orig(s));
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001145 struct connection *srv_conn = NULL;
Olivier Houchard2442f682018-12-01 17:03:38 +01001146 struct conn_stream *srv_cs = NULL;
Willy Tarreaub0821862019-07-18 19:26:11 +02001147 struct sess_srv_list *srv_list;
Willy Tarreau827aee92011-03-10 16:55:02 +01001148 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001149 int reuse = 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001150 int reuse_orphan = 0;
Olivier Houchard5cd62172019-01-04 15:52:26 +01001151 int init_mux = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001152 int err;
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001153 int was_unused = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001154
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001155
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001156 /* This will catch some corner cases such as lying connections resulting from
1157 * retries or connect timeouts but will rarely trigger.
Olivier Houchard0fa989f2018-12-05 17:08:55 +01001158 */
Willy Tarreaua5797aa2019-07-18 18:40:06 +02001159 si_release_endpoint(&s->si[1]);
1160
Willy Tarreaub0821862019-07-18 19:26:11 +02001161 /* first, search for a matching connection in the session's idle conns */
1162 list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) {
1163 if (srv_list->target == s->target) {
1164 list_for_each_entry(srv_conn, &srv_list->conn_list, session_list) {
1165 if (conn_xprt_ready(srv_conn) &&
1166 srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) {
1167 reuse = 1;
1168 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001169 }
1170 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001171 break;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001172 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001173 }
Olivier Houchard351411f2018-12-27 17:20:54 +01001174
Olivier Houchard2444aa52020-01-20 13:56:01 +01001175 if (!reuse)
Willy Tarreaub0821862019-07-18 19:26:11 +02001176 srv_conn = NULL;
Olivier Houchard00cf70f2018-11-30 17:24:55 +01001177
Willy Tarreau7b004922015-08-04 19:34:21 +02001178 srv = objt_server(s->target);
Willy Tarreau34601a82013-12-15 16:33:46 +01001179
Willy Tarreau8dff9982015-08-04 20:45:52 +02001180 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001181 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001182
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001183 /* Below we pick connections from the safe, idle or
1184 * available (which are safe too) lists based
Willy Tarreau449d74a2015-08-05 17:16:33 +02001185 * on the strategy, the fact that this is a first or second
1186 * (retryable) request, with the indicated priority (1 or 2) :
1187 *
1188 * SAFE AGGR ALWS
1189 *
1190 * +-----+-----+ +-----+-----+ +-----+-----+
1191 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1192 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1193 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1194 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1195 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1196 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
Willy Tarreaub0821862019-07-18 19:26:11 +02001197 *
1198 * Idle conns are necessarily looked up on the same thread so
1199 * that there is no concurrency issues.
Willy Tarreau449d74a2015-08-05 17:16:33 +02001200 */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001201 if (srv->available_conns && !LIST_ISEMPTY(&srv->available_conns[tid]) &&
Olivier Houchard566df302020-03-06 18:18:56 +01001202 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001203 srv_conn = LIST_ELEM(srv->available_conns[tid].n, struct connection *, list);
Olivier Houchard566df302020-03-06 18:18:56 +01001204 reuse = 1;
Willy Tarreau449d74a2015-08-05 17:16:33 +02001205 }
Olivier Houchard566df302020-03-06 18:18:56 +01001206 else if (!srv_conn && srv->curr_idle_conns > 0) {
1207 if (srv->idle_conns &&
1208 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1209 s->txn && (s->txn->flags & TX_NOT_FIRST)) &&
1210 srv->curr_idle_nb > 0) {
1211 srv_conn = conn_backend_get(srv, 0);
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001212 was_unused = 1;
Olivier Houchard566df302020-03-06 18:18:56 +01001213 }
1214 else if (srv->safe_conns &&
1215 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1216 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR) &&
1217 srv->curr_safe_nb > 0) {
1218 srv_conn = conn_backend_get(srv, 1);
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001219 was_unused = 1;
Olivier Houchard566df302020-03-06 18:18:56 +01001220 }
1221 else if (srv->idle_conns &&
1222 ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1223 srv->curr_idle_nb > 0) {
1224 srv_conn = conn_backend_get(srv, 0);
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001225 was_unused = 1;
Olivier Houchard566df302020-03-06 18:18:56 +01001226 }
1227 /* If we've picked a connection from the pool, we now have to
1228 * detach it. We may have to get rid of the previous idle
1229 * connection we had, so for this we try to swap it with the
1230 * other owner's. That way it may remain alive for others to
1231 * pick.
1232 */
1233 if (srv_conn) {
1234 reuse_orphan = 1;
1235 reuse = 1;
1236 srv_conn->flags &= ~CO_FL_LIST_MASK;
1237 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001238 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001239 }
1240
Willy Tarreaub0821862019-07-18 19:26:11 +02001241
1242 /* here reuse might have been set above, indicating srv_conn finally
1243 * is OK.
1244 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001245 if (reuse) {
1246 /* Disable connection reuse if a dynamic source is used.
1247 * As long as we don't share connections between servers,
1248 * we don't need to disable connection reuse on no-idempotent
1249 * requests nor when PROXY protocol is used.
1250 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001251 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1252 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1253 reuse = 0;
1254 }
1255 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1256 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1257 reuse = 0;
1258 }
1259 }
Willy Tarreaub0821862019-07-18 19:26:11 +02001260
Olivier Houchardb3397362020-03-16 13:49:00 +01001261 if (ha_used_fds > global.tune.pool_high_count && srv && srv->idle_conns) {
Olivier Houchard88698d92019-04-16 19:07:22 +02001262 struct connection *tokill_conn;
1263
1264 /* We can't reuse a connection, and e have more FDs than deemd
1265 * acceptable, attempt to kill an idling connection
1266 */
1267 /* First, try from our own idle list */
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001268 tokill_conn = MT_LIST_POP(&srv->idle_conns[tid],
Olivier Houchard88698d92019-04-16 19:07:22 +02001269 struct connection *, list);
1270 if (tokill_conn)
1271 tokill_conn->mux->destroy(tokill_conn->ctx);
1272 /* If not, iterate over other thread's idling pool, and try to grab one */
1273 else {
1274 int i;
1275
1276 for (i = 0; i < global.nbthread; i++) {
1277 if (i == tid)
1278 continue;
Willy Tarreau08e2b412019-05-26 11:50:08 +02001279
1280 // just silence stupid gcc which reports an absurd
1281 // out-of-bounds warning for <i> which is always
1282 // exactly zero without threads, but it seems to
1283 // see it possibly larger.
1284 ALREADY_CHECKED(i);
1285
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001286 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].toremove_lock);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001287 tokill_conn = MT_LIST_POP(&srv->idle_conns[i],
Olivier Houchard88698d92019-04-16 19:07:22 +02001288 struct connection *, list);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01001289 if (!tokill_conn)
1290 tokill_conn = MT_LIST_POP(&srv->safe_conns[i],
1291 struct connection *, list);
Olivier Houchard88698d92019-04-16 19:07:22 +02001292 if (tokill_conn) {
1293 /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */
1294
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001295 MT_LIST_ADDQ(&idle_conns[i].toremove_conns,
Olivier Houchard859dc802019-08-08 15:47:21 +02001296 (struct mt_list *)&tokill_conn->list);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001297 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
1298 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].toremove_lock);
Olivier Houchard88698d92019-04-16 19:07:22 +02001299 break;
1300 }
Willy Tarreau4d82bf52020-06-28 00:19:17 +02001301 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].toremove_lock);
Olivier Houchard88698d92019-04-16 19:07:22 +02001302 }
1303 }
1304
1305 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001306 /* If we're really reusing the connection, remove it from the orphan
1307 * list and add it back to the idle list.
1308 */
Christopher Faulet46451d62019-04-19 15:39:22 +02001309 if (reuse) {
Olivier Houchard566df302020-03-06 18:18:56 +01001310 if (!reuse_orphan) {
Christopher Faulet46451d62019-04-19 15:39:22 +02001311 if (srv_conn->flags & CO_FL_SESS_IDLE) {
1312 struct session *sess = srv_conn->owner;
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001313
Christopher Faulet46451d62019-04-19 15:39:22 +02001314 srv_conn->flags &= ~CO_FL_SESS_IDLE;
1315 sess->idle_conns--;
1316 }
Olivier Houcharda2dbeb22018-12-28 18:50:57 +01001317 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001318 }
Willy Tarreau34601a82013-12-15 16:33:46 +01001319
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001320 if (reuse) {
Willy Tarreaub0821862019-07-18 19:26:11 +02001321 if (srv_conn->mux) {
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001322 int avail = srv_conn->mux->avail_streams(srv_conn);
1323
1324 if (avail <= 1) {
Olivier Houchard2442f682018-12-01 17:03:38 +01001325 /* No more streams available, remove it from the list */
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001326 MT_LIST_DEL(&srv_conn->list);
Olivier Houchard2442f682018-12-01 17:03:38 +01001327 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001328
1329 if (avail >= 1) {
1330 srv_cs = srv_conn->mux->attach(srv_conn, s->sess);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001331 if (srv_cs)
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001332 si_attach_cs(&s->si[1], srv_cs);
Olivier Houchard2444aa52020-01-20 13:56:01 +01001333 else
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001334 srv_conn = NULL;
1335 }
Olivier Houchard134a2042018-12-28 14:45:47 +01001336 else
1337 srv_conn = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001338 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001339 /* otherwise srv_conn is left intact */
1340 }
1341 else
1342 srv_conn = NULL;
1343
1344 /* no reuse or failed to reuse the connection above, pick a new one */
1345 if (!srv_conn) {
1346 srv_conn = conn_new();
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001347 was_unused = 1;
Willy Tarreau1da41ec2019-02-01 16:38:48 +01001348 if (srv_conn)
1349 srv_conn->target = s->target;
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001350 srv_cs = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001351 }
Willy Tarreau2c7dedd2019-01-24 18:22:19 +01001352
Olivier Houchard4ba494c2020-06-28 16:14:09 +02001353 if (srv_conn && srv && was_unused) {
Olivier Houchardcf612a02020-03-25 19:41:03 +01001354 _HA_ATOMIC_ADD(&srv->curr_used_conns, 1);
1355 /* It's ok not to do that atomically, we don't need an
1356 * exact max.
1357 */
1358 if (srv->max_used_conns < srv->curr_used_conns)
1359 srv->max_used_conns = srv->curr_used_conns;
1360 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001361 if (!srv_conn || !sockaddr_alloc(&srv_conn->dst)) {
1362 if (srv_conn)
1363 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001364 return SF_ERR_RESOURCE;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001365 }
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001366
Willy Tarreaue7dff022015-04-03 01:14:29 +02001367 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001368 err = assign_server_address(s);
Olivier Houchardc0caac22020-03-20 14:26:32 +01001369 if (err != SRV_STATUS_OK) {
1370 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001371 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001372 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001373 }
1374
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001375 /* copy the target address into the connection */
1376 *srv_conn->dst = *s->target_addr;
1377
1378 /* Copy network namespace from client connection */
1379 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
1380
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001381 if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001382 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001383 if (srv)
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001384 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001385 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1386 /* proxies exclusively run on raw_sock right now */
Willy Tarreauc0e16f22019-07-17 18:16:30 +02001387 conn_prepare(srv_conn, protocol_by_family(srv_conn->dst->ss_family), xprt_get(XPRT_RAW));
Olivier Houchardc0caac22020-03-20 14:26:32 +01001388 if (!(srv_conn->ctrl)) {
1389 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001390 return SF_ERR_INTERNAL;
Olivier Houchardc0caac22020-03-20 14:26:32 +01001391 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001392 }
Olivier Houchardc0caac22020-03-20 14:26:32 +01001393 else {
1394 conn_free(srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001395 return SF_ERR_INTERNAL; /* how did we get there ? */
Olivier Houchardc0caac22020-03-20 14:26:32 +01001396 }
Willy Tarreaud02394b2012-05-11 18:32:18 +02001397
Olivier Houchard8af03b32020-01-22 17:34:54 +01001398 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1399 if (!srv_cs) {
1400 conn_free(srv_conn);
1401 return SF_ERR_RESOURCE;
1402 }
1403 srv_conn->ctx = srv_cs;
Olivier Houchardecffb7d2020-01-24 14:10:55 +01001404#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Olivier Houchard12950162018-11-23 14:32:08 +01001405 if (!srv ||
1406 ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
Olivier Houchardb4a8b2c2019-06-15 00:13:15 +02001407 srv->mux_proto || s->be->mode != PR_MODE_HTTP))
Olivier Houchard201b9f42018-11-21 00:16:29 +01001408#endif
Olivier Houchard5cd62172019-01-04 15:52:26 +01001409 init_mux = 1;
Olivier Houchard68ad53c2020-05-27 01:26:06 +02001410#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
1411 else
1412 srv_conn->owner = s->sess;
1413#endif
Willy Tarreauff605db2013-12-20 11:09:51 +01001414 /* process the case where the server requires the PROXY protocol to be sent */
1415 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001416
Willy Tarreau7b004922015-08-04 19:34:21 +02001417 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001418 srv_conn->flags |= CO_FL_PRIVATE;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001419 srv_conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreauff605db2013-12-20 11:09:51 +01001420 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001421 if (cli_conn)
Willy Tarreau3cc01d82019-07-17 11:27:38 +02001422 conn_get_dst(cli_conn);
Willy Tarreauff605db2013-12-20 11:09:51 +01001423 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001424
Willy Tarreauff605db2013-12-20 11:09:51 +01001425 assign_tproxy_address(s);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001426
1427 if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) {
1428 srv_conn->send_proxy_ofs = 1;
1429 srv_conn->flags |= CO_FL_SOCKS4;
1430 }
Willy Tarreauff605db2013-12-20 11:09:51 +01001431 }
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001432 else if (!conn_xprt_ready(srv_conn)) {
1433 if (srv_conn->mux->reset)
1434 srv_conn->mux->reset(srv_conn);
1435 }
Olivier Houcharde8f5f5d2019-10-25 17:00:54 +02001436 else {
1437 /* Only consider we're doing reuse if the connection was
1438 * ready.
1439 */
1440 if (srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)
1441 s->flags |= SF_SRV_REUSED;
1442 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001443
William Lallemandb7ff6a32012-03-02 14:35:21 +01001444 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001445 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001446 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001447
Willy Tarreau14f8e862012-08-30 22:23:13 +02001448 /* disable lingering */
1449 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001450 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001451
Willy Tarreauf1573842018-12-14 11:35:36 +01001452 if (s->flags & SF_SRV_REUSED) {
Olivier Houchard237f7812019-03-08 18:49:07 +01001453 _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001454 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001455 _HA_ATOMIC_ADD(&srv->counters.reuse, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001456 } else {
Olivier Houchard237f7812019-03-08 18:49:07 +01001457 _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1);
Willy Tarreaucc79ed22018-12-15 15:11:36 +01001458 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001459 _HA_ATOMIC_ADD(&srv->counters.connect, 1);
Willy Tarreauf1573842018-12-14 11:35:36 +01001460 }
1461
Olivier Houchard201b9f42018-11-21 00:16:29 +01001462 err = si_connect(&s->si[1], srv_conn);
Willy Tarreau09e02032019-07-18 16:18:20 +02001463 if (err != SF_ERR_NONE)
1464 return err;
1465
Olivier Houchard5cd62172019-01-04 15:52:26 +01001466 /* We have to defer the mux initialization until after si_connect()
1467 * has been called, as we need the xprt to have been properly
1468 * initialized, or any attempt to recv during the mux init may
1469 * fail, and flag the connection as CO_FL_ERROR.
1470 */
1471 if (init_mux) {
Olivier Houchard74931142019-01-29 19:11:16 +01001472 if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) {
1473 conn_full_close(srv_conn);
Olivier Houchard5cd62172019-01-04 15:52:26 +01001474 return SF_ERR_INTERNAL;
Olivier Houchard74931142019-01-29 19:11:16 +01001475 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001476 /* If we're doing http-reuse always, and the connection
1477 * is an http2 connection, add it to the available list,
1478 * so that others can use it right away.
1479 */
1480 if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) &&
1481 srv_conn->mux->avail_streams(srv_conn) > 0)
Olivier Houchardf0d4dff2020-03-06 18:12:03 +01001482 LIST_ADDQ(&srv->available_conns[tid], mt_list_to_list(&srv_conn->list));
Olivier Houchard5cd62172019-01-04 15:52:26 +01001483 }
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001484 /* The CO_FL_SEND_PROXY flag may have been set by the connect method,
1485 * if so, add our handshake pseudo-XPRT now.
1486 */
Willy Tarreau4450b582020-01-23 15:23:13 +01001487 if ((srv_conn->flags & CO_FL_HANDSHAKE)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +02001488 if (xprt_add_hs(srv_conn) < 0) {
1489 conn_full_close(srv_conn);
1490 return SF_ERR_INTERNAL;
1491 }
1492 }
Olivier Houchard5cd62172019-01-04 15:52:26 +01001493
Willy Tarreaubaaee002006-06-26 02:48:02 +02001494
Willy Tarreau5db847a2019-05-09 14:13:35 +02001495#if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L))
Olivier Houchard4cd2af42019-05-06 15:18:27 +02001496
Olivier Houchard8694e5b2019-06-15 00:14:05 +02001497 if (!reuse && cli_conn && srv && srv_conn->mux &&
Olivier Houchard522eea72017-11-03 16:27:47 +01001498 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001499 /* Only attempt to use early data if either the client sent
1500 * early data, so that we know it can handle a 425, or if
1501 * we are allwoed to retry requests on early data failure, and
1502 * it's our first try
1503 */
1504 ((cli_conn->flags & CO_FL_EARLY_DATA) ||
1505 ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
1506 s->si[1].conn_retries == s->be->conn_retries)) &&
1507 !channel_is_empty(si_oc(&s->si[1])) &&
1508 srv_conn->flags & CO_FL_SSL_WAIT_HS)
Olivier Houchard522eea72017-11-03 16:27:47 +01001509 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001510#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001511
Willy Tarreau14f8e862012-08-30 22:23:13 +02001512 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001513 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001514
Willy Tarreau827aee92011-03-10 16:55:02 +01001515 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001516 int count;
1517
Willy Tarreaue7dff022015-04-03 01:14:29 +02001518 s->flags |= SF_CURR_SESS;
Olivier Houchard237f7812019-03-08 18:49:07 +01001519 count = _HA_ATOMIC_ADD(&srv->cur_sess, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +02001520 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001521 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001522 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001523
1524#ifdef USE_OPENSSL
1525 if (srv->ssl_ctx.sni) {
1526 struct sample *smp;
Willy Tarreau732eac42015-07-09 11:40:25 +02001527
Christopher Faulet7d37fbb2019-07-15 15:37:57 +02001528 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
1529 srv->ssl_ctx.sni, SMP_T_STR);
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001530 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001531 ssl_sock_set_servername(srv_conn,
1532 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001533 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001534 }
1535 }
1536#endif /* USE_OPENSSL */
1537
Willy Tarreaubaaee002006-06-26 02:48:02 +02001538 }
1539
Willy Tarreauada4c582020-03-04 16:42:03 +01001540 /* Now handle synchronously connected sockets. We know the stream-int
1541 * is at least in state SI_ST_CON. These ones typically are UNIX
1542 * sockets, socket pairs, and occasionally TCP connections on the
1543 * loopback on a heavily loaded system.
1544 */
1545 if ((srv_conn->flags & CO_FL_ERROR || srv_cs->flags & CS_FL_ERROR))
1546 s->si[1].flags |= SI_FL_ERR;
1547
1548 /* If we had early data, and the handshake ended, then
1549 * we can remove the flag, and attempt to wake the task up,
1550 * in the event there's an analyser waiting for the end of
1551 * the handshake.
1552 */
1553 if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))
1554 srv_cs->flags &= ~CS_FL_WAIT_FOR_HS;
1555
1556 if (!si_state_in(s->si[1].state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
1557 (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) {
1558 s->si[1].exp = TICK_ETERNITY;
1559 si_oc(&s->si[1])->flags |= CF_WRITE_NULL;
1560 if (s->si[1].state == SI_ST_CON)
1561 s->si[1].state = SI_ST_RDY;
1562 }
1563
1564 /* Report EOI on the channel if it was reached from the mux point of
1565 * view.
1566 *
1567 * Note: This test is only required because si_cs_process is also the SI
1568 * wake callback. Otherwise si_cs_recv()/si_cs_send() already take
1569 * care of it.
1570 */
1571 if ((srv_cs->flags & CS_FL_EOI) && !(si_ic(&s->si[1])->flags & CF_EOI))
1572 si_ic(&s->si[1])->flags |= (CF_EOI|CF_READ_PARTIAL);
1573
Willy Tarreaue7dff022015-04-03 01:14:29 +02001574 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001575}
1576
1577
Willy Tarreaubaaee002006-06-26 02:48:02 +02001578/* This function performs the "redispatch" part of a connection attempt. It
1579 * will assign a server if required, queue the connection if required, and
1580 * handle errors that might arise at this level. It can change the server
1581 * state. It will return 1 if it encounters an error, switches the server
1582 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1583 * that the connection is ready to use.
1584 */
1585
Willy Tarreau87b09662015-04-03 00:22:06 +02001586int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001587{
Willy Tarreau827aee92011-03-10 16:55:02 +01001588 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001589 int conn_err;
1590
1591 /* We know that we don't have any connection pending, so we will
1592 * try to get a new one, and wait in this state if it's queued
1593 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001594 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001595 conn_err = assign_server_and_queue(s);
1596 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001597
Willy Tarreaubaaee002006-06-26 02:48:02 +02001598 switch (conn_err) {
1599 case SRV_STATUS_OK:
1600 break;
1601
Willy Tarreau7c669d72008-06-20 15:04:11 +02001602 case SRV_STATUS_FULL:
1603 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1604 * and we can redispatch to another server, or it is not and we return
1605 * 503. This only makes sense in DIRECT mode however, because normal LB
1606 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001607 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001608 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001609 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001610 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001611 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001612 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02001613 sockaddr_free(&s->target_addr);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001614 goto redispatch;
1615 }
1616
Willy Tarreau350f4872014-11-28 14:42:25 +01001617 if (!s->si[1].err_type) {
1618 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001619 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001620
Olivier Houchard237f7812019-03-08 18:49:07 +01001621 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1622 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001623 return 1;
1624
Willy Tarreaubaaee002006-06-26 02:48:02 +02001625 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001626 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001627 if (!s->si[1].err_type) {
1628 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001629 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001630
Olivier Houchard237f7812019-03-08 18:49:07 +01001631 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001632 return 1;
1633
1634 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001635 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1636 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001637 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001638 return 1;
1639
Willy Tarreaubaaee002006-06-26 02:48:02 +02001640 case SRV_STATUS_INTERNAL:
1641 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001642 if (!s->si[1].err_type) {
1643 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001644 }
1645
Willy Tarreau827aee92011-03-10 16:55:02 +01001646 if (srv)
1647 srv_inc_sess_ctr(srv);
1648 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001649 srv_set_sess_last(srv);
1650 if (srv)
Olivier Houchard237f7812019-03-08 18:49:07 +01001651 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1652 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001653
Willy Tarreau87b09662015-04-03 00:22:06 +02001654 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001655 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001656 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001657 return 1;
1658 }
1659 /* if we get here, it's because we got SRV_STATUS_OK, which also
1660 * means that the connection has not been queued.
1661 */
1662 return 0;
1663}
1664
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001665/* Check if the connection request is in such a state that it can be aborted. */
1666static int back_may_abort_req(struct channel *req, struct stream *s)
1667{
1668 return ((req->flags & (CF_READ_ERROR)) ||
1669 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
1670 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
1671}
1672
1673/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1674 * SI_ST_TAR. Other input states are simply ignored.
1675 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1676 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1677 * conditions.
1678 */
1679void back_try_conn_req(struct stream *s)
1680{
1681 struct server *srv = objt_server(s->target);
1682 struct stream_interface *si = &s->si[1];
1683 struct channel *req = &s->req;
1684
1685 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1686
1687 if (si->state == SI_ST_ASS) {
1688 /* Server assigned to connection request, we have to try to connect now */
1689 int conn_err;
1690
1691 /* Before we try to initiate the connection, see if the
1692 * request may be aborted instead.
1693 */
1694 if (back_may_abort_req(req, s)) {
1695 si->err_type |= SI_ET_CONN_ABRT;
1696 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1697 goto abort_connection;
1698 }
1699
1700 conn_err = connect_server(s);
1701 srv = objt_server(s->target);
1702
1703 if (conn_err == SF_ERR_NONE) {
1704 /* state = SI_ST_CON or SI_ST_EST now */
1705 if (srv)
1706 srv_inc_sess_ctr(srv);
1707 if (srv)
1708 srv_set_sess_last(srv);
1709 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1710 goto end;
1711 }
1712
1713 /* We have received a synchronous error. We might have to
1714 * abort, retry immediately or redispatch.
1715 */
1716 if (conn_err == SF_ERR_INTERNAL) {
1717 if (!si->err_type) {
1718 si->err_type = SI_ET_CONN_OTHER;
1719 }
1720
1721 if (srv)
1722 srv_inc_sess_ctr(srv);
1723 if (srv)
1724 srv_set_sess_last(srv);
1725 if (srv)
1726 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1727 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1728
1729 /* release other streams waiting for this server */
1730 sess_change_server(s, NULL);
1731 if (may_dequeue_tasks(srv, s->be))
1732 process_srv_queue(srv);
1733
1734 /* Failed and not retryable. */
1735 si_shutr(si);
1736 si_shutw(si);
1737 req->flags |= CF_WRITE_ERROR;
1738
1739 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1740
1741 /* we may need to know the position in the queue for logging */
1742 pendconn_cond_unlink(s->pend_pos);
1743
1744 /* no stream was ever accounted for this server */
1745 si->state = SI_ST_CLO;
1746 if (s->srv_error)
1747 s->srv_error(s, si);
1748 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1749 goto end;
1750 }
1751
1752 /* We are facing a retryable error, but we don't want to run a
1753 * turn-around now, as the problem is likely a source port
1754 * allocation problem, so we want to retry now.
1755 */
1756 si->state = SI_ST_CER;
1757 si->flags &= ~SI_FL_ERR;
1758 back_handle_st_cer(s);
1759
1760 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1761 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1762 }
1763 else if (si->state == SI_ST_QUE) {
1764 /* connection request was queued, check for any update */
1765 if (!pendconn_dequeue(s)) {
1766 /* The connection is not in the queue anymore. Either
1767 * we have a server connection slot available and we
1768 * go directly to the assigned state, or we need to
1769 * load-balance first and go to the INI state.
1770 */
1771 si->exp = TICK_ETERNITY;
1772 if (unlikely(!(s->flags & SF_ASSIGNED)))
1773 si->state = SI_ST_REQ;
1774 else {
1775 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1776 si->state = SI_ST_ASS;
1777 }
1778 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1779 goto end;
1780 }
1781
1782 /* Connection request still in queue... */
1783 if (si->flags & SI_FL_EXP) {
1784 /* ... and timeout expired */
1785 si->exp = TICK_ETERNITY;
1786 si->flags &= ~SI_FL_EXP;
1787 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1788
1789 /* we may need to know the position in the queue for logging */
1790 pendconn_cond_unlink(s->pend_pos);
1791
1792 if (srv)
1793 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1794 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
1795 si_shutr(si);
1796 si_shutw(si);
1797 req->flags |= CF_WRITE_TIMEOUT;
1798 if (!si->err_type)
1799 si->err_type = SI_ET_QUEUE_TO;
1800 si->state = SI_ST_CLO;
1801 if (s->srv_error)
1802 s->srv_error(s, si);
1803 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1804 goto end;
1805 }
1806
1807 /* Connection remains in queue, check if we have to abort it */
1808 if (back_may_abort_req(req, s)) {
1809 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1810
1811 /* we may need to know the position in the queue for logging */
1812 pendconn_cond_unlink(s->pend_pos);
1813
1814 si->err_type |= SI_ET_QUEUE_ABRT;
1815 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1816 goto abort_connection;
1817 }
1818
1819 /* Nothing changed */
1820 }
1821 else if (si->state == SI_ST_TAR) {
1822 /* Connection request might be aborted */
1823 if (back_may_abort_req(req, s)) {
1824 si->err_type |= SI_ET_CONN_ABRT;
1825 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1826 goto abort_connection;
1827 }
1828
1829 if (!(si->flags & SI_FL_EXP))
1830 return; /* still in turn-around */
1831
1832 si->flags &= ~SI_FL_EXP;
1833 si->exp = TICK_ETERNITY;
1834
1835 /* we keep trying on the same server as long as the stream is
1836 * marked "assigned".
1837 * FIXME: Should we force a redispatch attempt when the server is down ?
1838 */
1839 if (s->flags & SF_ASSIGNED)
1840 si->state = SI_ST_ASS;
1841 else
1842 si->state = SI_ST_REQ;
1843
1844 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1845 }
1846
1847 end:
1848 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1849 return;
1850
1851abort_connection:
1852 /* give up */
1853 si->exp = TICK_ETERNITY;
1854 si->flags &= ~SI_FL_EXP;
1855 si_shutr(si);
1856 si_shutw(si);
1857 si->state = SI_ST_CLO;
1858 if (s->srv_error)
1859 s->srv_error(s, si);
1860 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1861 return;
1862}
1863
1864/* This function initiates a server connection request on a stream interface
1865 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1866 * a real connection to a server, indicating that a server has been assigned,
1867 * or SI_ST_EST for a successful connection to an applet. It may also return
1868 * SI_ST_QUE, or SI_ST_CLO upon error.
1869 */
1870void back_handle_st_req(struct stream *s)
1871{
1872 struct stream_interface *si = &s->si[1];
1873
1874 if (si->state != SI_ST_REQ)
1875 return;
1876
1877 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1878
1879 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1880 /* the applet directly goes to the EST state */
1881 struct appctx *appctx = objt_appctx(si->end);
1882
1883 if (!appctx || appctx->applet != __objt_applet(s->target))
1884 appctx = si_register_handler(si, objt_applet(s->target));
1885
1886 if (!appctx) {
1887 /* No more memory, let's immediately abort. Force the
1888 * error code to ignore the ERR_LOCAL which is not a
1889 * real error.
1890 */
1891 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
1892
1893 si_shutr(si);
1894 si_shutw(si);
1895 s->req.flags |= CF_WRITE_ERROR;
1896 si->err_type = SI_ET_CONN_RES;
1897 si->state = SI_ST_CLO;
1898 if (s->srv_error)
1899 s->srv_error(s, si);
1900 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1901 goto end;
1902 }
1903
1904 if (tv_iszero(&s->logs.tv_request))
1905 s->logs.tv_request = now;
1906 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1907 si->state = SI_ST_EST;
1908 si->err_type = SI_ET_NONE;
1909 be_set_sess_last(s->be);
1910
1911 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1912 /* let back_establish() finish the job */
1913 goto end;
1914 }
1915
1916 /* Try to assign a server */
1917 if (srv_redispatch_connect(s) != 0) {
1918 /* We did not get a server. Either we queued the
1919 * connection request, or we encountered an error.
1920 */
1921 if (si->state == SI_ST_QUE) {
1922 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1923 goto end;
1924 }
1925
1926 /* we did not get any server, let's check the cause */
1927 si_shutr(si);
1928 si_shutw(si);
1929 s->req.flags |= CF_WRITE_ERROR;
1930 if (!si->err_type)
1931 si->err_type = SI_ET_CONN_OTHER;
1932 si->state = SI_ST_CLO;
1933 if (s->srv_error)
1934 s->srv_error(s, si);
1935 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1936 goto end;
1937 }
1938
1939 /* The server is assigned */
1940 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1941 si->state = SI_ST_ASS;
1942 be_set_sess_last(s->be);
1943 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1944
1945 end:
1946 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1947}
1948
1949/* This function is called with (si->state == SI_ST_CON) meaning that a
1950 * connection was attempted and that the file descriptor is already allocated.
1951 * We must check for timeout, error and abort. Possible output states are
1952 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
1953 * works with connection-based streams. We know that there were no I/O event
1954 * when reaching this function. Timeouts and errors are *not* cleared.
1955 */
1956void back_handle_st_con(struct stream *s)
1957{
1958 struct stream_interface *si = &s->si[1];
1959 struct channel *req = &s->req;
1960 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001961
1962 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1963
1964 /* the client might want to abort */
1965 if ((rep->flags & CF_SHUTW) ||
1966 ((req->flags & CF_SHUTW_NOW) &&
1967 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
1968 si->flags |= SI_FL_NOLINGER;
1969 si_shutw(si);
1970 si->err_type |= SI_ET_CONN_ABRT;
1971 if (s->srv_error)
1972 s->srv_error(s, si);
1973 /* Note: state = SI_ST_DIS now */
1974 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau062df2c2020-01-10 06:17:03 +01001975 goto end;
1976 }
1977
Willy Tarreau062df2c2020-01-10 06:17:03 +01001978 done:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001979 /* retryable error ? */
Willy Tarreau062df2c2020-01-10 06:17:03 +01001980 if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001981 if (!si->err_type) {
1982 if (si->flags & SI_FL_ERR)
1983 si->err_type = SI_ET_CONN_ERR;
1984 else
1985 si->err_type = SI_ET_CONN_TO;
1986 }
1987
1988 si->state = SI_ST_CER;
1989 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1990 }
1991
Willy Tarreau062df2c2020-01-10 06:17:03 +01001992 end:
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001993 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1994}
1995
1996/* This function is called with (si->state == SI_ST_CER) meaning that a
1997 * previous connection attempt has failed and that the file descriptor
1998 * has already been released. Possible causes include asynchronous error
1999 * notification and time out. Possible output states are SI_ST_CLO when
2000 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
2001 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
2002 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
2003 * marked as in error state. Timeouts and errors are cleared before retrying.
2004 */
2005void back_handle_st_cer(struct stream *s)
2006{
2007 struct stream_interface *si = &s->si[1];
2008 struct conn_stream *cs = objt_cs(si->end);
2009 struct connection *conn = cs_conn(cs);
2010
2011 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2012
2013 si->exp = TICK_ETERNITY;
2014 si->flags &= ~SI_FL_EXP;
2015
2016 /* we probably have to release last stream from the server */
2017 if (objt_server(s->target)) {
2018 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
2019
2020 if (s->flags & SF_CURR_SESS) {
2021 s->flags &= ~SF_CURR_SESS;
2022 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
2023 }
2024
2025 if ((si->flags & SI_FL_ERR) &&
2026 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
2027 /* We tried to connect to a server which is configured
2028 * with "verify required" and which doesn't have the
2029 * "verifyhost" directive. The server presented a wrong
2030 * certificate (a certificate for an unexpected name),
2031 * which implies that we have used SNI in the handshake,
2032 * and that the server doesn't have the associated cert
2033 * and presented a default one.
2034 *
2035 * This is a serious enough issue not to retry. It's
2036 * especially important because this wrong name might
2037 * either be the result of a configuration error, and
2038 * retrying will only hammer the server, or is caused
2039 * by the use of a wrong SNI value, most likely
2040 * provided by the client and we don't want to let the
2041 * client provoke retries.
2042 */
2043 si->conn_retries = 0;
2044 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2045 }
2046 }
2047
2048 /* ensure that we have enough retries left */
2049 si->conn_retries--;
2050 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
2051 if (!si->err_type) {
2052 si->err_type = SI_ET_CONN_ERR;
2053 }
2054
2055 if (objt_server(s->target))
2056 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
2057 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
2058 sess_change_server(s, NULL);
2059 if (may_dequeue_tasks(objt_server(s->target), s->be))
2060 process_srv_queue(objt_server(s->target));
2061
2062 /* shutw is enough so stop a connecting socket */
2063 si_shutw(si);
2064 s->req.flags |= CF_WRITE_ERROR;
2065 s->res.flags |= CF_READ_ERROR;
2066
2067 si->state = SI_ST_CLO;
2068 if (s->srv_error)
2069 s->srv_error(s, si);
2070
2071 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2072 goto end;
2073 }
2074
2075 stream_choose_redispatch(s);
2076
2077 if (si->flags & SI_FL_ERR) {
2078 /* The error was an asynchronous connection error, and we will
2079 * likely have to retry connecting to the same server, most
2080 * likely leading to the same result. To avoid this, we wait
2081 * MIN(one second, connect timeout) before retrying. We don't
2082 * do it when the failure happened on a reused connection
2083 * though.
2084 */
2085
2086 int delay = 1000;
2087
2088 if (s->be->timeout.connect && s->be->timeout.connect < delay)
2089 delay = s->be->timeout.connect;
2090
2091 if (!si->err_type)
2092 si->err_type = SI_ET_CONN_ERR;
2093
2094 /* only wait when we're retrying on the same server */
2095 if ((si->state == SI_ST_ASS ||
2096 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
2097 (s->be->srv_act <= 1)) && !(s->flags & SF_SRV_REUSED)) {
2098 si->state = SI_ST_TAR;
2099 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
2100 }
2101 si->flags &= ~SI_FL_ERR;
2102 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2103 }
2104
2105 end:
2106 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2107}
2108
2109/* This function is called with (si->state == SI_ST_RDY) meaning that a
2110 * connection was attempted, that the file descriptor is already allocated,
2111 * and that it has succeeded. We must still check for errors and aborts.
2112 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
2113 * and SI_ST_DIS (abort). This only works with connection-based streams.
2114 * Timeouts and errors are *not* cleared.
2115 */
2116void back_handle_st_rdy(struct stream *s)
2117{
2118 struct stream_interface *si = &s->si[1];
2119 struct channel *req = &s->req;
2120 struct channel *rep = &s->res;
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002121
2122 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2123 /* We know the connection at least succeeded, though it could have
2124 * since met an error for any other reason. At least it didn't time out
2125 * eventhough the timeout might have been reported right after success.
2126 * We need to take care of various situations here :
2127 * - everything might be OK. We have to switch to established.
2128 * - an I/O error might have been reported after a successful transfer,
2129 * which is not retryable and needs to be logged correctly, and needs
2130 * established as well
2131 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
2132 * have validated a connection with incoming data (e.g. TCP with a
2133 * banner protocol), or just a successful connect() probe.
2134 * - the client might have requested a connection abort, this needs to
2135 * be checked before we decide to retry anything.
2136 */
2137
2138 /* it's still possible to handle client aborts or connection retries
2139 * before any data were sent.
2140 */
2141 if (!(req->flags & CF_WROTE_DATA)) {
2142 /* client abort ? */
2143 if ((rep->flags & CF_SHUTW) ||
2144 ((req->flags & CF_SHUTW_NOW) &&
2145 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
2146 /* give up */
2147 si->flags |= SI_FL_NOLINGER;
2148 si_shutw(si);
2149 si->err_type |= SI_ET_CONN_ABRT;
2150 if (s->srv_error)
2151 s->srv_error(s, si);
2152 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2153 goto end;
2154 }
2155
2156 /* retryable error ? */
2157 if (si->flags & SI_FL_ERR) {
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002158 if (!si->err_type)
2159 si->err_type = SI_ET_CONN_ERR;
2160 si->state = SI_ST_CER;
2161 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
2162 goto end;
2163 }
2164 }
2165
2166 /* data were sent and/or we had no error, back_establish() will
2167 * now take over.
2168 */
2169 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2170 si->err_type = SI_ET_NONE;
2171 si->state = SI_ST_EST;
2172
2173 end:
2174 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
2175}
2176
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002177/* sends a log message when a backend goes down, and also sets last
2178 * change date.
2179 */
2180void set_backend_down(struct proxy *be)
2181{
2182 be->last_change = now.tv_sec;
Olivier Houchard237f7812019-03-08 18:49:07 +01002183 _HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002184
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002185 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01002187 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
2188 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02002189}
2190
Willy Tarreau87b09662015-04-03 00:22:06 +02002191/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002192 * tries to extract an RDP cookie from the request buffer, and look for the
2193 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02002194 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002195 * list. Nothing is performed if a server was already assigned.
2196 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002197int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002198{
2199 struct proxy *px = s->be;
2200 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02002201 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002202 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01002203 uint16_t port;
2204 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002205 char *p;
2206
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002207 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002208
Willy Tarreaue7dff022015-04-03 01:14:29 +02002209 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002210 goto no_cookie;
2211
Willy Tarreau37406352012-04-23 16:16:37 +02002212 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002213
Willy Tarreaucadd8c92013-07-22 18:09:52 +02002214 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002215 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002216 goto no_cookie;
2217
Willy Tarreau04276f32017-01-06 17:41:29 +01002218 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
2219 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
2220 * server's IP address in network order, and "port" is the integer corresponding to the
2221 * server's port in network order. Comments please Emeric.
2222 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002223 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002224 if (*p != '.')
2225 goto no_cookie;
2226 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01002227
2228 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002229 if (*p != '.')
2230 goto no_cookie;
2231
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002232 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002233 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02002234 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01002235 port == srv->svc_port &&
2236 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002237 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002238 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002239 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002240 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002241 break;
2242 }
2243 }
2244 srv = srv->next;
2245 }
2246
2247no_cookie:
2248 req->analysers &= ~an_bit;
2249 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002250 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02002251 return 1;
2252}
2253
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002254int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01002255 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002256 return px->down_time;
2257
2258 return now.tv_sec - px->last_change + px->down_time;
2259}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002260
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002261/*
2262 * This function returns a string containing the balancing
2263 * mode of the proxy in a format suitable for stats.
2264 */
2265
2266const char *backend_lb_algo_str(int algo) {
2267
2268 if (algo == BE_LB_ALGO_RR)
2269 return "roundrobin";
2270 else if (algo == BE_LB_ALGO_SRR)
2271 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01002272 else if (algo == BE_LB_ALGO_FAS)
2273 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002274 else if (algo == BE_LB_ALGO_LC)
2275 return "leastconn";
2276 else if (algo == BE_LB_ALGO_SH)
2277 return "source";
2278 else if (algo == BE_LB_ALGO_UH)
2279 return "uri";
2280 else if (algo == BE_LB_ALGO_PH)
2281 return "url_param";
2282 else if (algo == BE_LB_ALGO_HH)
2283 return "hdr";
2284 else if (algo == BE_LB_ALGO_RCH)
2285 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002286 else if (algo == BE_LB_ALGO_NONE)
2287 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002288 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01002289 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002290}
2291
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002292/* This function parses a "balance" statement in a backend section describing
2293 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002294 * returns -1, it will write an error message into the <err> buffer which will
2295 * automatically be allocated and must be passed as NULL. The trailing '\n'
2296 * will not be written. The function must be called with <args> pointing to the
2297 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002298 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002299int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002300{
2301 if (!*(args[0])) {
2302 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01002303 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2304 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002305 return 0;
2306 }
2307
2308 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002309 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2310 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002311 }
Willy Tarreau9757a382009-10-03 12:56:50 +02002312 else if (!strcmp(args[0], "static-rr")) {
2313 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2314 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
2315 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01002316 else if (!strcmp(args[0], "first")) {
2317 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2318 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
2319 }
Willy Tarreau51406232008-03-10 22:04:20 +01002320 else if (!strcmp(args[0], "leastconn")) {
2321 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2322 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
2323 }
Willy Tarreau21c741a2019-01-14 18:14:27 +01002324 else if (!strncmp(args[0], "random", 6)) {
Willy Tarreau760e81d2018-05-03 07:20:40 +02002325 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2326 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
Willy Tarreau21c741a2019-01-14 18:14:27 +01002327 curproxy->lbprm.arg_opt1 = 2;
2328
2329 if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */
2330 const char *beg;
2331 char *end;
2332
2333 beg = args[0] + 7;
2334 curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0);
2335
2336 if (*end != ')') {
2337 if (!*end)
2338 memprintf(err, "random : missing closing parenthesis.");
2339 else
2340 memprintf(err, "random : unexpected character '%c' after argument.", *end);
2341 return -1;
2342 }
2343
2344 if (curproxy->lbprm.arg_opt1 < 1) {
2345 memprintf(err, "random : number of draws must be at least 1.");
2346 return -1;
2347 }
2348 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02002349 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002350 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01002351 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2352 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002353 }
2354 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002355 int arg = 1;
2356
Willy Tarreau31682232007-11-29 15:38:04 +01002357 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2358 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Willy Tarreaua9a72492019-01-14 16:14:15 +01002359 curproxy->lbprm.arg_opt1 = 0; // "whole"
2360 curproxy->lbprm.arg_opt2 = 0; // "len"
2361 curproxy->lbprm.arg_opt3 = 0; // "depth"
Oskar Stolc8dc41842012-05-19 10:19:54 +01002362
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002363 while (*args[arg]) {
2364 if (!strcmp(args[arg], "len")) {
2365 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002366 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002367 return -1;
2368 }
Willy Tarreaua9a72492019-01-14 16:14:15 +01002369 curproxy->lbprm.arg_opt2 = atoi(args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002370 arg += 2;
2371 }
2372 else if (!strcmp(args[arg], "depth")) {
2373 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002374 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002375 return -1;
2376 }
2377 /* hint: we store the position of the ending '/' (depth+1) so
2378 * that we avoid a comparison while computing the hash.
2379 */
Willy Tarreaua9a72492019-01-14 16:14:15 +01002380 curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002381 arg += 2;
2382 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01002383 else if (!strcmp(args[arg], "whole")) {
Willy Tarreaua9a72492019-01-14 16:14:15 +01002384 curproxy->lbprm.arg_opt1 = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01002385 arg += 1;
2386 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002387 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01002388 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002389 return -1;
2390 }
2391 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002392 }
Willy Tarreau01732802007-11-01 22:48:15 +01002393 else if (!strcmp(args[0], "url_param")) {
2394 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002395 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01002396 return -1;
2397 }
Willy Tarreau31682232007-11-29 15:38:04 +01002398 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2399 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002400
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002401 free(curproxy->lbprm.arg_str);
2402 curproxy->lbprm.arg_str = strdup(args[1]);
2403 curproxy->lbprm.arg_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02002404 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002405 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002406 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002407 return -1;
2408 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002409 }
Benoitaffb4812009-03-25 13:02:10 +01002410 }
2411 else if (!strncmp(args[0], "hdr(", 4)) {
2412 const char *beg, *end;
2413
2414 beg = args[0] + 4;
2415 end = strchr(beg, ')');
2416
2417 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002418 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01002419 return -1;
2420 }
2421
2422 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2423 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
2424
Willy Tarreau484ff072019-01-14 15:28:53 +01002425 free(curproxy->lbprm.arg_str);
2426 curproxy->lbprm.arg_len = end - beg;
2427 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
Willy Tarreau9fed8582019-01-14 16:04:54 +01002428 curproxy->lbprm.arg_opt1 = 0;
Benoitaffb4812009-03-25 13:02:10 +01002429
2430 if (*args[1]) {
2431 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002432 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01002433 return -1;
2434 }
Willy Tarreau9fed8582019-01-14 16:04:54 +01002435 curproxy->lbprm.arg_opt1 = 1;
Benoitaffb4812009-03-25 13:02:10 +01002436 }
Emeric Brun736aa232009-06-30 17:56:00 +02002437 }
2438 else if (!strncmp(args[0], "rdp-cookie", 10)) {
2439 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2440 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
2441
2442 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
2443 const char *beg, *end;
2444
2445 beg = args[0] + 11;
2446 end = strchr(beg, ')');
2447
2448 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002449 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002450 return -1;
2451 }
2452
Willy Tarreau484ff072019-01-14 15:28:53 +01002453 free(curproxy->lbprm.arg_str);
2454 curproxy->lbprm.arg_str = my_strndup(beg, end - beg);
2455 curproxy->lbprm.arg_len = end - beg;
Emeric Brun736aa232009-06-30 17:56:00 +02002456 }
2457 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
Willy Tarreau484ff072019-01-14 15:28:53 +01002458 free(curproxy->lbprm.arg_str);
2459 curproxy->lbprm.arg_str = strdup("mstshash");
2460 curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str);
Emeric Brun736aa232009-06-30 17:56:00 +02002461 }
2462 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002463 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02002464 return -1;
2465 }
Willy Tarreau01732802007-11-01 22:48:15 +01002466 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01002467 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02002468 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 +01002469 return -1;
2470 }
2471 return 0;
2472}
2473
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002474
2475/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002476/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002477/************************************************************************/
2478
Willy Tarreau34db1082012-04-19 17:16:54 +02002479/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002480 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002481 * undefined behaviour.
2482 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002483static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002484smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002485{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002486 struct proxy *px;
2487
Willy Tarreau37406352012-04-23 16:16:37 +02002488 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002489 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002490 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002491
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002492 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002493
2494 return 1;
2495}
2496
Willy Tarreau37406352012-04-23 16:16:37 +02002497/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002498 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02002499 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2500 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002501 */
2502static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002503smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002504{
Willy Tarreau24e32d82012-04-23 23:55:44 +02002505 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002506
Willy Tarreau37406352012-04-23 16:16:37 +02002507 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002508 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02002509 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
2510 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002511 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002512 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002513 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002514 return 1;
2515}
2516
Willy Tarreau34db1082012-04-19 17:16:54 +02002517/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002518 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002519 * undefined behaviour.
2520 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002521static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002522smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002523{
2524 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002525
Willy Tarreau37406352012-04-23 16:16:37 +02002526 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002527 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002528 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002529
Willy Tarreau24e32d82012-04-23 23:55:44 +02002530 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02002531 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002532 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002533
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002534 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01002535 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002536 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002537 return 1;
2538 }
2539
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002540 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02002541 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08002542 }
2543
2544 return 1;
2545}
2546
Willy Tarreaua5e37562011-12-16 17:06:15 +01002547/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002548static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002549smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002550{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002551 struct proxy *px = NULL;
2552
2553 if (smp->strm)
2554 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002555 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002556 px = __objt_check(smp->sess->origin)->proxy;
2557 if (!px)
Willy Tarreaube508f12016-03-10 11:47:01 +01002558 return 0;
2559
Willy Tarreauf853c462012-04-23 18:53:56 +02002560 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002561 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002562 smp->data.u.sint = px->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002563 return 1;
2564}
2565
Marcin Deranekd2471c22016-12-12 14:08:05 +01002566/* set string to the name of the backend */
2567static int
2568smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2569{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002570 struct proxy *px = NULL;
2571
2572 if (smp->strm)
2573 px = smp->strm->be;
Christopher Fauletf98e6262020-05-06 09:42:04 +02002574 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002575 px = __objt_check(smp->sess->origin)->proxy;
2576 if (!px)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002577 return 0;
2578
Christopher Fauletd1b44642020-04-30 09:51:15 +02002579 smp->data.u.str.area = (char *)px->id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002580 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01002581 return 0;
2582
2583 smp->data.type = SMP_T_STR;
2584 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002585 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01002586
2587 return 1;
2588}
2589
Willy Tarreaua5e37562011-12-16 17:06:15 +01002590/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002591static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002592smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02002593{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002594 struct server *srv = NULL;
Willy Tarreaube508f12016-03-10 11:47:01 +01002595
Christopher Fauletd1b44642020-04-30 09:51:15 +02002596 if (smp->strm)
2597 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002598 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002599 srv = __objt_check(smp->sess->origin)->server;
2600 if (!srv)
Willy Tarreau17af4192011-02-23 14:27:06 +01002601 return 0;
2602
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002603 smp->data.type = SMP_T_SINT;
Christopher Fauletd1b44642020-04-30 09:51:15 +02002604 smp->data.u.sint = srv->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01002605
2606 return 1;
2607}
2608
vkill1dfd1652019-10-30 16:58:14 +08002609/* set string to the name of the server */
2610static int
2611smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
2612{
Christopher Fauletd1b44642020-04-30 09:51:15 +02002613 struct server *srv = NULL;
vkill1dfd1652019-10-30 16:58:14 +08002614
Christopher Fauletd1b44642020-04-30 09:51:15 +02002615 if (smp->strm)
2616 srv = objt_server(smp->strm->target);
Christopher Fauletf98e6262020-05-06 09:42:04 +02002617 else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Christopher Fauletd1b44642020-04-30 09:51:15 +02002618 srv = __objt_check(smp->sess->origin)->server;
2619 if (!srv)
vkill1dfd1652019-10-30 16:58:14 +08002620 return 0;
2621
Christopher Fauletd1b44642020-04-30 09:51:15 +02002622 smp->data.u.str.area = srv->id;
vkill1dfd1652019-10-30 16:58:14 +08002623 if (!smp->data.u.str.area)
2624 return 0;
2625
2626 smp->data.type = SMP_T_STR;
2627 smp->data.u.str.data = strlen(smp->data.u.str.area);
2628
2629 return 1;
2630}
2631
Willy Tarreau34db1082012-04-19 17:16:54 +02002632/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002633 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002634 * undefined behaviour.
2635 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002636static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002637smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002638{
Willy Tarreau37406352012-04-23 16:16:37 +02002639 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002640 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002641 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01002642 return 1;
2643}
2644
Willy Tarreau34db1082012-04-19 17:16:54 +02002645/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002646 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002647 * undefined behaviour.
2648 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002649static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002650smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002651{
Willy Tarreau37406352012-04-23 16:16:37 +02002652 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002653 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002654 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02002655 return 1;
2656}
2657
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002658/* set temp integer to the number of available connections across available
2659 * servers on the backend.
2660 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
2661 * undefined behaviour.
2662 */
2663static int
2664smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2665{
2666 struct server *iterator;
2667 struct proxy *px;
2668 unsigned int maxconn;
2669
2670 smp->flags = SMP_F_VOL_TEST;
2671 smp->data.type = SMP_T_SINT;
2672 smp->data.u.sint = 0;
2673
2674 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
2675 if (iterator->cur_state == SRV_ST_STOPPED)
2676 continue;
2677
2678 px = iterator->proxy;
2679 if (!srv_currently_usable(iterator) ||
2680 ((iterator->flags & SRV_F_BACKUP) &&
2681 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
2682 continue;
2683
2684 if (iterator->maxconn == 0) {
2685 /* one active server is unlimited, return -1 */
2686 smp->data.u.sint = -1;
2687 return 1;
2688 }
2689
2690 maxconn = srv_dynamic_maxconn(iterator);
2691 if (maxconn > iterator->cur_sess)
2692 smp->data.u.sint += maxconn - iterator->cur_sess;
2693 }
2694
2695 return 1;
2696}
2697
Willy Tarreau34db1082012-04-19 17:16:54 +02002698/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002699 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002700 * undefined behaviour.
2701 */
Willy Tarreaua36af912009-10-10 12:02:45 +02002702static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002703smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002704{
Willy Tarreau37406352012-04-23 16:16:37 +02002705 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002706 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002707 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02002708 return 1;
2709}
2710
Willy Tarreaua5e37562011-12-16 17:06:15 +01002711/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02002712 * by the number of running servers and rounded up. If there is no running
2713 * server, we return twice the total, just as if we had half a running server.
2714 * This is more or less correct anyway, since we expect the last server to come
2715 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002716 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02002717 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02002718 */
2719static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002720smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02002721{
2722 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002723 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02002724
Willy Tarreau37406352012-04-23 16:16:37 +02002725 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002726 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02002727 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02002728
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01002729 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02002730
2731 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002732 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02002733 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002734 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02002735
2736 return 1;
2737}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002738
Willy Tarreau34db1082012-04-19 17:16:54 +02002739/* set temp integer to the number of concurrent connections on the server in the backend.
2740 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2741 * undefined behaviour.
2742 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002743static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002744smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002745{
Willy Tarreauf853c462012-04-23 18:53:56 +02002746 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002747 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002748 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02002749 return 1;
2750}
2751
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002752/* set temp integer to the number of available connections on the server in the backend.
2753 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2754 * undefined behaviour.
2755 */
2756static int
2757smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
2758{
2759 unsigned int maxconn;
2760
2761 smp->flags = SMP_F_VOL_TEST;
2762 smp->data.type = SMP_T_SINT;
2763
2764 if (args->data.srv->maxconn == 0) {
2765 /* one active server is unlimited, return -1 */
2766 smp->data.u.sint = -1;
2767 return 1;
2768 }
2769
2770 maxconn = srv_dynamic_maxconn(args->data.srv);
2771 if (maxconn > args->data.srv->cur_sess)
2772 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2773 else
2774 smp->data.u.sint = 0;
2775
2776 return 1;
2777}
2778
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002779/* set temp integer to the number of connections pending in the server's queue.
2780 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2781 * undefined behaviour.
2782 */
2783static int
2784smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2785{
2786 smp->flags = SMP_F_VOL_TEST;
2787 smp->data.type = SMP_T_SINT;
2788 smp->data.u.sint = args->data.srv->nbpend;
2789 return 1;
2790}
2791
Tait Clarridge7896d522012-12-05 21:39:31 -05002792/* set temp integer to the number of enabled servers on the proxy.
2793 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2794 * undefined behaviour.
2795 */
2796static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002797smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002798{
2799 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002800 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002801 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002802 return 1;
2803}
2804
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002805static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2806{
2807
2808 struct proxy *px;
2809
2810 if (!smp_make_safe(smp))
2811 return 0;
2812
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002813 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002814 if (!px)
2815 return 0;
2816
2817 smp->data.type = SMP_T_SINT;
2818 smp->data.u.sint = be_usable_srv(px);
2819
2820 return 1;
2821}
2822
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002823static int
2824sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private)
2825{
2826 struct proxy *px;
2827 struct server *srv;
2828 char *bksep;
2829
2830 if (!smp_make_safe(smp))
2831 return 0;
2832
2833 bksep = strchr(smp->data.u.str.area, '/');
2834
2835 if (bksep) {
2836 *bksep = '\0';
2837 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
2838 if (!px)
2839 return 0;
2840 smp->data.u.str.area = bksep + 1;
2841 } else {
2842 if (!(smp->px->cap & PR_CAP_BE))
2843 return 0;
2844 px = smp->px;
2845 }
2846
2847 srv = server_find_by_name(px, smp->data.u.str.area);
2848 if (!srv)
2849 return 0;
2850
2851 smp->data.type = SMP_T_SINT;
2852 smp->data.u.sint = srv->nbpend;
2853 return 1;
2854}
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002855
2856/* Note: must not be declared <const> as its list will be overwritten.
2857 * Please take care of keeping this list alphabetically sorted.
2858 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002859static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002860 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2861 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002862 { "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 +02002863 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002864 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002865 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2866 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2867 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2868 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2869 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002870 { "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 +02002871 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002872 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
vkill1dfd1652019-10-30 16:58:14 +08002873 { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002874 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002875 { "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 +01002876 { /* END */ },
2877}};
2878
Willy Tarreau0108d902018-11-25 19:14:37 +01002879INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
2880
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002881/* Note: must not be declared <const> as its list will be overwritten */
2882static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Nenad Merdanovic177adc92019-08-27 01:58:13 +02002883 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2884 { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT },
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002885 { /* END */ },
2886}};
2887
Willy Tarreau0108d902018-11-25 19:14:37 +01002888INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002889
Willy Tarreau61612d42012-04-19 18:42:05 +02002890/* Note: must not be declared <const> as its list will be overwritten.
2891 * Please take care of keeping this list alphabetically sorted.
2892 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002893static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002894 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002895}};
2896
Willy Tarreau0108d902018-11-25 19:14:37 +01002897INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002898
Willy Tarreaubaaee002006-06-26 02:48:02 +02002899/*
2900 * Local variables:
2901 * c-indent-level: 8
2902 * c-basic-offset: 8
2903 * End:
2904 */