blob: 862fe3d8d35d3d9f28dc75a42182ef096d081b51 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Backend variables and functions.
3 *
Willy Tarreau1a7eca12013-01-07 22:38:03 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
Willy Tarreauf19cf372006-11-14 15:40:51 +010018#include <string.h>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020019#include <ctype.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040020#include <sys/types.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreauc7e42382012-08-24 19:22:53 +020022#include <common/buffer.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020023#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020025#include <common/debug.h>
Bhaskar98634f02013-10-29 23:30:51 -040026#include <common/hash.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020027#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/time.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010029#include <common/namespace.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010033#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020034#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020036#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020037#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020038#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010039#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020040#include <proto/lb_fwlc.h>
41#include <proto/lb_fwrr.h>
42#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020043#include <proto/log.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020044#include <proto/mux_pt.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010045#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010046#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020047#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020049#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020050#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010052#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010053#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020054#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010055#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/task.h>
57
Willy Tarreau732eac42015-07-09 11:40:25 +020058#ifdef USE_OPENSSL
59#include <proto/ssl_sock.h>
60#endif /* USE_OPENSSL */
61
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050062int be_lastsession(const struct proxy *be)
63{
64 if (be->be_counters.last_sess)
65 return now.tv_sec - be->be_counters.last_sess;
66
67 return -1;
68}
69
Bhaskar98634f02013-10-29 23:30:51 -040070/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070071static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040072{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070073 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040074
75 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
76 case BE_LB_HFCN_DJB2:
77 hash = hash_djb2(key, len);
78 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010079 case BE_LB_HFCN_WT6:
80 hash = hash_wt6(key, len);
81 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010082 case BE_LB_HFCN_CRC32:
83 hash = hash_crc32(key, len);
84 break;
Bhaskar98634f02013-10-29 23:30:51 -040085 case BE_LB_HFCN_SDBM:
86 /* this is the default hash function */
87 default:
88 hash = hash_sdbm(key, len);
89 break;
90 }
91
92 return hash;
93}
94
Willy Tarreaubaaee002006-06-26 02:48:02 +020095/*
96 * This function recounts the number of usable active and backup servers for
97 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010098 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010099 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200101 * This functions is designed to be called before server's weight and state
102 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200103 *
104 * threads: this is the caller responsibility to lock data. For now, this
105 * function is called from lb modules, so it should be ok. But if you need to
106 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200107 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200108void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109{
110 struct server *srv;
111
Willy Tarreau20697042007-11-15 23:26:18 +0100112 px->srv_act = px->srv_bck = 0;
113 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100114 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200116 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100117 continue;
118
Willy Tarreauc93cd162014-05-13 15:54:22 +0200119 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100120 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100121 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100122 px->lbprm.fbck = srv;
123 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400124 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200125 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100126 } else {
127 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400128 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200129 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130 }
131 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100132}
Willy Tarreau20697042007-11-15 23:26:18 +0100133
Willy Tarreaub625a082007-11-26 01:15:43 +0100134/* This function simply updates the backend's tot_weight and tot_used values
135 * after servers weights have been updated. It is designed to be used after
136 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200137 *
138 * threads: this is the caller responsibility to lock data. For now, this
139 * function is called from lb modules, so it should be ok. But if you need to
140 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100141 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200142void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100143{
Willy Tarreau20697042007-11-15 23:26:18 +0100144 if (px->srv_act) {
145 px->lbprm.tot_weight = px->lbprm.tot_wact;
146 px->lbprm.tot_used = px->srv_act;
147 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100148 else if (px->lbprm.fbck) {
149 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200150 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100151 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100152 }
153 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100154 px->lbprm.tot_weight = px->lbprm.tot_wbck;
155 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100156 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100157}
158
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200159/*
160 * This function tries to find a running server for the proxy <px> following
161 * the source hash method. Depending on the number of active/backup servers,
162 * it will either look for active servers, or for backup servers.
163 * If any server is found, it will be returned. If no valid server is found,
164 * NULL is returned.
165 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200166static struct server *get_server_sh(struct proxy *px, const char *addr, int len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200167{
168 unsigned int h, l;
169
170 if (px->lbprm.tot_weight == 0)
171 return NULL;
172
173 l = h = 0;
174
175 /* note: we won't hash if there's only one server left */
176 if (px->lbprm.tot_used == 1)
177 goto hash_done;
178
179 while ((l + sizeof (int)) <= len) {
180 h ^= ntohl(*(unsigned int *)(&addr[l]));
181 l += sizeof (int);
182 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500183 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100184 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200185 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200186 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
187 return chash_get_server_hash(px, h);
188 else
189 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200190}
191
192/*
193 * This function tries to find a running server for the proxy <px> following
194 * the URI hash method. In order to optimize cache hits, the hash computation
195 * ends at the question mark. Depending on the number of active/backup servers,
196 * it will either look for active servers, or for backup servers.
197 * If any server is found, it will be returned. If no valid server is found,
198 * NULL is returned.
199 *
200 * This code was contributed by Guillaume Dallaire, who also selected this hash
201 * algorithm out of a tens because it gave him the best results.
202 *
203 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200204static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200205{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700206 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200207 int c;
208 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400209 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200210
211 if (px->lbprm.tot_weight == 0)
212 return NULL;
213
214 /* note: we won't hash if there's only one server left */
215 if (px->lbprm.tot_used == 1)
216 goto hash_done;
217
218 if (px->uri_len_limit)
219 uri_len = MIN(uri_len, px->uri_len_limit);
220
Bhaskar98634f02013-10-29 23:30:51 -0400221 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200222 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200223 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200224 if (c == '/') {
225 slashes++;
226 if (slashes == px->uri_dirs_depth1) /* depth+1 */
227 break;
228 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100229 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200230 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200231 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200232 }
Bhaskar98634f02013-10-29 23:30:51 -0400233
234 hash = gen_hash(px, start, (end - start));
235
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500236 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100237 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200238 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200239 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
240 return chash_get_server_hash(px, hash);
241 else
242 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200243}
244
Christopher Faulet5b517552017-06-09 14:17:53 +0200245/*
Willy Tarreau01732802007-11-01 22:48:15 +0100246 * This function tries to find a running server for the proxy <px> following
247 * the URL parameter hash method. It looks for a specific parameter in the
248 * URL and hashes it to compute the server ID. This is useful to optimize
249 * performance by avoiding bounces between servers in contexts where sessions
250 * are shared but cookies are not usable. If the parameter is not found, NULL
251 * is returned. If any server is found, it will be returned. If no valid server
252 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100253 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200254static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
Willy Tarreau01732802007-11-01 22:48:15 +0100255{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700256 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400257 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200258 const char *p;
259 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100260 int plen;
261
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200262 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100263 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100264 return NULL;
265
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200266 if ((p = memchr(uri, '?', uri_len)) == NULL)
267 return NULL;
268
Willy Tarreau01732802007-11-01 22:48:15 +0100269 p++;
270
271 uri_len -= (p - uri);
272 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200273 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100274
275 while (uri_len > plen) {
276 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200277 if (params[plen] == '=') {
278 if (memcmp(params, px->url_param_name, plen) == 0) {
279 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100280 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200281 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100282 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200283 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400284 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200285 uri_len -= plen + 1;
286
Bhaskar98634f02013-10-29 23:30:51 -0400287 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100288 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400289 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100290 }
Bhaskar98634f02013-10-29 23:30:51 -0400291 hash = gen_hash(px, start, (end - start));
292
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500293 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100294 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400295
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200296 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
297 return chash_get_server_hash(px, hash);
298 else
299 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100300 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200301 }
302 /* skip to next parameter */
303 p = memchr(params, '&', uri_len);
304 if (!p)
305 return NULL;
306 p++;
307 uri_len -= (p - params);
308 params = p;
309 }
310 return NULL;
311}
312
313/*
314 * this does the same as the previous server_ph, but check the body contents
315 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200316static struct server *get_server_ph_post(struct stream *s)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200317{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700318 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200319 struct http_txn *txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100320 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200321 struct http_msg *msg = &txn->req;
322 struct proxy *px = s->be;
323 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200324 unsigned long len = http_body_bytes(msg);
Willy Tarreau188e2302018-06-15 11:11:53 +0200325 const char *params = c_ptr(req, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100326 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400327 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200328
Willy Tarreau157dd632009-12-06 19:18:09 +0100329 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200330 return NULL;
331
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200332 if (len > b_wrap(&req->buf) - p)
333 len = b_wrap(&req->buf) - p;
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200334
Willy Tarreau157dd632009-12-06 19:18:09 +0100335 if (px->lbprm.tot_weight == 0)
336 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200337
338 while (len > plen) {
339 /* Look for the parameter name followed by an equal symbol */
340 if (params[plen] == '=') {
341 if (memcmp(params, px->url_param_name, plen) == 0) {
342 /* OK, we have the parameter here at <params>, and
343 * the value after the equal sign, at <p>
344 * skip the equal symbol
345 */
346 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400347 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200348 len -= plen + 1;
349
Bhaskar98634f02013-10-29 23:30:51 -0400350 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200351 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100352 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400353 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100354 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200355 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
356 break;
357 return NULL; /* oh, no; this is not uri-encoded.
358 * This body does not contain parameters.
359 */
360 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200361 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400362 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200363 /* should we break if vlen exceeds limit? */
364 }
Bhaskar98634f02013-10-29 23:30:51 -0400365 hash = gen_hash(px, start, (end - start));
366
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500367 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100368 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400369
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200370 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
371 return chash_get_server_hash(px, hash);
372 else
373 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200374 }
375 }
Willy Tarreau01732802007-11-01 22:48:15 +0100376 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200377 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100378 if (!p)
379 return NULL;
380 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200381 len -= (p - params);
382 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100383 }
384 return NULL;
385}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200386
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200387
Willy Tarreaubaaee002006-06-26 02:48:02 +0200388/*
Benoitaffb4812009-03-25 13:02:10 +0100389 * This function tries to find a running server for the proxy <px> following
390 * the Header parameter hash method. It looks for a specific parameter in the
391 * URL and hashes it to compute the server ID. This is useful to optimize
392 * performance by avoiding bounces between servers in contexts where sessions
393 * are shared but cookies are not usable. If the parameter is not found, NULL
394 * is returned. If any server is found, it will be returned. If no valid server
395 * is found, NULL is returned.
396 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200397static struct server *get_server_hh(struct stream *s)
Benoitaffb4812009-03-25 13:02:10 +0100398{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700399 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200400 struct http_txn *txn = s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100401 struct proxy *px = s->be;
402 unsigned int plen = px->hh_len;
403 unsigned long len;
404 struct hdr_ctx ctx;
405 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400406 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100407
408 /* tot_weight appears to mean srv_count */
409 if (px->lbprm.tot_weight == 0)
410 return NULL;
411
Benoitaffb4812009-03-25 13:02:10 +0100412 ctx.idx = 0;
413
414 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau188e2302018-06-15 11:11:53 +0200415 http_find_header2(px->hh_name, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
Benoitaffb4812009-03-25 13:02:10 +0100416
417 /* if the header is not found or empty, let's fallback to round robin */
418 if (!ctx.idx || !ctx.vlen)
419 return NULL;
420
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200421 /* note: we won't hash if there's only one server left */
422 if (px->lbprm.tot_used == 1)
423 goto hash_done;
424
Benoitaffb4812009-03-25 13:02:10 +0100425 /* Found a the hh_name in the headers.
426 * we will compute the hash based on this value ctx.val.
427 */
428 len = ctx.vlen;
429 p = (char *)ctx.line + ctx.val;
430 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400431 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100432 } else {
433 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100434 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100435 /* special computation, use only main domain name, not tld/host
436 * going back from the end of string, start hashing at first
437 * dot stop at next.
438 * This is designed to work with the 'Host' header, and requires
439 * a special option to activate this.
440 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100441 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100442 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100443 if (dohash) {
444 /* Rewind the pointer until the previous char
445 * is a dot, this will allow to set the start
446 * position of the domain. */
447 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100448 break;
Benoitaffb4812009-03-25 13:02:10 +0100449 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100450 else if (*p == '.') {
451 /* The pointer is rewinded to the dot before the
452 * tld, we memorize the end of the domain and
453 * can enter the domain processing. */
454 end = p;
455 dohash = 1;
456 }
Benoitaffb4812009-03-25 13:02:10 +0100457 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100458 len--;
Benoitaffb4812009-03-25 13:02:10 +0100459 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100460 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400461 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100462 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500463 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100464 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200465 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200466 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
467 return chash_get_server_hash(px, hash);
468 else
469 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100470}
471
Willy Tarreau34db1082012-04-19 17:16:54 +0200472/* RDP Cookie HASH. */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200473static struct server *get_server_rch(struct stream *s)
Emeric Brun736aa232009-06-30 17:56:00 +0200474{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700475 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200476 struct proxy *px = s->be;
477 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200478 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200479 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200480 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200481
482 /* tot_weight appears to mean srv_count */
483 if (px->lbprm.tot_weight == 0)
484 return NULL;
485
Willy Tarreau37406352012-04-23 16:16:37 +0200486 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200487
Willy Tarreau6a445eb2018-06-19 07:04:45 +0200488 rewind = co_data(&s->req);
489 c_rew(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200490
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200491 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200492 len = smp.data.u.str.data;
Willy Tarreau664092c2011-12-16 19:11:42 +0100493
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200494 c_adv(&s->req, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200495
Willy Tarreau37406352012-04-23 16:16:37 +0200496 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200497 return NULL;
498
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200499 /* note: we won't hash if there's only one server left */
500 if (px->lbprm.tot_used == 1)
501 goto hash_done;
502
Emeric Brun736aa232009-06-30 17:56:00 +0200503 /* Found a the hh_name in the headers.
504 * we will compute the hash based on this value ctx.val.
505 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200506 hash = gen_hash(px, smp.data.u.str.area, len);
Bhaskar98634f02013-10-29 23:30:51 -0400507
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500508 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100509 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200510 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200511 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
512 return chash_get_server_hash(px, hash);
513 else
514 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200515}
Christopher Faulet5b517552017-06-09 14:17:53 +0200516
Willy Tarreau760e81d2018-05-03 07:20:40 +0200517/* random value */
518static struct server *get_server_rnd(struct stream *s)
519{
520 unsigned int hash = 0;
521 struct proxy *px = s->be;
522
523 /* tot_weight appears to mean srv_count */
524 if (px->lbprm.tot_weight == 0)
525 return NULL;
526
527 /* ensure all 32 bits are covered as long as RAND_MAX >= 65535 */
528 hash = ((uint64_t)random() * ((uint64_t)RAND_MAX + 1)) ^ random();
529 return chash_get_server_hash(px, hash);
530}
531
Benoitaffb4812009-03-25 13:02:10 +0100532/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200533 * This function applies the load-balancing algorithm to the stream, as
534 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200535 * 'assigned'.
536 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200537 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200538 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100539 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200540 * The function tries to keep the original connection slot if it reconnects to
541 * the same server, otherwise it releases it and tries to offer it.
542 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200543 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200544 *
545 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100546 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200547 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
548 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200549 * SRV_STATUS_INTERNAL for other unrecoverable errors.
550 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200551 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100552 * it does not need to be called anymore. This means that target_srv(&s->target)
553 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554 *
555 */
556
Willy Tarreau87b09662015-04-03 00:22:06 +0200557int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200558{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200559 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100561 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200562 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100563
Simon Horman8effd3d2011-08-13 08:03:52 +0900564 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200565
Willy Tarreau7c669d72008-06-20 15:04:11 +0200566 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200567 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200568 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100569
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100570 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200571 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200572
Willy Tarreau7c669d72008-06-20 15:04:11 +0200573 /* We have to release any connection slot before applying any LB algo,
574 * otherwise we may erroneously end up with no available slot.
575 */
576 if (conn_slot)
577 sess_change_server(s, NULL);
578
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100579 /* We will now try to find the good server and store it into <objt_server(s->target)>.
580 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200581 * as well as if no server is available (check error code).
582 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100583
Willy Tarreau827aee92011-03-10 16:55:02 +0100584 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100585 s->target = NULL;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100586 conn = s->sess->srv_conn;
Willy Tarreau664beb82011-03-10 11:38:29 +0100587
Willy Tarreau068621e2013-12-23 15:11:25 +0100588 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100589 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100590 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Lukas Tribus80512b12018-10-27 20:07:40 +0200591 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Willy Tarreaueee5b512015-04-03 23:46:31 +0200592 ((s->txn && s->txn->flags & TX_PREFER_LAST) ||
Willy Tarreauc35362a2014-04-25 13:58:37 +0200593 ((s->be->options & PR_O_PREF_LAST) &&
594 (!s->be->max_ka_queue ||
595 server_has_room(__objt_server(conn->target)) ||
596 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200597 srv_currently_usable(__objt_server(conn->target))) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200598 /* This stream was relying on a server in a previous request
Olivier Doucet1ca1b6f2017-01-02 11:48:57 +0100599 * and the proxy has "option prefer-last-server" set
600 * and balance algorithm dont tell us to do otherwise, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100601 * let's try to reuse the same server.
602 */
603 srv = __objt_server(conn->target);
604 s->target = &srv->obj_type;
605 }
606 else if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200607
Willy Tarreau7c669d72008-06-20 15:04:11 +0200608 /* we must check if we have at least one server available */
609 if (!s->be->lbprm.tot_weight) {
610 err = SRV_STATUS_NOSRV;
611 goto out;
612 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200613
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200614 /* First check whether we need to fetch some data or simply call
615 * the LB lookup function. Only the hashing functions will need
616 * some input data in fact, and will support multiple algorithms.
617 */
618 switch (s->be->lbprm.algo & BE_LB_LKUP) {
619 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100620 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200621 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200622
Willy Tarreauf09c6602012-02-13 17:12:08 +0100623 case BE_LB_LKUP_FSTREE:
624 srv = fas_get_next_server(s->be, prev_srv);
625 break;
626
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200627 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100628 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200629 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200630
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200631 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200632 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200633 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau760e81d2018-05-03 07:20:40 +0200634 if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM)
635 srv = get_server_rnd(s);
636 else if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100637 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200638 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100639 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200640 break;
641 }
642 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200643 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200644 err = SRV_STATUS_INTERNAL;
645 goto out;
646 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200647
648 switch (s->be->lbprm.algo & BE_LB_PARM) {
649 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200650 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200651 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200652 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200653 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200654 4);
655 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200656 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200657 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200658 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200659 16);
660 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200661 else {
662 /* unknown IP family */
663 err = SRV_STATUS_INTERNAL;
664 goto out;
665 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200666 break;
667
668 case BE_LB_HASH_URI:
669 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200670 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100671 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100672 srv = get_server_uh(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200673 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200674 s->txn->req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200675 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200676
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200677 case BE_LB_HASH_PRM:
678 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200679 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100680 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100681
Willy Tarreau827aee92011-03-10 16:55:02 +0100682 srv = get_server_ph(s->be,
Willy Tarreau188e2302018-06-15 11:11:53 +0200683 c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
Willy Tarreaueee5b512015-04-03 23:46:31 +0200684 s->txn->req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100685
Willy Tarreaueee5b512015-04-03 23:46:31 +0200686 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200688 break;
Benoitaffb4812009-03-25 13:02:10 +0100689
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200690 case BE_LB_HASH_HDR:
691 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200692 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100693 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100694 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200695 break;
696
697 case BE_LB_HASH_RDP:
698 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100699 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200700 break;
701
702 default:
703 /* unknown balancing algorithm */
704 err = SRV_STATUS_INTERNAL;
705 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100706 }
Emeric Brun736aa232009-06-30 17:56:00 +0200707
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200708 /* If the hashing parameter was not found, let's fall
709 * back to round robin on the map.
710 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100711 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200712 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100713 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200714 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100715 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200716 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200717
718 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200719 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200720
Willy Tarreau7c669d72008-06-20 15:04:11 +0200721 default:
722 /* unknown balancing algorithm */
723 err = SRV_STATUS_INTERNAL;
724 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200726
Willy Tarreau827aee92011-03-10 16:55:02 +0100727 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200728 err = SRV_STATUS_FULL;
729 goto out;
730 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100731 else if (srv != prev_srv) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200732 HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +0200733 HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100734 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100735 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200736 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200737 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100738 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200739 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100740 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200741 conn && is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100742 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100743 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100744 }
745 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200746 err = SRV_STATUS_NOSRV;
747 goto out;
748 }
749
Willy Tarreaue7dff022015-04-03 01:14:29 +0200750 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200751 err = SRV_STATUS_OK;
752 out:
753
754 /* Either we take back our connection slot, or we offer it to someone
755 * else if we don't need it anymore.
756 */
757 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100758 if (conn_slot == srv) {
759 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200760 } else {
761 if (may_dequeue_tasks(conn_slot, s->be))
762 process_srv_queue(conn_slot);
763 }
764 }
765
766 out_err:
767 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768}
769
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200771 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772 * The address is taken from the currently assigned server, or from the
773 * dispatch or transparent address.
774 *
775 * It may return :
776 * SRV_STATUS_OK if everything is OK.
777 * SRV_STATUS_INTERNAL for other unrecoverable errors.
778 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200779 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200780 * not cleared, so it's to the caller to clear it if required.
781 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200782 * The caller is responsible for having already assigned a connection
783 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200784 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 */
Olivier Houchard201b9f42018-11-21 00:16:29 +0100786int assign_server_address(struct stream *s, struct connection *srv_conn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200788 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200789
Christopher Faulet56803b12017-11-24 16:06:18 +0100790 DPRINTF(stderr,"assign_server_address : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791
Willy Tarreaue7dff022015-04-03 01:14:29 +0200792 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200793 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200794 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795 return SRV_STATUS_INTERNAL;
796
Willy Tarreau1e582e52018-09-20 11:29:28 +0200797 srv_conn->addr.to = __objt_server(s->target)->addr;
798 set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200799
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200800 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200801 /* if the server has no address, we use the same address
802 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200803 * locally on multiple addresses at once. Nothing is done
804 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200805 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200806 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200807
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200808 if (cli_conn->addr.to.ss_family == AF_INET) {
809 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
810 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
811 ((struct sockaddr_in6 *)&srv_conn->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Emeric Brunec810d12010-10-22 16:36:33 +0200812 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200813 }
814
Willy Tarreaubaaee002006-06-26 02:48:02 +0200815 /* if this server remaps proxied ports, we'll use
816 * the port the client connected to with an offset. */
Willy Tarreau1e582e52018-09-20 11:29:28 +0200817 if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100818 int base_port;
819
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200820 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100821
822 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200823 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100824
825 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200826 base_port += get_host_port(&srv_conn->addr.to);
827 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828 }
829 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200830 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200831 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200832 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200833 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200834 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200835 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200836 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200837
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200838 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
839 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100841 else if (s->be->options & PR_O_HTTP_PROXY) {
842 /* If HTTP PROXY option is set, then server is already assigned
843 * during incoming client request parsing. */
844 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100845 else {
846 /* no server and no LB algorithm ! */
847 return SRV_STATUS_INTERNAL;
848 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200849
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100850 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100851 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100852
Willy Tarreaue7dff022015-04-03 01:14:29 +0200853 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200854 return SRV_STATUS_OK;
855}
856
Willy Tarreau87b09662015-04-03 00:22:06 +0200857/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200858 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200859 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200860 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200861 * be called before any connection and after any retry or redispatch occurs.
862 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200863 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200864 *
865 * Returns :
866 *
867 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100868 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200869 * SRV_STATUS_QUEUED if the connection has been queued.
870 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100871 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200872 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 * SRV_STATUS_INTERNAL for other unrecoverable errors.
874 *
875 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200876int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877{
878 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100879 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200880 int err;
881
882 if (s->pend_pos)
883 return SRV_STATUS_INTERNAL;
884
Willy Tarreau7c669d72008-06-20 15:04:11 +0200885 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200886 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100887 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100888
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100890 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200891 /* This stream was previously assigned to a server. We have to
892 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200893 * - if the server changed :
894 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200895 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200896 * - increment srv->redispatches and be->redispatches
897 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100898 */
899
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100900 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200901 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
902 s->txn->flags &= ~TX_CK_MASK;
903 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200904 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200905 s->flags |= SF_REDISP;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200906 HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200907 HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200908 } else {
Christopher Faulet29f77e82017-06-08 14:04:45 +0200909 HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200910 HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100911 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100912 }
913 }
914
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915 switch (err) {
916 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200917 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100918 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100919 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200920 return SRV_STATUS_OK; /* dispatch or proxy mode */
921
922 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100923 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 return SRV_STATUS_OK;
925
Willy Tarreau87b09662015-04-03 00:22:06 +0200926 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200927 * connection slot yet. Either it is a redispatch, or it was
928 * assigned from persistence information (direct mode).
929 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200930 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200931 /* server scheduled for redirection, and already assigned. We
932 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100933 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100934 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100935 return SRV_STATUS_OK;
936 }
937
Willy Tarreau87b09662015-04-03 00:22:06 +0200938 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200939 * We know we have to queue it into the server's queue, so if a maxqueue
940 * is set on the server, we must also check that the server's queue is
941 * not full, in which case we have to return FULL.
942 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100943 if (srv->maxconn &&
944 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200945
Willy Tarreau827aee92011-03-10 16:55:02 +0100946 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200947 return SRV_STATUS_FULL;
948
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949 p = pendconn_add(s);
950 if (p)
951 return SRV_STATUS_QUEUED;
952 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200953 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200954 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200955
956 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100957 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958 return SRV_STATUS_OK;
959
960 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200961 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962 p = pendconn_add(s);
963 if (p)
964 return SRV_STATUS_QUEUED;
965 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200966 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200967
968 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200969 return err;
970
Willy Tarreaubaaee002006-06-26 02:48:02 +0200971 case SRV_STATUS_INTERNAL:
972 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200973
Willy Tarreaubaaee002006-06-26 02:48:02 +0200974 default:
975 return SRV_STATUS_INTERNAL;
976 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100977}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200978
Willy Tarreaub1d67742010-03-29 19:36:59 +0200979/* If an explicit source binding is specified on the server and/or backend, and
980 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +0200981 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +0100982 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200983 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200984static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +0200985{
Willy Tarreau29fbe512015-08-20 19:35:14 +0200986#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100987 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100988 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200989 struct connection *cli_conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200990 struct connection *srv_conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau827aee92011-03-10 16:55:02 +0100991
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100992 if (srv && srv->conn_src.opts & CO_SRC_BIND)
993 src = &srv->conn_src;
994 else if (s->be->conn_src.opts & CO_SRC_BIND)
995 src = &s->be->conn_src;
996 else
997 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100998
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100999 switch (src->opts & CO_SRC_TPROXY_MASK) {
1000 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001001 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001002 break;
1003 case CO_SRC_TPROXY_CLI:
1004 case CO_SRC_TPROXY_CIP:
1005 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001006 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001007 if (cli_conn)
1008 srv_conn->addr.from = cli_conn->addr.from;
1009 else
1010 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001011 break;
1012 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +02001013 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001014 char *vptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001015 size_t vlen;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001016 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001017
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001018 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001019 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1020 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1021 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +01001022
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001023 c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req));
Willy Tarreaueee5b512015-04-03 23:46:31 +02001024 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1025 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001026 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001027 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001028 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001029 c_adv(&s->req, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001030 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001031 break;
1032 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001033 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001034 }
1035#endif
1036}
1037
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001038#ifdef USE_OPENSSL
Olivier Houchard201b9f42018-11-21 00:16:29 +01001039/*
1040 * Pick the right mux once the connection is established, we should now have
1041 * an alpn if available, so we are now able to choose.
1042 */
1043static int conn_complete_server(struct connection *conn)
1044{
1045 struct conn_stream *cs = NULL;
1046 struct stream *s = conn->mux_ctx;
1047
1048 conn_clear_xprt_done_cb(conn);
1049 /* Verify if the connection just established. */
1050 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
1051 conn->flags |= CO_FL_CONNECTED;
1052
1053 if (!s)
1054 goto fail;
1055 if (conn->flags & CO_FL_ERROR)
1056 goto fail;
1057 cs = si_alloc_cs(&s->si[1], conn);
1058 if (!cs)
1059 goto fail;
1060 if (conn_install_mux_be(conn, cs) < 0)
1061 goto fail;
1062 return 0;
1063
1064fail:
1065 if (cs)
1066 cs_free(cs);
1067 /* kill the connection now */
1068 conn_stop_tracking(conn);
1069 conn_full_close(conn);
1070 conn_free(conn);
1071 return -1;
1072}
Olivier Houchardc6e0bb42018-11-23 14:24:10 +01001073#endif
Olivier Houchard201b9f42018-11-21 00:16:29 +01001074
Willy Tarreaub1d67742010-03-29 19:36:59 +02001075
Willy Tarreaubaaee002006-06-26 02:48:02 +02001076/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001077 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001078 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001079 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001080 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001081 * - SF_ERR_NONE if everything's OK
1082 * - SF_ERR_SRVTO if there are no more servers
1083 * - SF_ERR_SRVCL if the connection was refused by the server
1084 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1085 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1086 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001087 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001088 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001089 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001090 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001091int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001092{
Olivier Houchard522eea72017-11-03 16:27:47 +01001093 struct connection *cli_conn = NULL;
Willy Tarreau34601a82013-12-15 16:33:46 +01001094 struct connection *srv_conn;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001095 struct connection *old_conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001096 struct conn_stream *srv_cs;
Willy Tarreau827aee92011-03-10 16:55:02 +01001097 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001098 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001099 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001100
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001101
Willy Tarreau7b004922015-08-04 19:34:21 +02001102 srv = objt_server(s->target);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001103 old_conn = srv_conn = s->sess->srv_conn;
Olivier Houchard47e9a1a2018-11-07 17:55:19 +01001104 if (srv_conn)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001105 reuse = (s->target == srv_conn->target) &&
1106 (srv_conn->mux->avail_streams(srv_conn) > 0) &&
1107 conn_xprt_ready(srv_conn);
Willy Tarreau34601a82013-12-15 16:33:46 +01001108
Willy Tarreau8dff9982015-08-04 20:45:52 +02001109 if (srv && !reuse) {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001110 srv_conn = NULL;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001111
Willy Tarreau449d74a2015-08-05 17:16:33 +02001112 /* Below we pick connections from the safe or idle lists based
1113 * on the strategy, the fact that this is a first or second
1114 * (retryable) request, with the indicated priority (1 or 2) :
1115 *
1116 * SAFE AGGR ALWS
1117 *
1118 * +-----+-----+ +-----+-----+ +-----+-----+
1119 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1120 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1121 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1122 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1123 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1124 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1125 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001126 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001127 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1128 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001129 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001130 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001131 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001132 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1133 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001134 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001135 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001136 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001137 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001138 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001139 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001140
Willy Tarreau449d74a2015-08-05 17:16:33 +02001141 /* If we've picked a connection from the pool, we now have to
1142 * detach it. We may have to get rid of the previous idle
1143 * connection we had, so for this we try to swap it with the
1144 * other owner's. That way it may remain alive for others to
1145 * pick.
1146 */
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001147 if (srv_conn)
Willy Tarreau8dff9982015-08-04 20:45:52 +02001148 reuse = 1;
Willy Tarreau8dff9982015-08-04 20:45:52 +02001149 }
1150
Willy Tarreau34601a82013-12-15 16:33:46 +01001151 if (reuse) {
1152 /* Disable connection reuse if a dynamic source is used.
1153 * As long as we don't share connections between servers,
1154 * we don't need to disable connection reuse on no-idempotent
1155 * requests nor when PROXY protocol is used.
1156 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001157 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1158 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1159 reuse = 0;
1160 }
1161 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1162 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1163 reuse = 0;
1164 }
1165 }
1166
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001167 /* We're about to use another connection, let the mux know we're
1168 * done with this one
1169 */
1170 if (old_conn != srv_conn) {
1171 int did_switch = 0;
1172
1173 if (srv_conn && reuse) {
1174 struct session *sess;
1175 int count = 0;
1176
1177 /*
1178 * If we're attempting to reuse a connection, and
1179 * the new connection has only one user, and there
1180 * are no more streams available, attempt to give
1181 * it our old connection
1182 */
1183 list_for_each_entry(sess, &srv_conn->session_list,
1184 conn_list) {
1185 count++;
1186 if (count > 1)
1187 break;
1188 }
1189 if (count == 1) {
1190 sess = LIST_ELEM(srv_conn->session_list.n,
1191 struct session *, conn_list);
1192 LIST_DEL(&sess->conn_list);
1193 if (old_conn &&
1194 !(old_conn->flags & CO_FL_PRIVATE) &&
1195 (old_conn->mux->avail_streams(old_conn) > 0) &&
1196 (srv_conn->mux->avail_streams(srv_conn) == 1)) {
1197 LIST_ADDQ(&old_conn->session_list, &sess->conn_list);
1198 sess->srv_conn = old_conn;
1199 } else {
1200 LIST_INIT(&sess->conn_list);
1201 sess->srv_conn = NULL;
1202 }
1203 did_switch = 1;
1204 }
1205
1206 }
1207 /*
1208 * We didn't manage to give our old connection, destroy it
1209 */
1210 if (old_conn && !did_switch) {
1211 old_conn->owner = NULL;
1212 old_conn->mux->destroy(old_conn);
1213 old_conn = NULL;
1214 }
1215 }
1216
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001217 if (!reuse) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001218 srv_conn = conn_new();
1219 srv_cs = NULL;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001220 } else {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001221 if (srv_conn->mux->avail_streams(srv_conn) == 1) {
1222 /* No more streams available, remove it from the list */
1223 LIST_DEL(&srv_conn->list);
1224 LIST_INIT(&srv_conn->list);
1225 }
1226 srv_cs = srv_conn->mux->attach(srv_conn);
1227 if (srv_cs)
1228 si_attach_cs(&s->si[1], srv_cs);
1229 }
1230 if (srv_conn && old_conn != srv_conn) {
1231 srv_conn->owner = s->sess;
1232 s->sess->srv_conn = srv_conn;
1233 LIST_DEL(&s->sess->conn_list);
1234 LIST_ADDQ(&srv_conn->session_list, &s->sess->conn_list);
Willy Tarreau323a2d92015-08-04 19:00:17 +02001235 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001236
Olivier Houchard201b9f42018-11-21 00:16:29 +01001237 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001238 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001239
Willy Tarreaue7dff022015-04-03 01:14:29 +02001240 if (!(s->flags & SF_ADDR_SET)) {
Olivier Houchard201b9f42018-11-21 00:16:29 +01001241 err = assign_server_address(s, srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001242 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001243 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001244 }
1245
Willy Tarreauff605db2013-12-20 11:09:51 +01001246 if (!conn_xprt_ready(srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001247 /* the target was only on the stream, assign it to the SI now */
Willy Tarreauff605db2013-12-20 11:09:51 +01001248 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001249
Willy Tarreauff605db2013-12-20 11:09:51 +01001250 /* set the correct protocol on the output stream interface */
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001251 if (srv)
Willy Tarreau7b004922015-08-04 19:34:21 +02001252 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001253 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1254 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001255 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001256 if (!objt_cs(s->si[1].end) || !objt_cs(s->si[1].end)->conn->ctrl)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001257 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001258 }
1259 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001260 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001261
Olivier Houchard201b9f42018-11-21 00:16:29 +01001262#ifdef USE_OPENSSL
1263 if ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) ||
1264 srv->mux_proto)
1265#endif
1266 {
1267 srv_cs = si_alloc_cs(&s->si[1], srv_conn);
1268 if (!srv_cs) {
1269 conn_free(srv_conn);
1270 return SF_ERR_RESOURCE;
1271 }
1272 if (conn_install_mux_be(srv_conn, srv_cs) < 0)
1273 return SF_ERR_INTERNAL;
1274 }
1275#ifdef USE_OPENSSL
1276 else {
1277 srv_conn->mux_ctx = s;
1278 /* Store the connection into the stream interface,
1279 * while we still don't have a mux, so that if the
1280 * stream is destroyed before the connection is
1281 * established, and a mux is set, we don't attempt
1282 * to access the stream
1283 */
1284 conn_set_xprt_done_cb(srv_conn, conn_complete_server);
1285 }
1286
1287#endif
1288
Christopher Faulet2bf88c02018-02-28 10:33:34 +01001289
Willy Tarreauff605db2013-12-20 11:09:51 +01001290 /* process the case where the server requires the PROXY protocol to be sent */
1291 srv_conn->send_proxy_ofs = 0;
Olivier Houchard522eea72017-11-03 16:27:47 +01001292 cli_conn = objt_conn(strm_orig(s));
1293
Willy Tarreau7b004922015-08-04 19:34:21 +02001294 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001295 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreauff605db2013-12-20 11:09:51 +01001296 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreauff605db2013-12-20 11:09:51 +01001297 if (cli_conn)
1298 conn_get_to_addr(cli_conn);
1299 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001300
Willy Tarreauff605db2013-12-20 11:09:51 +01001301 assign_tproxy_address(s);
1302 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01001303 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001304 s->flags |= SF_SRV_REUSED;
Willy Tarreaub1d67742010-03-29 19:36:59 +02001305
William Lallemandb7ff6a32012-03-02 14:35:21 +01001306 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001307 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001308 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001309
Willy Tarreau14f8e862012-08-30 22:23:13 +02001310 /* disable lingering */
1311 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001312 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001313
Olivier Houchard201b9f42018-11-21 00:16:29 +01001314 err = si_connect(&s->si[1], srv_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001315
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001316#ifdef USE_OPENSSL
Olivier Houchard522eea72017-11-03 16:27:47 +01001317 if (!reuse && cli_conn && srv &&
1318 (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) &&
1319 (cli_conn->flags & CO_FL_EARLY_DATA) &&
1320 !channel_is_empty(si_oc(&s->si[1])) &&
1321 srv_conn->flags & CO_FL_SSL_WAIT_HS) {
1322 srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
1323 srv_conn->flags |= CO_FL_EARLY_SSL_HS;
1324 }
Willy Tarreau46c9d3e2017-11-08 14:25:59 +01001325#endif
Olivier Houchard522eea72017-11-03 16:27:47 +01001326
Willy Tarreaue7dff022015-04-03 01:14:29 +02001327 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001328 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001329
Willy Tarreau14f8e862012-08-30 22:23:13 +02001330 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001331 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001332
Willy Tarreau827aee92011-03-10 16:55:02 +01001333 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001334 int count;
1335
Willy Tarreaue7dff022015-04-03 01:14:29 +02001336 s->flags |= SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02001337 count = HA_ATOMIC_ADD(&srv->cur_sess, 1);
1338 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001339 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001340 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001341
1342#ifdef USE_OPENSSL
1343 if (srv->ssl_ctx.sni) {
1344 struct sample *smp;
1345 int rewind;
1346
1347 /* Tricky case : we have already scheduled the pending
1348 * HTTP request or TCP data for leaving. So in HTTP we
1349 * rewind exactly the headers, otherwise we rewind the
1350 * output data.
1351 */
Willy Tarreau6a445eb2018-06-19 07:04:45 +02001352 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001353 c_rew(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001354
1355 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, srv->ssl_ctx.sni, SMP_T_STR);
1356
1357 /* restore the pointers */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001358 c_adv(&s->req, rewind);
Willy Tarreau732eac42015-07-09 11:40:25 +02001359
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001360 if (smp_make_safe(smp)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001361 ssl_sock_set_servername(srv_conn,
1362 smp->data.u.str.area);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001363 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001364 }
1365 }
1366#endif /* USE_OPENSSL */
1367
Willy Tarreaubaaee002006-06-26 02:48:02 +02001368 }
1369
Willy Tarreaue7dff022015-04-03 01:14:29 +02001370 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371}
1372
1373
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374/* This function performs the "redispatch" part of a connection attempt. It
1375 * will assign a server if required, queue the connection if required, and
1376 * handle errors that might arise at this level. It can change the server
1377 * state. It will return 1 if it encounters an error, switches the server
1378 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1379 * that the connection is ready to use.
1380 */
1381
Willy Tarreau87b09662015-04-03 00:22:06 +02001382int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001383{
Willy Tarreau827aee92011-03-10 16:55:02 +01001384 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001385 int conn_err;
1386
1387 /* We know that we don't have any connection pending, so we will
1388 * try to get a new one, and wait in this state if it's queued
1389 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001390 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001391 conn_err = assign_server_and_queue(s);
1392 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001393
Willy Tarreaubaaee002006-06-26 02:48:02 +02001394 switch (conn_err) {
1395 case SRV_STATUS_OK:
1396 break;
1397
Willy Tarreau7c669d72008-06-20 15:04:11 +02001398 case SRV_STATUS_FULL:
1399 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1400 * and we can redispatch to another server, or it is not and we return
1401 * 503. This only makes sense in DIRECT mode however, because normal LB
1402 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001403 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001404 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001405 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001406 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001407 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001408 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001409 goto redispatch;
1410 }
1411
Willy Tarreau350f4872014-11-28 14:42:25 +01001412 if (!s->si[1].err_type) {
1413 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001414 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001415
Christopher Faulet29f77e82017-06-08 14:04:45 +02001416 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001417 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001418 return 1;
1419
Willy Tarreaubaaee002006-06-26 02:48:02 +02001420 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001421 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001422 if (!s->si[1].err_type) {
1423 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001424 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001425
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001426 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001427 return 1;
1428
1429 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001430 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1431 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001432 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001433 return 1;
1434
Willy Tarreaubaaee002006-06-26 02:48:02 +02001435 case SRV_STATUS_INTERNAL:
1436 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001437 if (!s->si[1].err_type) {
1438 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001439 }
1440
Willy Tarreau827aee92011-03-10 16:55:02 +01001441 if (srv)
1442 srv_inc_sess_ctr(srv);
1443 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001444 srv_set_sess_last(srv);
1445 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001446 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001447 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001448
Willy Tarreau87b09662015-04-03 00:22:06 +02001449 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001450 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001451 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001452 return 1;
1453 }
1454 /* if we get here, it's because we got SRV_STATUS_OK, which also
1455 * means that the connection has not been queued.
1456 */
1457 return 0;
1458}
1459
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001460/* sends a log message when a backend goes down, and also sets last
1461 * change date.
1462 */
1463void set_backend_down(struct proxy *be)
1464{
1465 be->last_change = now.tv_sec;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001466 HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001467
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001468 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001469 ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001470 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1471 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001472}
1473
Willy Tarreau87b09662015-04-03 00:22:06 +02001474/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001475 * tries to extract an RDP cookie from the request buffer, and look for the
1476 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001477 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001478 * list. Nothing is performed if a server was already assigned.
1479 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001480int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001481{
1482 struct proxy *px = s->be;
1483 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001484 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001485 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001486 uint16_t port;
1487 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001488 char *p;
1489
Christopher Faulet45073512018-07-20 10:16:29 +02001490 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001491 now_ms, __FUNCTION__,
1492 s,
1493 req,
1494 req->rex, req->wex,
1495 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001496 ci_data(req),
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001497 req->analysers);
1498
Willy Tarreaue7dff022015-04-03 01:14:29 +02001499 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001500 goto no_cookie;
1501
Willy Tarreau37406352012-04-23 16:16:37 +02001502 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001503
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001504 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001505 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001506 goto no_cookie;
1507
Willy Tarreau04276f32017-01-06 17:41:29 +01001508 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1509 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1510 * server's IP address in network order, and "port" is the integer corresponding to the
1511 * server's port in network order. Comments please Emeric.
1512 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001513 addr = strtoul(smp.data.u.str.area, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001514 if (*p != '.')
1515 goto no_cookie;
1516 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001517
1518 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001519 if (*p != '.')
1520 goto no_cookie;
1521
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001522 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001523 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001524 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001525 port == srv->svc_port &&
1526 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001527 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001528 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001529 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001530 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001531 break;
1532 }
1533 }
1534 srv = srv->next;
1535 }
1536
1537no_cookie:
1538 req->analysers &= ~an_bit;
1539 req->analyse_exp = TICK_ETERNITY;
1540 return 1;
1541}
1542
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001543int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001544 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001545 return px->down_time;
1546
1547 return now.tv_sec - px->last_change + px->down_time;
1548}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001549
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001550/*
1551 * This function returns a string containing the balancing
1552 * mode of the proxy in a format suitable for stats.
1553 */
1554
1555const char *backend_lb_algo_str(int algo) {
1556
1557 if (algo == BE_LB_ALGO_RR)
1558 return "roundrobin";
1559 else if (algo == BE_LB_ALGO_SRR)
1560 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001561 else if (algo == BE_LB_ALGO_FAS)
1562 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001563 else if (algo == BE_LB_ALGO_LC)
1564 return "leastconn";
1565 else if (algo == BE_LB_ALGO_SH)
1566 return "source";
1567 else if (algo == BE_LB_ALGO_UH)
1568 return "uri";
1569 else if (algo == BE_LB_ALGO_PH)
1570 return "url_param";
1571 else if (algo == BE_LB_ALGO_HH)
1572 return "hdr";
1573 else if (algo == BE_LB_ALGO_RCH)
1574 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001575 else if (algo == BE_LB_ALGO_NONE)
1576 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001577 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001578 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001579}
1580
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001581/* This function parses a "balance" statement in a backend section describing
1582 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001583 * returns -1, it will write an error message into the <err> buffer which will
1584 * automatically be allocated and must be passed as NULL. The trailing '\n'
1585 * will not be written. The function must be called with <args> pointing to the
1586 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001587 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001588int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001589{
1590 if (!*(args[0])) {
1591 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001592 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1593 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001594 return 0;
1595 }
1596
1597 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001598 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1599 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001600 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001601 else if (!strcmp(args[0], "static-rr")) {
1602 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1603 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1604 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001605 else if (!strcmp(args[0], "first")) {
1606 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1607 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1608 }
Willy Tarreau51406232008-03-10 22:04:20 +01001609 else if (!strcmp(args[0], "leastconn")) {
1610 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1611 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1612 }
Willy Tarreau760e81d2018-05-03 07:20:40 +02001613 else if (!strcmp(args[0], "random")) {
1614 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1615 curproxy->lbprm.algo |= BE_LB_ALGO_RND;
1616 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001617 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001618 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1619 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001620 }
1621 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001622 int arg = 1;
1623
Willy Tarreau31682232007-11-29 15:38:04 +01001624 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1625 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001626
Oskar Stolc8dc41842012-05-19 10:19:54 +01001627 curproxy->uri_whole = 0;
1628
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001629 while (*args[arg]) {
1630 if (!strcmp(args[arg], "len")) {
1631 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001632 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001633 return -1;
1634 }
1635 curproxy->uri_len_limit = atoi(args[arg+1]);
1636 arg += 2;
1637 }
1638 else if (!strcmp(args[arg], "depth")) {
1639 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001640 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001641 return -1;
1642 }
1643 /* hint: we store the position of the ending '/' (depth+1) so
1644 * that we avoid a comparison while computing the hash.
1645 */
1646 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1647 arg += 2;
1648 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001649 else if (!strcmp(args[arg], "whole")) {
1650 curproxy->uri_whole = 1;
1651 arg += 1;
1652 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001653 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001654 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001655 return -1;
1656 }
1657 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001658 }
Willy Tarreau01732802007-11-01 22:48:15 +01001659 else if (!strcmp(args[0], "url_param")) {
1660 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001661 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001662 return -1;
1663 }
Willy Tarreau31682232007-11-29 15:38:04 +01001664 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1665 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001666
1667 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001668 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001669 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001670 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001671 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001672 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001673 return -1;
1674 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001675 }
Benoitaffb4812009-03-25 13:02:10 +01001676 }
1677 else if (!strncmp(args[0], "hdr(", 4)) {
1678 const char *beg, *end;
1679
1680 beg = args[0] + 4;
1681 end = strchr(beg, ')');
1682
1683 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001684 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001685 return -1;
1686 }
1687
1688 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1689 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1690
1691 free(curproxy->hh_name);
1692 curproxy->hh_len = end - beg;
1693 curproxy->hh_name = my_strndup(beg, end - beg);
1694 curproxy->hh_match_domain = 0;
1695
1696 if (*args[1]) {
1697 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001698 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001699 return -1;
1700 }
1701 curproxy->hh_match_domain = 1;
1702 }
Emeric Brun736aa232009-06-30 17:56:00 +02001703 }
1704 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1705 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1706 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1707
1708 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1709 const char *beg, *end;
1710
1711 beg = args[0] + 11;
1712 end = strchr(beg, ')');
1713
1714 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001715 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001716 return -1;
1717 }
1718
1719 free(curproxy->hh_name);
1720 curproxy->hh_name = my_strndup(beg, end - beg);
1721 curproxy->hh_len = end - beg;
1722 }
1723 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1724 free(curproxy->hh_name);
1725 curproxy->hh_name = strdup("mstshash");
1726 curproxy->hh_len = strlen(curproxy->hh_name);
1727 }
1728 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001729 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001730 return -1;
1731 }
Willy Tarreau01732802007-11-01 22:48:15 +01001732 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001733 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001734 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 +01001735 return -1;
1736 }
1737 return 0;
1738}
1739
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001740
1741/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001742/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001743/************************************************************************/
1744
Willy Tarreau34db1082012-04-19 17:16:54 +02001745/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001746 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001747 * undefined behaviour.
1748 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001749static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001750smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001751{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001752 struct proxy *px;
1753
Willy Tarreau37406352012-04-23 16:16:37 +02001754 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001755 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001756 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001757
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001758 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001759
1760 return 1;
1761}
1762
Willy Tarreau37406352012-04-23 16:16:37 +02001763/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001764 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001765 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1766 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001767 */
1768static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001769smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001770{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001771 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001772
Willy Tarreau37406352012-04-23 16:16:37 +02001773 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001774 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02001775 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
1776 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001777 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001778 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001779 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001780 return 1;
1781}
1782
Willy Tarreau34db1082012-04-19 17:16:54 +02001783/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001784 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001785 * undefined behaviour.
1786 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001787static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001788smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001789{
1790 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001791
Willy Tarreau37406352012-04-23 16:16:37 +02001792 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001793 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001794 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001795
Willy Tarreau24e32d82012-04-23 23:55:44 +02001796 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001797 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001798 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001799
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001800 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001801 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001802 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001803 return 1;
1804 }
1805
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001806 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001807 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001808 }
1809
1810 return 1;
1811}
1812
Willy Tarreaua5e37562011-12-16 17:06:15 +01001813/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001814static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001815smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001816{
Willy Tarreaube508f12016-03-10 11:47:01 +01001817 if (!smp->strm)
1818 return 0;
1819
Willy Tarreauf853c462012-04-23 18:53:56 +02001820 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001821 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001822 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001823 return 1;
1824}
1825
Marcin Deranekd2471c22016-12-12 14:08:05 +01001826/* set string to the name of the backend */
1827static int
1828smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1829{
1830 if (!smp->strm)
1831 return 0;
1832
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001833 smp->data.u.str.area = (char *)smp->strm->be->id;
1834 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +01001835 return 0;
1836
1837 smp->data.type = SMP_T_STR;
1838 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001839 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +01001840
1841 return 1;
1842}
1843
Willy Tarreaua5e37562011-12-16 17:06:15 +01001844/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001845static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001846smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001847{
Willy Tarreaube508f12016-03-10 11:47:01 +01001848 if (!smp->strm)
1849 return 0;
1850
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001851 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001852 return 0;
1853
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001854 smp->data.type = SMP_T_SINT;
Willy Tarreau1e582e52018-09-20 11:29:28 +02001855 smp->data.u.sint = __objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001856
1857 return 1;
1858}
1859
Willy Tarreau34db1082012-04-19 17:16:54 +02001860/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001861 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001862 * undefined behaviour.
1863 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001864static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001865smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001866{
Willy Tarreau37406352012-04-23 16:16:37 +02001867 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001868 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001869 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001870 return 1;
1871}
1872
Willy Tarreau34db1082012-04-19 17:16:54 +02001873/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001874 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001875 * undefined behaviour.
1876 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001877static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001878smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001879{
Willy Tarreau37406352012-04-23 16:16:37 +02001880 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001881 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001882 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001883 return 1;
1884}
1885
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04001886/* set temp integer to the number of available connections across available
1887 * servers on the backend.
1888 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
1889 * undefined behaviour.
1890 */
1891static int
1892smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
1893{
1894 struct server *iterator;
1895 struct proxy *px;
1896 unsigned int maxconn;
1897
1898 smp->flags = SMP_F_VOL_TEST;
1899 smp->data.type = SMP_T_SINT;
1900 smp->data.u.sint = 0;
1901
1902 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
1903 if (iterator->cur_state == SRV_ST_STOPPED)
1904 continue;
1905
1906 px = iterator->proxy;
1907 if (!srv_currently_usable(iterator) ||
1908 ((iterator->flags & SRV_F_BACKUP) &&
1909 (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK)))))
1910 continue;
1911
1912 if (iterator->maxconn == 0) {
1913 /* one active server is unlimited, return -1 */
1914 smp->data.u.sint = -1;
1915 return 1;
1916 }
1917
1918 maxconn = srv_dynamic_maxconn(iterator);
1919 if (maxconn > iterator->cur_sess)
1920 smp->data.u.sint += maxconn - iterator->cur_sess;
1921 }
1922
1923 return 1;
1924}
1925
Willy Tarreau34db1082012-04-19 17:16:54 +02001926/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001927 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001928 * undefined behaviour.
1929 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001930static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001931smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001932{
Willy Tarreau37406352012-04-23 16:16:37 +02001933 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001934 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001935 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001936 return 1;
1937}
1938
Willy Tarreaua5e37562011-12-16 17:06:15 +01001939/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001940 * by the number of running servers and rounded up. If there is no running
1941 * server, we return twice the total, just as if we had half a running server.
1942 * This is more or less correct anyway, since we expect the last server to come
1943 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001944 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001945 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001946 */
1947static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001948smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001949{
1950 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001951 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02001952
Willy Tarreau37406352012-04-23 16:16:37 +02001953 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001954 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001955 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001956
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001957 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02001958
1959 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001960 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001961 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001962 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001963
1964 return 1;
1965}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001966
Willy Tarreau34db1082012-04-19 17:16:54 +02001967/* set temp integer to the number of concurrent connections on the server in the backend.
1968 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1969 * undefined behaviour.
1970 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001971static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001972smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001973{
Willy Tarreauf853c462012-04-23 18:53:56 +02001974 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001975 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001976 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001977 return 1;
1978}
1979
Patrick Hemmer155e93e2018-06-14 18:01:35 -04001980/* set temp integer to the number of available connections on the server in the backend.
1981 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1982 * undefined behaviour.
1983 */
1984static int
1985smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private)
1986{
1987 unsigned int maxconn;
1988
1989 smp->flags = SMP_F_VOL_TEST;
1990 smp->data.type = SMP_T_SINT;
1991
1992 if (args->data.srv->maxconn == 0) {
1993 /* one active server is unlimited, return -1 */
1994 smp->data.u.sint = -1;
1995 return 1;
1996 }
1997
1998 maxconn = srv_dynamic_maxconn(args->data.srv);
1999 if (maxconn > args->data.srv->cur_sess)
2000 smp->data.u.sint = maxconn - args->data.srv->cur_sess;
2001 else
2002 smp->data.u.sint = 0;
2003
2004 return 1;
2005}
2006
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002007/* set temp integer to the number of connections pending in the server's queue.
2008 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2009 * undefined behaviour.
2010 */
2011static int
2012smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
2013{
2014 smp->flags = SMP_F_VOL_TEST;
2015 smp->data.type = SMP_T_SINT;
2016 smp->data.u.sint = args->data.srv->nbpend;
2017 return 1;
2018}
2019
Tait Clarridge7896d522012-12-05 21:39:31 -05002020/* set temp integer to the number of enabled servers on the proxy.
2021 * Accepts exactly 1 argument. Argument is a server, other types will lead to
2022 * undefined behaviour.
2023 */
2024static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002025smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05002026{
2027 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002028 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002029 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05002030 return 1;
2031}
2032
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002033static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
2034{
2035
2036 struct proxy *px;
2037
2038 if (!smp_make_safe(smp))
2039 return 0;
2040
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002041 px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002042 if (!px)
2043 return 0;
2044
2045 smp->data.type = SMP_T_SINT;
2046 smp->data.u.sint = be_usable_srv(px);
2047
2048 return 1;
2049}
2050
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002051
2052/* Note: must not be declared <const> as its list will be overwritten.
2053 * Please take care of keeping this list alphabetically sorted.
2054 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002055static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002056 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2057 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer4cdf3ab2018-06-14 17:10:27 -04002058 { "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 +02002059 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01002060 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002061 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2062 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2063 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2064 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
2065 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Patrick Hemmer155e93e2018-06-14 18:01:35 -04002066 { "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 +02002067 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002068 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
Willy Tarreauff2b7af2017-10-13 11:46:26 +02002069 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002070 { "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 +01002071 { /* END */ },
2072}};
2073
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002074/* Note: must not be declared <const> as its list will be overwritten */
2075static struct sample_conv_kw_list sample_conv_kws = {ILH, {
2076 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
2077 { /* END */ },
2078}};
2079
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002080
Willy Tarreau61612d42012-04-19 18:42:05 +02002081/* Note: must not be declared <const> as its list will be overwritten.
2082 * Please take care of keeping this list alphabetically sorted.
2083 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002084static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002085 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002086}};
2087
2088
2089__attribute__((constructor))
2090static void __backend_init(void)
2091{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01002092 sample_register_fetches(&smp_kws);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01002093 sample_register_convs(&sample_conv_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01002094 acl_register_keywords(&acl_kws);
2095}
2096
Willy Tarreaubaaee002006-06-26 02:48:02 +02002097/*
2098 * Local variables:
2099 * c-indent-level: 8
2100 * c-basic-offset: 8
2101 * End:
2102 */