blob: 23b85ce6b956c33460f55132de88a066a0a6205a [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 Tarreau3fdb3662012-11-12 00:42:33 +010044#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010045#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020046#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020048#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020049#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010051#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010052#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020053#include <proto/stream.h>
Willy Tarreau9e000c62011-03-10 14:03:36 +010054#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/task.h>
56
Willy Tarreau732eac42015-07-09 11:40:25 +020057#ifdef USE_OPENSSL
58#include <proto/ssl_sock.h>
59#endif /* USE_OPENSSL */
60
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050061int be_lastsession(const struct proxy *be)
62{
63 if (be->be_counters.last_sess)
64 return now.tv_sec - be->be_counters.last_sess;
65
66 return -1;
67}
68
Bhaskar98634f02013-10-29 23:30:51 -040069/* helper function to invoke the correct hash method */
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070070static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040071{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -070072 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040073
74 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
75 case BE_LB_HFCN_DJB2:
76 hash = hash_djb2(key, len);
77 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010078 case BE_LB_HFCN_WT6:
79 hash = hash_wt6(key, len);
80 break;
Willy Tarreau324f07f2015-01-20 19:44:50 +010081 case BE_LB_HFCN_CRC32:
82 hash = hash_crc32(key, len);
83 break;
Bhaskar98634f02013-10-29 23:30:51 -040084 case BE_LB_HFCN_SDBM:
85 /* this is the default hash function */
86 default:
87 hash = hash_sdbm(key, len);
88 break;
89 }
90
91 return hash;
92}
93
Willy Tarreaubaaee002006-06-26 02:48:02 +020094/*
95 * This function recounts the number of usable active and backup servers for
96 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010097 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010098 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010099 * this.
Emeric Brun52a91d32017-08-31 14:41:55 +0200100 * This functions is designed to be called before server's weight and state
101 * commit so it uses 'next' weight and states values.
Christopher Faulet5b517552017-06-09 14:17:53 +0200102 *
103 * threads: this is the caller responsibility to lock data. For now, this
104 * function is called from lb modules, so it should be ok. But if you need to
105 * call it from another place, be careful (and update this comment).
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200107void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108{
109 struct server *srv;
110
Willy Tarreau20697042007-11-15 23:26:18 +0100111 px->srv_act = px->srv_bck = 0;
112 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100113 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 for (srv = px->srv; srv != NULL; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200115 if (!srv_willbe_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100116 continue;
117
Willy Tarreauc93cd162014-05-13 15:54:22 +0200118 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100119 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100120 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100121 px->lbprm.fbck = srv;
122 px->srv_bck++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400123 srv->cumulative_weight = px->lbprm.tot_wbck;
Emeric Brun52a91d32017-08-31 14:41:55 +0200124 px->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100125 } else {
126 px->srv_act++;
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400127 srv->cumulative_weight = px->lbprm.tot_wact;
Emeric Brun52a91d32017-08-31 14:41:55 +0200128 px->lbprm.tot_wact += srv->next_eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 }
130 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100131}
Willy Tarreau20697042007-11-15 23:26:18 +0100132
Willy Tarreaub625a082007-11-26 01:15:43 +0100133/* This function simply updates the backend's tot_weight and tot_used values
134 * after servers weights have been updated. It is designed to be used after
135 * recount_servers() or equivalent.
Christopher Faulet5b517552017-06-09 14:17:53 +0200136 *
137 * threads: this is the caller responsibility to lock data. For now, this
138 * function is called from lb modules, so it should be ok. But if you need to
139 * call it from another place, be careful (and update this comment).
Willy Tarreaub625a082007-11-26 01:15:43 +0100140 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200141void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100142{
Willy Tarreau20697042007-11-15 23:26:18 +0100143 if (px->srv_act) {
144 px->lbprm.tot_weight = px->lbprm.tot_wact;
145 px->lbprm.tot_used = px->srv_act;
146 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100147 else if (px->lbprm.fbck) {
148 /* use only the first backup server */
Emeric Brun52a91d32017-08-31 14:41:55 +0200149 px->lbprm.tot_weight = px->lbprm.fbck->next_eweight;
Willy Tarreaub625a082007-11-26 01:15:43 +0100150 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100151 }
152 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100153 px->lbprm.tot_weight = px->lbprm.tot_wbck;
154 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100155 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100156}
157
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200158/*
159 * This function tries to find a running server for the proxy <px> following
160 * the source hash method. Depending on the number of active/backup servers,
161 * it will either look for active servers, or for backup servers.
162 * If any server is found, it will be returned. If no valid server is found,
163 * NULL is returned.
164 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200165static struct server *get_server_sh(struct proxy *px, const char *addr, int len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200166{
167 unsigned int h, l;
168
169 if (px->lbprm.tot_weight == 0)
170 return NULL;
171
172 l = h = 0;
173
174 /* note: we won't hash if there's only one server left */
175 if (px->lbprm.tot_used == 1)
176 goto hash_done;
177
178 while ((l + sizeof (int)) <= len) {
179 h ^= ntohl(*(unsigned int *)(&addr[l]));
180 l += sizeof (int);
181 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500182 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100183 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200184 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200185 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
186 return chash_get_server_hash(px, h);
187 else
188 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200189}
190
191/*
192 * This function tries to find a running server for the proxy <px> following
193 * the URI hash method. In order to optimize cache hits, the hash computation
194 * ends at the question mark. Depending on the number of active/backup servers,
195 * it will either look for active servers, or for backup servers.
196 * If any server is found, it will be returned. If no valid server is found,
197 * NULL is returned.
198 *
199 * This code was contributed by Guillaume Dallaire, who also selected this hash
200 * algorithm out of a tens because it gave him the best results.
201 *
202 */
Christopher Fauletf0614e82017-06-09 14:20:29 +0200203static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200204{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700205 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200206 int c;
207 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400208 const char *start, *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200209
210 if (px->lbprm.tot_weight == 0)
211 return NULL;
212
213 /* note: we won't hash if there's only one server left */
214 if (px->lbprm.tot_used == 1)
215 goto hash_done;
216
217 if (px->uri_len_limit)
218 uri_len = MIN(uri_len, px->uri_len_limit);
219
Bhaskar98634f02013-10-29 23:30:51 -0400220 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200221 while (uri_len--) {
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200222 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223 if (c == '/') {
224 slashes++;
225 if (slashes == px->uri_dirs_depth1) /* depth+1 */
226 break;
227 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100228 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200229 break;
Willy Tarreaufad4ffc2014-10-17 12:11:50 +0200230 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200231 }
Bhaskar98634f02013-10-29 23:30:51 -0400232
233 hash = gen_hash(px, start, (end - start));
234
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500235 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100236 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200237 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200238 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
239 return chash_get_server_hash(px, hash);
240 else
241 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200242}
243
Christopher Faulet5b517552017-06-09 14:17:53 +0200244/*
Willy Tarreau01732802007-11-01 22:48:15 +0100245 * This function tries to find a running server for the proxy <px> following
246 * the URL parameter hash method. It looks for a specific parameter in the
247 * URL and hashes it to compute the server ID. This is useful to optimize
248 * performance by avoiding bounces between servers in contexts where sessions
249 * are shared but cookies are not usable. If the parameter is not found, NULL
250 * is returned. If any server is found, it will be returned. If no valid server
251 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100252 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200253static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
Willy Tarreau01732802007-11-01 22:48:15 +0100254{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700255 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400256 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200257 const char *p;
258 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100259 int plen;
260
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200261 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100262 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100263 return NULL;
264
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200265 if ((p = memchr(uri, '?', uri_len)) == NULL)
266 return NULL;
267
Willy Tarreau01732802007-11-01 22:48:15 +0100268 p++;
269
270 uri_len -= (p - uri);
271 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200272 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100273
274 while (uri_len > plen) {
275 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200276 if (params[plen] == '=') {
277 if (memcmp(params, px->url_param_name, plen) == 0) {
278 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100279 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200280 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100281 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400283 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200284 uri_len -= plen + 1;
285
Bhaskar98634f02013-10-29 23:30:51 -0400286 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100287 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400288 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100289 }
Bhaskar98634f02013-10-29 23:30:51 -0400290 hash = gen_hash(px, start, (end - start));
291
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500292 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100293 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400294
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200295 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
296 return chash_get_server_hash(px, hash);
297 else
298 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100299 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200300 }
301 /* skip to next parameter */
302 p = memchr(params, '&', uri_len);
303 if (!p)
304 return NULL;
305 p++;
306 uri_len -= (p - params);
307 params = p;
308 }
309 return NULL;
310}
311
312/*
313 * this does the same as the previous server_ph, but check the body contents
314 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200315static struct server *get_server_ph_post(struct stream *s)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200316{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700317 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200318 struct http_txn *txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100319 struct channel *req = &s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200320 struct http_msg *msg = &txn->req;
321 struct proxy *px = s->be;
322 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200323 unsigned long len = http_body_bytes(msg);
Willy Tarreau0d090502014-04-17 20:31:44 +0200324 const char *params = b_ptr(req->buf, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100325 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400326 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200327
Willy Tarreau157dd632009-12-06 19:18:09 +0100328 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200329 return NULL;
330
Willy Tarreauf69d4ff2015-05-02 00:05:47 +0200331 if (len > req->buf->data + req->buf->size - p)
332 len = req->buf->data + req->buf->size - p;
333
Willy Tarreau157dd632009-12-06 19:18:09 +0100334 if (px->lbprm.tot_weight == 0)
335 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200336
337 while (len > plen) {
338 /* Look for the parameter name followed by an equal symbol */
339 if (params[plen] == '=') {
340 if (memcmp(params, px->url_param_name, plen) == 0) {
341 /* OK, we have the parameter here at <params>, and
342 * the value after the equal sign, at <p>
343 * skip the equal symbol
344 */
345 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400346 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200347 len -= plen + 1;
348
Bhaskar98634f02013-10-29 23:30:51 -0400349 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200350 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100351 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400352 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100353 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200354 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
355 break;
356 return NULL; /* oh, no; this is not uri-encoded.
357 * This body does not contain parameters.
358 */
359 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200360 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400361 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200362 /* should we break if vlen exceeds limit? */
363 }
Bhaskar98634f02013-10-29 23:30:51 -0400364 hash = gen_hash(px, start, (end - start));
365
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500366 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100367 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400368
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200369 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
370 return chash_get_server_hash(px, hash);
371 else
372 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200373 }
374 }
Willy Tarreau01732802007-11-01 22:48:15 +0100375 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200376 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100377 if (!p)
378 return NULL;
379 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200380 len -= (p - params);
381 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100382 }
383 return NULL;
384}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200385
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200386
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387/*
Benoitaffb4812009-03-25 13:02:10 +0100388 * This function tries to find a running server for the proxy <px> following
389 * the Header parameter hash method. It looks for a specific parameter in the
390 * URL and hashes it to compute the server ID. This is useful to optimize
391 * performance by avoiding bounces between servers in contexts where sessions
392 * are shared but cookies are not usable. If the parameter is not found, NULL
393 * is returned. If any server is found, it will be returned. If no valid server
394 * is found, NULL is returned.
395 */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200396static struct server *get_server_hh(struct stream *s)
Benoitaffb4812009-03-25 13:02:10 +0100397{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700398 unsigned int hash = 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200399 struct http_txn *txn = s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100400 struct proxy *px = s->be;
401 unsigned int plen = px->hh_len;
402 unsigned long len;
403 struct hdr_ctx ctx;
404 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400405 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100406
407 /* tot_weight appears to mean srv_count */
408 if (px->lbprm.tot_weight == 0)
409 return NULL;
410
Benoitaffb4812009-03-25 13:02:10 +0100411 ctx.idx = 0;
412
413 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100414 http_find_header2(px->hh_name, plen, b_ptr(s->req.buf, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
Benoitaffb4812009-03-25 13:02:10 +0100415
416 /* if the header is not found or empty, let's fallback to round robin */
417 if (!ctx.idx || !ctx.vlen)
418 return NULL;
419
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200420 /* note: we won't hash if there's only one server left */
421 if (px->lbprm.tot_used == 1)
422 goto hash_done;
423
Benoitaffb4812009-03-25 13:02:10 +0100424 /* Found a the hh_name in the headers.
425 * we will compute the hash based on this value ctx.val.
426 */
427 len = ctx.vlen;
428 p = (char *)ctx.line + ctx.val;
429 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400430 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100431 } else {
432 int dohash = 0;
Cyril Bontéf607d812015-01-04 15:17:36 +0100433 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100434 /* special computation, use only main domain name, not tld/host
435 * going back from the end of string, start hashing at first
436 * dot stop at next.
437 * This is designed to work with the 'Host' header, and requires
438 * a special option to activate this.
439 */
Cyril Bontéf607d812015-01-04 15:17:36 +0100440 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100441 while (len) {
Cyril Bontéf607d812015-01-04 15:17:36 +0100442 if (dohash) {
443 /* Rewind the pointer until the previous char
444 * is a dot, this will allow to set the start
445 * position of the domain. */
446 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100447 break;
Benoitaffb4812009-03-25 13:02:10 +0100448 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100449 else if (*p == '.') {
450 /* The pointer is rewinded to the dot before the
451 * tld, we memorize the end of the domain and
452 * can enter the domain processing. */
453 end = p;
454 dohash = 1;
455 }
Benoitaffb4812009-03-25 13:02:10 +0100456 p--;
Cyril Bontéf607d812015-01-04 15:17:36 +0100457 len--;
Benoitaffb4812009-03-25 13:02:10 +0100458 }
Cyril Bontéf607d812015-01-04 15:17:36 +0100459 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400460 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100461 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500462 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100463 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200464 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200465 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
466 return chash_get_server_hash(px, hash);
467 else
468 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100469}
470
Willy Tarreau34db1082012-04-19 17:16:54 +0200471/* RDP Cookie HASH. */
Christopher Faulet8fe48912017-06-09 14:23:09 +0200472static struct server *get_server_rch(struct stream *s)
Emeric Brun736aa232009-06-30 17:56:00 +0200473{
Dan Dubovikbd57a9f2014-07-08 08:51:03 -0700474 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200475 struct proxy *px = s->be;
476 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200477 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200478 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200479 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200480
481 /* tot_weight appears to mean srv_count */
482 if (px->lbprm.tot_weight == 0)
483 return NULL;
484
Willy Tarreau37406352012-04-23 16:16:37 +0200485 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200486
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100487 b_rew(s->req.buf, rewind = s->req.buf->o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200488
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200489 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200490 len = smp.data.u.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100491
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100492 b_adv(s->req.buf, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200493
Willy Tarreau37406352012-04-23 16:16:37 +0200494 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200495 return NULL;
496
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200497 /* note: we won't hash if there's only one server left */
498 if (px->lbprm.tot_used == 1)
499 goto hash_done;
500
Emeric Brun736aa232009-06-30 17:56:00 +0200501 /* Found a the hh_name in the headers.
502 * we will compute the hash based on this value ctx.val.
503 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200504 hash = gen_hash(px, smp.data.u.str.str, len);
Bhaskar98634f02013-10-29 23:30:51 -0400505
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500506 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100507 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200508 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200509 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
510 return chash_get_server_hash(px, hash);
511 else
512 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200513}
Christopher Faulet5b517552017-06-09 14:17:53 +0200514
Benoitaffb4812009-03-25 13:02:10 +0100515/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200516 * This function applies the load-balancing algorithm to the stream, as
517 * defined by the backend it is assigned to. The stream is then marked as
Willy Tarreau7c669d72008-06-20 15:04:11 +0200518 * 'assigned'.
519 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200520 * This function MAY NOT be called with SF_ASSIGNED already set. If the stream
Willy Tarreau7c669d72008-06-20 15:04:11 +0200521 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100522 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200523 * The function tries to keep the original connection slot if it reconnects to
524 * the same server, otherwise it releases it and tries to offer it.
525 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200526 * It is illegal to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200527 *
528 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100529 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau87b09662015-04-03 00:22:06 +0200530 * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED
531 * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532 * SRV_STATUS_INTERNAL for other unrecoverable errors.
533 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200534 * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100535 * it does not need to be called anymore. This means that target_srv(&s->target)
536 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537 *
538 */
539
Willy Tarreau87b09662015-04-03 00:22:06 +0200540int assign_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200542 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200543 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100544 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200545 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100546
Simon Horman8effd3d2011-08-13 08:03:52 +0900547 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200548
Willy Tarreau7c669d72008-06-20 15:04:11 +0200549 err = SRV_STATUS_INTERNAL;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200550 if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED))
Willy Tarreau7c669d72008-06-20 15:04:11 +0200551 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100552
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100553 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200554 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200555
Willy Tarreau7c669d72008-06-20 15:04:11 +0200556 /* We have to release any connection slot before applying any LB algo,
557 * otherwise we may erroneously end up with no available slot.
558 */
559 if (conn_slot)
560 sess_change_server(s, NULL);
561
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100562 /* We will now try to find the good server and store it into <objt_server(s->target)>.
563 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200564 * as well as if no server is available (check error code).
565 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100566
Willy Tarreau827aee92011-03-10 16:55:02 +0100567 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100568 s->target = NULL;
Willy Tarreau350f4872014-11-28 14:42:25 +0100569 conn = objt_conn(s->si[1].end);
Willy Tarreau664beb82011-03-10 11:38:29 +0100570
Willy Tarreau068621e2013-12-23 15:11:25 +0100571 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100572 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100573 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Willy Tarreaueee5b512015-04-03 23:46:31 +0200574 ((s->txn && s->txn->flags & TX_PREFER_LAST) ||
Willy Tarreauc35362a2014-04-25 13:58:37 +0200575 ((s->be->options & PR_O_PREF_LAST) &&
Olivier Doucet1ca1b6f2017-01-02 11:48:57 +0100576 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI &&
Willy Tarreauc35362a2014-04-25 13:58:37 +0200577 (!s->be->max_ka_queue ||
578 server_has_room(__objt_server(conn->target)) ||
579 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200580 srv_currently_usable(__objt_server(conn->target))) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200581 /* This stream was relying on a server in a previous request
Olivier Doucet1ca1b6f2017-01-02 11:48:57 +0100582 * and the proxy has "option prefer-last-server" set
583 * and balance algorithm dont tell us to do otherwise, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100584 * let's try to reuse the same server.
585 */
586 srv = __objt_server(conn->target);
587 s->target = &srv->obj_type;
588 }
589 else if (s->be->lbprm.algo & BE_LB_KIND) {
Christopher Faulet5b517552017-06-09 14:17:53 +0200590
Willy Tarreau7c669d72008-06-20 15:04:11 +0200591 /* we must check if we have at least one server available */
592 if (!s->be->lbprm.tot_weight) {
593 err = SRV_STATUS_NOSRV;
594 goto out;
595 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200596
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200597 /* First check whether we need to fetch some data or simply call
598 * the LB lookup function. Only the hashing functions will need
599 * some input data in fact, and will support multiple algorithms.
600 */
601 switch (s->be->lbprm.algo & BE_LB_LKUP) {
602 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100603 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200604 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200605
Willy Tarreauf09c6602012-02-13 17:12:08 +0100606 case BE_LB_LKUP_FSTREE:
607 srv = fas_get_next_server(s->be, prev_srv);
608 break;
609
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200610 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100611 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200612 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200613
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200614 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200615 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200616 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200617 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100618 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200619 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100620 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200621 break;
622 }
623 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200624 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200625 err = SRV_STATUS_INTERNAL;
626 goto out;
627 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200628
629 switch (s->be->lbprm.algo & BE_LB_PARM) {
630 case BE_LB_HASH_SRC:
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200631 conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200632 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200633 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200634 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200635 4);
636 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200637 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200638 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200639 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200640 16);
641 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200642 else {
643 /* unknown IP family */
644 err = SRV_STATUS_INTERNAL;
645 goto out;
646 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200647 break;
648
649 case BE_LB_HASH_URI:
650 /* URI hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200651 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100652 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100653 srv = get_server_uh(s->be,
Willy Tarreaueee5b512015-04-03 23:46:31 +0200654 b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
655 s->txn->req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200656 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200657
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200658 case BE_LB_HASH_PRM:
659 /* URL Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200660 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100661 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100662
Willy Tarreau827aee92011-03-10 16:55:02 +0100663 srv = get_server_ph(s->be,
Willy Tarreaueee5b512015-04-03 23:46:31 +0200664 b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
665 s->txn->req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100666
Willy Tarreaueee5b512015-04-03 23:46:31 +0200667 if (!srv && s->txn->meth == HTTP_METH_POST)
Willy Tarreau827aee92011-03-10 16:55:02 +0100668 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200669 break;
Benoitaffb4812009-03-25 13:02:10 +0100670
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200671 case BE_LB_HASH_HDR:
672 /* Header Parameter hashing */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200673 if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100674 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100675 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200676 break;
677
678 case BE_LB_HASH_RDP:
679 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100680 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200681 break;
682
683 default:
684 /* unknown balancing algorithm */
685 err = SRV_STATUS_INTERNAL;
686 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100687 }
Emeric Brun736aa232009-06-30 17:56:00 +0200688
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200689 /* If the hashing parameter was not found, let's fall
690 * back to round robin on the map.
691 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100692 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200693 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100694 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200695 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100696 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200697 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200698
699 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200700 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200701
Willy Tarreau7c669d72008-06-20 15:04:11 +0200702 default:
703 /* unknown balancing algorithm */
704 err = SRV_STATUS_INTERNAL;
705 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200706 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200707
Willy Tarreau827aee92011-03-10 16:55:02 +0100708 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200709 err = SRV_STATUS_FULL;
710 goto out;
711 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100712 else if (srv != prev_srv) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200713 HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1);
Christopher Faulet29f77e82017-06-08 14:04:45 +0200714 HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100715 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100716 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200717 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200718 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100719 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200720 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100721 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreau350f4872014-11-28 14:42:25 +0100722 (conn = objt_conn(s->si[1].end)) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200723 is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100724 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100725 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100726 }
727 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200728 err = SRV_STATUS_NOSRV;
729 goto out;
730 }
731
Willy Tarreaue7dff022015-04-03 01:14:29 +0200732 s->flags |= SF_ASSIGNED;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200733 err = SRV_STATUS_OK;
734 out:
735
736 /* Either we take back our connection slot, or we offer it to someone
737 * else if we don't need it anymore.
738 */
739 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100740 if (conn_slot == srv) {
741 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200742 } else {
743 if (may_dequeue_tasks(conn_slot, s->be))
744 process_srv_queue(conn_slot);
745 }
746 }
747
748 out_err:
749 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200750}
751
Willy Tarreaubaaee002006-06-26 02:48:02 +0200752/*
Willy Tarreaue7dff022015-04-03 01:14:29 +0200753 * This function assigns a server address to a stream, and sets SF_ADDR_SET.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200754 * The address is taken from the currently assigned server, or from the
755 * dispatch or transparent address.
756 *
757 * It may return :
758 * SRV_STATUS_OK if everything is OK.
759 * SRV_STATUS_INTERNAL for other unrecoverable errors.
760 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200761 * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is
Willy Tarreaubaaee002006-06-26 02:48:02 +0200762 * not cleared, so it's to the caller to clear it if required.
763 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200764 * The caller is responsible for having already assigned a connection
765 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200766 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200767 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200768int assign_server_address(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200769{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200770 struct connection *cli_conn = objt_conn(strm_orig(s));
Willy Tarreau350f4872014-11-28 14:42:25 +0100771 struct connection *srv_conn = objt_conn(s->si[1].end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200772
Willy Tarreaubaaee002006-06-26 02:48:02 +0200773#ifdef DEBUG_FULL
774 fprintf(stderr,"assign_server_address : s=%p\n",s);
775#endif
776
Willy Tarreaue7dff022015-04-03 01:14:29 +0200777 if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200778 /* A server is necessarily known for this stream */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200779 if (!(s->flags & SF_ASSIGNED))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200780 return SRV_STATUS_INTERNAL;
781
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200782 srv_conn->addr.to = objt_server(s->target)->addr;
Willy Tarreau04276f32017-01-06 17:41:29 +0100783 set_host_port(&srv_conn->addr.to, objt_server(s->target)->svc_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200784
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200785 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200786 /* if the server has no address, we use the same address
787 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200788 * locally on multiple addresses at once. Nothing is done
789 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200790 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200791 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200792
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200793 if (cli_conn->addr.to.ss_family == AF_INET) {
794 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
795 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
796 ((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 +0200797 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200798 }
799
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800 /* if this server remaps proxied ports, we'll use
801 * the port the client connected to with an offset. */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200802 if ((objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100803 int base_port;
804
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200805 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100806
807 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200808 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100809
810 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200811 base_port += get_host_port(&srv_conn->addr.to);
812 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813 }
814 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200815 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200817 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200819 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200821 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200823 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
824 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200825 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100826 else if (s->be->options & PR_O_HTTP_PROXY) {
827 /* If HTTP PROXY option is set, then server is already assigned
828 * during incoming client request parsing. */
829 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100830 else {
831 /* no server and no LB algorithm ! */
832 return SRV_STATUS_INTERNAL;
833 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200834
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100835 /* Copy network namespace from client connection */
Thierry FOURNIERfe1ebcd2014-12-19 13:37:11 +0100836 srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100837
Willy Tarreaue7dff022015-04-03 01:14:29 +0200838 s->flags |= SF_ADDR_SET;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200839 return SRV_STATUS_OK;
840}
841
Willy Tarreau87b09662015-04-03 00:22:06 +0200842/* This function assigns a server to stream <s> if required, and can add the
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau87b09662015-04-03 00:22:06 +0200844 * If ->srv_conn is set, the stream is first released from the server.
Willy Tarreaue7dff022015-04-03 01:14:29 +0200845 * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will
Willy Tarreau7c669d72008-06-20 15:04:11 +0200846 * be called before any connection and after any retry or redispatch occurs.
847 *
Willy Tarreau87b09662015-04-03 00:22:06 +0200848 * It is not allowed to call this function with a stream in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200849 *
850 * Returns :
851 *
852 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100853 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200854 * SRV_STATUS_QUEUED if the connection has been queued.
855 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100856 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200857 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200858 * SRV_STATUS_INTERNAL for other unrecoverable errors.
859 *
860 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200861int assign_server_and_queue(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200862{
863 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100864 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865 int err;
866
867 if (s->pend_pos)
868 return SRV_STATUS_INTERNAL;
869
Willy Tarreau7c669d72008-06-20 15:04:11 +0200870 err = SRV_STATUS_OK;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200871 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100872 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100873
Willy Tarreau7c669d72008-06-20 15:04:11 +0200874 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100875 if (prev_srv) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200876 /* This stream was previously assigned to a server. We have to
877 * update the stream's and the server's stats :
Willy Tarreau7c669d72008-06-20 15:04:11 +0200878 * - if the server changed :
879 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
Willy Tarreaue7dff022015-04-03 01:14:29 +0200880 * - set SF_REDISP if it was successfully redispatched
Willy Tarreau7c669d72008-06-20 15:04:11 +0200881 * - increment srv->redispatches and be->redispatches
882 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100883 */
884
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100885 if (prev_srv != objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +0200886 if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) {
887 s->txn->flags &= ~TX_CK_MASK;
888 s->txn->flags |= TX_CK_DOWN;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 }
Willy Tarreaue7dff022015-04-03 01:14:29 +0200890 s->flags |= SF_REDISP;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200891 HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200892 HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200893 } else {
Christopher Faulet29f77e82017-06-08 14:04:45 +0200894 HA_ATOMIC_ADD(&prev_srv->counters.retries, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200895 HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100896 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100897 }
898 }
899
Willy Tarreaubaaee002006-06-26 02:48:02 +0200900 switch (err) {
901 case SRV_STATUS_OK:
Willy Tarreaue7dff022015-04-03 01:14:29 +0200902 /* we have SF_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100903 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100904 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200905 return SRV_STATUS_OK; /* dispatch or proxy mode */
906
907 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100908 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200909 return SRV_STATUS_OK;
910
Willy Tarreau87b09662015-04-03 00:22:06 +0200911 /* OK, this stream already has an assigned server, but no
Willy Tarreau7c669d72008-06-20 15:04:11 +0200912 * connection slot yet. Either it is a redispatch, or it was
913 * assigned from persistence information (direct mode).
914 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200915 if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200916 /* server scheduled for redirection, and already assigned. We
917 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100918 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100919 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100920 return SRV_STATUS_OK;
921 }
922
Willy Tarreau87b09662015-04-03 00:22:06 +0200923 /* We might have to queue this stream if the assigned server is full.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 * We know we have to queue it into the server's queue, so if a maxqueue
925 * is set on the server, we must also check that the server's queue is
926 * not full, in which case we have to return FULL.
927 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100928 if (srv->maxconn &&
929 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200930
Willy Tarreau827aee92011-03-10 16:55:02 +0100931 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200932 return SRV_STATUS_FULL;
933
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934 p = pendconn_add(s);
935 if (p)
936 return SRV_STATUS_QUEUED;
937 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200938 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200939 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200940
941 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100942 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943 return SRV_STATUS_OK;
944
945 case SRV_STATUS_FULL:
Willy Tarreau87b09662015-04-03 00:22:06 +0200946 /* queue this stream into the proxy's queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200947 p = pendconn_add(s);
948 if (p)
949 return SRV_STATUS_QUEUED;
950 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200951 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200952
953 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200954 return err;
955
Willy Tarreaubaaee002006-06-26 02:48:02 +0200956 case SRV_STATUS_INTERNAL:
957 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200958
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959 default:
960 return SRV_STATUS_INTERNAL;
961 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100962}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200963
Willy Tarreaub1d67742010-03-29 19:36:59 +0200964/* If an explicit source binding is specified on the server and/or backend, and
965 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreau87b09662015-04-03 00:22:06 +0200966 * assigned to the stream's pending connection. This function assumes that an
Willy Tarreau350f4872014-11-28 14:42:25 +0100967 * outgoing connection has already been assigned to s->si[1].end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200968 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200969static void assign_tproxy_address(struct stream *s)
Willy Tarreaub1d67742010-03-29 19:36:59 +0200970{
Willy Tarreau29fbe512015-08-20 19:35:14 +0200971#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100972 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100973 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200974 struct connection *cli_conn;
Willy Tarreau350f4872014-11-28 14:42:25 +0100975 struct connection *srv_conn = objt_conn(s->si[1].end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100976
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100977 if (srv && srv->conn_src.opts & CO_SRC_BIND)
978 src = &srv->conn_src;
979 else if (s->be->conn_src.opts & CO_SRC_BIND)
980 src = &s->be->conn_src;
981 else
982 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100983
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100984 switch (src->opts & CO_SRC_TPROXY_MASK) {
985 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200986 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100987 break;
988 case CO_SRC_TPROXY_CLI:
989 case CO_SRC_TPROXY_CIP:
990 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200991 cli_conn = objt_conn(strm_orig(s));
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200992 if (cli_conn)
993 srv_conn->addr.from = cli_conn->addr.from;
994 else
995 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100996 break;
997 case CO_SRC_TPROXY_DYN:
Willy Tarreaueee5b512015-04-03 23:46:31 +0200998 if (src->bind_hdr_occ && s->txn) {
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100999 char *vptr;
1000 int vlen;
1001 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001002
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001003 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001004 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1005 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1006 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +01001007
Willy Tarreaueee5b512015-04-03 23:46:31 +02001008 b_rew(s->req.buf, rewind = http_hdr_rewind(&s->txn->req));
1009 if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len,
1010 &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001011 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001012 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001013 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001014 b_adv(s->req.buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001015 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001016 break;
1017 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001018 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001019 }
1020#endif
1021}
1022
1023
Willy Tarreaubaaee002006-06-26 02:48:02 +02001024/*
Willy Tarreau87b09662015-04-03 00:22:06 +02001025 * This function initiates a connection to the server assigned to this stream
Willy Tarreau350f4872014-11-28 14:42:25 +01001026 * (s->target, s->si[1].addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001027 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001028 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +02001029 * - SF_ERR_NONE if everything's OK
1030 * - SF_ERR_SRVTO if there are no more servers
1031 * - SF_ERR_SRVCL if the connection was refused by the server
1032 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1033 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1034 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +01001035 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001036 * The server-facing stream interface is expected to hold a pre-allocated connection
Willy Tarreau350f4872014-11-28 14:42:25 +01001037 * in s->si[1].conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001038 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001039int connect_server(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001040{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001041 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001042 struct connection *srv_conn;
Willy Tarreauefb90f92015-08-06 11:37:10 +02001043 struct connection *old_conn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001044 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001045 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001046 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001047
Willy Tarreau7b004922015-08-04 19:34:21 +02001048 srv = objt_server(s->target);
Willy Tarreau350f4872014-11-28 14:42:25 +01001049 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau34601a82013-12-15 16:33:46 +01001050 if (srv_conn)
1051 reuse = s->target == srv_conn->target;
1052
Willy Tarreau8dff9982015-08-04 20:45:52 +02001053 if (srv && !reuse) {
Willy Tarreauefb90f92015-08-06 11:37:10 +02001054 old_conn = srv_conn;
1055 if (old_conn) {
Willy Tarreau8dff9982015-08-04 20:45:52 +02001056 srv_conn = NULL;
Willy Tarreauefb90f92015-08-06 11:37:10 +02001057 old_conn->owner = NULL;
1058 si_detach_endpoint(&s->si[1]);
1059 /* note: if the connection was in a server's idle
1060 * queue, it doesn't get dequeued.
1061 */
Willy Tarreau8dff9982015-08-04 20:45:52 +02001062 }
1063
Willy Tarreau449d74a2015-08-05 17:16:33 +02001064 /* Below we pick connections from the safe or idle lists based
1065 * on the strategy, the fact that this is a first or second
1066 * (retryable) request, with the indicated priority (1 or 2) :
1067 *
1068 * SAFE AGGR ALWS
1069 *
1070 * +-----+-----+ +-----+-----+ +-----+-----+
1071 * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd |
1072 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1073 * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 |
1074 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1075 * idle| - | 1 | idle| - | 1 | idle| 2 | 1 |
1076 * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+
1077 */
Christopher Faulet40a007c2017-07-03 15:41:01 +02001078 if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001079 ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR &&
1080 s->txn && (s->txn->flags & TX_NOT_FIRST))) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001081 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001082 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001083 else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001084 ((s->txn && (s->txn->flags & TX_NOT_FIRST)) ||
1085 (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001086 srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001087 }
Christopher Faulet40a007c2017-07-03 15:41:01 +02001088 else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) &&
Willy Tarreau449d74a2015-08-05 17:16:33 +02001089 (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) {
Christopher Faulet40a007c2017-07-03 15:41:01 +02001090 srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list);
Willy Tarreau449d74a2015-08-05 17:16:33 +02001091 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001092
Willy Tarreau449d74a2015-08-05 17:16:33 +02001093 /* If we've picked a connection from the pool, we now have to
1094 * detach it. We may have to get rid of the previous idle
1095 * connection we had, so for this we try to swap it with the
1096 * other owner's. That way it may remain alive for others to
1097 * pick.
1098 */
1099 if (srv_conn) {
Willy Tarreau8dff9982015-08-04 20:45:52 +02001100 LIST_DEL(&srv_conn->list);
1101 LIST_INIT(&srv_conn->list);
1102
Willy Tarreauefb90f92015-08-06 11:37:10 +02001103 if (srv_conn->owner) {
1104 si_detach_endpoint(srv_conn->owner);
Willy Tarreau0aae4802016-02-02 18:29:05 +01001105 if (old_conn && !(old_conn->flags & CO_FL_PRIVATE)) {
Willy Tarreauefb90f92015-08-06 11:37:10 +02001106 si_attach_conn(srv_conn->owner, old_conn);
Willy Tarreau0aae4802016-02-02 18:29:05 +01001107 si_idle_conn(srv_conn->owner, NULL);
1108 }
Willy Tarreauefb90f92015-08-06 11:37:10 +02001109 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001110 si_attach_conn(&s->si[1], srv_conn);
1111 reuse = 1;
1112 }
Willy Tarreauefb90f92015-08-06 11:37:10 +02001113
Willy Tarreau449d74a2015-08-05 17:16:33 +02001114 /* we may have to release our connection if we couldn't swap it */
Willy Tarreauefb90f92015-08-06 11:37:10 +02001115 if (old_conn && !old_conn->owner) {
Willy Tarreauefb90f92015-08-06 11:37:10 +02001116 LIST_DEL(&old_conn->list);
Willy Tarreauf098fd02017-10-22 09:35:01 +02001117 conn_full_close(old_conn);
Willy Tarreauefb90f92015-08-06 11:37:10 +02001118 conn_free(old_conn);
1119 }
Willy Tarreau8dff9982015-08-04 20:45:52 +02001120 }
1121
Willy Tarreau34601a82013-12-15 16:33:46 +01001122 if (reuse) {
1123 /* Disable connection reuse if a dynamic source is used.
1124 * As long as we don't share connections between servers,
1125 * we don't need to disable connection reuse on no-idempotent
1126 * requests nor when PROXY protocol is used.
1127 */
Willy Tarreau34601a82013-12-15 16:33:46 +01001128 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1129 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1130 reuse = 0;
1131 }
1132 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1133 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1134 reuse = 0;
1135 }
1136 }
1137
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001138 if (!reuse)
Willy Tarreau973a5422015-08-05 21:47:23 +02001139 srv_conn = si_alloc_conn(&s->si[1]);
Willy Tarreau323a2d92015-08-04 19:00:17 +02001140 else {
1141 /* reusing our connection, take it out of the idle list */
1142 LIST_DEL(&srv_conn->list);
1143 LIST_INIT(&srv_conn->list);
1144 }
Willy Tarreauc12b5e62015-08-04 19:45:36 +02001145
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001146 if (!srv_conn)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001147 return SF_ERR_RESOURCE;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001148
Willy Tarreaue7dff022015-04-03 01:14:29 +02001149 if (!(s->flags & SF_ADDR_SET)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001150 err = assign_server_address(s);
1151 if (err != SRV_STATUS_OK)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001152 return SF_ERR_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001153 }
1154
Willy Tarreauff605db2013-12-20 11:09:51 +01001155 if (!conn_xprt_ready(srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001156 /* the target was only on the stream, assign it to the SI now */
Willy Tarreauff605db2013-12-20 11:09:51 +01001157 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001158
Willy Tarreauff605db2013-12-20 11:09:51 +01001159 /* set the correct protocol on the output stream interface */
Willy Tarreau7b004922015-08-04 19:34:21 +02001160 if (srv) {
1161 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt);
Willy Tarreauff605db2013-12-20 11:09:51 +01001162 }
1163 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1164 /* proxies exclusively run on raw_sock right now */
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001165 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW));
Willy Tarreau350f4872014-11-28 14:42:25 +01001166 if (!objt_conn(s->si[1].end) || !objt_conn(s->si[1].end)->ctrl)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001167 return SF_ERR_INTERNAL;
Willy Tarreauff605db2013-12-20 11:09:51 +01001168 }
1169 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001170 return SF_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001171
Willy Tarreauff605db2013-12-20 11:09:51 +01001172 /* process the case where the server requires the PROXY protocol to be sent */
1173 srv_conn->send_proxy_ofs = 0;
Willy Tarreau7b004922015-08-04 19:34:21 +02001174 if (srv && srv->pp_opts) {
Willy Tarreau387ebf82015-08-04 19:24:13 +02001175 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreauff605db2013-12-20 11:09:51 +01001176 srv_conn->send_proxy_ofs = 1; /* must compute size */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001177 cli_conn = objt_conn(strm_orig(s));
Willy Tarreauff605db2013-12-20 11:09:51 +01001178 if (cli_conn)
1179 conn_get_to_addr(cli_conn);
1180 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001181
Willy Tarreau350f4872014-11-28 14:42:25 +01001182 si_attach_conn(&s->si[1], srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001183
Willy Tarreauff605db2013-12-20 11:09:51 +01001184 assign_tproxy_address(s);
1185 }
1186 else {
1187 /* the connection is being reused, just re-attach it */
Willy Tarreau350f4872014-11-28 14:42:25 +01001188 si_attach_conn(&s->si[1], srv_conn);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001189 s->flags |= SF_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001190 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001191
William Lallemandb7ff6a32012-03-02 14:35:21 +01001192 /* flag for logging source ip/port */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001193 if (strm_fe(s)->options2 & PR_O2_SRC_ADDR)
Willy Tarreau350f4872014-11-28 14:42:25 +01001194 s->si[1].flags |= SI_FL_SRC_ADDR;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001195
Willy Tarreau14f8e862012-08-30 22:23:13 +02001196 /* disable lingering */
1197 if (s->be->options & PR_O_TCP_NOLING)
Willy Tarreau350f4872014-11-28 14:42:25 +01001198 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau14f8e862012-08-30 22:23:13 +02001199
Willy Tarreau350f4872014-11-28 14:42:25 +01001200 err = si_connect(&s->si[1]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001201
Willy Tarreaue7dff022015-04-03 01:14:29 +02001202 if (err != SF_ERR_NONE)
Willy Tarreau9650f372009-08-16 14:02:45 +02001203 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001204
Willy Tarreau14f8e862012-08-30 22:23:13 +02001205 /* set connect timeout */
Willy Tarreau350f4872014-11-28 14:42:25 +01001206 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect);
Willy Tarreau14f8e862012-08-30 22:23:13 +02001207
Willy Tarreau827aee92011-03-10 16:55:02 +01001208 if (srv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02001209 int count;
1210
Willy Tarreaue7dff022015-04-03 01:14:29 +02001211 s->flags |= SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02001212 count = HA_ATOMIC_ADD(&srv->cur_sess, 1);
1213 HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count);
Willy Tarreau51406232008-03-10 22:04:20 +01001214 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001215 s->be->lbprm.server_take_conn(srv);
Willy Tarreau732eac42015-07-09 11:40:25 +02001216
1217#ifdef USE_OPENSSL
1218 if (srv->ssl_ctx.sni) {
1219 struct sample *smp;
1220 int rewind;
1221
1222 /* Tricky case : we have already scheduled the pending
1223 * HTTP request or TCP data for leaving. So in HTTP we
1224 * rewind exactly the headers, otherwise we rewind the
1225 * output data.
1226 */
1227 rewind = s->txn ? http_hdr_rewind(&s->txn->req) : s->req.buf->o;
1228 b_rew(s->req.buf, rewind);
1229
1230 smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, srv->ssl_ctx.sni, SMP_T_STR);
1231
1232 /* restore the pointers */
1233 b_adv(s->req.buf, rewind);
1234
Willy Tarreau2e0565c2016-08-09 11:55:21 +02001235 if (smp_make_safe(smp)) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001236 ssl_sock_set_servername(srv_conn, smp->data.u.str.str);
Willy Tarreau387ebf82015-08-04 19:24:13 +02001237 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau732eac42015-07-09 11:40:25 +02001238 }
1239 }
1240#endif /* USE_OPENSSL */
1241
Willy Tarreaubaaee002006-06-26 02:48:02 +02001242 }
1243
Willy Tarreaue7dff022015-04-03 01:14:29 +02001244 return SF_ERR_NONE; /* connection is OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001245}
1246
1247
Willy Tarreaubaaee002006-06-26 02:48:02 +02001248/* This function performs the "redispatch" part of a connection attempt. It
1249 * will assign a server if required, queue the connection if required, and
1250 * handle errors that might arise at this level. It can change the server
1251 * state. It will return 1 if it encounters an error, switches the server
1252 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1253 * that the connection is ready to use.
1254 */
1255
Willy Tarreau87b09662015-04-03 00:22:06 +02001256int srv_redispatch_connect(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001257{
Willy Tarreau827aee92011-03-10 16:55:02 +01001258 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001259 int conn_err;
1260
1261 /* We know that we don't have any connection pending, so we will
1262 * try to get a new one, and wait in this state if it's queued
1263 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001264 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001265 conn_err = assign_server_and_queue(s);
1266 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001267
Willy Tarreaubaaee002006-06-26 02:48:02 +02001268 switch (conn_err) {
1269 case SRV_STATUS_OK:
1270 break;
1271
Willy Tarreau7c669d72008-06-20 15:04:11 +02001272 case SRV_STATUS_FULL:
1273 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1274 * and we can redispatch to another server, or it is not and we return
1275 * 503. This only makes sense in DIRECT mode however, because normal LB
1276 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001277 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001278 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001279 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001280 if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001281 (s->be->options & PR_O_REDISP)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001282 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001283 goto redispatch;
1284 }
1285
Willy Tarreau350f4872014-11-28 14:42:25 +01001286 if (!s->si[1].err_type) {
1287 s->si[1].err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001288 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001289
Christopher Faulet29f77e82017-06-08 14:04:45 +02001290 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001291 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001292 return 1;
1293
Willy Tarreaubaaee002006-06-26 02:48:02 +02001294 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001295 /* note: it is guaranteed that srv == NULL here */
Willy Tarreau350f4872014-11-28 14:42:25 +01001296 if (!s->si[1].err_type) {
1297 s->si[1].err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001298 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001299
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001300 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001301 return 1;
1302
1303 case SRV_STATUS_QUEUED:
Willy Tarreau350f4872014-11-28 14:42:25 +01001304 s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1305 s->si[1].state = SI_ST_QUE;
Willy Tarreau87b09662015-04-03 00:22:06 +02001306 /* do nothing else and do not wake any other stream up */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001307 return 1;
1308
Willy Tarreaubaaee002006-06-26 02:48:02 +02001309 case SRV_STATUS_INTERNAL:
1310 default:
Willy Tarreau350f4872014-11-28 14:42:25 +01001311 if (!s->si[1].err_type) {
1312 s->si[1].err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001313 }
1314
Willy Tarreau827aee92011-03-10 16:55:02 +01001315 if (srv)
1316 srv_inc_sess_ctr(srv);
1317 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001318 srv_set_sess_last(srv);
1319 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001320 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001321 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322
Willy Tarreau87b09662015-04-03 00:22:06 +02001323 /* release other streams waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001324 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001325 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001326 return 1;
1327 }
1328 /* if we get here, it's because we got SRV_STATUS_OK, which also
1329 * means that the connection has not been queued.
1330 */
1331 return 0;
1332}
1333
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001334/* sends a log message when a backend goes down, and also sets last
1335 * change date.
1336 */
1337void set_backend_down(struct proxy *be)
1338{
1339 be->last_change = now.tv_sec;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001340 HA_ATOMIC_ADD(&be->down_trans, 1);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001341
Willy Tarreau6fb8dc12016-11-03 19:42:36 +01001342 if (!(global.mode & MODE_STARTING)) {
1343 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
1344 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1345 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001346}
1347
Willy Tarreau87b09662015-04-03 00:22:06 +02001348/* Apply RDP cookie persistence to the current stream. For this, the function
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001349 * tries to extract an RDP cookie from the request buffer, and look for the
1350 * matching server in the list. If the server is found, it is assigned to the
Willy Tarreau87b09662015-04-03 00:22:06 +02001351 * stream. This always returns 1, and the analyser removes itself from the
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001352 * list. Nothing is performed if a server was already assigned.
1353 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001354int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001355{
1356 struct proxy *px = s->be;
1357 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001358 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001359 struct server *srv = px->srv;
Willy Tarreau04276f32017-01-06 17:41:29 +01001360 uint16_t port;
1361 uint32_t addr;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001362 char *p;
1363
Willy Tarreau87b09662015-04-03 00:22:06 +02001364 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001365 now_ms, __FUNCTION__,
1366 s,
1367 req,
1368 req->rex, req->wex,
1369 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001370 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001371 req->analysers);
1372
Willy Tarreaue7dff022015-04-03 01:14:29 +02001373 if (s->flags & SF_ASSIGNED)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001374 goto no_cookie;
1375
Willy Tarreau37406352012-04-23 16:16:37 +02001376 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001377
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001378 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001379 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001380 goto no_cookie;
1381
Willy Tarreau04276f32017-01-06 17:41:29 +01001382 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return.
1383 * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the
1384 * server's IP address in network order, and "port" is the integer corresponding to the
1385 * server's port in network order. Comments please Emeric.
1386 */
1387 addr = strtoul(smp.data.u.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001388 if (*p != '.')
1389 goto no_cookie;
1390 p++;
Willy Tarreau04276f32017-01-06 17:41:29 +01001391
1392 port = ntohs(strtoul(p, &p, 10));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001393 if (*p != '.')
1394 goto no_cookie;
1395
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001396 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001397 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001398 if (srv->addr.ss_family == AF_INET &&
Willy Tarreau04276f32017-01-06 17:41:29 +01001399 port == srv->svc_port &&
1400 addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001401 if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001402 /* we found the server and it is usable */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001403 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001404 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001405 break;
1406 }
1407 }
1408 srv = srv->next;
1409 }
1410
1411no_cookie:
1412 req->analysers &= ~an_bit;
1413 req->analyse_exp = TICK_ETERNITY;
1414 return 1;
1415}
1416
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001417int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001418 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001419 return px->down_time;
1420
1421 return now.tv_sec - px->last_change + px->down_time;
1422}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001423
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001424/*
1425 * This function returns a string containing the balancing
1426 * mode of the proxy in a format suitable for stats.
1427 */
1428
1429const char *backend_lb_algo_str(int algo) {
1430
1431 if (algo == BE_LB_ALGO_RR)
1432 return "roundrobin";
1433 else if (algo == BE_LB_ALGO_SRR)
1434 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001435 else if (algo == BE_LB_ALGO_FAS)
1436 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001437 else if (algo == BE_LB_ALGO_LC)
1438 return "leastconn";
1439 else if (algo == BE_LB_ALGO_SH)
1440 return "source";
1441 else if (algo == BE_LB_ALGO_UH)
1442 return "uri";
1443 else if (algo == BE_LB_ALGO_PH)
1444 return "url_param";
1445 else if (algo == BE_LB_ALGO_HH)
1446 return "hdr";
1447 else if (algo == BE_LB_ALGO_RCH)
1448 return "rdp-cookie";
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001449 else if (algo == BE_LB_ALGO_NONE)
1450 return "none";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001451 else
Willy Tarreaub3e111b2016-11-26 15:52:04 +01001452 return "unknown";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001453}
1454
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001455/* This function parses a "balance" statement in a backend section describing
1456 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001457 * returns -1, it will write an error message into the <err> buffer which will
1458 * automatically be allocated and must be passed as NULL. The trailing '\n'
1459 * will not be written. The function must be called with <args> pointing to the
1460 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001461 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001462int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001463{
1464 if (!*(args[0])) {
1465 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001466 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1467 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001468 return 0;
1469 }
1470
1471 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001472 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1473 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001474 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001475 else if (!strcmp(args[0], "static-rr")) {
1476 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1477 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1478 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001479 else if (!strcmp(args[0], "first")) {
1480 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1481 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1482 }
Willy Tarreau51406232008-03-10 22:04:20 +01001483 else if (!strcmp(args[0], "leastconn")) {
1484 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1485 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1486 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001487 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001488 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1489 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001490 }
1491 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001492 int arg = 1;
1493
Willy Tarreau31682232007-11-29 15:38:04 +01001494 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1495 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001496
Oskar Stolc8dc41842012-05-19 10:19:54 +01001497 curproxy->uri_whole = 0;
1498
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001499 while (*args[arg]) {
1500 if (!strcmp(args[arg], "len")) {
1501 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001502 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001503 return -1;
1504 }
1505 curproxy->uri_len_limit = atoi(args[arg+1]);
1506 arg += 2;
1507 }
1508 else if (!strcmp(args[arg], "depth")) {
1509 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001510 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001511 return -1;
1512 }
1513 /* hint: we store the position of the ending '/' (depth+1) so
1514 * that we avoid a comparison while computing the hash.
1515 */
1516 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1517 arg += 2;
1518 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001519 else if (!strcmp(args[arg], "whole")) {
1520 curproxy->uri_whole = 1;
1521 arg += 1;
1522 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001523 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001524 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001525 return -1;
1526 }
1527 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001528 }
Willy Tarreau01732802007-11-01 22:48:15 +01001529 else if (!strcmp(args[0], "url_param")) {
1530 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001531 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001532 return -1;
1533 }
Willy Tarreau31682232007-11-29 15:38:04 +01001534 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1535 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001536
1537 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001538 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001539 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001540 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001541 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001542 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001543 return -1;
1544 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001545 }
Benoitaffb4812009-03-25 13:02:10 +01001546 }
1547 else if (!strncmp(args[0], "hdr(", 4)) {
1548 const char *beg, *end;
1549
1550 beg = args[0] + 4;
1551 end = strchr(beg, ')');
1552
1553 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001554 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001555 return -1;
1556 }
1557
1558 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1559 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1560
1561 free(curproxy->hh_name);
1562 curproxy->hh_len = end - beg;
1563 curproxy->hh_name = my_strndup(beg, end - beg);
1564 curproxy->hh_match_domain = 0;
1565
1566 if (*args[1]) {
1567 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001568 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001569 return -1;
1570 }
1571 curproxy->hh_match_domain = 1;
1572 }
Emeric Brun736aa232009-06-30 17:56:00 +02001573 }
1574 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1575 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1576 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1577
1578 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1579 const char *beg, *end;
1580
1581 beg = args[0] + 11;
1582 end = strchr(beg, ')');
1583
1584 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001585 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001586 return -1;
1587 }
1588
1589 free(curproxy->hh_name);
1590 curproxy->hh_name = my_strndup(beg, end - beg);
1591 curproxy->hh_len = end - beg;
1592 }
1593 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1594 free(curproxy->hh_name);
1595 curproxy->hh_name = strdup("mstshash");
1596 curproxy->hh_len = strlen(curproxy->hh_name);
1597 }
1598 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001599 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001600 return -1;
1601 }
Willy Tarreau01732802007-11-01 22:48:15 +01001602 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001603 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001604 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 +01001605 return -1;
1606 }
1607 return 0;
1608}
1609
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001610
1611/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001612/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001613/************************************************************************/
1614
Willy Tarreau34db1082012-04-19 17:16:54 +02001615/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001616 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001617 * undefined behaviour.
1618 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001619static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001620smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001621{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001622 struct proxy *px;
1623
Willy Tarreau37406352012-04-23 16:16:37 +02001624 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001625 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001626 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001627
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001628 smp->data.u.sint = be_usable_srv(px);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001629
1630 return 1;
1631}
1632
Willy Tarreau37406352012-04-23 16:16:37 +02001633/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001634 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001635 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1636 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001637 */
1638static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001639smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001640{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001641 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001642
Willy Tarreau37406352012-04-23 16:16:37 +02001643 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001644 smp->data.type = SMP_T_BOOL;
Emeric Brun52a91d32017-08-31 14:41:55 +02001645 if (!(srv->cur_admin & SRV_ADMF_MAINT) &&
1646 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED)))
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001647 smp->data.u.sint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001648 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001649 smp->data.u.sint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001650 return 1;
1651}
1652
Willy Tarreau34db1082012-04-19 17:16:54 +02001653/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001654 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001655 * undefined behaviour.
1656 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001657static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001658smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001659{
1660 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001661
Willy Tarreau37406352012-04-23 16:16:37 +02001662 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001663 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001664 smp->data.u.sint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001665
Willy Tarreau24e32d82012-04-23 23:55:44 +02001666 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001667 if (iterator->cur_state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001668 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001669
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001670 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001671 /* configuration is stupid */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001672 smp->data.u.sint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001673 return 1;
1674 }
1675
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001676 smp->data.u.sint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001677 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001678 }
1679
1680 return 1;
1681}
1682
Willy Tarreaua5e37562011-12-16 17:06:15 +01001683/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001684static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001685smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001686{
Willy Tarreaube508f12016-03-10 11:47:01 +01001687 if (!smp->strm)
1688 return 0;
1689
Willy Tarreauf853c462012-04-23 18:53:56 +02001690 smp->flags = SMP_F_VOL_TXN;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001691 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001692 smp->data.u.sint = smp->strm->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001693 return 1;
1694}
1695
Marcin Deranekd2471c22016-12-12 14:08:05 +01001696/* set string to the name of the backend */
1697static int
1698smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
1699{
1700 if (!smp->strm)
1701 return 0;
1702
1703 smp->data.u.str.str = (char *)smp->strm->be->id;
1704 if (!smp->data.u.str.str)
1705 return 0;
1706
1707 smp->data.type = SMP_T_STR;
1708 smp->flags = SMP_F_CONST;
1709 smp->data.u.str.len = strlen(smp->data.u.str.str);
1710
1711 return 1;
1712}
1713
Willy Tarreaua5e37562011-12-16 17:06:15 +01001714/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001715static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001716smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +02001717{
Willy Tarreaube508f12016-03-10 11:47:01 +01001718 if (!smp->strm)
1719 return 0;
1720
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001721 if (!objt_server(smp->strm->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001722 return 0;
1723
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001724 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001725 smp->data.u.sint = objt_server(smp->strm->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001726
1727 return 1;
1728}
1729
Willy Tarreau34db1082012-04-19 17:16:54 +02001730/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001731 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001732 * undefined behaviour.
1733 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001734static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001735smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001736{
Willy Tarreau37406352012-04-23 16:16:37 +02001737 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001738 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001739 smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001740 return 1;
1741}
1742
Willy Tarreau34db1082012-04-19 17:16:54 +02001743/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001744 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001745 * undefined behaviour.
1746 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001747static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001748smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001749{
Willy Tarreau37406352012-04-23 16:16:37 +02001750 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001751 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001752 smp->data.u.sint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001753 return 1;
1754}
1755
Willy Tarreau34db1082012-04-19 17:16:54 +02001756/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001757 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001758 * undefined behaviour.
1759 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001760static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001761smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001762{
Willy Tarreau37406352012-04-23 16:16:37 +02001763 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001764 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001765 smp->data.u.sint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001766 return 1;
1767}
1768
Willy Tarreaua5e37562011-12-16 17:06:15 +01001769/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001770 * by the number of running servers and rounded up. If there is no running
1771 * server, we return twice the total, just as if we had half a running server.
1772 * This is more or less correct anyway, since we expect the last server to come
1773 * back soon.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001774 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001775 * undefined behaviour.
Willy Tarreaua36af912009-10-10 12:02:45 +02001776 */
1777static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001778smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua36af912009-10-10 12:02:45 +02001779{
1780 int nbsrv;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001781 struct proxy *px;
Willy Tarreaua36af912009-10-10 12:02:45 +02001782
Willy Tarreau37406352012-04-23 16:16:37 +02001783 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001784 smp->data.type = SMP_T_SINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001785 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001786
Nenad Merdanovic2754fbc2017-03-12 21:56:56 +01001787 nbsrv = be_usable_srv(px);
Willy Tarreaua36af912009-10-10 12:02:45 +02001788
1789 if (nbsrv > 0)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001790 smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001791 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001792 smp->data.u.sint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001793
1794 return 1;
1795}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001796
Willy Tarreau34db1082012-04-19 17:16:54 +02001797/* set temp integer to the number of concurrent connections on the server in the backend.
1798 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1799 * undefined behaviour.
1800 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001801static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001802smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001803{
Willy Tarreauf853c462012-04-23 18:53:56 +02001804 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001805 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001806 smp->data.u.sint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001807 return 1;
1808}
1809
Willy Tarreauff2b7af2017-10-13 11:46:26 +02001810/* set temp integer to the number of connections pending in the server's queue.
1811 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1812 * undefined behaviour.
1813 */
1814static int
1815smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private)
1816{
1817 smp->flags = SMP_F_VOL_TEST;
1818 smp->data.type = SMP_T_SINT;
1819 smp->data.u.sint = args->data.srv->nbpend;
1820 return 1;
1821}
1822
Tait Clarridge7896d522012-12-05 21:39:31 -05001823/* set temp integer to the number of enabled servers on the proxy.
1824 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1825 * undefined behaviour.
1826 */
1827static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001828smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Tait Clarridge7896d522012-12-05 21:39:31 -05001829{
1830 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001831 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001832 smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec);
Tait Clarridge7896d522012-12-05 21:39:31 -05001833 return 1;
1834}
1835
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01001836static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private)
1837{
1838
1839 struct proxy *px;
1840
1841 if (!smp_make_safe(smp))
1842 return 0;
1843
1844 px = proxy_find_by_name(smp->data.u.str.str, PR_CAP_BE, 0);
1845 if (!px)
1846 return 0;
1847
1848 smp->data.type = SMP_T_SINT;
1849 smp->data.u.sint = be_usable_srv(px);
1850
1851 return 1;
1852}
1853
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001854
1855/* Note: must not be declared <const> as its list will be overwritten.
1856 * Please take care of keeping this list alphabetically sorted.
1857 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001858static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001859 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1860 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1861 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +01001862 { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001863 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1864 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1865 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1866 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1867 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
1868 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, },
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001869 { "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 +02001870 { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001871 { "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 +01001872 { /* END */ },
1873}};
1874
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01001875/* Note: must not be declared <const> as its list will be overwritten */
1876static struct sample_conv_kw_list sample_conv_kws = {ILH, {
1877 { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT },
1878 { /* END */ },
1879}};
1880
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001881
Willy Tarreau61612d42012-04-19 18:42:05 +02001882/* Note: must not be declared <const> as its list will be overwritten.
1883 * Please take care of keeping this list alphabetically sorted.
1884 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001885static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001886 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001887}};
1888
1889
1890__attribute__((constructor))
1891static void __backend_init(void)
1892{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001893 sample_register_fetches(&smp_kws);
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +01001894 sample_register_convs(&sample_conv_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001895 acl_register_keywords(&acl_kws);
1896}
1897
Willy Tarreaubaaee002006-06-26 02:48:02 +02001898/*
1899 * Local variables:
1900 * c-indent-level: 8
1901 * c-basic-offset: 8
1902 * End:
1903 */