blob: 87dda722eda00b0210dd73edde7aa6c6cd718f09 [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreaubaaee002006-06-26 02:48:02 +020030#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +010032#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020033#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020035#include <proto/channel.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020036#include <proto/frontend.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020037#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010038#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020039#include <proto/lb_fwlc.h>
40#include <proto/lb_fwrr.h>
41#include <proto/lb_map.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020042#include <proto/log.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010043#include <proto/obj_type.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010044#include <proto/payload.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020045#include <proto/protocol.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046#include <proto/proto_http.h>
Willy Tarreaua8f55d52010-05-31 17:44:19 +020047#include <proto/proto_tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020048#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/queue.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010050#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010051#include <proto/server.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020052#include <proto/session.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020053#include <proto/raw_sock.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
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050057int be_lastsession(const struct proxy *be)
58{
59 if (be->be_counters.last_sess)
60 return now.tv_sec - be->be_counters.last_sess;
61
62 return -1;
63}
64
Bhaskar98634f02013-10-29 23:30:51 -040065/* helper function to invoke the correct hash method */
Dan Dubovik82456752014-07-08 08:51:03 -070066static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len)
Bhaskar98634f02013-10-29 23:30:51 -040067{
Dan Dubovik82456752014-07-08 08:51:03 -070068 unsigned int hash;
Bhaskar98634f02013-10-29 23:30:51 -040069
70 switch (px->lbprm.algo & BE_LB_HASH_FUNC) {
71 case BE_LB_HFCN_DJB2:
72 hash = hash_djb2(key, len);
73 break;
Willy Tarreaua0f42712013-11-14 14:30:35 +010074 case BE_LB_HFCN_WT6:
75 hash = hash_wt6(key, len);
76 break;
Bhaskar98634f02013-10-29 23:30:51 -040077 case BE_LB_HFCN_SDBM:
78 /* this is the default hash function */
79 default:
80 hash = hash_sdbm(key, len);
81 break;
82 }
83
84 return hash;
85}
86
Willy Tarreaubaaee002006-06-26 02:48:02 +020087/*
88 * This function recounts the number of usable active and backup servers for
89 * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck.
Willy Tarreaub625a082007-11-26 01:15:43 +010090 * This function also recomputes the total active and backup weights. However,
Willy Tarreauf4cca452008-03-08 21:42:54 +010091 * it does not update tot_weight nor tot_used. Use update_backend_weight() for
Willy Tarreaub625a082007-11-26 01:15:43 +010092 * this.
Willy Tarreaubaaee002006-06-26 02:48:02 +020093 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +020094void recount_servers(struct proxy *px)
Willy Tarreaubaaee002006-06-26 02:48:02 +020095{
96 struct server *srv;
97
Willy Tarreau20697042007-11-15 23:26:18 +010098 px->srv_act = px->srv_bck = 0;
99 px->lbprm.tot_wact = px->lbprm.tot_wbck = 0;
Willy Tarreaub625a082007-11-26 01:15:43 +0100100 px->lbprm.fbck = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101 for (srv = px->srv; srv != NULL; srv = srv->next) {
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200102 if (!srv_is_usable(srv))
Willy Tarreaub625a082007-11-26 01:15:43 +0100103 continue;
104
Willy Tarreauc93cd162014-05-13 15:54:22 +0200105 if (srv->flags & SRV_F_BACKUP) {
Willy Tarreaub625a082007-11-26 01:15:43 +0100106 if (!px->srv_bck &&
Willy Tarreauf4cca452008-03-08 21:42:54 +0100107 !(px->options & PR_O_USE_ALL_BK))
Willy Tarreaub625a082007-11-26 01:15:43 +0100108 px->lbprm.fbck = srv;
109 px->srv_bck++;
110 px->lbprm.tot_wbck += srv->eweight;
111 } else {
112 px->srv_act++;
113 px->lbprm.tot_wact += srv->eweight;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 }
115 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100116}
Willy Tarreau20697042007-11-15 23:26:18 +0100117
Willy Tarreaub625a082007-11-26 01:15:43 +0100118/* This function simply updates the backend's tot_weight and tot_used values
119 * after servers weights have been updated. It is designed to be used after
120 * recount_servers() or equivalent.
121 */
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200122void update_backend_weight(struct proxy *px)
Willy Tarreaub625a082007-11-26 01:15:43 +0100123{
Willy Tarreau20697042007-11-15 23:26:18 +0100124 if (px->srv_act) {
125 px->lbprm.tot_weight = px->lbprm.tot_wact;
126 px->lbprm.tot_used = px->srv_act;
127 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100128 else if (px->lbprm.fbck) {
129 /* use only the first backup server */
130 px->lbprm.tot_weight = px->lbprm.fbck->eweight;
131 px->lbprm.tot_used = 1;
Willy Tarreau20697042007-11-15 23:26:18 +0100132 }
133 else {
Willy Tarreaub625a082007-11-26 01:15:43 +0100134 px->lbprm.tot_weight = px->lbprm.tot_wbck;
135 px->lbprm.tot_used = px->srv_bck;
Willy Tarreau20697042007-11-15 23:26:18 +0100136 }
Willy Tarreaub625a082007-11-26 01:15:43 +0100137}
138
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200139/*
140 * This function tries to find a running server for the proxy <px> following
141 * the source hash method. Depending on the number of active/backup servers,
142 * it will either look for active servers, or for backup servers.
143 * If any server is found, it will be returned. If no valid server is found,
144 * NULL is returned.
145 */
146struct server *get_server_sh(struct proxy *px, const char *addr, int len)
147{
148 unsigned int h, l;
149
150 if (px->lbprm.tot_weight == 0)
151 return NULL;
152
153 l = h = 0;
154
155 /* note: we won't hash if there's only one server left */
156 if (px->lbprm.tot_used == 1)
157 goto hash_done;
158
159 while ((l + sizeof (int)) <= len) {
160 h ^= ntohl(*(unsigned int *)(&addr[l]));
161 l += sizeof (int);
162 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500163 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100164 h = full_hash(h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200165 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200166 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
167 return chash_get_server_hash(px, h);
168 else
169 return map_get_server_hash(px, h);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200170}
171
172/*
173 * This function tries to find a running server for the proxy <px> following
174 * the URI hash method. In order to optimize cache hits, the hash computation
175 * ends at the question mark. Depending on the number of active/backup servers,
176 * it will either look for active servers, or for backup servers.
177 * If any server is found, it will be returned. If no valid server is found,
178 * NULL is returned.
179 *
180 * This code was contributed by Guillaume Dallaire, who also selected this hash
181 * algorithm out of a tens because it gave him the best results.
182 *
183 */
184struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
185{
Dan Dubovik82456752014-07-08 08:51:03 -0700186 unsigned int hash = 0;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200187 int c;
188 int slashes = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400189 const char *start, *end;
natalie.chendf7a7142015-03-31 15:54:07 +0800190 int depth = 1;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200191
192 if (px->lbprm.tot_weight == 0)
193 return NULL;
194
195 /* note: we won't hash if there's only one server left */
196 if (px->lbprm.tot_used == 1)
197 goto hash_done;
198
199 if (px->uri_len_limit)
200 uri_len = MIN(uri_len, px->uri_len_limit);
201
natalie.chenb320ad42016-08-01 10:57:46 +0800202 start = end = uri;
203 if (px->uri_git == 1) {
204 end = uri + uri_len - 1;
205 while (uri_len--) {
206 c = *end;
207 if (c == '/') {
208 slashes++;
209 if (slashes == depth)
210 break;
211 }
212 else if (c == '?')
213 depth = 2;
214 end--;
215 }
216 //get rid of redundant '/'
217 while ((end - start) > 1 && *(start+1) == '/')
218 start++;
219 while ((end - start) > 1 && *(end-1) == '/')
220 end--;
221 //get rid of trailing ".git"
222 if ((end - start) > 4 && strncmp(end-4, ".git", 4) == 0)
223 end -= 4;
224
225 } else {
226 while (uri_len--) {
227 c = *end;
228 if (c == '/') {
229 slashes++;
230 if (slashes == px->uri_dirs_depth1) /* depth+1 */
231 break;
232 }
233 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200234 break;
natalie.chenb320ad42016-08-01 10:57:46 +0800235 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200236 }
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200237 }
natalie.chene22be3d2015-06-25 09:33:52 +0800238
Bhaskar98634f02013-10-29 23:30:51 -0400239 hash = gen_hash(px, start, (end - start));
240
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500241 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100242 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200243 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200244 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
245 return chash_get_server_hash(px, hash);
246 else
247 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200248}
249
Willy Tarreau01732802007-11-01 22:48:15 +0100250/*
251 * This function tries to find a running server for the proxy <px> following
252 * the URL parameter hash method. It looks for a specific parameter in the
253 * URL and hashes it to compute the server ID. This is useful to optimize
254 * performance by avoiding bounces between servers in contexts where sessions
255 * are shared but cookies are not usable. If the parameter is not found, NULL
256 * is returned. If any server is found, it will be returned. If no valid server
257 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100258 */
259struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
260{
Dan Dubovik82456752014-07-08 08:51:03 -0700261 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400262 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 const char *p;
264 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100265 int plen;
266
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200267 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100268 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100269 return NULL;
270
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200271 if ((p = memchr(uri, '?', uri_len)) == NULL)
272 return NULL;
273
Willy Tarreau01732802007-11-01 22:48:15 +0100274 p++;
275
276 uri_len -= (p - uri);
277 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200278 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100279
280 while (uri_len > plen) {
281 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200282 if (params[plen] == '=') {
283 if (memcmp(params, px->url_param_name, plen) == 0) {
284 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100285 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200286 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100287 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200288 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400289 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200290 uri_len -= plen + 1;
291
Bhaskar98634f02013-10-29 23:30:51 -0400292 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100293 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400294 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100295 }
Bhaskar98634f02013-10-29 23:30:51 -0400296 hash = gen_hash(px, start, (end - start));
297
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500298 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100299 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400300
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200301 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
302 return chash_get_server_hash(px, hash);
303 else
304 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100305 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200306 }
307 /* skip to next parameter */
308 p = memchr(params, '&', uri_len);
309 if (!p)
310 return NULL;
311 p++;
312 uri_len -= (p - params);
313 params = p;
314 }
315 return NULL;
316}
317
318/*
319 * this does the same as the previous server_ph, but check the body contents
320 */
321struct server *get_server_ph_post(struct session *s)
322{
Dan Dubovik82456752014-07-08 08:51:03 -0700323 unsigned int hash = 0;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200324 struct http_txn *txn = &s->txn;
Willy Tarreau7421efb2012-07-02 15:11:27 +0200325 struct channel *req = s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200326 struct http_msg *msg = &txn->req;
327 struct proxy *px = s->be;
328 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200329 unsigned long len = http_body_bytes(msg);
Willy Tarreau0d090502014-04-17 20:31:44 +0200330 const char *params = b_ptr(req->buf, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100331 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400332 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200333
Willy Tarreau157dd632009-12-06 19:18:09 +0100334 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200335 return NULL;
336
Willy Tarreau522aab32015-05-02 00:05:47 +0200337 if (len > req->buf->data + req->buf->size - p)
338 len = req->buf->data + req->buf->size - p;
339
Willy Tarreau157dd632009-12-06 19:18:09 +0100340 if (px->lbprm.tot_weight == 0)
341 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200342
343 while (len > plen) {
344 /* Look for the parameter name followed by an equal symbol */
345 if (params[plen] == '=') {
346 if (memcmp(params, px->url_param_name, plen) == 0) {
347 /* OK, we have the parameter here at <params>, and
348 * the value after the equal sign, at <p>
349 * skip the equal symbol
350 */
351 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400352 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200353 len -= plen + 1;
354
Bhaskar98634f02013-10-29 23:30:51 -0400355 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200356 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100357 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400358 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100359 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200360 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
361 break;
362 return NULL; /* oh, no; this is not uri-encoded.
363 * This body does not contain parameters.
364 */
365 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200366 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400367 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200368 /* should we break if vlen exceeds limit? */
369 }
Bhaskar98634f02013-10-29 23:30:51 -0400370 hash = gen_hash(px, start, (end - start));
371
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500372 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100373 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400374
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200375 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
376 return chash_get_server_hash(px, hash);
377 else
378 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200379 }
380 }
Willy Tarreau01732802007-11-01 22:48:15 +0100381 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200382 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100383 if (!p)
384 return NULL;
385 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200386 len -= (p - params);
387 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100388 }
389 return NULL;
390}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200391
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200392
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393/*
Benoitaffb4812009-03-25 13:02:10 +0100394 * This function tries to find a running server for the proxy <px> following
395 * the Header parameter hash method. It looks for a specific parameter in the
396 * URL and hashes it to compute the server ID. This is useful to optimize
397 * performance by avoiding bounces between servers in contexts where sessions
398 * are shared but cookies are not usable. If the parameter is not found, NULL
399 * is returned. If any server is found, it will be returned. If no valid server
400 * is found, NULL is returned.
401 */
402struct server *get_server_hh(struct session *s)
403{
Dan Dubovik82456752014-07-08 08:51:03 -0700404 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100405 struct http_txn *txn = &s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100406 struct proxy *px = s->be;
407 unsigned int plen = px->hh_len;
408 unsigned long len;
409 struct hdr_ctx ctx;
410 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400411 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100412
413 /* tot_weight appears to mean srv_count */
414 if (px->lbprm.tot_weight == 0)
415 return NULL;
416
Benoitaffb4812009-03-25 13:02:10 +0100417 ctx.idx = 0;
418
419 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau211cdec2014-04-17 20:18:08 +0200420 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 +0100421
422 /* if the header is not found or empty, let's fallback to round robin */
423 if (!ctx.idx || !ctx.vlen)
424 return NULL;
425
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200426 /* note: we won't hash if there's only one server left */
427 if (px->lbprm.tot_used == 1)
428 goto hash_done;
429
Benoitaffb4812009-03-25 13:02:10 +0100430 /* Found a the hh_name in the headers.
431 * we will compute the hash based on this value ctx.val.
432 */
433 len = ctx.vlen;
434 p = (char *)ctx.line + ctx.val;
435 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400436 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100437 } else {
438 int dohash = 0;
Cyril Bonté7ccea262015-01-04 15:17:36 +0100439 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100440 /* special computation, use only main domain name, not tld/host
441 * going back from the end of string, start hashing at first
442 * dot stop at next.
443 * This is designed to work with the 'Host' header, and requires
444 * a special option to activate this.
445 */
Cyril Bonté7ccea262015-01-04 15:17:36 +0100446 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100447 while (len) {
Cyril Bonté7ccea262015-01-04 15:17:36 +0100448 if (dohash) {
449 /* Rewind the pointer until the previous char
450 * is a dot, this will allow to set the start
451 * position of the domain. */
452 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100453 break;
Benoitaffb4812009-03-25 13:02:10 +0100454 }
Cyril Bonté7ccea262015-01-04 15:17:36 +0100455 else if (*p == '.') {
456 /* The pointer is rewinded to the dot before the
457 * tld, we memorize the end of the domain and
458 * can enter the domain processing. */
459 end = p;
460 dohash = 1;
461 }
Benoitaffb4812009-03-25 13:02:10 +0100462 p--;
Cyril Bonté7ccea262015-01-04 15:17:36 +0100463 len--;
Benoitaffb4812009-03-25 13:02:10 +0100464 }
Cyril Bonté7ccea262015-01-04 15:17:36 +0100465 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400466 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100467 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500468 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100469 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200470 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200471 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
472 return chash_get_server_hash(px, hash);
473 else
474 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100475}
476
Willy Tarreau34db1082012-04-19 17:16:54 +0200477/* RDP Cookie HASH. */
Emeric Brun736aa232009-06-30 17:56:00 +0200478struct server *get_server_rch(struct session *s)
479{
Dan Dubovik82456752014-07-08 08:51:03 -0700480 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200481 struct proxy *px = s->be;
482 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200483 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200484 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200485 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200486
487 /* tot_weight appears to mean srv_count */
488 if (px->lbprm.tot_weight == 0)
489 return NULL;
490
Willy Tarreau37406352012-04-23 16:16:37 +0200491 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200492
Willy Tarreau9b28e032012-10-12 23:49:43 +0200493 b_rew(s->req->buf, rewind = s->req->buf->o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200494
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200495 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreauf853c462012-04-23 18:53:56 +0200496 len = smp.data.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100497
Willy Tarreau9b28e032012-10-12 23:49:43 +0200498 b_adv(s->req->buf, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200499
Willy Tarreau37406352012-04-23 16:16:37 +0200500 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200501 return NULL;
502
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200503 /* note: we won't hash if there's only one server left */
504 if (px->lbprm.tot_used == 1)
505 goto hash_done;
506
Emeric Brun736aa232009-06-30 17:56:00 +0200507 /* Found a the hh_name in the headers.
508 * we will compute the hash based on this value ctx.val.
509 */
Bhaskar98634f02013-10-29 23:30:51 -0400510 hash = gen_hash(px, smp.data.str.str, len);
511
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500512 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100513 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200514 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200515 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
516 return chash_get_server_hash(px, hash);
517 else
518 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200519}
Benoitaffb4812009-03-25 13:02:10 +0100520
521/*
Willy Tarreau7c669d72008-06-20 15:04:11 +0200522 * This function applies the load-balancing algorithm to the session, as
523 * defined by the backend it is assigned to. The session is then marked as
524 * 'assigned'.
525 *
526 * This function MAY NOT be called with SN_ASSIGNED already set. If the session
527 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100528 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200529 * The function tries to keep the original connection slot if it reconnects to
530 * the same server, otherwise it releases it and tries to offer it.
531 *
532 * It is illegal to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200533 *
534 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100535 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200536 * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED
537 * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200538 * SRV_STATUS_INTERNAL for other unrecoverable errors.
539 *
Willy Tarreau7c669d72008-06-20 15:04:11 +0200540 * Upon successful return, the session flag SN_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100541 * it does not need to be called anymore. This means that target_srv(&s->target)
542 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543 *
544 */
545
546int assign_server(struct session *s)
547{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200548 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200549 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100550 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200551 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100552
Simon Horman8effd3d2011-08-13 08:03:52 +0900553 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554
Willy Tarreau7c669d72008-06-20 15:04:11 +0200555 err = SRV_STATUS_INTERNAL;
556 if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED))
557 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100558
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100559 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200561
Willy Tarreau7c669d72008-06-20 15:04:11 +0200562 /* We have to release any connection slot before applying any LB algo,
563 * otherwise we may erroneously end up with no available slot.
564 */
565 if (conn_slot)
566 sess_change_server(s, NULL);
567
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100568 /* We will now try to find the good server and store it into <objt_server(s->target)>.
569 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200570 * as well as if no server is available (check error code).
571 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100572
Willy Tarreau827aee92011-03-10 16:55:02 +0100573 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100574 s->target = NULL;
Willy Tarreau9420b122013-12-15 18:58:25 +0100575 conn = objt_conn(s->req->cons->end);
Willy Tarreau664beb82011-03-10 11:38:29 +0100576
Willy Tarreau068621e2013-12-23 15:11:25 +0100577 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100578 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100579 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Willy Tarreauc35362a2014-04-25 13:58:37 +0200580 ((s->txn.flags & TX_PREFER_LAST) ||
581 ((s->be->options & PR_O_PREF_LAST) &&
582 (!s->be->max_ka_queue ||
583 server_has_room(__objt_server(conn->target)) ||
584 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200585 srv_is_usable(__objt_server(conn->target))) {
Willy Tarreau9420b122013-12-15 18:58:25 +0100586 /* This session was relying on a server in a previous request
Godbachcfbb93f2014-12-10 10:21:30 +0800587 * and the proxy has "option prefer-last-server" set, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100588 * let's try to reuse the same server.
589 */
590 srv = __objt_server(conn->target);
591 s->target = &srv->obj_type;
592 }
593 else if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200594 /* we must check if we have at least one server available */
595 if (!s->be->lbprm.tot_weight) {
596 err = SRV_STATUS_NOSRV;
597 goto out;
598 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200599
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200600 /* First check whether we need to fetch some data or simply call
601 * the LB lookup function. Only the hashing functions will need
602 * some input data in fact, and will support multiple algorithms.
603 */
604 switch (s->be->lbprm.algo & BE_LB_LKUP) {
605 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100606 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200607 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200608
Willy Tarreauf09c6602012-02-13 17:12:08 +0100609 case BE_LB_LKUP_FSTREE:
610 srv = fas_get_next_server(s->be, prev_srv);
611 break;
612
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200613 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100614 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200615 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200616
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200617 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200618 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200619 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200620 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100621 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200622 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100623 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200624 break;
625 }
626 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200627 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200628 err = SRV_STATUS_INTERNAL;
629 goto out;
630 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200631
632 switch (s->be->lbprm.algo & BE_LB_PARM) {
633 case BE_LB_HASH_SRC:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200634 conn = objt_conn(s->req->prod->end);
635 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200636 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200637 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200638 4);
639 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200640 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200641 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200642 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200643 16);
644 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200645 else {
646 /* unknown IP family */
647 err = SRV_STATUS_INTERNAL;
648 goto out;
649 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200650 break;
651
652 case BE_LB_HASH_URI:
653 /* URI hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100654 if (s->txn.req.msg_state < HTTP_MSG_BODY)
655 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100656 srv = get_server_uh(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200657 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100658 s->txn.req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200659 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200660
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200661 case BE_LB_HASH_PRM:
662 /* URL Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100663 if (s->txn.req.msg_state < HTTP_MSG_BODY)
664 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100665
Willy Tarreau827aee92011-03-10 16:55:02 +0100666 srv = get_server_ph(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200667 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100668 s->txn.req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100669
Willy Tarreau827aee92011-03-10 16:55:02 +0100670 if (!srv && s->txn.meth == HTTP_METH_POST)
671 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200672 break;
Benoitaffb4812009-03-25 13:02:10 +0100673
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200674 case BE_LB_HASH_HDR:
675 /* Header Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100676 if (s->txn.req.msg_state < HTTP_MSG_BODY)
677 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100678 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200679 break;
680
681 case BE_LB_HASH_RDP:
682 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100683 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200684 break;
685
686 default:
687 /* unknown balancing algorithm */
688 err = SRV_STATUS_INTERNAL;
689 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100690 }
Emeric Brun736aa232009-06-30 17:56:00 +0200691
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200692 /* If the hashing parameter was not found, let's fall
693 * back to round robin on the map.
694 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100695 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200696 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100697 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200698 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100699 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200700 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200701
702 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200703 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200704
Willy Tarreau7c669d72008-06-20 15:04:11 +0200705 default:
706 /* unknown balancing algorithm */
707 err = SRV_STATUS_INTERNAL;
708 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200709 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200710
Willy Tarreau827aee92011-03-10 16:55:02 +0100711 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200712 err = SRV_STATUS_FULL;
713 goto out;
714 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100715 else if (srv != prev_srv) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100716 s->be->be_counters.cum_lbconn++;
Willy Tarreau827aee92011-03-10 16:55:02 +0100717 srv->counters.cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100718 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100719 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200720 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200721 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100722 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100724 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200725 (conn = objt_conn(s->req->cons->end)) &&
726 is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100727 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100728 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100729 }
730 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200731 err = SRV_STATUS_NOSRV;
732 goto out;
733 }
734
735 s->flags |= SN_ASSIGNED;
736 err = SRV_STATUS_OK;
737 out:
738
739 /* Either we take back our connection slot, or we offer it to someone
740 * else if we don't need it anymore.
741 */
742 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100743 if (conn_slot == srv) {
744 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200745 } else {
746 if (may_dequeue_tasks(conn_slot, s->be))
747 process_srv_queue(conn_slot);
748 }
749 }
750
751 out_err:
752 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753}
754
755
756/*
757 * This function assigns a server address to a session, and sets SN_ADDR_SET.
758 * The address is taken from the currently assigned server, or from the
759 * dispatch or transparent address.
760 *
761 * It may return :
762 * SRV_STATUS_OK if everything is OK.
763 * SRV_STATUS_INTERNAL for other unrecoverable errors.
764 *
765 * Upon successful return, the session flag SN_ADDR_SET is set. This flag is
766 * not cleared, so it's to the caller to clear it if required.
767 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200768 * The caller is responsible for having already assigned a connection
769 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200770 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200771 */
772int assign_server_address(struct session *s)
773{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200774 struct connection *cli_conn = objt_conn(s->req->prod->end);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200775 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200776
Willy Tarreaubaaee002006-06-26 02:48:02 +0200777#ifdef DEBUG_FULL
778 fprintf(stderr,"assign_server_address : s=%p\n",s);
779#endif
780
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200781 if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200782 /* A server is necessarily known for this session */
783 if (!(s->flags & SN_ASSIGNED))
784 return SRV_STATUS_INTERNAL;
785
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200786 srv_conn->addr.to = objt_server(s->target)->addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200788 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200789 /* if the server has no address, we use the same address
790 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200791 * locally on multiple addresses at once. Nothing is done
792 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200793 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200794 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200795
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200796 if (cli_conn->addr.to.ss_family == AF_INET) {
797 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
798 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
799 ((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 +0200800 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200801 }
802
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803 /* if this server remaps proxied ports, we'll use
804 * the port the client connected to with an offset. */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200805 if ((objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100806 int base_port;
807
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200808 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100809
810 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200811 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100812
813 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200814 base_port += get_host_port(&srv_conn->addr.to);
815 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200816 }
817 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200818 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200820 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200822 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200824 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200825
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200826 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
827 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100829 else if (s->be->options & PR_O_HTTP_PROXY) {
830 /* If HTTP PROXY option is set, then server is already assigned
831 * during incoming client request parsing. */
832 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100833 else {
834 /* no server and no LB algorithm ! */
835 return SRV_STATUS_INTERNAL;
836 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200837
838 s->flags |= SN_ADDR_SET;
839 return SRV_STATUS_OK;
840}
841
842
843/* This function assigns a server to session <s> if required, and can add the
844 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200845 * If ->srv_conn is set, the session is first released from the server.
846 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
847 * be called before any connection and after any retry or redispatch occurs.
848 *
849 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200850 *
851 * Returns :
852 *
853 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100854 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855 * SRV_STATUS_QUEUED if the connection has been queued.
856 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100857 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200858 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859 * SRV_STATUS_INTERNAL for other unrecoverable errors.
860 *
861 */
862int assign_server_and_queue(struct session *s)
863{
864 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100865 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200866 int err;
867
868 if (s->pend_pos)
869 return SRV_STATUS_INTERNAL;
870
Willy Tarreau7c669d72008-06-20 15:04:11 +0200871 err = SRV_STATUS_OK;
872 if (!(s->flags & SN_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100873 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100874
Willy Tarreau7c669d72008-06-20 15:04:11 +0200875 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100876 if (prev_srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200877 /* This session was previously assigned to a server. We have to
878 * update the session's and the server's stats :
879 * - if the server changed :
880 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
881 * - set SN_REDISP if it was successfully redispatched
882 * - increment srv->redispatches and be->redispatches
883 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100884 */
885
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100886 if (prev_srv != objt_server(s->target)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200887 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
888 s->txn.flags &= ~TX_CK_MASK;
889 s->txn.flags |= TX_CK_DOWN;
890 }
891 s->flags |= SN_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100892 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100893 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200894 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100895 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100896 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100897 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100898 }
899 }
900
Willy Tarreaubaaee002006-06-26 02:48:02 +0200901 switch (err) {
902 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200903 /* we have SN_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100904 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100905 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200906 return SRV_STATUS_OK; /* dispatch or proxy mode */
907
908 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100909 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200910 return SRV_STATUS_OK;
911
912 /* OK, this session already has an assigned server, but no
913 * connection slot yet. Either it is a redispatch, or it was
914 * assigned from persistence information (direct mode).
915 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100916 if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200917 /* server scheduled for redirection, and already assigned. We
918 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100919 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100920 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100921 return SRV_STATUS_OK;
922 }
923
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 /* We might have to queue this session if the assigned server is full.
925 * We know we have to queue it into the server's queue, so if a maxqueue
926 * is set on the server, we must also check that the server's queue is
927 * not full, in which case we have to return FULL.
928 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100929 if (srv->maxconn &&
930 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200931
Willy Tarreau827aee92011-03-10 16:55:02 +0100932 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200933 return SRV_STATUS_FULL;
934
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 p = pendconn_add(s);
936 if (p)
937 return SRV_STATUS_QUEUED;
938 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200939 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200941
942 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100943 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944 return SRV_STATUS_OK;
945
946 case SRV_STATUS_FULL:
947 /* queue this session into the proxy's queue */
948 p = pendconn_add(s);
949 if (p)
950 return SRV_STATUS_QUEUED;
951 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200952 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953
954 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200955 return err;
956
Willy Tarreaubaaee002006-06-26 02:48:02 +0200957 case SRV_STATUS_INTERNAL:
958 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200959
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960 default:
961 return SRV_STATUS_INTERNAL;
962 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100963}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200964
Willy Tarreaub1d67742010-03-29 19:36:59 +0200965/* If an explicit source binding is specified on the server and/or backend, and
966 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200967 * assigned to the session's pending connection. This function assumes that an
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200968 * outgoing connection has already been assigned to s->req->cons->end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200969 */
970static void assign_tproxy_address(struct session *s)
971{
Pieter Baauwd551fb52013-05-08 22:49:23 +0200972#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100973 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100974 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200975 struct connection *cli_conn;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200976 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100977
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100978 if (srv && srv->conn_src.opts & CO_SRC_BIND)
979 src = &srv->conn_src;
980 else if (s->be->conn_src.opts & CO_SRC_BIND)
981 src = &s->be->conn_src;
982 else
983 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100984
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100985 switch (src->opts & CO_SRC_TPROXY_MASK) {
986 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200987 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100988 break;
989 case CO_SRC_TPROXY_CLI:
990 case CO_SRC_TPROXY_CIP:
991 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200992 cli_conn = objt_conn(s->req->prod->end);
993 if (cli_conn)
994 srv_conn->addr.from = cli_conn->addr.from;
995 else
996 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100997 break;
998 case CO_SRC_TPROXY_DYN:
999 if (src->bind_hdr_occ) {
1000 char *vptr;
1001 int vlen;
1002 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +01001003
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001004 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001005 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
1006 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
1007 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +01001008
Willy Tarreau211cdec2014-04-17 20:18:08 +02001009 b_rew(s->req->buf, rewind = http_hdr_rewind(&s->txn.req));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001010 if (http_get_hdr(&s->txn.req, src->bind_hdr_name, src->bind_hdr_len,
1011 &s->txn.hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001012 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001013 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +02001014 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001015 b_adv(s->req->buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +02001016 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +01001017 break;
1018 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001019 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +02001020 }
1021#endif
1022}
1023
1024
Willy Tarreaubaaee002006-06-26 02:48:02 +02001025/*
1026 * This function initiates a connection to the server assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +02001027 * (s->target, s->req->cons->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001028 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001029 * It can return one of :
1030 * - SN_ERR_NONE if everything's OK
1031 * - SN_ERR_SRVTO if there are no more servers
1032 * - SN_ERR_SRVCL if the connection was refused by the server
1033 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1034 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1035 * - SN_ERR_INTERNAL for any other purely internal errors
1036 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001037 * The server-facing stream interface is expected to hold a pre-allocated connection
1038 * in s->req->cons->conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001039 */
1040int connect_server(struct session *s)
1041{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001042 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001043 struct connection *srv_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 Tarreau34601a82013-12-15 16:33:46 +01001048 srv_conn = objt_conn(s->req->cons->end);
1049 if (srv_conn)
1050 reuse = s->target == srv_conn->target;
1051
1052 if (reuse) {
1053 /* Disable connection reuse if a dynamic source is used.
1054 * As long as we don't share connections between servers,
1055 * we don't need to disable connection reuse on no-idempotent
1056 * requests nor when PROXY protocol is used.
1057 */
1058 srv = objt_server(s->target);
1059 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1060 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1061 reuse = 0;
1062 }
1063 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1064 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1065 reuse = 0;
1066 }
1067 }
1068
1069 srv_conn = si_alloc_conn(s->req->cons, reuse);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001070 if (!srv_conn)
1071 return SN_ERR_RESOURCE;
1072
Willy Tarreaubaaee002006-06-26 02:48:02 +02001073 if (!(s->flags & SN_ADDR_SET)) {
1074 err = assign_server_address(s);
1075 if (err != SRV_STATUS_OK)
1076 return SN_ERR_INTERNAL;
1077 }
1078
Willy Tarreauff605db2013-12-20 11:09:51 +01001079 if (!conn_xprt_ready(srv_conn)) {
1080 /* the target was only on the session, assign it to the SI now */
1081 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001082
Willy Tarreauff605db2013-12-20 11:09:51 +01001083 /* set the correct protocol on the output stream interface */
1084 if (objt_server(s->target)) {
1085 conn_prepare(srv_conn, objt_server(s->target)->proto, objt_server(s->target)->xprt);
1086 }
1087 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1088 /* proxies exclusively run on raw_sock right now */
1089 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), &raw_sock);
1090 if (!objt_conn(s->req->cons->end) || !objt_conn(s->req->cons->end)->ctrl)
1091 return SN_ERR_INTERNAL;
1092 }
1093 else
1094 return SN_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001095
Willy Tarreauff605db2013-12-20 11:09:51 +01001096 /* process the case where the server requires the PROXY protocol to be sent */
1097 srv_conn->send_proxy_ofs = 0;
David Safb76832014-05-08 23:42:08 -04001098 if (objt_server(s->target) && objt_server(s->target)->pp_opts) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001099 srv_conn->send_proxy_ofs = 1; /* must compute size */
1100 cli_conn = objt_conn(s->req->prod->end);
1101 if (cli_conn)
1102 conn_get_to_addr(cli_conn);
1103 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001104
Willy Tarreauff605db2013-12-20 11:09:51 +01001105 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001106
Willy Tarreauff605db2013-12-20 11:09:51 +01001107 assign_tproxy_address(s);
1108 }
1109 else {
1110 /* the connection is being reused, just re-attach it */
1111 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau36346242014-02-24 18:26:30 +01001112 s->flags |= SN_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001113 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001114
William Lallemandb7ff6a32012-03-02 14:35:21 +01001115 /* flag for logging source ip/port */
1116 if (s->fe->options2 & PR_O2_SRC_ADDR)
1117 s->req->cons->flags |= SI_FL_SRC_ADDR;
1118
Willy Tarreau14f8e862012-08-30 22:23:13 +02001119 /* disable lingering */
1120 if (s->be->options & PR_O_TCP_NOLING)
1121 s->req->cons->flags |= SI_FL_NOLINGER;
1122
Willy Tarreau73b013b2012-05-21 16:31:45 +02001123 err = si_connect(s->req->cons);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001124
Willy Tarreau9650f372009-08-16 14:02:45 +02001125 if (err != SN_ERR_NONE)
1126 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001127
Willy Tarreau14f8e862012-08-30 22:23:13 +02001128 /* set connect timeout */
1129 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.connect);
1130
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001131 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001132 if (srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +01001133 s->flags |= SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001134 srv->cur_sess++;
1135 if (srv->cur_sess > srv->counters.cur_sess_max)
1136 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001137 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001138 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001139 }
1140
Willy Tarreaubaaee002006-06-26 02:48:02 +02001141 return SN_ERR_NONE; /* connection is OK */
1142}
1143
1144
Willy Tarreaubaaee002006-06-26 02:48:02 +02001145/* This function performs the "redispatch" part of a connection attempt. It
1146 * will assign a server if required, queue the connection if required, and
1147 * handle errors that might arise at this level. It can change the server
1148 * state. It will return 1 if it encounters an error, switches the server
1149 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1150 * that the connection is ready to use.
1151 */
1152
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001153int srv_redispatch_connect(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001154{
Willy Tarreau827aee92011-03-10 16:55:02 +01001155 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156 int conn_err;
1157
1158 /* We know that we don't have any connection pending, so we will
1159 * try to get a new one, and wait in this state if it's queued
1160 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001161 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001162 conn_err = assign_server_and_queue(s);
1163 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001164
Willy Tarreaubaaee002006-06-26 02:48:02 +02001165 switch (conn_err) {
1166 case SRV_STATUS_OK:
1167 break;
1168
Willy Tarreau7c669d72008-06-20 15:04:11 +02001169 case SRV_STATUS_FULL:
1170 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1171 * and we can redispatch to another server, or it is not and we return
1172 * 503. This only makes sense in DIRECT mode however, because normal LB
1173 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001174 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001175 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001176 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001177 if (((s->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) &&
1178 (s->be->options & PR_O_REDISP)) {
1179 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001180 goto redispatch;
1181 }
1182
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001183 if (!s->req->cons->err_type) {
1184 s->req->cons->err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001185 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001186
Willy Tarreau827aee92011-03-10 16:55:02 +01001187 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001188 s->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001189 return 1;
1190
Willy Tarreaubaaee002006-06-26 02:48:02 +02001191 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001192 /* note: it is guaranteed that srv == NULL here */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001193 if (!s->req->cons->err_type) {
1194 s->req->cons->err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001195 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001196
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001197 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001198 return 1;
1199
1200 case SRV_STATUS_QUEUED:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001201 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1202 s->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001203 /* do nothing else and do not wake any other session up */
1204 return 1;
1205
Willy Tarreaubaaee002006-06-26 02:48:02 +02001206 case SRV_STATUS_INTERNAL:
1207 default:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001208 if (!s->req->cons->err_type) {
1209 s->req->cons->err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001210 }
1211
Willy Tarreau827aee92011-03-10 16:55:02 +01001212 if (srv)
1213 srv_inc_sess_ctr(srv);
1214 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001215 srv_set_sess_last(srv);
1216 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001217 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001218 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001219
1220 /* release other sessions waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001221 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001222 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001223 return 1;
1224 }
1225 /* if we get here, it's because we got SRV_STATUS_OK, which also
1226 * means that the connection has not been queued.
1227 */
1228 return 0;
1229}
1230
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001231/* sends a log message when a backend goes down, and also sets last
1232 * change date.
1233 */
1234void set_backend_down(struct proxy *be)
1235{
1236 be->last_change = now.tv_sec;
1237 be->down_trans++;
1238
1239 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
1240 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1241}
1242
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001243/* Apply RDP cookie persistence to the current session. For this, the function
1244 * tries to extract an RDP cookie from the request buffer, and look for the
1245 * matching server in the list. If the server is found, it is assigned to the
1246 * session. This always returns 1, and the analyser removes itself from the
1247 * list. Nothing is performed if a server was already assigned.
1248 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001249int tcp_persist_rdp_cookie(struct session *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001250{
1251 struct proxy *px = s->be;
1252 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001253 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001254 struct server *srv = px->srv;
1255 struct sockaddr_in addr;
1256 char *p;
1257
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001258 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001259 now_ms, __FUNCTION__,
1260 s,
1261 req,
1262 req->rex, req->wex,
1263 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001264 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001265 req->analysers);
1266
1267 if (s->flags & SN_ASSIGNED)
1268 goto no_cookie;
1269
Willy Tarreau37406352012-04-23 16:16:37 +02001270 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001271
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001272 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreauf853c462012-04-23 18:53:56 +02001273 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001274 goto no_cookie;
1275
1276 memset(&addr, 0, sizeof(addr));
1277 addr.sin_family = AF_INET;
1278
Willy Tarreau664092c2011-12-16 19:11:42 +01001279 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001280 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001281 if (*p != '.')
1282 goto no_cookie;
1283 p++;
1284 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1285 if (*p != '.')
1286 goto no_cookie;
1287
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001288 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001289 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001290 if (srv->addr.ss_family == AF_INET &&
1291 memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001292 if ((srv->state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001293 /* we found the server and it is usable */
1294 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001295 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001296 break;
1297 }
1298 }
1299 srv = srv->next;
1300 }
1301
1302no_cookie:
1303 req->analysers &= ~an_bit;
1304 req->analyse_exp = TICK_ETERNITY;
1305 return 1;
1306}
1307
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001308int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001309 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001310 return px->down_time;
1311
1312 return now.tv_sec - px->last_change + px->down_time;
1313}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001314
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001315/*
1316 * This function returns a string containing the balancing
1317 * mode of the proxy in a format suitable for stats.
1318 */
1319
1320const char *backend_lb_algo_str(int algo) {
1321
1322 if (algo == BE_LB_ALGO_RR)
1323 return "roundrobin";
1324 else if (algo == BE_LB_ALGO_SRR)
1325 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001326 else if (algo == BE_LB_ALGO_FAS)
1327 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001328 else if (algo == BE_LB_ALGO_LC)
1329 return "leastconn";
1330 else if (algo == BE_LB_ALGO_SH)
1331 return "source";
1332 else if (algo == BE_LB_ALGO_UH)
1333 return "uri";
1334 else if (algo == BE_LB_ALGO_PH)
1335 return "url_param";
1336 else if (algo == BE_LB_ALGO_HH)
1337 return "hdr";
1338 else if (algo == BE_LB_ALGO_RCH)
1339 return "rdp-cookie";
1340 else
1341 return NULL;
1342}
1343
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001344/* This function parses a "balance" statement in a backend section describing
1345 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001346 * returns -1, it will write an error message into the <err> buffer which will
1347 * automatically be allocated and must be passed as NULL. The trailing '\n'
1348 * will not be written. The function must be called with <args> pointing to the
1349 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001350 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001351int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001352{
1353 if (!*(args[0])) {
1354 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001355 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1356 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001357 return 0;
1358 }
1359
1360 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001361 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1362 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001363 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001364 else if (!strcmp(args[0], "static-rr")) {
1365 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1366 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1367 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001368 else if (!strcmp(args[0], "first")) {
1369 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1370 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1371 }
Willy Tarreau51406232008-03-10 22:04:20 +01001372 else if (!strcmp(args[0], "leastconn")) {
1373 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1374 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1375 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001376 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001377 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1378 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001379 }
1380 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001381 int arg = 1;
1382
Willy Tarreau31682232007-11-29 15:38:04 +01001383 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1384 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001385
Oskar Stolc8dc41842012-05-19 10:19:54 +01001386 curproxy->uri_whole = 0;
natalie.chenb320ad42016-08-01 10:57:46 +08001387 curproxy->uri_git = 1;
Oskar Stolc8dc41842012-05-19 10:19:54 +01001388
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001389 while (*args[arg]) {
1390 if (!strcmp(args[arg], "len")) {
1391 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001392 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001393 return -1;
1394 }
1395 curproxy->uri_len_limit = atoi(args[arg+1]);
1396 arg += 2;
natalie.chenb320ad42016-08-01 10:57:46 +08001397 curproxy->uri_git = 0;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001398 }
1399 else if (!strcmp(args[arg], "depth")) {
1400 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001401 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001402 return -1;
1403 }
1404 /* hint: we store the position of the ending '/' (depth+1) so
1405 * that we avoid a comparison while computing the hash.
1406 */
1407 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1408 arg += 2;
natalie.chenb320ad42016-08-01 10:57:46 +08001409 curproxy->uri_git = 0;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001410 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001411 else if (!strcmp(args[arg], "whole")) {
1412 curproxy->uri_whole = 1;
1413 arg += 1;
natalie.chenb320ad42016-08-01 10:57:46 +08001414 curproxy->uri_git = 0;
Oskar Stolc8dc41842012-05-19 10:19:54 +01001415 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001416 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001417 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001418 return -1;
1419 }
1420 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001421 }
Willy Tarreau01732802007-11-01 22:48:15 +01001422 else if (!strcmp(args[0], "url_param")) {
1423 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001424 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001425 return -1;
1426 }
Willy Tarreau31682232007-11-29 15:38:04 +01001427 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1428 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001429
1430 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001431 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001432 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001433 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001434 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001435 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001436 return -1;
1437 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001438 }
Benoitaffb4812009-03-25 13:02:10 +01001439 }
1440 else if (!strncmp(args[0], "hdr(", 4)) {
1441 const char *beg, *end;
1442
1443 beg = args[0] + 4;
1444 end = strchr(beg, ')');
1445
1446 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001447 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001448 return -1;
1449 }
1450
1451 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1452 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1453
1454 free(curproxy->hh_name);
1455 curproxy->hh_len = end - beg;
1456 curproxy->hh_name = my_strndup(beg, end - beg);
1457 curproxy->hh_match_domain = 0;
1458
1459 if (*args[1]) {
1460 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001461 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001462 return -1;
1463 }
1464 curproxy->hh_match_domain = 1;
1465 }
Emeric Brun736aa232009-06-30 17:56:00 +02001466 }
1467 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1468 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1469 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1470
1471 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1472 const char *beg, *end;
1473
1474 beg = args[0] + 11;
1475 end = strchr(beg, ')');
1476
1477 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001478 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001479 return -1;
1480 }
1481
1482 free(curproxy->hh_name);
1483 curproxy->hh_name = my_strndup(beg, end - beg);
1484 curproxy->hh_len = end - beg;
1485 }
1486 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1487 free(curproxy->hh_name);
1488 curproxy->hh_name = strdup("mstshash");
1489 curproxy->hh_len = strlen(curproxy->hh_name);
1490 }
1491 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001492 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001493 return -1;
1494 }
Willy Tarreau01732802007-11-01 22:48:15 +01001495 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001496 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001497 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 +01001498 return -1;
1499 }
1500 return 0;
1501}
1502
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001503
1504/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001505/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001506/************************************************************************/
1507
Willy Tarreau34db1082012-04-19 17:16:54 +02001508/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001509 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001510 * undefined behaviour.
1511 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001512static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001513smp_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001514 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001515{
Willy Tarreau37406352012-04-23 16:16:37 +02001516 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001517 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001518 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001519
1520 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001521 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001522 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001523 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001524 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001525 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001526
1527 return 1;
1528}
1529
Willy Tarreau37406352012-04-23 16:16:37 +02001530/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001531 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001532 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1533 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001534 */
1535static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001536smp_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001537 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001538{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001539 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001540
Willy Tarreau37406352012-04-23 16:16:37 +02001541 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001542 smp->type = SMP_T_BOOL;
Willy Tarreau20125212014-05-13 19:44:56 +02001543 if (!(srv->admin & SRV_ADMF_MAINT) &&
Willy Tarreau892337c2014-05-13 23:41:20 +02001544 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->state != SRV_ST_STOPPED)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001545 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001546 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001547 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001548 return 1;
1549}
1550
Willy Tarreau34db1082012-04-19 17:16:54 +02001551/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001552 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001553 * undefined behaviour.
1554 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001555static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001556smp_fetch_connslots(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001557 const struct arg *args, struct sample *smp, const char *kw)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001558{
1559 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001560
Willy Tarreau37406352012-04-23 16:16:37 +02001561 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001562 smp->type = SMP_T_UINT;
1563 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001564
Willy Tarreau24e32d82012-04-23 23:55:44 +02001565 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001566 if (iterator->state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001567 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001568
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001569 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001570 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001571 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001572 return 1;
1573 }
1574
Willy Tarreauf853c462012-04-23 18:53:56 +02001575 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001576 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001577 }
1578
1579 return 1;
1580}
1581
Willy Tarreaua5e37562011-12-16 17:06:15 +01001582/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001583static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001584smp_fetch_be_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001585 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001586{
Willy Tarreauf853c462012-04-23 18:53:56 +02001587 smp->flags = SMP_F_VOL_TXN;
1588 smp->type = SMP_T_UINT;
1589 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001590 return 1;
1591}
1592
Willy Tarreaua5e37562011-12-16 17:06:15 +01001593/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001594static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001595smp_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001596 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001597{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001598 if (!objt_server(l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001599 return 0;
1600
Willy Tarreauf853c462012-04-23 18:53:56 +02001601 smp->type = SMP_T_UINT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001602 smp->data.uint = objt_server(l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001603
1604 return 1;
1605}
1606
Willy Tarreau34db1082012-04-19 17:16:54 +02001607/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001608 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001609 * undefined behaviour.
1610 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001611static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001612smp_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001613 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001614{
Willy Tarreau37406352012-04-23 16:16:37 +02001615 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001616 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001617 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001618 return 1;
1619}
1620
Willy Tarreau34db1082012-04-19 17:16:54 +02001621/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001622 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001623 * undefined behaviour.
1624 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001625static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001626smp_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001627 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001628{
Willy Tarreau37406352012-04-23 16:16:37 +02001629 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001630 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001631 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001632 return 1;
1633}
1634
Willy Tarreau34db1082012-04-19 17:16:54 +02001635/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001636 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001637 * undefined behaviour.
1638 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001639static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001640smp_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001641 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001642{
Willy Tarreau37406352012-04-23 16:16:37 +02001643 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001644 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001645 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001646 return 1;
1647}
1648
Willy Tarreaua5e37562011-12-16 17:06:15 +01001649/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001650 * by the number of running servers and rounded up. If there is no running
1651 * server, we return twice the total, just as if we had half a running server.
1652 * This is more or less correct anyway, since we expect the last server to come
1653 * back soon.
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.
Willy Tarreaua36af912009-10-10 12:02:45 +02001656 */
1657static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001658smp_fetch_avg_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001659 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001660{
1661 int nbsrv;
1662
Willy Tarreau37406352012-04-23 16:16:37 +02001663 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001664 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001665 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001666
1667 if (px->srv_act)
1668 nbsrv = px->srv_act;
1669 else if (px->lbprm.fbck)
1670 nbsrv = 1;
1671 else
1672 nbsrv = px->srv_bck;
1673
1674 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001675 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001676 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001677 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001678
1679 return 1;
1680}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001681
Willy Tarreau34db1082012-04-19 17:16:54 +02001682/* set temp integer to the number of concurrent connections on the server in the backend.
1683 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1684 * undefined behaviour.
1685 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001686static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001687smp_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001688 const struct arg *args, struct sample *smp, const char *kw)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001689{
Willy Tarreauf853c462012-04-23 18:53:56 +02001690 smp->flags = SMP_F_VOL_TEST;
1691 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001692 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001693 return 1;
1694}
1695
Tait Clarridge7896d522012-12-05 21:39:31 -05001696/* set temp integer to the number of enabled servers on the proxy.
1697 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1698 * undefined behaviour.
1699 */
1700static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001701smp_fetch_srv_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001702 const struct arg *args, struct sample *smp, const char *kw)
Tait Clarridge7896d522012-12-05 21:39:31 -05001703{
1704 smp->flags = SMP_F_VOL_TEST;
1705 smp->type = SMP_T_UINT;
1706 smp->data.uint = read_freq_ctr(&args->data.srv->sess_per_sec);
1707 return 1;
1708}
1709
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001710
1711/* Note: must not be declared <const> as its list will be overwritten.
1712 * Please take care of keeping this list alphabetically sorted.
1713 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001714static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001715 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1716 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1717 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_UINT, SMP_USE_BKEND, },
1718 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1719 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1720 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1721 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1722 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1723 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_UINT, SMP_USE_SERVR, },
1724 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
1725 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1726 { /* END */ },
1727}};
1728
1729
Willy Tarreau61612d42012-04-19 18:42:05 +02001730/* Note: must not be declared <const> as its list will be overwritten.
1731 * Please take care of keeping this list alphabetically sorted.
1732 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001733static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001734 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001735}};
1736
1737
1738__attribute__((constructor))
1739static void __backend_init(void)
1740{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001741 sample_register_fetches(&smp_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001742 acl_register_keywords(&acl_kws);
1743}
1744
Willy Tarreaubaaee002006-06-26 02:48:02 +02001745/*
1746 * Local variables:
1747 * c-indent-level: 8
1748 * c-basic-offset: 8
1749 * End:
1750 */