blob: 9980cf83b9f0af4ce1f47fa7196af82b25dae473 [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;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200190
191 if (px->lbprm.tot_weight == 0)
192 return NULL;
193
194 /* note: we won't hash if there's only one server left */
195 if (px->lbprm.tot_used == 1)
196 goto hash_done;
197
198 if (px->uri_len_limit)
199 uri_len = MIN(uri_len, px->uri_len_limit);
200
Bhaskar98634f02013-10-29 23:30:51 -0400201 start = end = uri;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200202 while (uri_len--) {
Willy Tarreauac032922014-10-17 12:11:50 +0200203 c = *end;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200204 if (c == '/') {
205 slashes++;
206 if (slashes == px->uri_dirs_depth1) /* depth+1 */
207 break;
208 }
Oskar Stolc8dc41842012-05-19 10:19:54 +0100209 else if (c == '?' && !px->uri_whole)
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200210 break;
Willy Tarreauac032922014-10-17 12:11:50 +0200211 end++;
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200212 }
Bhaskar98634f02013-10-29 23:30:51 -0400213
214 hash = gen_hash(px, start, (end - start));
215
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500216 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100217 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200218 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200219 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
220 return chash_get_server_hash(px, hash);
221 else
222 return map_get_server_hash(px, hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200223}
224
Willy Tarreau01732802007-11-01 22:48:15 +0100225/*
226 * This function tries to find a running server for the proxy <px> following
227 * the URL parameter hash method. It looks for a specific parameter in the
228 * URL and hashes it to compute the server ID. This is useful to optimize
229 * performance by avoiding bounces between servers in contexts where sessions
230 * are shared but cookies are not usable. If the parameter is not found, NULL
231 * is returned. If any server is found, it will be returned. If no valid server
232 * is found, NULL is returned.
Willy Tarreau01732802007-11-01 22:48:15 +0100233 */
234struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len)
235{
Dan Dubovik82456752014-07-08 08:51:03 -0700236 unsigned int hash = 0;
Bhaskar98634f02013-10-29 23:30:51 -0400237 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200238 const char *p;
239 const char *params;
Willy Tarreau01732802007-11-01 22:48:15 +0100240 int plen;
241
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200242 /* when tot_weight is 0 then so is srv_count */
Willy Tarreau20697042007-11-15 23:26:18 +0100243 if (px->lbprm.tot_weight == 0)
Willy Tarreau01732802007-11-01 22:48:15 +0100244 return NULL;
245
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200246 if ((p = memchr(uri, '?', uri_len)) == NULL)
247 return NULL;
248
Willy Tarreau01732802007-11-01 22:48:15 +0100249 p++;
250
251 uri_len -= (p - uri);
252 plen = px->url_param_len;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200253 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100254
255 while (uri_len > plen) {
256 /* Look for the parameter name followed by an equal symbol */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200257 if (params[plen] == '=') {
258 if (memcmp(params, px->url_param_name, plen) == 0) {
259 /* OK, we have the parameter here at <params>, and
Willy Tarreau01732802007-11-01 22:48:15 +0100260 * the value after the equal sign, at <p>
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200261 * skip the equal symbol
Willy Tarreau01732802007-11-01 22:48:15 +0100262 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200263 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400264 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200265 uri_len -= plen + 1;
266
Bhaskar98634f02013-10-29 23:30:51 -0400267 while (uri_len && *end != '&') {
Willy Tarreau01732802007-11-01 22:48:15 +0100268 uri_len--;
Bhaskar98634f02013-10-29 23:30:51 -0400269 end++;
Willy Tarreau01732802007-11-01 22:48:15 +0100270 }
Bhaskar98634f02013-10-29 23:30:51 -0400271 hash = gen_hash(px, start, (end - start));
272
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500273 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100274 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400275
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200276 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
277 return chash_get_server_hash(px, hash);
278 else
279 return map_get_server_hash(px, hash);
Willy Tarreau01732802007-11-01 22:48:15 +0100280 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200281 }
282 /* skip to next parameter */
283 p = memchr(params, '&', uri_len);
284 if (!p)
285 return NULL;
286 p++;
287 uri_len -= (p - params);
288 params = p;
289 }
290 return NULL;
291}
292
293/*
294 * this does the same as the previous server_ph, but check the body contents
295 */
296struct server *get_server_ph_post(struct session *s)
297{
Dan Dubovik82456752014-07-08 08:51:03 -0700298 unsigned int hash = 0;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200299 struct http_txn *txn = &s->txn;
Willy Tarreau7421efb2012-07-02 15:11:27 +0200300 struct channel *req = s->req;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200301 struct http_msg *msg = &txn->req;
302 struct proxy *px = s->be;
303 unsigned int plen = px->url_param_len;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200304 unsigned long len = http_body_bytes(msg);
Willy Tarreau0d090502014-04-17 20:31:44 +0200305 const char *params = b_ptr(req->buf, -http_data_rewind(msg));
Willy Tarreau157dd632009-12-06 19:18:09 +0100306 const char *p = params;
Bhaskar98634f02013-10-29 23:30:51 -0400307 const char *start, *end;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200308
Willy Tarreau157dd632009-12-06 19:18:09 +0100309 if (len == 0)
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200310 return NULL;
311
Willy Tarreau157dd632009-12-06 19:18:09 +0100312 if (px->lbprm.tot_weight == 0)
313 return NULL;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200314
315 while (len > plen) {
316 /* Look for the parameter name followed by an equal symbol */
317 if (params[plen] == '=') {
318 if (memcmp(params, px->url_param_name, plen) == 0) {
319 /* OK, we have the parameter here at <params>, and
320 * the value after the equal sign, at <p>
321 * skip the equal symbol
322 */
323 p += plen + 1;
Bhaskar98634f02013-10-29 23:30:51 -0400324 start = end = p;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200325 len -= plen + 1;
326
Bhaskar98634f02013-10-29 23:30:51 -0400327 while (len && *end != '&') {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200328 if (unlikely(!HTTP_IS_TOKEN(*p))) {
Willy Tarreau157dd632009-12-06 19:18:09 +0100329 /* if in a POST, body must be URI encoded or it's not a URI.
Bhaskar98634f02013-10-29 23:30:51 -0400330 * Do not interpret any possible binary data as a parameter.
Willy Tarreau157dd632009-12-06 19:18:09 +0100331 */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200332 if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */
333 break;
334 return NULL; /* oh, no; this is not uri-encoded.
335 * This body does not contain parameters.
336 */
337 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200338 len--;
Bhaskar98634f02013-10-29 23:30:51 -0400339 end++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200340 /* should we break if vlen exceeds limit? */
341 }
Bhaskar98634f02013-10-29 23:30:51 -0400342 hash = gen_hash(px, start, (end - start));
343
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500344 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100345 hash = full_hash(hash);
Bhaskar98634f02013-10-29 23:30:51 -0400346
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200347 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
348 return chash_get_server_hash(px, hash);
349 else
350 return map_get_server_hash(px, hash);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200351 }
352 }
Willy Tarreau01732802007-11-01 22:48:15 +0100353 /* skip to next parameter */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200354 p = memchr(params, '&', len);
Willy Tarreau01732802007-11-01 22:48:15 +0100355 if (!p)
356 return NULL;
357 p++;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200358 len -= (p - params);
359 params = p;
Willy Tarreau01732802007-11-01 22:48:15 +0100360 }
361 return NULL;
362}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200364
Willy Tarreaubaaee002006-06-26 02:48:02 +0200365/*
Benoitaffb4812009-03-25 13:02:10 +0100366 * This function tries to find a running server for the proxy <px> following
367 * the Header parameter hash method. It looks for a specific parameter in the
368 * URL and hashes it to compute the server ID. This is useful to optimize
369 * performance by avoiding bounces between servers in contexts where sessions
370 * are shared but cookies are not usable. If the parameter is not found, NULL
371 * is returned. If any server is found, it will be returned. If no valid server
372 * is found, NULL is returned.
373 */
374struct server *get_server_hh(struct session *s)
375{
Dan Dubovik82456752014-07-08 08:51:03 -0700376 unsigned int hash = 0;
Benoitaffb4812009-03-25 13:02:10 +0100377 struct http_txn *txn = &s->txn;
Benoitaffb4812009-03-25 13:02:10 +0100378 struct proxy *px = s->be;
379 unsigned int plen = px->hh_len;
380 unsigned long len;
381 struct hdr_ctx ctx;
382 const char *p;
Bhaskar98634f02013-10-29 23:30:51 -0400383 const char *start, *end;
Benoitaffb4812009-03-25 13:02:10 +0100384
385 /* tot_weight appears to mean srv_count */
386 if (px->lbprm.tot_weight == 0)
387 return NULL;
388
Benoitaffb4812009-03-25 13:02:10 +0100389 ctx.idx = 0;
390
391 /* if the message is chunked, we skip the chunk size, but use the value as len */
Willy Tarreau211cdec2014-04-17 20:18:08 +0200392 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 +0100393
394 /* if the header is not found or empty, let's fallback to round robin */
395 if (!ctx.idx || !ctx.vlen)
396 return NULL;
397
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200398 /* note: we won't hash if there's only one server left */
399 if (px->lbprm.tot_used == 1)
400 goto hash_done;
401
Benoitaffb4812009-03-25 13:02:10 +0100402 /* Found a the hh_name in the headers.
403 * we will compute the hash based on this value ctx.val.
404 */
405 len = ctx.vlen;
406 p = (char *)ctx.line + ctx.val;
407 if (!px->hh_match_domain) {
Bhaskar98634f02013-10-29 23:30:51 -0400408 hash = gen_hash(px, p, len);
Benoitaffb4812009-03-25 13:02:10 +0100409 } else {
410 int dohash = 0;
Cyril Bonté7ccea262015-01-04 15:17:36 +0100411 p += len;
Benoitaffb4812009-03-25 13:02:10 +0100412 /* special computation, use only main domain name, not tld/host
413 * going back from the end of string, start hashing at first
414 * dot stop at next.
415 * This is designed to work with the 'Host' header, and requires
416 * a special option to activate this.
417 */
Cyril Bonté7ccea262015-01-04 15:17:36 +0100418 end = p;
Benoitaffb4812009-03-25 13:02:10 +0100419 while (len) {
Cyril Bonté7ccea262015-01-04 15:17:36 +0100420 if (dohash) {
421 /* Rewind the pointer until the previous char
422 * is a dot, this will allow to set the start
423 * position of the domain. */
424 if (*(p - 1) == '.')
Benoitaffb4812009-03-25 13:02:10 +0100425 break;
Benoitaffb4812009-03-25 13:02:10 +0100426 }
Cyril Bonté7ccea262015-01-04 15:17:36 +0100427 else if (*p == '.') {
428 /* The pointer is rewinded to the dot before the
429 * tld, we memorize the end of the domain and
430 * can enter the domain processing. */
431 end = p;
432 dohash = 1;
433 }
Benoitaffb4812009-03-25 13:02:10 +0100434 p--;
Cyril Bonté7ccea262015-01-04 15:17:36 +0100435 len--;
Benoitaffb4812009-03-25 13:02:10 +0100436 }
Cyril Bonté7ccea262015-01-04 15:17:36 +0100437 start = p;
Bhaskar98634f02013-10-29 23:30:51 -0400438 hash = gen_hash(px, start, (end - start));
Benoitaffb4812009-03-25 13:02:10 +0100439 }
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500440 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100441 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200442 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200443 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
444 return chash_get_server_hash(px, hash);
445 else
446 return map_get_server_hash(px, hash);
Benoitaffb4812009-03-25 13:02:10 +0100447}
448
Willy Tarreau34db1082012-04-19 17:16:54 +0200449/* RDP Cookie HASH. */
Emeric Brun736aa232009-06-30 17:56:00 +0200450struct server *get_server_rch(struct session *s)
451{
Dan Dubovik82456752014-07-08 08:51:03 -0700452 unsigned int hash = 0;
Emeric Brun736aa232009-06-30 17:56:00 +0200453 struct proxy *px = s->be;
454 unsigned long len;
Emeric Brun736aa232009-06-30 17:56:00 +0200455 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +0200456 struct sample smp;
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200457 int rewind;
Emeric Brun736aa232009-06-30 17:56:00 +0200458
459 /* tot_weight appears to mean srv_count */
460 if (px->lbprm.tot_weight == 0)
461 return NULL;
462
Willy Tarreau37406352012-04-23 16:16:37 +0200463 memset(&smp, 0, sizeof(smp));
Emeric Brun736aa232009-06-30 17:56:00 +0200464
Willy Tarreau9b28e032012-10-12 23:49:43 +0200465 b_rew(s->req->buf, rewind = s->req->buf->o);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200466
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200467 ret = fetch_rdp_cookie_name(s, &smp, px->hh_name, px->hh_len);
Willy Tarreauf853c462012-04-23 18:53:56 +0200468 len = smp.data.str.len;
Willy Tarreau664092c2011-12-16 19:11:42 +0100469
Willy Tarreau9b28e032012-10-12 23:49:43 +0200470 b_adv(s->req->buf, rewind);
Willy Tarreaud1de8af2012-05-18 22:12:14 +0200471
Willy Tarreau37406352012-04-23 16:16:37 +0200472 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0)
Emeric Brun736aa232009-06-30 17:56:00 +0200473 return NULL;
474
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200475 /* note: we won't hash if there's only one server left */
476 if (px->lbprm.tot_used == 1)
477 goto hash_done;
478
Emeric Brun736aa232009-06-30 17:56:00 +0200479 /* Found a the hh_name in the headers.
480 * we will compute the hash based on this value ctx.val.
481 */
Bhaskar98634f02013-10-29 23:30:51 -0400482 hash = gen_hash(px, smp.data.str.str, len);
483
Bhaskar Maddalab6c0ac92013-11-05 11:54:02 -0500484 if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL)
Willy Tarreau798a39c2010-11-24 15:04:29 +0100485 hash = full_hash(hash);
Willy Tarreau39c9ba72009-10-01 21:11:15 +0200486 hash_done:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200487 if (px->lbprm.algo & BE_LB_LKUP_CHTREE)
488 return chash_get_server_hash(px, hash);
489 else
490 return map_get_server_hash(px, hash);
Emeric Brun736aa232009-06-30 17:56:00 +0200491}
Benoitaffb4812009-03-25 13:02:10 +0100492
493/*
Willy Tarreau7c669d72008-06-20 15:04:11 +0200494 * This function applies the load-balancing algorithm to the session, as
495 * defined by the backend it is assigned to. The session is then marked as
496 * 'assigned'.
497 *
498 * This function MAY NOT be called with SN_ASSIGNED already set. If the session
499 * had a server previously assigned, it is rebalanced, trying to avoid the same
Willy Tarreau827aee92011-03-10 16:55:02 +0100500 * server, which should still be present in target_srv(&s->target) before the call.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200501 * The function tries to keep the original connection slot if it reconnects to
502 * the same server, otherwise it releases it and tries to offer it.
503 *
504 * It is illegal to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200505 *
506 * It may return :
Willy Tarreau664beb82011-03-10 11:38:29 +0100507 * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200508 * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED
509 * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED
Willy Tarreaubaaee002006-06-26 02:48:02 +0200510 * SRV_STATUS_INTERNAL for other unrecoverable errors.
511 *
Willy Tarreau7c669d72008-06-20 15:04:11 +0200512 * Upon successful return, the session flag SN_ASSIGNED is set to indicate that
Willy Tarreau827aee92011-03-10 16:55:02 +0100513 * it does not need to be called anymore. This means that target_srv(&s->target)
514 * can be trusted in balance and direct modes.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200515 *
516 */
517
518int assign_server(struct session *s)
519{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200520 struct connection *conn;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200521 struct server *conn_slot;
Willy Tarreau827aee92011-03-10 16:55:02 +0100522 struct server *srv, *prev_srv;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200523 int err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100524
Simon Horman8effd3d2011-08-13 08:03:52 +0900525 DPRINTF(stderr,"assign_server : s=%p\n",s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526
Willy Tarreau7c669d72008-06-20 15:04:11 +0200527 err = SRV_STATUS_INTERNAL;
528 if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED))
529 goto out_err;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100530
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100531 prev_srv = objt_server(s->target);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200532 conn_slot = s->srv_conn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200533
Willy Tarreau7c669d72008-06-20 15:04:11 +0200534 /* We have to release any connection slot before applying any LB algo,
535 * otherwise we may erroneously end up with no available slot.
536 */
537 if (conn_slot)
538 sess_change_server(s, NULL);
539
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100540 /* We will now try to find the good server and store it into <objt_server(s->target)>.
541 * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200542 * as well as if no server is available (check error code).
543 */
Willy Tarreau1a20a5d2007-11-01 21:08:19 +0100544
Willy Tarreau827aee92011-03-10 16:55:02 +0100545 srv = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100546 s->target = NULL;
Willy Tarreau9420b122013-12-15 18:58:25 +0100547 conn = objt_conn(s->req->cons->end);
Willy Tarreau664beb82011-03-10 11:38:29 +0100548
Willy Tarreau068621e2013-12-23 15:11:25 +0100549 if (conn &&
Willy Tarreau2481d162014-02-19 18:40:43 +0100550 (conn->flags & CO_FL_CONNECTED) &&
Willy Tarreau9420b122013-12-15 18:58:25 +0100551 objt_server(conn->target) && __objt_server(conn->target)->proxy == s->be &&
Willy Tarreauc35362a2014-04-25 13:58:37 +0200552 ((s->txn.flags & TX_PREFER_LAST) ||
553 ((s->be->options & PR_O_PREF_LAST) &&
554 (!s->be->max_ka_queue ||
555 server_has_room(__objt_server(conn->target)) ||
556 (__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200557 srv_is_usable(__objt_server(conn->target))) {
Willy Tarreau9420b122013-12-15 18:58:25 +0100558 /* This session was relying on a server in a previous request
Godbachcfbb93f2014-12-10 10:21:30 +0800559 * and the proxy has "option prefer-last-server" set, so
Willy Tarreau9420b122013-12-15 18:58:25 +0100560 * let's try to reuse the same server.
561 */
562 srv = __objt_server(conn->target);
563 s->target = &srv->obj_type;
564 }
565 else if (s->be->lbprm.algo & BE_LB_KIND) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200566 /* we must check if we have at least one server available */
567 if (!s->be->lbprm.tot_weight) {
568 err = SRV_STATUS_NOSRV;
569 goto out;
570 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200571
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200572 /* First check whether we need to fetch some data or simply call
573 * the LB lookup function. Only the hashing functions will need
574 * some input data in fact, and will support multiple algorithms.
575 */
576 switch (s->be->lbprm.algo & BE_LB_LKUP) {
577 case BE_LB_LKUP_RRTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100578 srv = fwrr_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200579 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200580
Willy Tarreauf09c6602012-02-13 17:12:08 +0100581 case BE_LB_LKUP_FSTREE:
582 srv = fas_get_next_server(s->be, prev_srv);
583 break;
584
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200585 case BE_LB_LKUP_LCTREE:
Willy Tarreau827aee92011-03-10 16:55:02 +0100586 srv = fwlc_get_next_server(s->be, prev_srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200587 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200588
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200589 case BE_LB_LKUP_CHTREE:
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200590 case BE_LB_LKUP_MAP:
Willy Tarreau9757a382009-10-03 12:56:50 +0200591 if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200592 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100593 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200594 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100595 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau9757a382009-10-03 12:56:50 +0200596 break;
597 }
598 else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200599 /* unknown balancing algorithm */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 err = SRV_STATUS_INTERNAL;
601 goto out;
602 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200603
604 switch (s->be->lbprm.algo & BE_LB_PARM) {
605 case BE_LB_HASH_SRC:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200606 conn = objt_conn(s->req->prod->end);
607 if (conn && conn->addr.from.ss_family == AF_INET) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200608 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200609 (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200610 4);
611 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200612 else if (conn && conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200613 srv = get_server_sh(s->be,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200614 (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr,
Willy Tarreau5dd7fa12012-03-31 19:53:37 +0200615 16);
616 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200617 else {
618 /* unknown IP family */
619 err = SRV_STATUS_INTERNAL;
620 goto out;
621 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200622 break;
623
624 case BE_LB_HASH_URI:
625 /* URI hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100626 if (s->txn.req.msg_state < HTTP_MSG_BODY)
627 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100628 srv = get_server_uh(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200629 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100630 s->txn.req.sl.rq.u_l);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200631 break;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200632
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200633 case BE_LB_HASH_PRM:
634 /* URL Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100635 if (s->txn.req.msg_state < HTTP_MSG_BODY)
636 break;
Willy Tarreau61a21a32011-03-01 20:35:49 +0100637
Willy Tarreau827aee92011-03-10 16:55:02 +0100638 srv = get_server_ph(s->be,
Willy Tarreauda6eed62014-04-17 20:24:24 +0200639 b_ptr(s->req->buf, -http_uri_rewind(&s->txn.req)),
Willy Tarreau827aee92011-03-10 16:55:02 +0100640 s->txn.req.sl.rq.u_l);
Willy Tarreau61a21a32011-03-01 20:35:49 +0100641
Willy Tarreau827aee92011-03-10 16:55:02 +0100642 if (!srv && s->txn.meth == HTTP_METH_POST)
643 srv = get_server_ph_post(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200644 break;
Benoitaffb4812009-03-25 13:02:10 +0100645
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200646 case BE_LB_HASH_HDR:
647 /* Header Parameter hashing */
Willy Tarreaueaed5a12010-03-24 14:54:30 +0100648 if (s->txn.req.msg_state < HTTP_MSG_BODY)
649 break;
Willy Tarreau827aee92011-03-10 16:55:02 +0100650 srv = get_server_hh(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200651 break;
652
653 case BE_LB_HASH_RDP:
654 /* RDP Cookie hashing */
Willy Tarreau827aee92011-03-10 16:55:02 +0100655 srv = get_server_rch(s);
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200656 break;
657
658 default:
659 /* unknown balancing algorithm */
660 err = SRV_STATUS_INTERNAL;
661 goto out;
Benoitaffb4812009-03-25 13:02:10 +0100662 }
Emeric Brun736aa232009-06-30 17:56:00 +0200663
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200664 /* If the hashing parameter was not found, let's fall
665 * back to round robin on the map.
666 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100667 if (!srv) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200668 if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE)
Willy Tarreau827aee92011-03-10 16:55:02 +0100669 srv = chash_get_next_server(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200670 else
Willy Tarreau827aee92011-03-10 16:55:02 +0100671 srv = map_get_server_rr(s->be, prev_srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200672 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200673
674 /* end of map-based LB */
Emeric Brun736aa232009-06-30 17:56:00 +0200675 break;
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200676
Willy Tarreau7c669d72008-06-20 15:04:11 +0200677 default:
678 /* unknown balancing algorithm */
679 err = SRV_STATUS_INTERNAL;
680 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200681 }
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200682
Willy Tarreau827aee92011-03-10 16:55:02 +0100683 if (!srv) {
Willy Tarreauda76f4f2009-10-03 12:36:05 +0200684 err = SRV_STATUS_FULL;
685 goto out;
686 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 else if (srv != prev_srv) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100688 s->be->be_counters.cum_lbconn++;
Willy Tarreau827aee92011-03-10 16:55:02 +0100689 srv->counters.cum_lbconn++;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100690 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100691 s->target = &srv->obj_type;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200692 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200693 else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100694 s->target = &s->be->obj_type;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200695 }
David du Colombier6f5ccb12011-03-10 22:26:24 +0100696 else if ((s->be->options & PR_O_HTTP_PROXY) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200697 (conn = objt_conn(s->req->cons->end)) &&
698 is_addr(&conn->addr.to)) {
Willy Tarreau664beb82011-03-10 11:38:29 +0100699 /* in proxy mode, we need a valid destination address */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100700 s->target = &s->be->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +0100701 }
702 else {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200703 err = SRV_STATUS_NOSRV;
704 goto out;
705 }
706
707 s->flags |= SN_ASSIGNED;
708 err = SRV_STATUS_OK;
709 out:
710
711 /* Either we take back our connection slot, or we offer it to someone
712 * else if we don't need it anymore.
713 */
714 if (conn_slot) {
Willy Tarreau827aee92011-03-10 16:55:02 +0100715 if (conn_slot == srv) {
716 sess_change_server(s, srv);
Willy Tarreau7c669d72008-06-20 15:04:11 +0200717 } else {
718 if (may_dequeue_tasks(conn_slot, s->be))
719 process_srv_queue(conn_slot);
720 }
721 }
722
723 out_err:
724 return err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725}
726
727
728/*
729 * This function assigns a server address to a session, and sets SN_ADDR_SET.
730 * The address is taken from the currently assigned server, or from the
731 * dispatch or transparent address.
732 *
733 * It may return :
734 * SRV_STATUS_OK if everything is OK.
735 * SRV_STATUS_INTERNAL for other unrecoverable errors.
736 *
737 * Upon successful return, the session flag SN_ADDR_SET is set. This flag is
738 * not cleared, so it's to the caller to clear it if required.
739 *
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200740 * The caller is responsible for having already assigned a connection
741 * to si->end.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200742 *
Willy Tarreaubaaee002006-06-26 02:48:02 +0200743 */
744int assign_server_address(struct session *s)
745{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200746 struct connection *cli_conn = objt_conn(s->req->prod->end);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200747 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200748
Willy Tarreaubaaee002006-06-26 02:48:02 +0200749#ifdef DEBUG_FULL
750 fprintf(stderr,"assign_server_address : s=%p\n",s);
751#endif
752
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200753 if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200754 /* A server is necessarily known for this session */
755 if (!(s->flags & SN_ASSIGNED))
756 return SRV_STATUS_INTERNAL;
757
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200758 srv_conn->addr.to = objt_server(s->target)->addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200759
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200760 if (!is_addr(&srv_conn->addr.to) && cli_conn) {
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200761 /* if the server has no address, we use the same address
762 * the client asked, which is handy for remapping ports
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200763 * locally on multiple addresses at once. Nothing is done
764 * for AF_UNIX addresses.
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200765 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200766 conn_get_to_addr(cli_conn);
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200767
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200768 if (cli_conn->addr.to.ss_family == AF_INET) {
769 ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
770 } else if (cli_conn->addr.to.ss_family == AF_INET6) {
771 ((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 +0200772 }
Willy Tarreaud669a4f2010-07-13 14:49:50 +0200773 }
774
Willy Tarreaubaaee002006-06-26 02:48:02 +0200775 /* if this server remaps proxied ports, we'll use
776 * the port the client connected to with an offset. */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200777 if ((objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) {
David du Colombier6f5ccb12011-03-10 22:26:24 +0100778 int base_port;
779
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200780 conn_get_to_addr(cli_conn);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100781
782 /* First, retrieve the port from the incoming connection */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200783 base_port = get_host_port(&cli_conn->addr.to);
David du Colombier6f5ccb12011-03-10 22:26:24 +0100784
785 /* Second, assign the outgoing connection's port */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200786 base_port += get_host_port(&srv_conn->addr.to);
787 set_host_port(&srv_conn->addr.to, base_port);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200788 }
789 }
Willy Tarreau1620ec32011-08-06 17:05:02 +0200790 else if (s->be->options & PR_O_DISPATCH) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791 /* connect to the defined dispatch addr */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200792 srv_conn->addr.to = s->be->dispatch_addr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200793 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200794 else if ((s->be->options & PR_O_TRANSP) && cli_conn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795 /* in transparent mode, use the original dest addr if no dispatch specified */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200796 conn_get_to_addr(cli_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200797
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200798 if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6)
799 srv_conn->addr.to = cli_conn->addr.to;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100801 else if (s->be->options & PR_O_HTTP_PROXY) {
802 /* If HTTP PROXY option is set, then server is already assigned
803 * during incoming client request parsing. */
804 }
Willy Tarreau1a1158b2007-01-20 11:07:46 +0100805 else {
806 /* no server and no LB algorithm ! */
807 return SRV_STATUS_INTERNAL;
808 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200809
810 s->flags |= SN_ADDR_SET;
811 return SRV_STATUS_OK;
812}
813
814
815/* This function assigns a server to session <s> if required, and can add the
816 * connection to either the assigned server's queue or to the proxy's queue.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200817 * If ->srv_conn is set, the session is first released from the server.
818 * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will
819 * be called before any connection and after any retry or redispatch occurs.
820 *
821 * It is not allowed to call this function with a session in a queue.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822 *
823 * Returns :
824 *
825 * SRV_STATUS_OK if everything is OK.
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100826 * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827 * SRV_STATUS_QUEUED if the connection has been queued.
828 * SRV_STATUS_FULL if the server(s) is/are saturated and the
Willy Tarreau827aee92011-03-10 16:55:02 +0100829 * connection could not be queued at the server's,
Willy Tarreau7c669d72008-06-20 15:04:11 +0200830 * which may be NULL if we queue on the backend.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200831 * SRV_STATUS_INTERNAL for other unrecoverable errors.
832 *
833 */
834int assign_server_and_queue(struct session *s)
835{
836 struct pendconn *p;
Willy Tarreau827aee92011-03-10 16:55:02 +0100837 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200838 int err;
839
840 if (s->pend_pos)
841 return SRV_STATUS_INTERNAL;
842
Willy Tarreau7c669d72008-06-20 15:04:11 +0200843 err = SRV_STATUS_OK;
844 if (!(s->flags & SN_ASSIGNED)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100845 struct server *prev_srv = objt_server(s->target);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100846
Willy Tarreau7c669d72008-06-20 15:04:11 +0200847 err = assign_server(s);
Willy Tarreau3d80d912011-03-10 11:42:13 +0100848 if (prev_srv) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200849 /* This session was previously assigned to a server. We have to
850 * update the session's and the server's stats :
851 * - if the server changed :
852 * - set TX_CK_DOWN if txn.flags was TX_CK_VALID
853 * - set SN_REDISP if it was successfully redispatched
854 * - increment srv->redispatches and be->redispatches
855 * - if the server remained the same : update retries.
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100856 */
857
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100858 if (prev_srv != objt_server(s->target)) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200859 if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) {
860 s->txn.flags &= ~TX_CK_MASK;
861 s->txn.flags |= TX_CK_DOWN;
862 }
863 s->flags |= SN_REDISP;
Willy Tarreau3d80d912011-03-10 11:42:13 +0100864 prev_srv->counters.redispatches++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100865 s->be->be_counters.redispatches++;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200866 } else {
Willy Tarreau3d80d912011-03-10 11:42:13 +0100867 prev_srv->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100868 s->be->be_counters.retries++;
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100869 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +0100870 }
871 }
872
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 switch (err) {
874 case SRV_STATUS_OK:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200875 /* we have SN_ASSIGNED set */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100876 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100877 if (!srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200878 return SRV_STATUS_OK; /* dispatch or proxy mode */
879
880 /* If we already have a connection slot, no need to check any queue */
Willy Tarreau827aee92011-03-10 16:55:02 +0100881 if (s->srv_conn == srv)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200882 return SRV_STATUS_OK;
883
884 /* OK, this session already has an assigned server, but no
885 * connection slot yet. Either it is a redispatch, or it was
886 * assigned from persistence information (direct mode).
887 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100888 if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200889 /* server scheduled for redirection, and already assigned. We
890 * don't want to go further nor check the queue.
Willy Tarreau21d2af32008-02-14 20:25:24 +0100891 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100892 sess_change_server(s, srv); /* not really needed in fact */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100893 return SRV_STATUS_OK;
894 }
895
Willy Tarreau7c669d72008-06-20 15:04:11 +0200896 /* We might have to queue this session if the assigned server is full.
897 * We know we have to queue it into the server's queue, so if a maxqueue
898 * is set on the server, we must also check that the server's queue is
899 * not full, in which case we have to return FULL.
900 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100901 if (srv->maxconn &&
902 (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) {
Willy Tarreau7c669d72008-06-20 15:04:11 +0200903
Willy Tarreau827aee92011-03-10 16:55:02 +0100904 if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue)
Willy Tarreau7c669d72008-06-20 15:04:11 +0200905 return SRV_STATUS_FULL;
906
Willy Tarreaubaaee002006-06-26 02:48:02 +0200907 p = pendconn_add(s);
908 if (p)
909 return SRV_STATUS_QUEUED;
910 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200911 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200912 }
Willy Tarreau7c669d72008-06-20 15:04:11 +0200913
914 /* OK, we can use this server. Let's reserve our place */
Willy Tarreau827aee92011-03-10 16:55:02 +0100915 sess_change_server(s, srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200916 return SRV_STATUS_OK;
917
918 case SRV_STATUS_FULL:
919 /* queue this session into the proxy's queue */
920 p = pendconn_add(s);
921 if (p)
922 return SRV_STATUS_QUEUED;
923 else
Willy Tarreau7c669d72008-06-20 15:04:11 +0200924 return SRV_STATUS_INTERNAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925
926 case SRV_STATUS_NOSRV:
Willy Tarreau7c669d72008-06-20 15:04:11 +0200927 return err;
928
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929 case SRV_STATUS_INTERNAL:
930 return err;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200931
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932 default:
933 return SRV_STATUS_INTERNAL;
934 }
Willy Tarreau5b6995c2008-01-13 16:31:17 +0100935}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936
Willy Tarreaub1d67742010-03-29 19:36:59 +0200937/* If an explicit source binding is specified on the server and/or backend, and
938 * this source makes use of the transparent proxy, then it is extracted now and
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200939 * assigned to the session's pending connection. This function assumes that an
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200940 * outgoing connection has already been assigned to s->req->cons->end.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200941 */
942static void assign_tproxy_address(struct session *s)
943{
Pieter Baauwd551fb52013-05-08 22:49:23 +0200944#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100945 struct server *srv = objt_server(s->target);
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100946 struct conn_src *src;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200947 struct connection *cli_conn;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200948 struct connection *srv_conn = objt_conn(s->req->cons->end);
Willy Tarreau827aee92011-03-10 16:55:02 +0100949
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100950 if (srv && srv->conn_src.opts & CO_SRC_BIND)
951 src = &srv->conn_src;
952 else if (s->be->conn_src.opts & CO_SRC_BIND)
953 src = &s->be->conn_src;
954 else
955 return;
Willy Tarreau294c4732011-12-16 21:35:50 +0100956
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100957 switch (src->opts & CO_SRC_TPROXY_MASK) {
958 case CO_SRC_TPROXY_ADDR:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200959 srv_conn->addr.from = src->tproxy_addr;
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100960 break;
961 case CO_SRC_TPROXY_CLI:
962 case CO_SRC_TPROXY_CIP:
963 /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200964 cli_conn = objt_conn(s->req->prod->end);
965 if (cli_conn)
966 srv_conn->addr.from = cli_conn->addr.from;
967 else
968 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100969 break;
970 case CO_SRC_TPROXY_DYN:
971 if (src->bind_hdr_occ) {
972 char *vptr;
973 int vlen;
974 int rewind;
Willy Tarreau294c4732011-12-16 21:35:50 +0100975
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100976 /* bind to the IP in a header */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200977 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET;
978 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0;
979 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0;
Willy Tarreau294c4732011-12-16 21:35:50 +0100980
Willy Tarreau211cdec2014-04-17 20:18:08 +0200981 b_rew(s->req->buf, rewind = http_hdr_rewind(&s->txn.req));
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100982 if (http_get_hdr(&s->txn.req, src->bind_hdr_name, src->bind_hdr_len,
983 &s->txn.hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200984 ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr =
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100985 htonl(inetaddr_host_lim(vptr, vptr + vlen));
Willy Tarreaubce70882009-09-07 11:51:47 +0200986 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100987 b_adv(s->req->buf, rewind);
Willy Tarreaub1d67742010-03-29 19:36:59 +0200988 }
Willy Tarreau9cd7d6c2012-12-08 23:13:33 +0100989 break;
990 default:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200991 memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from));
Willy Tarreaub1d67742010-03-29 19:36:59 +0200992 }
993#endif
994}
995
996
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997/*
998 * This function initiates a connection to the server assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +0200999 * (s->target, s->req->cons->addr.to). It will assign a server if none
Willy Tarreau664beb82011-03-10 11:38:29 +01001000 * is assigned yet.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001001 * It can return one of :
1002 * - SN_ERR_NONE if everything's OK
1003 * - SN_ERR_SRVTO if there are no more servers
1004 * - SN_ERR_SRVCL if the connection was refused by the server
1005 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
1006 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
1007 * - SN_ERR_INTERNAL for any other purely internal errors
1008 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001009 * The server-facing stream interface is expected to hold a pre-allocated connection
1010 * in s->req->cons->conn.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001011 */
1012int connect_server(struct session *s)
1013{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001014 struct connection *cli_conn;
Willy Tarreau34601a82013-12-15 16:33:46 +01001015 struct connection *srv_conn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001016 struct server *srv;
Willy Tarreau34601a82013-12-15 16:33:46 +01001017 int reuse = 0;
Willy Tarreau9650f372009-08-16 14:02:45 +02001018 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001019
Willy Tarreau34601a82013-12-15 16:33:46 +01001020 srv_conn = objt_conn(s->req->cons->end);
1021 if (srv_conn)
1022 reuse = s->target == srv_conn->target;
1023
1024 if (reuse) {
1025 /* Disable connection reuse if a dynamic source is used.
1026 * As long as we don't share connections between servers,
1027 * we don't need to disable connection reuse on no-idempotent
1028 * requests nor when PROXY protocol is used.
1029 */
1030 srv = objt_server(s->target);
1031 if (srv && srv->conn_src.opts & CO_SRC_BIND) {
1032 if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1033 reuse = 0;
1034 }
1035 else if (s->be->conn_src.opts & CO_SRC_BIND) {
1036 if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN)
1037 reuse = 0;
1038 }
1039 }
1040
1041 srv_conn = si_alloc_conn(s->req->cons, reuse);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001042 if (!srv_conn)
1043 return SN_ERR_RESOURCE;
1044
Willy Tarreaubaaee002006-06-26 02:48:02 +02001045 if (!(s->flags & SN_ADDR_SET)) {
1046 err = assign_server_address(s);
1047 if (err != SRV_STATUS_OK)
1048 return SN_ERR_INTERNAL;
1049 }
1050
Willy Tarreauff605db2013-12-20 11:09:51 +01001051 if (!conn_xprt_ready(srv_conn)) {
1052 /* the target was only on the session, assign it to the SI now */
1053 srv_conn->target = s->target;
Willy Tarreaud88edf22009-06-14 15:48:17 +02001054
Willy Tarreauff605db2013-12-20 11:09:51 +01001055 /* set the correct protocol on the output stream interface */
1056 if (objt_server(s->target)) {
1057 conn_prepare(srv_conn, objt_server(s->target)->proto, objt_server(s->target)->xprt);
1058 }
1059 else if (obj_type(s->target) == OBJ_TYPE_PROXY) {
1060 /* proxies exclusively run on raw_sock right now */
1061 conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), &raw_sock);
1062 if (!objt_conn(s->req->cons->end) || !objt_conn(s->req->cons->end)->ctrl)
1063 return SN_ERR_INTERNAL;
1064 }
1065 else
1066 return SN_ERR_INTERNAL; /* how did we get there ? */
Willy Tarreaud02394b2012-05-11 18:32:18 +02001067
Willy Tarreauff605db2013-12-20 11:09:51 +01001068 /* process the case where the server requires the PROXY protocol to be sent */
1069 srv_conn->send_proxy_ofs = 0;
David Safb76832014-05-08 23:42:08 -04001070 if (objt_server(s->target) && objt_server(s->target)->pp_opts) {
Willy Tarreauff605db2013-12-20 11:09:51 +01001071 srv_conn->send_proxy_ofs = 1; /* must compute size */
1072 cli_conn = objt_conn(s->req->prod->end);
1073 if (cli_conn)
1074 conn_get_to_addr(cli_conn);
1075 }
Willy Tarreau2a6e8802013-10-24 15:50:53 +02001076
Willy Tarreauff605db2013-12-20 11:09:51 +01001077 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau26d8c592012-05-07 18:12:14 +02001078
Willy Tarreauff605db2013-12-20 11:09:51 +01001079 assign_tproxy_address(s);
1080 }
1081 else {
1082 /* the connection is being reused, just re-attach it */
1083 si_attach_conn(s->req->cons, srv_conn);
Willy Tarreau36346242014-02-24 18:26:30 +01001084 s->flags |= SN_SRV_REUSED;
Willy Tarreauff605db2013-12-20 11:09:51 +01001085 }
Willy Tarreaub1d67742010-03-29 19:36:59 +02001086
William Lallemandb7ff6a32012-03-02 14:35:21 +01001087 /* flag for logging source ip/port */
1088 if (s->fe->options2 & PR_O2_SRC_ADDR)
1089 s->req->cons->flags |= SI_FL_SRC_ADDR;
1090
Willy Tarreau14f8e862012-08-30 22:23:13 +02001091 /* disable lingering */
1092 if (s->be->options & PR_O_TCP_NOLING)
1093 s->req->cons->flags |= SI_FL_NOLINGER;
1094
Willy Tarreau73b013b2012-05-21 16:31:45 +02001095 err = si_connect(s->req->cons);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001096
Willy Tarreau9650f372009-08-16 14:02:45 +02001097 if (err != SN_ERR_NONE)
1098 return err;
Willy Tarreau788e2842008-08-26 13:25:39 +02001099
Willy Tarreau14f8e862012-08-30 22:23:13 +02001100 /* set connect timeout */
1101 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.connect);
1102
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001103 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001104 if (srv) {
Willy Tarreau1e62de62008-11-11 20:20:02 +01001105 s->flags |= SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001106 srv->cur_sess++;
1107 if (srv->cur_sess > srv->counters.cur_sess_max)
1108 srv->counters.cur_sess_max = srv->cur_sess;
Willy Tarreau51406232008-03-10 22:04:20 +01001109 if (s->be->lbprm.server_take_conn)
Willy Tarreau827aee92011-03-10 16:55:02 +01001110 s->be->lbprm.server_take_conn(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001111 }
1112
Willy Tarreaubaaee002006-06-26 02:48:02 +02001113 return SN_ERR_NONE; /* connection is OK */
1114}
1115
1116
Willy Tarreaubaaee002006-06-26 02:48:02 +02001117/* This function performs the "redispatch" part of a connection attempt. It
1118 * will assign a server if required, queue the connection if required, and
1119 * handle errors that might arise at this level. It can change the server
1120 * state. It will return 1 if it encounters an error, switches the server
1121 * state, or has to queue a connection. Otherwise, it will return 0 indicating
1122 * that the connection is ready to use.
1123 */
1124
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001125int srv_redispatch_connect(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001126{
Willy Tarreau827aee92011-03-10 16:55:02 +01001127 struct server *srv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001128 int conn_err;
1129
1130 /* We know that we don't have any connection pending, so we will
1131 * try to get a new one, and wait in this state if it's queued
1132 */
Willy Tarreau7c669d72008-06-20 15:04:11 +02001133 redispatch:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001134 conn_err = assign_server_and_queue(s);
1135 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001136
Willy Tarreaubaaee002006-06-26 02:48:02 +02001137 switch (conn_err) {
1138 case SRV_STATUS_OK:
1139 break;
1140
Willy Tarreau7c669d72008-06-20 15:04:11 +02001141 case SRV_STATUS_FULL:
1142 /* The server has reached its maxqueue limit. Either PR_O_REDISP is set
1143 * and we can redispatch to another server, or it is not and we return
1144 * 503. This only makes sense in DIRECT mode however, because normal LB
1145 * algorithms would never select such a server, and hash algorithms
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001146 * would bring us on the same server again. Note that s->target is set
Willy Tarreau827aee92011-03-10 16:55:02 +01001147 * in this case.
Willy Tarreau7c669d72008-06-20 15:04:11 +02001148 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001149 if (((s->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) &&
1150 (s->be->options & PR_O_REDISP)) {
1151 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau7c669d72008-06-20 15:04:11 +02001152 goto redispatch;
1153 }
1154
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001155 if (!s->req->cons->err_type) {
1156 s->req->cons->err_type = SI_ET_QUEUE_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001157 }
Willy Tarreau7c669d72008-06-20 15:04:11 +02001158
Willy Tarreau827aee92011-03-10 16:55:02 +01001159 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001160 s->be->be_counters.failed_conns++;
Willy Tarreau7c669d72008-06-20 15:04:11 +02001161 return 1;
1162
Willy Tarreaubaaee002006-06-26 02:48:02 +02001163 case SRV_STATUS_NOSRV:
Willy Tarreau827aee92011-03-10 16:55:02 +01001164 /* note: it is guaranteed that srv == NULL here */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001165 if (!s->req->cons->err_type) {
1166 s->req->cons->err_type = SI_ET_CONN_ERR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001167 }
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +01001168
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001169 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001170 return 1;
1171
1172 case SRV_STATUS_QUEUED:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001173 s->req->cons->exp = tick_add_ifset(now_ms, s->be->timeout.queue);
1174 s->req->cons->state = SI_ST_QUE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001175 /* do nothing else and do not wake any other session up */
1176 return 1;
1177
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178 case SRV_STATUS_INTERNAL:
1179 default:
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001180 if (!s->req->cons->err_type) {
1181 s->req->cons->err_type = SI_ET_CONN_OTHER;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001182 }
1183
Willy Tarreau827aee92011-03-10 16:55:02 +01001184 if (srv)
1185 srv_inc_sess_ctr(srv);
1186 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001187 srv_set_sess_last(srv);
1188 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001189 srv->counters.failed_conns++;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001190 s->be->be_counters.failed_conns++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001191
1192 /* release other sessions waiting for this server */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001193 if (may_dequeue_tasks(srv, s->be))
Willy Tarreau827aee92011-03-10 16:55:02 +01001194 process_srv_queue(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001195 return 1;
1196 }
1197 /* if we get here, it's because we got SRV_STATUS_OK, which also
1198 * means that the connection has not been queued.
1199 */
1200 return 0;
1201}
1202
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001203/* sends a log message when a backend goes down, and also sets last
1204 * change date.
1205 */
1206void set_backend_down(struct proxy *be)
1207{
1208 be->last_change = now.tv_sec;
1209 be->down_trans++;
1210
1211 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
1212 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
1213}
1214
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001215/* Apply RDP cookie persistence to the current session. For this, the function
1216 * tries to extract an RDP cookie from the request buffer, and look for the
1217 * matching server in the list. If the server is found, it is assigned to the
1218 * session. This always returns 1, and the analyser removes itself from the
1219 * list. Nothing is performed if a server was already assigned.
1220 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001221int tcp_persist_rdp_cookie(struct session *s, struct channel *req, int an_bit)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001222{
1223 struct proxy *px = s->be;
1224 int ret;
Willy Tarreau37406352012-04-23 16:16:37 +02001225 struct sample smp;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001226 struct server *srv = px->srv;
1227 struct sockaddr_in addr;
1228 char *p;
1229
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001230 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 +02001231 now_ms, __FUNCTION__,
1232 s,
1233 req,
1234 req->rex, req->wex,
1235 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001236 req->buf->i,
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001237 req->analysers);
1238
1239 if (s->flags & SN_ASSIGNED)
1240 goto no_cookie;
1241
Willy Tarreau37406352012-04-23 16:16:37 +02001242 memset(&smp, 0, sizeof(smp));
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001243
Willy Tarreaucadd8c92013-07-22 18:09:52 +02001244 ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len);
Willy Tarreauf853c462012-04-23 18:53:56 +02001245 if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0)
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001246 goto no_cookie;
1247
1248 memset(&addr, 0, sizeof(addr));
1249 addr.sin_family = AF_INET;
1250
Willy Tarreau664092c2011-12-16 19:11:42 +01001251 /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */
Willy Tarreauf853c462012-04-23 18:53:56 +02001252 addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10);
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001253 if (*p != '.')
1254 goto no_cookie;
1255 p++;
1256 addr.sin_port = (unsigned short)strtoul(p, &p, 10);
1257 if (*p != '.')
1258 goto no_cookie;
1259
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001260 s->target = NULL;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001261 while (srv) {
Willy Tarreau28e9d062014-05-09 22:47:50 +02001262 if (srv->addr.ss_family == AF_INET &&
1263 memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001264 if ((srv->state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) {
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001265 /* we found the server and it is usable */
1266 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001267 s->target = &srv->obj_type;
Willy Tarreau44b90cc2010-05-24 20:27:29 +02001268 break;
1269 }
1270 }
1271 srv = srv->next;
1272 }
1273
1274no_cookie:
1275 req->analysers &= ~an_bit;
1276 req->analyse_exp = TICK_ETERNITY;
1277 return 1;
1278}
1279
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001280int be_downtime(struct proxy *px) {
Willy Tarreaub625a082007-11-26 01:15:43 +01001281 if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001282 return px->down_time;
1283
1284 return now.tv_sec - px->last_change + px->down_time;
1285}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001286
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001287/*
1288 * This function returns a string containing the balancing
1289 * mode of the proxy in a format suitable for stats.
1290 */
1291
1292const char *backend_lb_algo_str(int algo) {
1293
1294 if (algo == BE_LB_ALGO_RR)
1295 return "roundrobin";
1296 else if (algo == BE_LB_ALGO_SRR)
1297 return "static-rr";
Willy Tarreauf09c6602012-02-13 17:12:08 +01001298 else if (algo == BE_LB_ALGO_FAS)
1299 return "first";
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001300 else if (algo == BE_LB_ALGO_LC)
1301 return "leastconn";
1302 else if (algo == BE_LB_ALGO_SH)
1303 return "source";
1304 else if (algo == BE_LB_ALGO_UH)
1305 return "uri";
1306 else if (algo == BE_LB_ALGO_PH)
1307 return "url_param";
1308 else if (algo == BE_LB_ALGO_HH)
1309 return "hdr";
1310 else if (algo == BE_LB_ALGO_RCH)
1311 return "rdp-cookie";
1312 else
1313 return NULL;
1314}
1315
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001316/* This function parses a "balance" statement in a backend section describing
1317 * <curproxy>. It returns -1 if there is any error, otherwise zero. If it
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001318 * returns -1, it will write an error message into the <err> buffer which will
1319 * automatically be allocated and must be passed as NULL. The trailing '\n'
1320 * will not be written. The function must be called with <args> pointing to the
1321 * first word after "balance".
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001322 */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001323int backend_parse_balance(const char **args, char **err, struct proxy *curproxy)
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001324{
1325 if (!*(args[0])) {
1326 /* if no option is set, use round-robin by default */
Willy Tarreau31682232007-11-29 15:38:04 +01001327 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1328 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001329 return 0;
1330 }
1331
1332 if (!strcmp(args[0], "roundrobin")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001333 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1334 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001335 }
Willy Tarreau9757a382009-10-03 12:56:50 +02001336 else if (!strcmp(args[0], "static-rr")) {
1337 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1338 curproxy->lbprm.algo |= BE_LB_ALGO_SRR;
1339 }
Willy Tarreauf09c6602012-02-13 17:12:08 +01001340 else if (!strcmp(args[0], "first")) {
1341 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1342 curproxy->lbprm.algo |= BE_LB_ALGO_FAS;
1343 }
Willy Tarreau51406232008-03-10 22:04:20 +01001344 else if (!strcmp(args[0], "leastconn")) {
1345 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1346 curproxy->lbprm.algo |= BE_LB_ALGO_LC;
1347 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001348 else if (!strcmp(args[0], "source")) {
Willy Tarreau31682232007-11-29 15:38:04 +01001349 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1350 curproxy->lbprm.algo |= BE_LB_ALGO_SH;
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001351 }
1352 else if (!strcmp(args[0], "uri")) {
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001353 int arg = 1;
1354
Willy Tarreau31682232007-11-29 15:38:04 +01001355 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1356 curproxy->lbprm.algo |= BE_LB_ALGO_UH;
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001357
Oskar Stolc8dc41842012-05-19 10:19:54 +01001358 curproxy->uri_whole = 0;
1359
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001360 while (*args[arg]) {
1361 if (!strcmp(args[arg], "len")) {
1362 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001363 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001364 return -1;
1365 }
1366 curproxy->uri_len_limit = atoi(args[arg+1]);
1367 arg += 2;
1368 }
1369 else if (!strcmp(args[arg], "depth")) {
1370 if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001371 memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001372 return -1;
1373 }
1374 /* hint: we store the position of the ending '/' (depth+1) so
1375 * that we avoid a comparison while computing the hash.
1376 */
1377 curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1;
1378 arg += 2;
1379 }
Oskar Stolc8dc41842012-05-19 10:19:54 +01001380 else if (!strcmp(args[arg], "whole")) {
1381 curproxy->uri_whole = 1;
1382 arg += 1;
1383 }
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001384 else {
Oskar Stolc8dc41842012-05-19 10:19:54 +01001385 memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001386 return -1;
1387 }
1388 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001389 }
Willy Tarreau01732802007-11-01 22:48:15 +01001390 else if (!strcmp(args[0], "url_param")) {
1391 if (!*args[1]) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001392 memprintf(err, "%s requires an URL parameter name.", args[0]);
Willy Tarreau01732802007-11-01 22:48:15 +01001393 return -1;
1394 }
Willy Tarreau31682232007-11-29 15:38:04 +01001395 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1396 curproxy->lbprm.algo |= BE_LB_ALGO_PH;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001397
1398 free(curproxy->url_param_name);
Willy Tarreau01732802007-11-01 22:48:15 +01001399 curproxy->url_param_name = strdup(args[1]);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001400 curproxy->url_param_len = strlen(args[1]);
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001401 if (*args[2]) {
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001402 if (strcmp(args[2], "check_post")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001403 memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001404 return -1;
1405 }
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001406 }
Benoitaffb4812009-03-25 13:02:10 +01001407 }
1408 else if (!strncmp(args[0], "hdr(", 4)) {
1409 const char *beg, *end;
1410
1411 beg = args[0] + 4;
1412 end = strchr(beg, ')');
1413
1414 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001415 memprintf(err, "hdr requires an http header field name.");
Benoitaffb4812009-03-25 13:02:10 +01001416 return -1;
1417 }
1418
1419 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1420 curproxy->lbprm.algo |= BE_LB_ALGO_HH;
1421
1422 free(curproxy->hh_name);
1423 curproxy->hh_len = end - beg;
1424 curproxy->hh_name = my_strndup(beg, end - beg);
1425 curproxy->hh_match_domain = 0;
1426
1427 if (*args[1]) {
1428 if (strcmp(args[1], "use_domain_only")) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001429 memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]);
Benoitaffb4812009-03-25 13:02:10 +01001430 return -1;
1431 }
1432 curproxy->hh_match_domain = 1;
1433 }
Emeric Brun736aa232009-06-30 17:56:00 +02001434 }
1435 else if (!strncmp(args[0], "rdp-cookie", 10)) {
1436 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1437 curproxy->lbprm.algo |= BE_LB_ALGO_RCH;
1438
1439 if ( *(args[0] + 10 ) == '(' ) { /* cookie name */
1440 const char *beg, *end;
1441
1442 beg = args[0] + 11;
1443 end = strchr(beg, ')');
1444
1445 if (!end || end == beg) {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001446 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001447 return -1;
1448 }
1449
1450 free(curproxy->hh_name);
1451 curproxy->hh_name = my_strndup(beg, end - beg);
1452 curproxy->hh_len = end - beg;
1453 }
1454 else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */
1455 free(curproxy->hh_name);
1456 curproxy->hh_name = strdup("mstshash");
1457 curproxy->hh_len = strlen(curproxy->hh_name);
1458 }
1459 else { /* syntax */
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001460 memprintf(err, "rdp-cookie : missing cookie name.");
Emeric Brun736aa232009-06-30 17:56:00 +02001461 return -1;
1462 }
Willy Tarreau01732802007-11-01 22:48:15 +01001463 }
Willy Tarreaua0cbda62007-11-01 21:39:54 +01001464 else {
Willy Tarreaua93c74b2012-05-08 18:14:39 +02001465 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 +01001466 return -1;
1467 }
1468 return 0;
1469}
1470
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001471
1472/************************************************************************/
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001473/* All supported sample and ACL keywords must be declared here. */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001474/************************************************************************/
1475
Willy Tarreau34db1082012-04-19 17:16:54 +02001476/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001477 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001478 * undefined behaviour.
1479 */
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001480static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001481smp_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001482 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001483{
Willy Tarreau37406352012-04-23 16:16:37 +02001484 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001485 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001486 px = args->data.prx;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001487
1488 if (px->srv_act)
Willy Tarreauf853c462012-04-23 18:53:56 +02001489 smp->data.uint = px->srv_act;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001490 else if (px->lbprm.fbck)
Willy Tarreauf853c462012-04-23 18:53:56 +02001491 smp->data.uint = 1;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001492 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001493 smp->data.uint = px->srv_bck;
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001494
1495 return 1;
1496}
1497
Willy Tarreau37406352012-04-23 16:16:37 +02001498/* report in smp->flags a success or failure depending on the designated
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001499 * server's state. There is no match function involved since there's no pattern.
Willy Tarreau34db1082012-04-19 17:16:54 +02001500 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1501 * undefined behaviour.
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001502 */
1503static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001504smp_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001505 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001506{
Willy Tarreau24e32d82012-04-23 23:55:44 +02001507 struct server *srv = args->data.srv;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001508
Willy Tarreau37406352012-04-23 16:16:37 +02001509 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001510 smp->type = SMP_T_BOOL;
Willy Tarreau20125212014-05-13 19:44:56 +02001511 if (!(srv->admin & SRV_ADMF_MAINT) &&
Willy Tarreau892337c2014-05-13 23:41:20 +02001512 (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->state != SRV_ST_STOPPED)))
Willy Tarreau197e10a2012-04-23 19:18:42 +02001513 smp->data.uint = 1;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001514 else
Willy Tarreau197e10a2012-04-23 19:18:42 +02001515 smp->data.uint = 0;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02001516 return 1;
1517}
1518
Willy Tarreau34db1082012-04-19 17:16:54 +02001519/* set temp integer to the number of enabled servers on the proxy.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001520 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001521 * undefined behaviour.
1522 */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001523static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001524smp_fetch_connslots(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001525 const struct arg *args, struct sample *smp, const char *kw)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001526{
1527 struct server *iterator;
Willy Tarreaud28c3532012-04-19 19:28:33 +02001528
Willy Tarreau37406352012-04-23 16:16:37 +02001529 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001530 smp->type = SMP_T_UINT;
1531 smp->data.uint = 0;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001532
Willy Tarreau24e32d82012-04-23 23:55:44 +02001533 for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) {
Willy Tarreau892337c2014-05-13 23:41:20 +02001534 if (iterator->state == SRV_ST_STOPPED)
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001535 continue;
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001536
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001537 if (iterator->maxconn == 0 || iterator->maxqueue == 0) {
Willy Tarreaua5e37562011-12-16 17:06:15 +01001538 /* configuration is stupid */
Willy Tarreauf853c462012-04-23 18:53:56 +02001539 smp->data.uint = -1; /* FIXME: stupid value! */
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001540 return 1;
1541 }
1542
Willy Tarreauf853c462012-04-23 18:53:56 +02001543 smp->data.uint += (iterator->maxconn - iterator->cur_sess)
Willy Tarreau422aa072012-04-20 20:49:27 +02001544 + (iterator->maxqueue - iterator->nbpend);
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08001545 }
1546
1547 return 1;
1548}
1549
Willy Tarreaua5e37562011-12-16 17:06:15 +01001550/* set temp integer to the id of the backend */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001551static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001552smp_fetch_be_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001553 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001554{
Willy Tarreauf853c462012-04-23 18:53:56 +02001555 smp->flags = SMP_F_VOL_TXN;
1556 smp->type = SMP_T_UINT;
1557 smp->data.uint = l4->be->uuid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001558 return 1;
1559}
1560
Willy Tarreaua5e37562011-12-16 17:06:15 +01001561/* set temp integer to the id of the server */
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001562static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001563smp_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001564 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +02001565{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001566 if (!objt_server(l4->target))
Willy Tarreau17af4192011-02-23 14:27:06 +01001567 return 0;
1568
Willy Tarreauf853c462012-04-23 18:53:56 +02001569 smp->type = SMP_T_UINT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001570 smp->data.uint = objt_server(l4->target)->puid;
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01001571
1572 return 1;
1573}
1574
Willy Tarreau34db1082012-04-19 17:16:54 +02001575/* set temp integer to the number of connections per second reaching the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001576 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001577 * undefined behaviour.
1578 */
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001579static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001580smp_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001581 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001582{
Willy Tarreau37406352012-04-23 16:16:37 +02001583 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001584 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001585 smp->data.uint = read_freq_ctr(&args->data.prx->be_sess_per_sec);
Willy Tarreau079ff0a2009-03-05 21:34:28 +01001586 return 1;
1587}
1588
Willy Tarreau34db1082012-04-19 17:16:54 +02001589/* set temp integer to the number of concurrent connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001590 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001591 * undefined behaviour.
1592 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001593static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001594smp_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001595 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001596{
Willy Tarreau37406352012-04-23 16:16:37 +02001597 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001598 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001599 smp->data.uint = args->data.prx->beconn;
Willy Tarreaua36af912009-10-10 12:02:45 +02001600 return 1;
1601}
1602
Willy Tarreau34db1082012-04-19 17:16:54 +02001603/* set temp integer to the total number of queued connections on the backend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02001604 * Accepts exactly 1 argument. Argument is a backend, other types will lead to
Willy Tarreau34db1082012-04-19 17:16:54 +02001605 * undefined behaviour.
1606 */
Willy Tarreaua36af912009-10-10 12:02:45 +02001607static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001608smp_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001609 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua36af912009-10-10 12:02:45 +02001610{
Willy Tarreau37406352012-04-23 16:16:37 +02001611 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001612 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001613 smp->data.uint = args->data.prx->totpend;
Willy Tarreaua36af912009-10-10 12:02:45 +02001614 return 1;
1615}
1616
Willy Tarreaua5e37562011-12-16 17:06:15 +01001617/* set temp integer to the total number of queued connections on the backend divided
Willy Tarreaua36af912009-10-10 12:02:45 +02001618 * by the number of running servers and rounded up. If there is no running
1619 * server, we return twice the total, just as if we had half a running server.
1620 * This is more or less correct anyway, since we expect the last server to come
1621 * back soon.
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.
Willy Tarreaua36af912009-10-10 12:02:45 +02001624 */
1625static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001626smp_fetch_avg_queue_size(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{
1629 int nbsrv;
1630
Willy Tarreau37406352012-04-23 16:16:37 +02001631 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02001632 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001633 px = args->data.prx;
Willy Tarreaua36af912009-10-10 12:02:45 +02001634
1635 if (px->srv_act)
1636 nbsrv = px->srv_act;
1637 else if (px->lbprm.fbck)
1638 nbsrv = 1;
1639 else
1640 nbsrv = px->srv_bck;
1641
1642 if (nbsrv > 0)
Willy Tarreauf853c462012-04-23 18:53:56 +02001643 smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv;
Willy Tarreaua36af912009-10-10 12:02:45 +02001644 else
Willy Tarreauf853c462012-04-23 18:53:56 +02001645 smp->data.uint = px->totpend * 2;
Willy Tarreaua36af912009-10-10 12:02:45 +02001646
1647 return 1;
1648}
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001649
Willy Tarreau34db1082012-04-19 17:16:54 +02001650/* set temp integer to the number of concurrent connections on the server in the backend.
1651 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1652 * undefined behaviour.
1653 */
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001654static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001655smp_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001656 const struct arg *args, struct sample *smp, const char *kw)
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001657{
Willy Tarreauf853c462012-04-23 18:53:56 +02001658 smp->flags = SMP_F_VOL_TEST;
1659 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02001660 smp->data.uint = args->data.srv->cur_sess;
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02001661 return 1;
1662}
1663
Tait Clarridge7896d522012-12-05 21:39:31 -05001664/* set temp integer to the number of enabled servers on the proxy.
1665 * Accepts exactly 1 argument. Argument is a server, other types will lead to
1666 * undefined behaviour.
1667 */
1668static int
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001669smp_fetch_srv_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001670 const struct arg *args, struct sample *smp, const char *kw)
Tait Clarridge7896d522012-12-05 21:39:31 -05001671{
1672 smp->flags = SMP_F_VOL_TEST;
1673 smp->type = SMP_T_UINT;
1674 smp->data.uint = read_freq_ctr(&args->data.srv->sess_per_sec);
1675 return 1;
1676}
1677
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001678
1679/* Note: must not be declared <const> as its list will be overwritten.
1680 * Please take care of keeping this list alphabetically sorted.
1681 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001682static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001683 { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1684 { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1685 { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_UINT, SMP_USE_BKEND, },
1686 { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1687 { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1688 { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1689 { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1690 { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1691 { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_UINT, SMP_USE_SERVR, },
1692 { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
1693 { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_UINT, SMP_USE_INTRN, },
1694 { /* END */ },
1695}};
1696
1697
Willy Tarreau61612d42012-04-19 18:42:05 +02001698/* Note: must not be declared <const> as its list will be overwritten.
1699 * Please take care of keeping this list alphabetically sorted.
1700 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001701static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001702 { /* END */ },
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001703}};
1704
1705
1706__attribute__((constructor))
1707static void __backend_init(void)
1708{
Willy Tarreau1a7eca12013-01-07 22:38:03 +01001709 sample_register_fetches(&smp_kws);
Willy Tarreaua9d3c1e2007-11-30 20:48:53 +01001710 acl_register_keywords(&acl_kws);
1711}
1712
Willy Tarreaubaaee002006-06-26 02:48:02 +02001713/*
1714 * Local variables:
1715 * c-indent-level: 8
1716 * c-basic-offset: 8
1717 * End:
1718 */