blob: 8a2704148450c1eec223747a2b5d683b3a1f3b19 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau81f9aa32010-06-01 17:45:26 +02002 * Session management functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaud28c3532012-04-19 19:28:33 +02004 * Copyright 2000-2012 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 <stdlib.h>
Willy Tarreau81f9aa32010-06-01 17:45:26 +020014#include <unistd.h>
15#include <fcntl.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020016
17#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020018#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020019#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010022#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020024#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020025#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010026#include <proto/backend.h>
Willy Tarreau7341d942007-05-13 19:56:02 +020027#include <proto/buffers.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010028#include <proto/checks.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020029#include <proto/dumpstats.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020030#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020031#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010032#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020033#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010035#include <proto/pipe.h>
Willy Tarreau62793712011-07-24 19:23:38 +020036#include <proto/protocols.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010037#include <proto/proto_http.h>
38#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020039#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010041#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020042#include <proto/sample.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020043#include <proto/sock_raw.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010044#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010045#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010046#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020048struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010049struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Willy Tarreau81f9aa32010-06-01 17:45:26 +020051/* This function is called from the protocol layer accept() in order to instanciate
52 * a new session on behalf of a given listener and frontend. It returns a positive
Willy Tarreauabe8ea52010-11-11 10:56:04 +010053 * value upon success, 0 if the connection can be ignored, or a negative value upon
54 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020055 */
56int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
57{
58 struct proxy *p = l->frontend;
59 struct session *s;
60 struct http_txn *txn;
61 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010062 int ret;
63
64
65 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020066
Willy Tarreaufffe1322010-11-11 09:48:16 +010067 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020068 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020069
70 /* minimum session initialization required for monitor mode below */
71 s->flags = 0;
72 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020073 s->stkctr1_entry = NULL;
74 s->stkctr2_entry = NULL;
75 s->stkctr1_table = NULL;
76 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020077
Willy Tarreauabe8ea52010-11-11 10:56:04 +010078 if (unlikely((t = task_new()) == NULL))
79 goto out_free_session;
80
Willy Tarreau81f9aa32010-06-01 17:45:26 +020081 /* OK, we're keeping the session, so let's properly initialize the session */
82 LIST_ADDQ(&sessions, &s->list);
83 LIST_INIT(&s->back_refs);
84
Willy Tarreaubd833142012-05-08 15:51:44 +020085 s->unique_id = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020086 s->term_trace = 0;
Willy Tarreau6471afb2011-09-23 10:54:59 +020087 s->si[0].addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020088 s->logs.accept_date = date; /* user-visible date for logging */
89 s->logs.tv_accept = now; /* corrected date for internal use */
90 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +020091 p->feconn++; /* beconn will be increased once assigned */
92
Willy Tarreaub36b4242010-06-04 20:59:39 +020093 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020094
95 t->process = l->handler;
96 t->context = s;
97 t->nice = l->nice;
98 t->expire = TICK_ETERNITY;
99
100 s->task = t;
101 s->listener = l;
102
103 /* Note: initially, the session's backend points to the frontend.
104 * This changes later when switching rules are executed or
105 * when the default backend is assigned.
106 */
107 s->be = s->fe = p;
108 s->req = s->rep = NULL; /* will be allocated later */
109
Willy Tarreaufe7f1ea2012-05-20 19:22:25 +0200110 /* if this session comes from a known monitoring system, we want to ignore
111 * it as soon as possible, which means closing it immediately for TCP, but
112 * cleanly.
113 */
114 if (unlikely((l->options & LI_O_CHK_MONNET) &&
115 addr->ss_family == AF_INET &&
116 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
117 s->flags |= SN_MONITOR;
118 s->logs.logwait = 0;
119 }
120
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200121 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
122 * to abort right here as soon as possible, we check the rules before
123 * even initializing the stream interfaces.
124 */
125 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200126 /* let's do a no-linger now to close with a single RST. */
127 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100128 ret = 0; /* successful termination */
129 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200130 }
131
Willy Tarreaub36b4242010-06-04 20:59:39 +0200132 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100133 if (p->feconn > p->fe_counters.conn_max)
134 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100135
Willy Tarreaub36b4242010-06-04 20:59:39 +0200136 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200137 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200138 void *ptr;
139
Willy Tarreau56123282010-08-06 19:06:56 +0200140 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200141 if (ptr)
142 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200143
Willy Tarreau56123282010-08-06 19:06:56 +0200144 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200145 if (ptr)
146 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200147 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200148 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200149
Willy Tarreau56123282010-08-06 19:06:56 +0200150 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200151 void *ptr;
152
Willy Tarreau56123282010-08-06 19:06:56 +0200153 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200154 if (ptr)
155 stktable_data_cast(ptr, sess_cnt)++;
156
Willy Tarreau56123282010-08-06 19:06:56 +0200157 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200158 if (ptr)
159 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200160 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200161 }
162
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200163 /* this part should be common with other protocols */
164 s->si[0].fd = cfd;
165 s->si[0].owner = t;
166 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
167 s->si[0].err_type = SI_ET_NONE;
168 s->si[0].err_loc = NULL;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200169 s->si[0].conn.ctrl = l->proto;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200170 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200171 s->si[0].send_proxy_ofs = 0;
Willy Tarreau1539a012012-05-11 14:47:34 +0200172 set_target_client(&s->si[0].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200173 s->si[0].exp = TICK_ETERNITY;
174 s->si[0].flags = SI_FL_NONE;
175
176 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
177 s->si[0].flags |= SI_FL_INDEP_STR;
178
179 if (addr->ss_family == AF_INET || addr->ss_family == AF_INET6)
180 s->si[0].flags = SI_FL_CAP_SPLTCP; /* TCP/TCPv6 splicing possible */
181
182 /* add the various callbacks */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200183 stream_interface_prepare(&s->si[0], &sock_raw);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200184
185 /* pre-initialize the other side's stream interface to an INIT state. The
186 * callbacks will be initialized before attempting to connect.
187 */
188 s->si[1].fd = -1; /* just to help with debugging */
189 s->si[1].owner = t;
190 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
191 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200192 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200193 s->si[1].err_loc = NULL;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200194 s->si[1].conn.ctrl = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200195 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200196 s->si[1].send_proxy_ofs = 0;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100197 clear_target(&s->si[1].target);
Willy Tarreauf873d752012-05-11 17:47:17 +0200198 stream_interface_prepare(&s->si[1], &stream_int_embedded);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200199 s->si[1].exp = TICK_ETERNITY;
200 s->si[1].flags = SI_FL_NONE;
201
202 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
203 s->si[1].flags |= SI_FL_INDEP_STR;
204
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200205 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100206 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200207 s->pend_pos = NULL;
208
209 /* init store persistence */
210 s->store_count = 0;
211
212 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100213 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200214 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200215
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200216 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
217 goto out_free_task; /* no memory */
218
219 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
220 goto out_free_req; /* no memory */
221
222 /* initialize the request buffer */
223 s->req->size = global.tune.bufsize;
224 buffer_init(s->req);
225 s->req->prod = &s->si[0];
226 s->req->cons = &s->si[1];
227 s->si[0].ib = s->si[1].ob = s->req;
228 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
229
230 /* activate default analysers enabled for this listener */
231 s->req->analysers = l->analysers;
232
233 s->req->wto = TICK_ETERNITY;
234 s->req->rto = TICK_ETERNITY;
235 s->req->rex = TICK_ETERNITY;
236 s->req->wex = TICK_ETERNITY;
237 s->req->analyse_exp = TICK_ETERNITY;
238
239 /* initialize response buffer */
240 s->rep->size = global.tune.bufsize;
241 buffer_init(s->rep);
242 s->rep->prod = &s->si[1];
243 s->rep->cons = &s->si[0];
244 s->si[0].ob = s->si[1].ib = s->rep;
245 s->rep->analysers = 0;
246
Willy Tarreau96e31212011-05-30 18:10:30 +0200247 if (s->fe->options2 & PR_O2_NODELAY) {
248 s->req->flags |= BF_NEVER_WAIT;
249 s->rep->flags |= BF_NEVER_WAIT;
250 }
251
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200252 s->rep->rto = TICK_ETERNITY;
253 s->rep->wto = TICK_ETERNITY;
254 s->rep->rex = TICK_ETERNITY;
255 s->rep->wex = TICK_ETERNITY;
256 s->rep->analyse_exp = TICK_ETERNITY;
257
Willy Tarreau62f791e2012-03-09 11:32:30 +0100258 txn = &s->txn;
259 /* Those variables will be checked and freed if non-NULL in
260 * session.c:session_free(). It is important that they are
261 * properly initialized.
262 */
263 txn->sessid = NULL;
264 txn->srv_cookie = NULL;
265 txn->cli_cookie = NULL;
266 txn->uri = NULL;
267 txn->req.cap = NULL;
268 txn->rsp.cap = NULL;
269 txn->hdr_idx.v = NULL;
270 txn->hdr_idx.size = txn->hdr_idx.used = 0;
271 txn->req.flags = 0;
272 txn->rsp.flags = 0;
273 /* the HTTP messages need to know what buffer they're associated with */
274 txn->req.buf = s->req;
275 txn->rsp.buf = s->rep;
276
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200277 /* finish initialization of the accepted file descriptor */
278 fd_insert(cfd);
279 fdtab[cfd].owner = &s->si[0];
280 fdtab[cfd].state = FD_STREADY;
281 fdtab[cfd].flags = 0;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200282 fdtab[cfd].cb[DIR_RD].f = si_data(&s->si[0])->read;
283 fdtab[cfd].cb[DIR_WR].f = si_data(&s->si[0])->write;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200284 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
285 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200286 EV_FD_SET(cfd, DIR_RD);
287
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100288 if (p->accept && (ret = p->accept(s)) <= 0) {
289 /* Either we had an unrecoverable error (<0) or work is
290 * finished (=0, eg: monitoring), in both situations,
291 * we can release everything and close.
292 */
293 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200294 }
295
296 /* it is important not to call the wakeup function directly but to
297 * pass through task_wakeup(), because this one knows how to apply
298 * priorities to tasks.
299 */
300 task_wakeup(t, TASK_WOKEN_INIT);
301 return 1;
302
303 /* Error unrolling */
304 out_free_rep:
305 pool_free2(pool2_buffer, s->rep);
306 out_free_req:
307 pool_free2(pool2_buffer, s->req);
308 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200309 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200310 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200311 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200312 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200313 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100314 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200315 pool_free2(pool2_session, s);
316 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200317 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
318 /* critical error, no more memory, try to emit a 500 response */
319 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
320 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
321 }
322
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100323 if (fdtab[cfd].state != FD_STCLOSE)
324 fd_delete(cfd);
325 else
326 close(cfd);
327 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200328}
329
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330/*
331 * frees the context associated to a session. It must have been removed first.
332 */
Simon Hormandec5be42011-06-08 09:19:07 +0900333static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200334{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100335 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200336 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100337 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200338 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100339
Willy Tarreaubaaee002006-06-26 02:48:02 +0200340 if (s->pend_pos)
341 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100342
Willy Tarreau827aee92011-03-10 16:55:02 +0100343 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100344 if (s->flags & SN_CURR_SESS) {
345 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100346 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100347 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100348 if (may_dequeue_tasks(target_srv(&s->target), s->be))
349 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100350 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100351
Willy Tarreau7c669d72008-06-20 15:04:11 +0200352 if (unlikely(s->srv_conn)) {
353 /* the session still has a reserved slot on a server, but
354 * it should normally be only the same as the one above,
355 * so this should not happen in fact.
356 */
357 sess_change_server(s, NULL);
358 }
359
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100360 if (s->req->pipe)
361 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100362
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100363 if (s->rep->pipe)
364 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100365
Willy Tarreau48d63db2008-08-03 17:41:33 +0200366 pool_free2(pool2_buffer, s->req);
367 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200368
Willy Tarreau46023632010-01-07 22:51:47 +0100369 http_end_txn(s);
370
Willy Tarreaua4cda672010-06-06 18:28:49 +0200371 for (i = 0; i < s->store_count; i++) {
372 if (!s->store[i].ts)
373 continue;
374 stksess_free(s->store[i].table, s->store[i].ts);
375 s->store[i].ts = NULL;
376 }
377
Willy Tarreau34eb6712011-10-24 18:15:04 +0200378 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200379 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100380 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
381 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200382 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100383
Willy Tarreau56123282010-08-06 19:06:56 +0200384 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200385 session_store_counters(s);
386
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100387 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100388 /* we have to unlink all watchers. We must not relink them if
389 * this session was the last one in the list.
390 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100391 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100392 LIST_INIT(&bref->users);
393 if (s->list.n != &sessions)
394 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100395 bref->ref = s->list.n;
396 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100397 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200398 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200399
400 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200401 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200402 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200403 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200404 pool_flush2(pool2_requri);
405 pool_flush2(pool2_capture);
406 pool_flush2(pool2_session);
407 pool_flush2(fe->req_cap_pool);
408 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200409 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200410}
411
412
413/* perform minimal intializations, report 0 in case of error, 1 if OK. */
414int init_session()
415{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100416 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200417 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
418 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419}
420
Willy Tarreau30e71012007-11-26 20:15:35 +0100421void session_process_counters(struct session *s)
422{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100423 unsigned long long bytes;
424
Willy Tarreau30e71012007-11-26 20:15:35 +0100425 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100426 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100427 s->logs.bytes_in = s->req->total;
428 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100429 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100430
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100431 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100432
Willy Tarreau827aee92011-03-10 16:55:02 +0100433 if (target_srv(&s->target))
434 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200435
436 if (s->listener->counters)
437 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200438
Willy Tarreau56123282010-08-06 19:06:56 +0200439 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200440 void *ptr;
441
Willy Tarreau56123282010-08-06 19:06:56 +0200442 ptr = stktable_data_ptr(s->stkctr2_table,
443 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200444 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200445 if (ptr)
446 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200447
Willy Tarreau56123282010-08-06 19:06:56 +0200448 ptr = stktable_data_ptr(s->stkctr2_table,
449 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200450 STKTABLE_DT_BYTES_IN_RATE);
451 if (ptr)
452 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200453 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200454 }
455
Willy Tarreau56123282010-08-06 19:06:56 +0200456 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200457 void *ptr;
458
Willy Tarreau56123282010-08-06 19:06:56 +0200459 ptr = stktable_data_ptr(s->stkctr1_table,
460 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200461 STKTABLE_DT_BYTES_IN_CNT);
462 if (ptr)
463 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
464
Willy Tarreau56123282010-08-06 19:06:56 +0200465 ptr = stktable_data_ptr(s->stkctr1_table,
466 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200467 STKTABLE_DT_BYTES_IN_RATE);
468 if (ptr)
469 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200470 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200471 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100472 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100473 }
474
Willy Tarreau30e71012007-11-26 20:15:35 +0100475 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100476 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100477 s->logs.bytes_out = s->rep->total;
478 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100479 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100480
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100481 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100482
Willy Tarreau827aee92011-03-10 16:55:02 +0100483 if (target_srv(&s->target))
484 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200485
486 if (s->listener->counters)
487 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200488
Willy Tarreau56123282010-08-06 19:06:56 +0200489 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200490 void *ptr;
491
Willy Tarreau56123282010-08-06 19:06:56 +0200492 ptr = stktable_data_ptr(s->stkctr2_table,
493 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200494 STKTABLE_DT_BYTES_OUT_CNT);
495 if (ptr)
496 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
497
Willy Tarreau56123282010-08-06 19:06:56 +0200498 ptr = stktable_data_ptr(s->stkctr2_table,
499 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200500 STKTABLE_DT_BYTES_OUT_RATE);
501 if (ptr)
502 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200503 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200504 }
505
Willy Tarreau56123282010-08-06 19:06:56 +0200506 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200507 void *ptr;
508
Willy Tarreau56123282010-08-06 19:06:56 +0200509 ptr = stktable_data_ptr(s->stkctr1_table,
510 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200511 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200512 if (ptr)
513 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200514
Willy Tarreau56123282010-08-06 19:06:56 +0200515 ptr = stktable_data_ptr(s->stkctr1_table,
516 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200517 STKTABLE_DT_BYTES_OUT_RATE);
518 if (ptr)
519 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200520 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200521 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100522 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100523 }
524}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100526/* This function is called with (si->state == SI_ST_CON) meaning that a
527 * connection was attempted and that the file descriptor is already allocated.
528 * We must check for establishment, error and abort. Possible output states
529 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
530 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
531 * otherwise 1.
532 */
Simon Hormandec5be42011-06-08 09:19:07 +0900533static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100534{
535 struct buffer *req = si->ob;
536 struct buffer *rep = si->ib;
537
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100538 /* If we got an error, or if nothing happened and the connection timed
539 * out, we must give up. The CER state handler will take care of retry
540 * attempts and error reports.
541 */
542 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100543 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100544 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200545 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100546 fd_delete(si->fd);
547
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200548 if (si->release)
549 si->release(si);
550
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100551 if (si->err_type)
552 return 0;
553
Willy Tarreau827aee92011-03-10 16:55:02 +0100554 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100555 if (si->flags & SI_FL_ERR)
556 si->err_type = SI_ET_CONN_ERR;
557 else
558 si->err_type = SI_ET_CONN_TO;
559 return 0;
560 }
561
562 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200563 if (unlikely((rep->flags & BF_SHUTW) ||
564 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200565 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100566 s->be->options & PR_O_ABRT_CLOSE)))) {
567 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200568 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100569 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100570 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200571 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100572 if (s->srv_error)
573 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100574 return 1;
575 }
576
577 /* we need to wait a bit more if there was no activity either */
578 if (!(req->flags & BF_WRITE_ACTIVITY))
579 return 1;
580
581 /* OK, this means that a connection succeeded. The caller will be
582 * responsible for handling the transition from CON to EST.
583 */
584 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100585 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100586 si->state = SI_ST_EST;
587 si->err_type = SI_ET_NONE;
588 si->err_loc = NULL;
589 return 1;
590}
591
592/* This function is called with (si->state == SI_ST_CER) meaning that a
593 * previous connection attempt has failed and that the file descriptor
594 * has already been released. Possible causes include asynchronous error
595 * notification and time out. Possible output states are SI_ST_CLO when
596 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
597 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
598 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
599 * marked as in error state. It returns 0.
600 */
Simon Hormandec5be42011-06-08 09:19:07 +0900601static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100602{
603 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100604 if (target_srv(&s->target)) {
605 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100606
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100607 if (s->flags & SN_CURR_SESS) {
608 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100609 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100610 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100611 }
612
613 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200614 si->conn_retries--;
615 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100616 if (!si->err_type) {
617 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100618 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100619 }
620
Willy Tarreau827aee92011-03-10 16:55:02 +0100621 if (target_srv(&s->target))
622 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100623 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100624 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100625 if (may_dequeue_tasks(target_srv(&s->target), s->be))
626 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100627
628 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200629 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100630 si->ob->flags |= BF_WRITE_ERROR;
631 si->ib->flags |= BF_READ_ERROR;
632
633 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100634 if (s->srv_error)
635 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100636 return 0;
637 }
638
639 /* If the "redispatch" option is set on the backend, we are allowed to
640 * retry on another server for the last retry. In order to achieve this,
641 * we must mark the session unassigned, and eventually clear the DIRECT
642 * bit to ignore any persistence cookie. We won't count a retry nor a
643 * redispatch yet, because this will depend on what server is selected.
644 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100645 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100646 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100647 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100648 if (may_dequeue_tasks(target_srv(&s->target), s->be))
649 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100650
651 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100652 si->state = SI_ST_REQ;
653 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100654 if (target_srv(&s->target))
655 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100656 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100657 si->state = SI_ST_ASS;
658 }
659
660 if (si->flags & SI_FL_ERR) {
661 /* The error was an asynchronous connection error, and we will
662 * likely have to retry connecting to the same server, most
663 * likely leading to the same result. To avoid this, we wait
664 * one second before retrying.
665 */
666
667 if (!si->err_type)
668 si->err_type = SI_ET_CONN_ERR;
669
670 si->state = SI_ST_TAR;
671 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
672 return 0;
673 }
674 return 0;
675}
676
677/*
678 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200679 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200680 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100681 */
Simon Hormandec5be42011-06-08 09:19:07 +0900682static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100683{
684 struct buffer *req = si->ob;
685 struct buffer *rep = si->ib;
686
Willy Tarreau827aee92011-03-10 16:55:02 +0100687 if (target_srv(&s->target))
688 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100689
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100690 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100691 /* if the user wants to log as soon as possible, without counting
692 * bytes from the server, then this is the right moment. */
693 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
694 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100695 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100696 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100697 }
698 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100699 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
700 /* reset hdr_idx which was already initialized by the request.
701 * right now, the http parser does it.
702 * hdr_idx_init(&s->txn.hdr_idx);
703 */
704 }
705
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200706 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100707 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200708 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200709 /* real connections have timeouts */
710 req->wto = s->be->timeout.server;
711 rep->rto = s->be->timeout.server;
712 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100713 req->wex = TICK_ETERNITY;
714}
715
716/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
717 * Other input states are simply ignored.
718 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
719 * Flags must have previously been updated for timeouts and other conditions.
720 */
Simon Hormandec5be42011-06-08 09:19:07 +0900721static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100722{
Willy Tarreau827aee92011-03-10 16:55:02 +0100723 struct server *srv = target_srv(&s->target);
724
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100725 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100726 now_ms, __FUNCTION__,
727 s,
728 s->req, s->rep,
729 s->req->rex, s->rep->wex,
730 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100731 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100732
733 if (si->state == SI_ST_ASS) {
734 /* Server assigned to connection request, we have to try to connect now */
735 int conn_err;
736
737 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100738 srv = target_srv(&s->target);
739
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100740 if (conn_err == SN_ERR_NONE) {
741 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100742 if (srv)
743 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100744 return;
745 }
746
747 /* We have received a synchronous error. We might have to
748 * abort, retry immediately or redispatch.
749 */
750 if (conn_err == SN_ERR_INTERNAL) {
751 if (!si->err_type) {
752 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100753 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100754 }
755
Willy Tarreau827aee92011-03-10 16:55:02 +0100756 if (srv)
757 srv_inc_sess_ctr(srv);
758 if (srv)
759 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100760 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761
762 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100763 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100764 if (may_dequeue_tasks(srv, s->be))
765 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100766
767 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200768 si_shutr(si);
769 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100770 si->ob->flags |= BF_WRITE_ERROR;
771
772 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
773
774 /* no session was ever accounted for this server */
775 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100776 if (s->srv_error)
777 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100778 return;
779 }
780
781 /* We are facing a retryable error, but we don't want to run a
782 * turn-around now, as the problem is likely a source port
783 * allocation problem, so we want to retry now.
784 */
785 si->state = SI_ST_CER;
786 si->flags &= ~SI_FL_ERR;
787 sess_update_st_cer(s, si);
788 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
789 return;
790 }
791 else if (si->state == SI_ST_QUE) {
792 /* connection request was queued, check for any update */
793 if (!s->pend_pos) {
794 /* The connection is not in the queue anymore. Either
795 * we have a server connection slot available and we
796 * go directly to the assigned state, or we need to
797 * load-balance first and go to the INI state.
798 */
799 si->exp = TICK_ETERNITY;
800 if (unlikely(!(s->flags & SN_ASSIGNED)))
801 si->state = SI_ST_REQ;
802 else {
803 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
804 si->state = SI_ST_ASS;
805 }
806 return;
807 }
808
809 /* Connection request still in queue... */
810 if (si->flags & SI_FL_EXP) {
811 /* ... and timeout expired */
812 si->exp = TICK_ETERNITY;
813 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100814 if (srv)
815 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100816 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200817 si_shutr(si);
818 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100819 si->ob->flags |= BF_WRITE_TIMEOUT;
820 if (!si->err_type)
821 si->err_type = SI_ET_QUEUE_TO;
822 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100823 if (s->srv_error)
824 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100825 return;
826 }
827
828 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200829 if ((si->ob->flags & (BF_READ_ERROR)) ||
830 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200831 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100832 /* give up */
833 si->exp = TICK_ETERNITY;
834 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200835 si_shutr(si);
836 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100837 si->err_type |= SI_ET_QUEUE_ABRT;
838 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100839 if (s->srv_error)
840 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100841 return;
842 }
843
844 /* Nothing changed */
845 return;
846 }
847 else if (si->state == SI_ST_TAR) {
848 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200849 if ((si->ob->flags & (BF_READ_ERROR)) ||
850 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200851 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100852 /* give up */
853 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200854 si_shutr(si);
855 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100856 si->err_type |= SI_ET_CONN_ABRT;
857 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100858 if (s->srv_error)
859 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100860 return;
861 }
862
863 if (!(si->flags & SI_FL_EXP))
864 return; /* still in turn-around */
865
866 si->exp = TICK_ETERNITY;
867
868 /* we keep trying on the same server as long as the session is
869 * marked "assigned".
870 * FIXME: Should we force a redispatch attempt when the server is down ?
871 */
872 if (s->flags & SN_ASSIGNED)
873 si->state = SI_ST_ASS;
874 else
875 si->state = SI_ST_REQ;
876 return;
877 }
878}
879
Simon Hormandec5be42011-06-08 09:19:07 +0900880/* Set correct session termination flags in case no analyser has done it. It
881 * also counts a failed request if the server state has not reached the request
882 * stage.
883 */
884static void sess_set_term_flags(struct session *s)
885{
886 if (!(s->flags & SN_FINST_MASK)) {
887 if (s->si[1].state < SI_ST_REQ) {
888
889 s->fe->fe_counters.failed_req++;
890 if (s->listener->counters)
891 s->listener->counters->failed_req++;
892
893 s->flags |= SN_FINST_R;
894 }
895 else if (s->si[1].state == SI_ST_QUE)
896 s->flags |= SN_FINST_Q;
897 else if (s->si[1].state < SI_ST_EST)
898 s->flags |= SN_FINST_C;
899 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
900 s->flags |= SN_FINST_D;
901 else
902 s->flags |= SN_FINST_L;
903 }
904}
905
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100906/* This function initiates a server connection request on a stream interface
907 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
908 * indicating that a server has been assigned. It may also return SI_ST_QUE,
909 * or SI_ST_CLO upon error.
910 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100911static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
912{
913 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100914 now_ms, __FUNCTION__,
915 s,
916 s->req, s->rep,
917 s->req->rex, s->rep->wex,
918 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100919 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920
921 if (si->state != SI_ST_REQ)
922 return;
923
924 /* Try to assign a server */
925 if (srv_redispatch_connect(s) != 0) {
926 /* We did not get a server. Either we queued the
927 * connection request, or we encountered an error.
928 */
929 if (si->state == SI_ST_QUE)
930 return;
931
932 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200933 si_shutr(si);
934 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100935 si->ob->flags |= BF_WRITE_ERROR;
936 if (!si->err_type)
937 si->err_type = SI_ET_CONN_OTHER;
938 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100939 if (s->srv_error)
940 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100941 return;
942 }
943
944 /* The server is assigned */
945 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
946 si->state = SI_ST_ASS;
947}
948
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200949/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100950 * if appropriate. The default_backend rule is also considered, then the
951 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200952 * It returns 1 if the processing can continue on next analysers, or zero if it
953 * either needs more data or wants to immediately abort the request.
954 */
Simon Hormandec5be42011-06-08 09:19:07 +0900955static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200956{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200957 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100958
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200959 req->analysers &= ~an_bit;
960 req->analyse_exp = TICK_ETERNITY;
961
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100962 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200963 now_ms, __FUNCTION__,
964 s,
965 req,
966 req->rex, req->wex,
967 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100968 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200969 req->analysers);
970
971 /* now check whether we have some switching rules for this request */
972 if (!(s->flags & SN_BE_ASSIGNED)) {
973 struct switching_rule *rule;
974
975 list_for_each_entry(rule, &s->fe->switching_rules, list) {
976 int ret;
977
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200978 ret = acl_exec_cond(rule->cond, s->fe, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200979 ret = acl_pass(ret);
980 if (rule->cond->pol == ACL_COND_UNLESS)
981 ret = !ret;
982
983 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200984 if (!session_set_backend(s, rule->be.backend))
985 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200986 break;
987 }
988 }
989
990 /* To ensure correct connection accounting on the backend, we
991 * have to assign one if it was not set (eg: a listen). This
992 * measure also takes care of correctly setting the default
993 * backend if any.
994 */
995 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200996 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
997 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200998 }
999
Willy Tarreaufb356202010-08-03 14:02:05 +02001000 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1001 if (s->fe == s->be) {
1002 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001003 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001004 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001005
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001006 /* as soon as we know the backend, we must check if we have a matching forced or ignored
Willy Tarreau4de91492010-01-22 19:10:05 +01001007 * persistence rule, and report that in the session.
1008 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001009 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001010 int ret = 1;
1011
1012 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001013 ret = acl_exec_cond(prst_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4de91492010-01-22 19:10:05 +01001014 ret = acl_pass(ret);
1015 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1016 ret = !ret;
1017 }
1018
1019 if (ret) {
1020 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001021 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1022 s->flags |= SN_FORCE_PRST;
1023 } else {
1024 s->flags |= SN_IGNORE_PRST;
1025 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001026 break;
1027 }
1028 }
1029
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001030 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001031
1032 sw_failed:
1033 /* immediately abort this request in case of allocation failure */
1034 buffer_abort(s->req);
1035 buffer_abort(s->rep);
1036
1037 if (!(s->flags & SN_ERR_MASK))
1038 s->flags |= SN_ERR_RESOURCE;
1039 if (!(s->flags & SN_FINST_MASK))
1040 s->flags |= SN_FINST_R;
1041
1042 s->txn.status = 500;
1043 s->req->analysers = 0;
1044 s->req->analyse_exp = TICK_ETERNITY;
1045 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001046}
1047
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001048/* This stream analyser works on a request. It applies all use-server rules on
1049 * it then returns 1. The data must already be present in the buffer otherwise
1050 * they won't match. It always returns 1.
1051 */
1052static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1053{
1054 struct proxy *px = s->be;
1055 struct server_rule *rule;
1056
1057 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1058 now_ms, __FUNCTION__,
1059 s,
1060 req,
1061 req->rex, req->wex,
1062 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001063 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001064 req->analysers);
1065
1066 if (!(s->flags & SN_ASSIGNED)) {
1067 list_for_each_entry(rule, &px->server_rules, list) {
1068 int ret;
1069
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001070 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001071 ret = acl_pass(ret);
1072 if (rule->cond->pol == ACL_COND_UNLESS)
1073 ret = !ret;
1074
1075 if (ret) {
1076 struct server *srv = rule->srv.ptr;
1077
1078 if ((srv->state & SRV_RUNNING) ||
1079 (px->options & PR_O_PERSIST) ||
1080 (s->flags & SN_FORCE_PRST)) {
1081 s->flags |= SN_DIRECT | SN_ASSIGNED;
1082 set_target_server(&s->target, srv);
1083 break;
1084 }
1085 /* if the server is not UP, let's go on with next rules
1086 * just in case another one is suited.
1087 */
1088 }
1089 }
1090 }
1091
1092 req->analysers &= ~an_bit;
1093 req->analyse_exp = TICK_ETERNITY;
1094 return 1;
1095}
1096
Emeric Brun1d33b292010-01-04 15:47:17 +01001097/* This stream analyser works on a request. It applies all sticking rules on
1098 * it then returns 1. The data must already be present in the buffer otherwise
1099 * they won't match. It always returns 1.
1100 */
Simon Hormandec5be42011-06-08 09:19:07 +09001101static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001102{
1103 struct proxy *px = s->be;
1104 struct sticking_rule *rule;
1105
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001106 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001107 now_ms, __FUNCTION__,
1108 s,
1109 req,
1110 req->rex, req->wex,
1111 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001112 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001113 req->analysers);
1114
1115 list_for_each_entry(rule, &px->sticking_rules, list) {
1116 int ret = 1 ;
1117 int i;
1118
1119 for (i = 0; i < s->store_count; i++) {
1120 if (rule->table.t == s->store[i].table)
1121 break;
1122 }
1123
1124 if (i != s->store_count)
1125 continue;
1126
1127 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001128 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001129 ret = acl_pass(ret);
1130 if (rule->cond->pol == ACL_COND_UNLESS)
1131 ret = !ret;
1132 }
1133
1134 if (ret) {
1135 struct stktable_key *key;
1136
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001137 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001138 if (!key)
1139 continue;
1140
1141 if (rule->flags & STK_IS_MATCH) {
1142 struct stksess *ts;
1143
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001144 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001145 if (!(s->flags & SN_ASSIGNED)) {
1146 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001147 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001148
1149 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001150 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1151 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001152 if (node) {
1153 struct server *srv;
1154
1155 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001156 if ((srv->state & SRV_RUNNING) ||
1157 (px->options & PR_O_PERSIST) ||
1158 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001159 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001160 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001161 }
1162 }
1163 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001164 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001165 }
1166 }
1167 if (rule->flags & STK_IS_STORE) {
1168 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1169 struct stksess *ts;
1170
1171 ts = stksess_new(rule->table.t, key);
1172 if (ts) {
1173 s->store[s->store_count].table = rule->table.t;
1174 s->store[s->store_count++].ts = ts;
1175 }
1176 }
1177 }
1178 }
1179 }
1180
1181 req->analysers &= ~an_bit;
1182 req->analyse_exp = TICK_ETERNITY;
1183 return 1;
1184}
1185
1186/* This stream analyser works on a response. It applies all store rules on it
1187 * then returns 1. The data must already be present in the buffer otherwise
1188 * they won't match. It always returns 1.
1189 */
Simon Hormandec5be42011-06-08 09:19:07 +09001190static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001191{
1192 struct proxy *px = s->be;
1193 struct sticking_rule *rule;
1194 int i;
1195
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001196 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001197 now_ms, __FUNCTION__,
1198 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001199 rep,
1200 rep->rex, rep->wex,
1201 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001202 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001203 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001204
1205 list_for_each_entry(rule, &px->storersp_rules, list) {
1206 int ret = 1 ;
1207 int storereqidx = -1;
1208
1209 for (i = 0; i < s->store_count; i++) {
1210 if (rule->table.t == s->store[i].table) {
1211 if (!(s->store[i].flags))
1212 storereqidx = i;
1213 break;
1214 }
1215 }
1216
1217 if ((i != s->store_count) && (storereqidx == -1))
1218 continue;
1219
1220 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001221 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001222 ret = acl_pass(ret);
1223 if (rule->cond->pol == ACL_COND_UNLESS)
1224 ret = !ret;
1225 }
1226
1227 if (ret) {
1228 struct stktable_key *key;
1229
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001230 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001231 if (!key)
1232 continue;
1233
1234 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001235 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001236 s->store[storereqidx].flags = 1;
1237 }
1238 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1239 struct stksess *ts;
1240
1241 ts = stksess_new(rule->table.t, key);
1242 if (ts) {
1243 s->store[s->store_count].table = rule->table.t;
1244 s->store[s->store_count].flags = 1;
1245 s->store[s->store_count++].ts = ts;
1246 }
1247 }
1248 }
1249 }
1250
1251 /* process store request and store response */
1252 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001253 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001254 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001255
Simon Hormanfa461682011-06-25 09:39:49 +09001256 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1257 stksess_free(s->store[i].table, s->store[i].ts);
1258 s->store[i].ts = NULL;
1259 continue;
1260 }
1261
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001262 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1263 if (ts) {
1264 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001265 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001266 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001267 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001268 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001269 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001270
1271 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001272 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001273 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001274 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001275 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001276
1277 rep->analysers &= ~an_bit;
1278 rep->analyse_exp = TICK_ETERNITY;
1279 return 1;
1280}
1281
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001282/* This macro is very specific to the function below. See the comments in
1283 * process_session() below to understand the logic and the tests.
1284 */
1285#define UPDATE_ANALYSERS(real, list, back, flag) { \
1286 list = (((list) & ~(flag)) | ~(back)) & (real); \
1287 back = real; \
1288 if (!(list)) \
1289 break; \
1290 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1291 continue; \
1292}
1293
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001294/* Processes the client, server, request and response jobs of a session task,
1295 * then puts it back to the wait queue in a clean state, or cleans up its
1296 * resources if it must be deleted. Returns in <next> the date the task wants
1297 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1298 * nothing too many times, the request and response buffers flags are monitored
1299 * and each function is called only if at least another function has changed at
1300 * least one flag it is interested in.
1301 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001302struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001303{
Willy Tarreau827aee92011-03-10 16:55:02 +01001304 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001305 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001306 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001307 unsigned int rq_prod_last, rq_cons_last;
1308 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001309 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001310
1311 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1312 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1313
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001314 /* this data may be no longer valid, clear it */
1315 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1316
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001317 /* This flag must explicitly be set every time */
1318 s->req->flags &= ~BF_READ_NOEXP;
1319
1320 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001321 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1322 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001323
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001324 /* we don't want the stream interface functions to recursively wake us up */
1325 if (s->req->prod->owner == t)
1326 s->req->prod->flags |= SI_FL_DONT_WAKE;
1327 if (s->req->cons->owner == t)
1328 s->req->cons->flags |= SI_FL_DONT_WAKE;
1329
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001330 /* 1a: Check for low level timeouts if needed. We just set a flag on
1331 * stream interfaces when their timeouts have expired.
1332 */
1333 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1334 stream_int_check_timeouts(&s->si[0]);
1335 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001336
1337 /* check buffer timeouts, and close the corresponding stream interfaces
1338 * for future reads or writes. Note: this will also concern upper layers
1339 * but we do not touch any other flag. We must be careful and correctly
1340 * detect state changes when calling them.
1341 */
1342
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001343 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001344
Willy Tarreau14641402009-12-29 14:49:56 +01001345 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1346 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001347 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001348 }
1349
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001350 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT)) {
1351 if (s->req->prod->flags & SI_FL_NOHALF)
1352 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001353 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001354 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001355
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001356 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001357
Willy Tarreau14641402009-12-29 14:49:56 +01001358 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1359 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001360 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001361 }
1362
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001363 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT)) {
1364 if (s->rep->prod->flags & SI_FL_NOHALF)
1365 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001366 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001367 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001368 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001369
1370 /* 1b: check for low-level errors reported at the stream interface.
1371 * First we check if it's a retryable error (in which case we don't
1372 * want to tell the buffer). Otherwise we report the error one level
1373 * upper by setting flags into the buffers. Note that the side towards
1374 * the client cannot have connect (hence retryable) errors. Also, the
1375 * connection setup code must be able to deal with any type of abort.
1376 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001377 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001378 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1379 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001380 si_shutr(&s->si[0]);
1381 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001382 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001383 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001384 s->be->be_counters.cli_aborts++;
1385 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001386 if (srv)
1387 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001388 if (!(s->flags & SN_ERR_MASK))
1389 s->flags |= SN_ERR_CLICL;
1390 if (!(s->flags & SN_FINST_MASK))
1391 s->flags |= SN_FINST_D;
1392 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001393 }
1394 }
1395
1396 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1397 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001398 si_shutr(&s->si[1]);
1399 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001400 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001401 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001402 if (srv)
1403 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001404 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001405 s->be->be_counters.srv_aborts++;
1406 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001407 if (srv)
1408 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001409 if (!(s->flags & SN_ERR_MASK))
1410 s->flags |= SN_ERR_SRVCL;
1411 if (!(s->flags & SN_FINST_MASK))
1412 s->flags |= SN_FINST_D;
1413 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001414 }
1415 /* note: maybe we should process connection errors here ? */
1416 }
1417
1418 if (s->si[1].state == SI_ST_CON) {
1419 /* we were trying to establish a connection on the server side,
1420 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1421 */
1422 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1423 sess_update_st_cer(s, &s->si[1]);
1424 else if (s->si[1].state == SI_ST_EST)
1425 sess_establish(s, &s->si[1]);
1426
1427 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1428 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1429 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1430 */
1431 }
1432
Willy Tarreau815a9b22010-07-27 17:15:12 +02001433 rq_prod_last = s->si[0].state;
1434 rq_cons_last = s->si[1].state;
1435 rp_cons_last = s->si[0].state;
1436 rp_prod_last = s->si[1].state;
1437
1438 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001439 /* Check for connection closure */
1440
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001441 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001442 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001443 now_ms, __FUNCTION__, __LINE__,
1444 t,
1445 s, s->flags,
1446 s->req, s->rep,
1447 s->req->rex, s->rep->wex,
1448 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001449 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001450 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001451 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001452
1453 /* nothing special to be done on client side */
1454 if (unlikely(s->req->prod->state == SI_ST_DIS))
1455 s->req->prod->state = SI_ST_CLO;
1456
1457 /* When a server-side connection is released, we have to count it and
1458 * check for pending connections on this server.
1459 */
1460 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1461 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001462 srv = target_srv(&s->target);
1463 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001464 if (s->flags & SN_CURR_SESS) {
1465 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001466 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001467 }
1468 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001469 if (may_dequeue_tasks(srv, s->be))
1470 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001471 }
1472 }
1473
1474 /*
1475 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1476 * at this point.
1477 */
1478
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001479 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001480 /* Analyse request */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001481 if (((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001482 ((s->req->flags ^ rqf_last) & BF_MASK_STATIC) ||
1483 s->si[0].state != rq_prod_last ||
1484 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001485 unsigned int flags = s->req->flags;
1486
1487 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001488 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001489 unsigned int ana_list;
1490 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001491
Willy Tarreau90deb182010-01-07 00:20:41 +01001492 /* it's up to the analysers to stop new connections,
1493 * disable reading or closing. Note: if an analyser
1494 * disables any of these bits, it is responsible for
1495 * enabling them again when it disables itself, so
1496 * that other analysers are called in similar conditions.
1497 */
1498 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001499 buffer_auto_connect(s->req);
1500 buffer_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001501
1502 /* We will call all analysers for which a bit is set in
1503 * s->req->analysers, following the bit order from LSB
1504 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001505 * the list when not needed. Any analyser may return 0
1506 * to break out of the loop, either because of missing
1507 * data to take a decision, or because it decides to
1508 * kill the session. We loop at least once through each
1509 * analyser, and we may loop again if other analysers
1510 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001511 *
1512 * We build a list of analysers to run. We evaluate all
1513 * of these analysers in the order of the lower bit to
1514 * the higher bit. This ordering is very important.
1515 * An analyser will often add/remove other analysers,
1516 * including itself. Any changes to itself have no effect
1517 * on the loop. If it removes any other analysers, we
1518 * want those analysers not to be called anymore during
1519 * this loop. If it adds an analyser that is located
1520 * after itself, we want it to be scheduled for being
1521 * processed during the loop. If it adds an analyser
1522 * which is located before it, we want it to switch to
1523 * it immediately, even if it has already been called
1524 * once but removed since.
1525 *
1526 * In order to achieve this, we compare the analyser
1527 * list after the call with a copy of it before the
1528 * call. The work list is fed with analyser bits that
1529 * appeared during the call. Then we compare previous
1530 * work list with the new one, and check the bits that
1531 * appeared. If the lowest of these bits is lower than
1532 * the current bit, it means we have enabled a previous
1533 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001534 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001535
1536 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001537 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001538 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001539
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001540 if (ana_list & AN_REQ_DECODE_PROXY) {
1541 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1542 break;
1543 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1544 }
1545
Willy Tarreaufb356202010-08-03 14:02:05 +02001546 if (ana_list & AN_REQ_INSPECT_FE) {
1547 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001548 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001549 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001550 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001551
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001552 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001553 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001554 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001555 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001556 }
1557
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001558 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001559 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1560 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001561 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001562 }
1563
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001564 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001565 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1566 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001567 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001568 }
1569
Willy Tarreaufb356202010-08-03 14:02:05 +02001570 if (ana_list & AN_REQ_INSPECT_BE) {
1571 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1572 break;
1573 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1574 }
1575
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001576 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001577 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1578 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001579 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001580 }
1581
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001582 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001583 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001584 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001585 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001586 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001587
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001588 if (ana_list & AN_REQ_SRV_RULES) {
1589 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1590 break;
1591 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1592 }
1593
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001594 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001595 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1596 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001597 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001598 }
1599
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001600 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001601 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001602 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001603 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001604 }
Emeric Brun647caf12009-06-30 17:57:00 +02001605
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001606 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001607 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1608 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001609 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001610 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001611
Emeric Brun1d33b292010-01-04 15:47:17 +01001612 if (ana_list & AN_REQ_STICKING_RULES) {
1613 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1614 break;
1615 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1616 }
1617
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001618 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001619 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1620 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001621 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001622 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001623 break;
1624 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001625 }
Willy Tarreau84455332009-03-15 22:34:05 +01001626
Willy Tarreau815a9b22010-07-27 17:15:12 +02001627 rq_prod_last = s->si[0].state;
1628 rq_cons_last = s->si[1].state;
Willy Tarreau0499e352010-12-17 07:13:42 +01001629 s->req->flags &= ~BF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001630 rqf_last = s->req->flags;
1631
1632 if ((s->req->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001633 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001634 }
1635
Willy Tarreau576507f2010-01-07 00:09:04 +01001636 /* we'll monitor the request analysers while parsing the response,
1637 * because some response analysers may indirectly enable new request
1638 * analysers (eg: HTTP keep-alive).
1639 */
1640 req_ana_back = s->req->analysers;
1641
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001642 resync_response:
1643 /* Analyse response */
1644
1645 if (unlikely(s->rep->flags & BF_HIJACK)) {
1646 /* In inject mode, we wake up everytime something has
1647 * happened on the write side of the buffer.
1648 */
1649 unsigned int flags = s->rep->flags;
1650
1651 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
1652 !(s->rep->flags & BF_FULL)) {
1653 s->rep->hijacker(s, s->rep);
1654 }
1655
1656 if ((s->rep->flags ^ flags) & BF_MASK_STATIC) {
1657 rpf_last = s->rep->flags;
1658 goto resync_response;
1659 }
1660 }
Willy Tarreau2f976e12010-11-11 14:28:47 +01001661 else if (((s->rep->flags & ~rpf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001662 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC ||
1663 s->si[0].state != rp_cons_last ||
1664 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001665 unsigned int flags = s->rep->flags;
1666
Willy Tarreau0499e352010-12-17 07:13:42 +01001667 if ((s->rep->flags & BF_MASK_ANALYSER) &&
1668 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1669 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1670 * for some free space in the response buffer, so we might need to call
1671 * it when something changes in the response buffer, but still we pass
1672 * it the request buffer. Note that the SI state might very well still
1673 * be zero due to us returning a flow of redirects!
1674 */
1675 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
1676 s->req->flags |= BF_WAKE_ONCE;
1677 }
1678
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001679 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001680 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001681 unsigned int ana_list;
1682 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001683
Willy Tarreau90deb182010-01-07 00:20:41 +01001684 /* it's up to the analysers to stop disable reading or
1685 * closing. Note: if an analyser disables any of these
1686 * bits, it is responsible for enabling them again when
1687 * it disables itself, so that other analysers are called
1688 * in similar conditions.
1689 */
1690 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001691 buffer_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001692
1693 /* We will call all analysers for which a bit is set in
1694 * s->rep->analysers, following the bit order from LSB
1695 * to MSB. The analysers must remove themselves from
1696 * the list when not needed. Any analyser may return 0
1697 * to break out of the loop, either because of missing
1698 * data to take a decision, or because it decides to
1699 * kill the session. We loop at least once through each
1700 * analyser, and we may loop again if other analysers
1701 * are added in the middle.
1702 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001703
1704 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001705 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001706 /* Warning! ensure that analysers are always placed in ascending order! */
1707
Emeric Brun97679e72010-09-23 17:56:44 +02001708 if (ana_list & AN_RES_INSPECT) {
1709 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1710 break;
1711 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1712 }
1713
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001714 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001715 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1716 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001717 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001718 }
1719
Emeric Brun1d33b292010-01-04 15:47:17 +01001720 if (ana_list & AN_RES_STORE_RULES) {
1721 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1722 break;
1723 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1724 }
1725
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001726 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001727 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1728 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001729 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001730 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001731
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001732 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001733 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1734 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001735 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001736 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001737 break;
1738 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001739 }
1740
Willy Tarreau815a9b22010-07-27 17:15:12 +02001741 rp_cons_last = s->si[0].state;
1742 rp_prod_last = s->si[1].state;
1743 rpf_last = s->rep->flags;
1744
1745 if ((s->rep->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001746 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001747 }
1748
Willy Tarreau576507f2010-01-07 00:09:04 +01001749 /* maybe someone has added some request analysers, so we must check and loop */
1750 if (s->req->analysers & ~req_ana_back)
1751 goto resync_request;
1752
Willy Tarreau0499e352010-12-17 07:13:42 +01001753 if ((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER)
1754 goto resync_request;
1755
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001756 /* FIXME: here we should call protocol handlers which rely on
1757 * both buffers.
1758 */
1759
1760
1761 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001762 * Now we propagate unhandled errors to the session. Normally
1763 * we're just in a data phase here since it means we have not
1764 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001765 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001766 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001767 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001768 if (s->req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1769 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001770 s->req->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001771 if (s->req->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001772 s->be->be_counters.cli_aborts++;
1773 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001774 if (srv)
1775 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001776 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001777 }
1778 else if (s->req->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001779 s->be->be_counters.cli_aborts++;
1780 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001781 if (srv)
1782 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001783 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001784 }
1785 else if (s->req->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001786 s->be->be_counters.srv_aborts++;
1787 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001788 if (srv)
1789 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001790 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001791 }
1792 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001793 s->be->be_counters.srv_aborts++;
1794 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001795 if (srv)
1796 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001797 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001798 }
Willy Tarreau84455332009-03-15 22:34:05 +01001799 sess_set_term_flags(s);
1800 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001801 else if (s->rep->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1802 /* Report it if the server got an error or a read timeout expired */
1803 s->rep->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001804 if (s->rep->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001805 s->be->be_counters.srv_aborts++;
1806 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001807 if (srv)
1808 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001809 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001810 }
1811 else if (s->rep->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001812 s->be->be_counters.srv_aborts++;
1813 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001814 if (srv)
1815 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001816 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001817 }
1818 else if (s->rep->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001819 s->be->be_counters.cli_aborts++;
1820 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001821 if (srv)
1822 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001823 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001824 }
1825 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001826 s->be->be_counters.cli_aborts++;
1827 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001828 if (srv)
1829 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001830 s->flags |= SN_ERR_CLITO;
1831 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001832 sess_set_term_flags(s);
1833 }
Willy Tarreau84455332009-03-15 22:34:05 +01001834 }
1835
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001836 /*
1837 * Here we take care of forwarding unhandled data. This also includes
1838 * connection establishments and shutdown requests.
1839 */
1840
1841
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001842 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001843 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001844 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1845 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001846 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001847 if (!s->req->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001848 !(s->req->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001849 (s->req->prod->state >= SI_ST_EST) &&
1850 (s->req->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001851 /* This buffer is freewheeling, there's no analyser nor hijacker
1852 * attached to it. If any data are left in, we'll permit them to
1853 * move.
1854 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001855 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001856 buffer_auto_connect(s->req);
1857 buffer_auto_close(s->req);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001858 buffer_flush(s->req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001859
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001860 /* We'll let data flow between the producer (if still connected)
1861 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001862 */
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001863 if (!(s->req->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001864 buffer_forward(s->req, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001865 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001866
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001867 /* check if it is wise to enable kernel splicing to forward request data */
1868 if (!(s->req->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1869 s->req->to_forward &&
1870 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001871 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001872 (pipes_used < global.maxpipes) &&
1873 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1874 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
1875 (s->req->flags & BF_STREAMER_FAST)))) {
1876 s->req->flags |= BF_KERN_SPLICING;
1877 }
1878
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001879 /* reflect what the L7 analysers have seen last */
1880 rqf_last = s->req->flags;
1881
1882 /*
1883 * Now forward all shutdown requests between both sides of the buffer
1884 */
1885
Willy Tarreau520d95e2009-09-19 21:04:57 +02001886 /* first, let's check if the request buffer needs to shutdown(write), which may
1887 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001888 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001889 */
Willy Tarreau82eeaf22009-12-29 12:09:05 +01001890 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
Willy Tarreaue4599762010-03-21 23:25:09 +01001891 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001892 buffer_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001893
1894 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001895 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_OUT_EMPTY)) == (BF_SHUTW_NOW|BF_OUT_EMPTY)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02001896 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001897
1898 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001899 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
1900 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001901 buffer_shutr_now(s->req);
1902
1903 /* shutdown(read) pending */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001904 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW)) {
1905 if (s->req->prod->flags & SI_FL_NOHALF)
1906 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001907 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001908 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001909
Willy Tarreau520d95e2009-09-19 21:04:57 +02001910 /* it's possible that an upper layer has requested a connection setup or abort.
1911 * There are 2 situations where we decide to establish a new connection :
1912 * - there are data scheduled for emission in the buffer
1913 * - the BF_AUTO_CONNECT flag is set (active connection)
1914 */
1915 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001916 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001917 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001918 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001919 * switch to the connected state, otherwise we perform a connection
1920 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001921 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001922 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001923 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau26d8c592012-05-07 18:12:14 +02001924 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02001925 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001926 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001927 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1928 s->req->wex = TICK_ETERNITY;
1929 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001930 }
Willy Tarreau73201222009-08-16 18:27:24 +02001931 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001932 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001933 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001934 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1935 buffer_shutr_now(s->rep);
1936 }
Willy Tarreau92795622009-03-06 12:51:23 +01001937 }
1938
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001939
1940 /* we may have a pending connection request, or a connection waiting
1941 * for completion.
1942 */
1943 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1944 do {
1945 /* nb: step 1 might switch from QUE to ASS, but we first want
1946 * to give a chance to step 2 to perform a redirect if needed.
1947 */
1948 if (s->si[1].state != SI_ST_REQ)
1949 sess_update_stream_int(s, &s->si[1]);
1950 if (s->si[1].state == SI_ST_REQ)
1951 sess_prepare_conn_req(s, &s->si[1]);
1952
Willy Tarreau827aee92011-03-10 16:55:02 +01001953 srv = target_srv(&s->target);
1954 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001955 perform_http_redirect(s, &s->si[1]);
1956 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001957
1958 /* Now we can add the server name to a header (if requested) */
1959 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001960 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001961 (s->be->mode == PR_MODE_HTTP) &&
1962 (s->be->server_id_hdr_name != NULL)) {
1963 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001964 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001965 }
1966
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001967 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001968 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001969 goto resync_stream_interface;
1970
Willy Tarreau815a9b22010-07-27 17:15:12 +02001971 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001972 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001973 goto resync_request;
1974
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001975 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001976
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001977 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001978 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001979 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1980 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001981 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001982 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001983 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001984 (s->rep->prod->state >= SI_ST_EST) &&
1985 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001986 /* This buffer is freewheeling, there's no analyser nor hijacker
1987 * attached to it. If any data are left in, we'll permit them to
1988 * move.
1989 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001990 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001991 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001992 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001993
1994 /* We'll let data flow between the producer (if still connected)
1995 * to the consumer.
1996 */
1997 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001998 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02001999
2000 /* if we have no analyser anymore in any direction and have a
2001 * tunnel timeout set, use it now.
2002 */
2003 if (!s->req->analysers && s->be->timeout.tunnel) {
2004 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2005 s->be->timeout.tunnel;
2006 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2007 tick_add(now_ms, s->be->timeout.tunnel);
2008 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002009 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002010
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002011 /* check if it is wise to enable kernel splicing to forward response data */
2012 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
2013 s->rep->to_forward &&
2014 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002015 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002016 (pipes_used < global.maxpipes) &&
2017 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2018 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2019 (s->rep->flags & BF_STREAMER_FAST)))) {
2020 s->rep->flags |= BF_KERN_SPLICING;
2021 }
2022
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002023 /* reflect what the L7 analysers have seen last */
2024 rpf_last = s->rep->flags;
2025
2026 /*
2027 * Now forward all shutdown requests between both sides of the buffer
2028 */
2029
2030 /*
2031 * FIXME: this is probably where we should produce error responses.
2032 */
2033
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002034 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002035 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2036 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002037 buffer_shutw_now(s->rep);
2038
2039 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002040 if (unlikely((s->rep->flags & (BF_SHUTW|BF_OUT_EMPTY|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002041 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002042
2043 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002044 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2045 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002046 buffer_shutr_now(s->rep);
2047
2048 /* shutdown(read) pending */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002049 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW)) {
2050 if (s->rep->prod->flags & SI_FL_NOHALF)
2051 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002052 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002053 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002054
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002055 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002056 goto resync_stream_interface;
2057
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002058 if (s->req->flags != rqf_last)
2059 goto resync_request;
2060
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002061 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002062 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002063
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002064 /* we're interested in getting wakeups again */
2065 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2066 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2067
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002068 /* This is needed only when debugging is enabled, to indicate
2069 * client-side or server-side close. Please note that in the unlikely
2070 * event where both sides would close at once, the sequence is reported
2071 * on the server side first.
2072 */
2073 if (unlikely((global.mode & MODE_DEBUG) &&
2074 (!(global.mode & MODE_QUIET) ||
2075 (global.mode & MODE_VERBOSE)))) {
2076 int len;
2077
2078 if (s->si[1].state == SI_ST_CLO &&
2079 s->si[1].prev_state == SI_ST_EST) {
2080 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2081 s->uniq_id, s->be->id,
2082 (unsigned short)s->si[0].fd,
2083 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002084 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002085 }
2086
2087 if (s->si[0].state == SI_ST_CLO &&
2088 s->si[0].prev_state == SI_ST_EST) {
2089 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2090 s->uniq_id, s->be->id,
2091 (unsigned short)s->si[0].fd,
2092 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002093 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002094 }
2095 }
2096
2097 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2098 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2099
2100 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2101 session_process_counters(s);
2102
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002103 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002104 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002105
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002106 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002107 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002108
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002109 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2110 s->rep->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002111 s->si[0].prev_state = s->si[0].state;
2112 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002113 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2114 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002115
2116 /* Trick: if a request is being waiting for the server to respond,
2117 * and if we know the server can timeout, we don't want the timeout
2118 * to expire on the client side first, but we're still interested
2119 * in passing data from the client to the server (eg: POST). Thus,
2120 * we can cancel the client's request timeout if the server's
2121 * request timeout is set and the server has not yet sent a response.
2122 */
2123
Willy Tarreau520d95e2009-09-19 21:04:57 +02002124 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002125 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2126 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002127 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002128 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002129
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002130 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002131 * Note that this one may wake the task up again.
2132 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002133 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2134 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2135 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2136 s->req->cons->target.ptr.a->fct(s->req->cons);
2137 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2138 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002139 if (task_in_rq(t)) {
2140 /* If we woke up, we don't want to requeue the
2141 * task to the wait queue, but rather requeue
2142 * it into the runqueue ASAP.
2143 */
2144 t->expire = TICK_ETERNITY;
2145 return t;
2146 }
2147 }
2148
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002149 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2150 tick_first(s->rep->rex, s->rep->wex));
2151 if (s->req->analysers)
2152 t->expire = tick_first(t->expire, s->req->analyse_exp);
2153
2154 if (s->si[0].exp)
2155 t->expire = tick_first(t->expire, s->si[0].exp);
2156
2157 if (s->si[1].exp)
2158 t->expire = tick_first(t->expire, s->si[1].exp);
2159
2160#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002161 fprintf(stderr,
2162 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2163 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2164 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2165 s->rep->rex, s->rep->wex, s->si[0].exp, s->si[1].exp, s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002166#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002167
2168#ifdef DEBUG_DEV
2169 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002170 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002171 ABORT_NOW();
2172#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002173 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002174 }
2175
2176 s->fe->feconn--;
2177 if (s->flags & SN_BE_ASSIGNED)
2178 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002179 if (!(s->listener->options & LI_O_UNLIMITED))
2180 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002181 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002182 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002183 if (s->listener->state == LI_FULL)
2184 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002185
Willy Tarreau08ceb102011-07-24 22:58:00 +02002186 /* Dequeues all of the listeners waiting for a resource */
2187 if (!LIST_ISEMPTY(&global_listener_queue))
2188 dequeue_all_listeners(&global_listener_queue);
2189
Willy Tarreaub32907b2011-07-25 08:37:44 +02002190 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2191 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
Willy Tarreau07687c12011-07-24 23:55:06 +02002192 dequeue_all_listeners(&s->fe->listener_queue);
2193
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002194 if (unlikely((global.mode & MODE_DEBUG) &&
2195 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2196 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002197 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002198 s->uniq_id, s->be->id,
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002199 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002200 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002201 }
2202
2203 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2204 session_process_counters(s);
2205
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002206 if (s->txn.status) {
2207 int n;
2208
2209 n = s->txn.status / 100;
2210 if (n < 1 || n > 5)
2211 n = 0;
2212
2213 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002214 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002215
Willy Tarreau24657792010-02-26 10:30:28 +01002216 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002217 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002218 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002219 }
2220
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002221 /* let's do a final log if we need it */
2222 if (s->logs.logwait &&
2223 !(s->flags & SN_MONITOR) &&
2224 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002225 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002226 }
2227
2228 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002229 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002230 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002231 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002232 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002233}
2234
Willy Tarreau7c669d72008-06-20 15:04:11 +02002235/*
2236 * This function adjusts sess->srv_conn and maintains the previous and new
2237 * server's served session counts. Setting newsrv to NULL is enough to release
2238 * current connection slot. This function also notifies any LB algo which might
2239 * expect to be informed about any change in the number of active sessions on a
2240 * server.
2241 */
2242void sess_change_server(struct session *sess, struct server *newsrv)
2243{
2244 if (sess->srv_conn == newsrv)
2245 return;
2246
2247 if (sess->srv_conn) {
2248 sess->srv_conn->served--;
2249 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2250 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002251 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002252 }
2253
2254 if (newsrv) {
2255 newsrv->served++;
2256 if (newsrv->proxy->lbprm.server_take_conn)
2257 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002258 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002259 }
2260}
2261
Willy Tarreau84455332009-03-15 22:34:05 +01002262/* Handle server-side errors for default protocols. It is called whenever a a
2263 * connection setup is aborted or a request is aborted in queue. It sets the
2264 * session termination flags so that the caller does not have to worry about
2265 * them. It's installed as ->srv_error for the server-side stream_interface.
2266 */
2267void default_srv_error(struct session *s, struct stream_interface *si)
2268{
2269 int err_type = si->err_type;
2270 int err = 0, fin = 0;
2271
2272 if (err_type & SI_ET_QUEUE_ABRT) {
2273 err = SN_ERR_CLICL;
2274 fin = SN_FINST_Q;
2275 }
2276 else if (err_type & SI_ET_CONN_ABRT) {
2277 err = SN_ERR_CLICL;
2278 fin = SN_FINST_C;
2279 }
2280 else if (err_type & SI_ET_QUEUE_TO) {
2281 err = SN_ERR_SRVTO;
2282 fin = SN_FINST_Q;
2283 }
2284 else if (err_type & SI_ET_QUEUE_ERR) {
2285 err = SN_ERR_SRVCL;
2286 fin = SN_FINST_Q;
2287 }
2288 else if (err_type & SI_ET_CONN_TO) {
2289 err = SN_ERR_SRVTO;
2290 fin = SN_FINST_C;
2291 }
2292 else if (err_type & SI_ET_CONN_ERR) {
2293 err = SN_ERR_SRVCL;
2294 fin = SN_FINST_C;
2295 }
2296 else /* SI_ET_CONN_OTHER and others */ {
2297 err = SN_ERR_INTERNAL;
2298 fin = SN_FINST_C;
2299 }
2300
2301 if (!(s->flags & SN_ERR_MASK))
2302 s->flags |= err;
2303 if (!(s->flags & SN_FINST_MASK))
2304 s->flags |= fin;
2305}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002306
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002307/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2308void session_shutdown(struct session *session, int why)
2309{
2310 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2311 return;
2312
2313 buffer_shutw_now(session->req);
2314 buffer_shutr_now(session->rep);
2315 session->task->nice = 1024;
2316 if (!(session->flags & SN_ERR_MASK))
2317 session->flags |= why;
2318 task_wakeup(session->task, TASK_WOKEN_OTHER);
2319}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002320
Willy Tarreau8b22a712010-06-18 17:46:06 +02002321/************************************************************************/
2322/* All supported ACL keywords must be declared here. */
2323/************************************************************************/
2324
Willy Tarreaua5e37562011-12-16 17:06:15 +01002325/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002326static int
Willy Tarreau37406352012-04-23 16:16:37 +02002327acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002328{
Willy Tarreau37406352012-04-23 16:16:37 +02002329 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002330 smp->type = SMP_T_UINT;
2331 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002332 if (ts != NULL) {
2333 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2334 if (!ptr)
2335 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002336 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002337 }
2338 return 1;
2339}
2340
Willy Tarreaua5e37562011-12-16 17:06:15 +01002341/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002342 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002343 */
2344static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002345acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002346 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002347{
Willy Tarreau56123282010-08-06 19:06:56 +02002348 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002349 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002350 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002351}
2352
Willy Tarreaua5e37562011-12-16 17:06:15 +01002353/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002354 * backend counters.
2355 */
2356static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002357acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002358 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002359{
Willy Tarreau56123282010-08-06 19:06:56 +02002360 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002361 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002362 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002363}
2364
Willy Tarreaua5e37562011-12-16 17:06:15 +01002365/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002366 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002367 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002368 */
2369static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002370acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002371 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002372{
2373 struct stktable_key *key;
2374
David du Colombier4f92d322011-03-24 11:09:31 +01002375 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002376 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002377 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002378
Willy Tarreau24e32d82012-04-23 23:55:44 +02002379 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002380 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002381}
2382
2383/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002384 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002385 */
2386static int
Willy Tarreau37406352012-04-23 16:16:37 +02002387acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002388{
Willy Tarreau37406352012-04-23 16:16:37 +02002389 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002390 smp->type = SMP_T_UINT;
2391 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002392 if (ts != NULL) {
2393 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2394 if (!ptr)
2395 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002396 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002397 }
2398 return 1;
2399}
2400
2401/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002402 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002403 */
2404static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002405acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002406 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002407{
Willy Tarreau56123282010-08-06 19:06:56 +02002408 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002409 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002410 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002411}
2412
2413/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002414 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002415 */
2416static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002417acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002418 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002419{
Willy Tarreau56123282010-08-06 19:06:56 +02002420 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002421 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002422 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002423}
2424
2425/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002426 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002427 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002428 */
2429static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002430acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002431 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002432{
2433 struct stktable_key *key;
2434
David du Colombier4f92d322011-03-24 11:09:31 +01002435 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002436 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002437 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002438
Willy Tarreau24e32d82012-04-23 23:55:44 +02002439 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002440 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002441}
2442
Willy Tarreauf73cd112011-08-13 01:45:16 +02002443/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002444 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002445 */
2446static int
Willy Tarreau37406352012-04-23 16:16:37 +02002447acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002448{
Willy Tarreau37406352012-04-23 16:16:37 +02002449 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002450 smp->type = SMP_T_UINT;
2451 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002452 if (ts != NULL) {
2453 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2454 if (!ptr)
2455 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002456 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002457 stktable_data_cast(ptr, gpc0) = 0;
2458 }
2459 return 1;
2460}
2461
2462/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002463 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002464 */
2465static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002466acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002467 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002468{
2469 if (!l4->stkctr1_entry)
2470 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002471 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002472}
2473
2474/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002475 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002476 */
2477static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002478acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002479 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002480{
2481 if (!l4->stkctr2_entry)
2482 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002483 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002484}
2485
2486/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002487 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002488 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002489 */
2490static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002491acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002492 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002493{
2494 struct stktable_key *key;
2495
2496 key = tcp_src_to_stktable_key(l4);
2497 if (!key)
2498 return 0;
2499
Willy Tarreau24e32d82012-04-23 23:55:44 +02002500 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002501 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002502}
2503
Willy Tarreaua5e37562011-12-16 17:06:15 +01002504/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002505static int
Willy Tarreau37406352012-04-23 16:16:37 +02002506acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002507{
Willy Tarreau37406352012-04-23 16:16:37 +02002508 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002509 smp->type = SMP_T_UINT;
2510 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002511 if (ts != NULL) {
2512 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2513 if (!ptr)
2514 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002515 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002516 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002517 return 1;
2518}
2519
Willy Tarreaua5e37562011-12-16 17:06:15 +01002520/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002521static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002522acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002523 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002524{
Willy Tarreau56123282010-08-06 19:06:56 +02002525 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002526 return 0;
2527
Willy Tarreau37406352012-04-23 16:16:37 +02002528 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002529}
2530
Willy Tarreaua5e37562011-12-16 17:06:15 +01002531/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002532static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002533acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002534 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002535{
Willy Tarreau56123282010-08-06 19:06:56 +02002536 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002537 return 0;
2538
Willy Tarreau37406352012-04-23 16:16:37 +02002539 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002540}
2541
Willy Tarreaua5e37562011-12-16 17:06:15 +01002542/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002543 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002544 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002545 */
2546static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002547acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002548 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002549{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002550 struct stktable_key *key;
2551
David du Colombier4f92d322011-03-24 11:09:31 +01002552 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002553 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002554 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002555
Willy Tarreau24e32d82012-04-23 23:55:44 +02002556 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002557 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002558}
2559
Willy Tarreaua5e37562011-12-16 17:06:15 +01002560/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002561static int
Willy Tarreau37406352012-04-23 16:16:37 +02002562acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002563{
Willy Tarreau37406352012-04-23 16:16:37 +02002564 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002565 smp->type = SMP_T_UINT;
2566 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002567 if (ts != NULL) {
2568 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2569 if (!ptr)
2570 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002571 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002572 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2573 }
2574 return 1;
2575}
2576
Willy Tarreaua5e37562011-12-16 17:06:15 +01002577/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002578 * the configured period.
2579 */
2580static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002581acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002582 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002583{
Willy Tarreau56123282010-08-06 19:06:56 +02002584 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002585 return 0;
2586
Willy Tarreau37406352012-04-23 16:16:37 +02002587 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002588}
2589
Willy Tarreaua5e37562011-12-16 17:06:15 +01002590/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002591 * the configured period.
2592 */
2593static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002594acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002595 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002596{
Willy Tarreau56123282010-08-06 19:06:56 +02002597 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002598 return 0;
2599
Willy Tarreau37406352012-04-23 16:16:37 +02002600 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002601}
2602
Willy Tarreaua5e37562011-12-16 17:06:15 +01002603/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002604 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002605 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002606 */
2607static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002608acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002609 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002610{
2611 struct stktable_key *key;
2612
David du Colombier4f92d322011-03-24 11:09:31 +01002613 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002614 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002615 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002616
Willy Tarreau24e32d82012-04-23 23:55:44 +02002617 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002618 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002619}
2620
Willy Tarreaua5e37562011-12-16 17:06:15 +01002621/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002622 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002623 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002624 */
2625static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002626acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002627 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002628{
2629 struct stksess *ts;
2630 struct stktable_key *key;
2631 void *ptr;
2632
David du Colombier4f92d322011-03-24 11:09:31 +01002633 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002634 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002635 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002636
Willy Tarreau24e32d82012-04-23 23:55:44 +02002637 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002638
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002639 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2640 /* entry does not exist and could not be created */
2641 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002642
2643 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2644 if (!ptr)
2645 return 0; /* parameter not stored in this table */
2646
Willy Tarreauf853c462012-04-23 18:53:56 +02002647 smp->type = SMP_T_UINT;
2648 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002649 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002650 return 1;
2651}
2652
Willy Tarreaua5e37562011-12-16 17:06:15 +01002653/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002654static int
Willy Tarreau37406352012-04-23 16:16:37 +02002655acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002656{
Willy Tarreau37406352012-04-23 16:16:37 +02002657 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002658 smp->type = SMP_T_UINT;
2659 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002660
2661 if (ts != NULL) {
2662 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2663 if (!ptr)
2664 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002665 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002666 }
2667 return 1;
2668}
2669
Willy Tarreaua5e37562011-12-16 17:06:15 +01002670/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002671static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002672acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002673 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002674{
Willy Tarreau56123282010-08-06 19:06:56 +02002675 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002676 return 0;
2677
Willy Tarreau37406352012-04-23 16:16:37 +02002678 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002679}
2680
Willy Tarreaua5e37562011-12-16 17:06:15 +01002681/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002682static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002683acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002684 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002685{
Willy Tarreau56123282010-08-06 19:06:56 +02002686 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002687 return 0;
2688
Willy Tarreau37406352012-04-23 16:16:37 +02002689 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002690}
2691
Willy Tarreaua5e37562011-12-16 17:06:15 +01002692/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002693 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002694 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002695 */
2696static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002697acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002698 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002699{
Willy Tarreau38285c12010-06-18 16:35:43 +02002700 struct stktable_key *key;
2701
David du Colombier4f92d322011-03-24 11:09:31 +01002702 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002703 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002704 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002705
Willy Tarreau24e32d82012-04-23 23:55:44 +02002706 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002707 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002708}
2709
Willy Tarreaua5e37562011-12-16 17:06:15 +01002710/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002711static int
Willy Tarreau37406352012-04-23 16:16:37 +02002712acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002713{
Willy Tarreau37406352012-04-23 16:16:37 +02002714 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002715 smp->type = SMP_T_UINT;
2716 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002717 if (ts != NULL) {
2718 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2719 if (!ptr)
2720 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002721 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002722 }
2723 return 1;
2724}
2725
Willy Tarreaua5e37562011-12-16 17:06:15 +01002726/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002727static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002728acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002729 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002730{
Willy Tarreau56123282010-08-06 19:06:56 +02002731 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002732 return 0;
2733
Willy Tarreau37406352012-04-23 16:16:37 +02002734 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002735}
2736
Willy Tarreaua5e37562011-12-16 17:06:15 +01002737/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002738static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002739acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002740 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002741{
Willy Tarreau56123282010-08-06 19:06:56 +02002742 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002743 return 0;
2744
Willy Tarreau37406352012-04-23 16:16:37 +02002745 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002746}
2747
Willy Tarreaua5e37562011-12-16 17:06:15 +01002748/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002749 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002750 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002751 */
2752static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002753acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002754 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002755{
2756 struct stktable_key *key;
2757
David du Colombier4f92d322011-03-24 11:09:31 +01002758 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002759 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002760 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002761
Willy Tarreau24e32d82012-04-23 23:55:44 +02002762 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002763 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002764}
2765
Willy Tarreaua5e37562011-12-16 17:06:15 +01002766/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002767static int
Willy Tarreau37406352012-04-23 16:16:37 +02002768acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002769{
Willy Tarreau37406352012-04-23 16:16:37 +02002770 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002771 smp->type = SMP_T_UINT;
2772 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002773 if (ts != NULL) {
2774 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2775 if (!ptr)
2776 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002777 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002778 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2779 }
2780 return 1;
2781}
2782
Willy Tarreaua5e37562011-12-16 17:06:15 +01002783/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002784 * the configured period.
2785 */
2786static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002787acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002788 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002789{
Willy Tarreau56123282010-08-06 19:06:56 +02002790 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002791 return 0;
2792
Willy Tarreau37406352012-04-23 16:16:37 +02002793 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002794}
2795
Willy Tarreaua5e37562011-12-16 17:06:15 +01002796/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797 * the configured period.
2798 */
2799static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002800acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002801 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002802{
Willy Tarreau56123282010-08-06 19:06:56 +02002803 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002804 return 0;
2805
Willy Tarreau37406352012-04-23 16:16:37 +02002806 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807}
2808
Willy Tarreaua5e37562011-12-16 17:06:15 +01002809/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002810 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002811 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002812 */
2813static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002814acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002815 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002816{
2817 struct stktable_key *key;
2818
David du Colombier4f92d322011-03-24 11:09:31 +01002819 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002820 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002821 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002822
Willy Tarreau24e32d82012-04-23 23:55:44 +02002823 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002824 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002825}
2826
Willy Tarreaua5e37562011-12-16 17:06:15 +01002827/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002828static int
Willy Tarreau37406352012-04-23 16:16:37 +02002829acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002830{
Willy Tarreau37406352012-04-23 16:16:37 +02002831 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002832 smp->type = SMP_T_UINT;
2833 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002834 if (ts != NULL) {
2835 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2836 if (!ptr)
2837 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002838 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002839 }
2840 return 1;
2841}
2842
Willy Tarreaua5e37562011-12-16 17:06:15 +01002843/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002844static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002845acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002846 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002847{
Willy Tarreau56123282010-08-06 19:06:56 +02002848 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002849 return 0;
2850
Willy Tarreau37406352012-04-23 16:16:37 +02002851 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002852}
2853
Willy Tarreaua5e37562011-12-16 17:06:15 +01002854/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002855static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002856acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002857 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002858{
Willy Tarreau56123282010-08-06 19:06:56 +02002859 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002860 return 0;
2861
Willy Tarreau37406352012-04-23 16:16:37 +02002862 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002863}
2864
Willy Tarreaua5e37562011-12-16 17:06:15 +01002865/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002866 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002867 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002868 */
2869static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002870acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002871 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002872{
2873 struct stktable_key *key;
2874
David du Colombier4f92d322011-03-24 11:09:31 +01002875 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002876 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002877 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002878
Willy Tarreau24e32d82012-04-23 23:55:44 +02002879 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002880 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002881}
2882
Willy Tarreaua5e37562011-12-16 17:06:15 +01002883/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002884static int
Willy Tarreau37406352012-04-23 16:16:37 +02002885acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002886{
Willy Tarreau37406352012-04-23 16:16:37 +02002887 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002888 smp->type = SMP_T_UINT;
2889 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002890 if (ts != NULL) {
2891 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2892 if (!ptr)
2893 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002894 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002895 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2896 }
2897 return 1;
2898}
2899
Willy Tarreaua5e37562011-12-16 17:06:15 +01002900/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002901 * the configured period.
2902 */
2903static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002904acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002905 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002906{
Willy Tarreau56123282010-08-06 19:06:56 +02002907 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002908 return 0;
2909
Willy Tarreau37406352012-04-23 16:16:37 +02002910 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002911}
2912
Willy Tarreaua5e37562011-12-16 17:06:15 +01002913/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002914 * the configured period.
2915 */
2916static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002917acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002918 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002919{
Willy Tarreau56123282010-08-06 19:06:56 +02002920 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002921 return 0;
2922
Willy Tarreau37406352012-04-23 16:16:37 +02002923 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002924}
2925
Willy Tarreaua5e37562011-12-16 17:06:15 +01002926/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002927 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002928 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002929 */
2930static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002931acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002932 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002933{
2934 struct stktable_key *key;
2935
David du Colombier4f92d322011-03-24 11:09:31 +01002936 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002937 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002938 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002939
Willy Tarreau24e32d82012-04-23 23:55:44 +02002940 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002941 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002942}
2943
Willy Tarreaua5e37562011-12-16 17:06:15 +01002944/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002945static int
Willy Tarreau37406352012-04-23 16:16:37 +02002946acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002947{
Willy Tarreau37406352012-04-23 16:16:37 +02002948 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002949 smp->type = SMP_T_UINT;
2950 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002951 if (ts != NULL) {
2952 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2953 if (!ptr)
2954 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002955 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002956 }
2957 return 1;
2958}
2959
Willy Tarreaua5e37562011-12-16 17:06:15 +01002960/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002961static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002962acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002963 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002964{
Willy Tarreau56123282010-08-06 19:06:56 +02002965 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002966 return 0;
2967
Willy Tarreau37406352012-04-23 16:16:37 +02002968 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002969}
2970
Willy Tarreaua5e37562011-12-16 17:06:15 +01002971/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002972static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002973acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002974 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002975{
Willy Tarreau56123282010-08-06 19:06:56 +02002976 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002977 return 0;
2978
Willy Tarreau37406352012-04-23 16:16:37 +02002979 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002980}
2981
Willy Tarreaua5e37562011-12-16 17:06:15 +01002982/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002983 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002984 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002985 */
2986static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002987acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002988 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002989{
2990 struct stktable_key *key;
2991
David du Colombier4f92d322011-03-24 11:09:31 +01002992 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002993 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002994 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002995
Willy Tarreau24e32d82012-04-23 23:55:44 +02002996 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002997 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002998}
2999
Willy Tarreaua5e37562011-12-16 17:06:15 +01003000/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003001static int
Willy Tarreau37406352012-04-23 16:16:37 +02003002acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003003{
Willy Tarreau37406352012-04-23 16:16:37 +02003004 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003005 smp->type = SMP_T_UINT;
3006 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003007 if (ts != NULL) {
3008 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3009 if (!ptr)
3010 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003011 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003012 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3013 }
3014 return 1;
3015}
3016
Willy Tarreaua5e37562011-12-16 17:06:15 +01003017/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003018 * the configured period.
3019 */
3020static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003021acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003022 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003023{
Willy Tarreau56123282010-08-06 19:06:56 +02003024 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003025 return 0;
3026
Willy Tarreau37406352012-04-23 16:16:37 +02003027 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003028}
3029
Willy Tarreaua5e37562011-12-16 17:06:15 +01003030/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003031 * the configured period.
3032 */
3033static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003034acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003035 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003036{
Willy Tarreau56123282010-08-06 19:06:56 +02003037 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003038 return 0;
3039
Willy Tarreau37406352012-04-23 16:16:37 +02003040 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003041}
3042
Willy Tarreaua5e37562011-12-16 17:06:15 +01003043/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003044 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003045 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003046 */
3047static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003048acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003049 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003050{
3051 struct stktable_key *key;
3052
David du Colombier4f92d322011-03-24 11:09:31 +01003053 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003054 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003055 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003056
Willy Tarreau24e32d82012-04-23 23:55:44 +02003057 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003058 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059}
3060
Willy Tarreaua5e37562011-12-16 17:06:15 +01003061/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003062static int
Willy Tarreau37406352012-04-23 16:16:37 +02003063acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003064{
Willy Tarreau37406352012-04-23 16:16:37 +02003065 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003066 smp->type = SMP_T_UINT;
3067 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003068
3069 if (ts != NULL) {
3070 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3071 if (!ptr)
3072 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003073 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003074 }
3075 return 1;
3076}
3077
Willy Tarreaua5e37562011-12-16 17:06:15 +01003078/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003079 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003080 */
3081static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003082acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003083 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003084{
Willy Tarreau56123282010-08-06 19:06:56 +02003085 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003086 return 0;
3087
Willy Tarreau37406352012-04-23 16:16:37 +02003088 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003089}
3090
Willy Tarreaua5e37562011-12-16 17:06:15 +01003091/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003092 * session's tracked BE counters.
3093 */
3094static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003095acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003096 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003097{
Willy Tarreau56123282010-08-06 19:06:56 +02003098 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003099 return 0;
3100
Willy Tarreau37406352012-04-23 16:16:37 +02003101 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003102}
3103
Willy Tarreaua5e37562011-12-16 17:06:15 +01003104/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003105 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003106 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003107 */
3108static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003109acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003110 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003111{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003112 struct stktable_key *key;
3113
David du Colombier4f92d322011-03-24 11:09:31 +01003114 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003115 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003116 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003117
Willy Tarreau24e32d82012-04-23 23:55:44 +02003118 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003119 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003120}
3121
Willy Tarreaua5e37562011-12-16 17:06:15 +01003122/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003123 * configured period.
3124 */
3125static int
Willy Tarreau37406352012-04-23 16:16:37 +02003126acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003127{
Willy Tarreau37406352012-04-23 16:16:37 +02003128 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003129 smp->type = SMP_T_UINT;
3130 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003131 if (ts != NULL) {
3132 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3133 if (!ptr)
3134 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003135 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003136 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3137 }
3138 return 1;
3139}
3140
Willy Tarreaua5e37562011-12-16 17:06:15 +01003141/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003142 * counters over the configured period.
3143 */
3144static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003145acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003146 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003147{
Willy Tarreau56123282010-08-06 19:06:56 +02003148 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003149 return 0;
3150
Willy Tarreau37406352012-04-23 16:16:37 +02003151 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003152}
3153
Willy Tarreaua5e37562011-12-16 17:06:15 +01003154/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003155 * counters over the configured period.
3156 */
3157static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003158acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003159 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003160{
Willy Tarreau56123282010-08-06 19:06:56 +02003161 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003162 return 0;
3163
Willy Tarreau37406352012-04-23 16:16:37 +02003164 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003165}
3166
Willy Tarreaua5e37562011-12-16 17:06:15 +01003167/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003168 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003169 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003170 */
3171static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003172acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003173 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003174{
3175 struct stktable_key *key;
3176
David du Colombier4f92d322011-03-24 11:09:31 +01003177 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003178 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003179 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003180
Willy Tarreau24e32d82012-04-23 23:55:44 +02003181 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003182 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003183}
3184
Willy Tarreaua5e37562011-12-16 17:06:15 +01003185/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003186static int
Willy Tarreau37406352012-04-23 16:16:37 +02003187acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003188{
Willy Tarreau37406352012-04-23 16:16:37 +02003189 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003190 smp->type = SMP_T_UINT;
3191 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003192
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003193 if (ts != NULL) {
3194 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003195 if (!ptr)
3196 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003197 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003198 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003199 return 1;
3200}
3201
Willy Tarreaua5e37562011-12-16 17:06:15 +01003202/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003203 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003204 */
3205static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003206acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003207 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003208{
Willy Tarreau56123282010-08-06 19:06:56 +02003209 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003210 return 0;
3211
Willy Tarreau37406352012-04-23 16:16:37 +02003212 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003213}
3214
Willy Tarreaua5e37562011-12-16 17:06:15 +01003215/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003216 * tracked BE counters.
3217 */
3218static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003219acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003220 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003221{
Willy Tarreau56123282010-08-06 19:06:56 +02003222 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003223 return 0;
3224
Willy Tarreau37406352012-04-23 16:16:37 +02003225 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003226}
3227
Willy Tarreaua5e37562011-12-16 17:06:15 +01003228/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003229 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003230 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003231 */
3232static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003233acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003234 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003235{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003236 struct stktable_key *key;
3237
David du Colombier4f92d322011-03-24 11:09:31 +01003238 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003239 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003240 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003241
Willy Tarreau24e32d82012-04-23 23:55:44 +02003242 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003243 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003244}
3245
Willy Tarreaua5e37562011-12-16 17:06:15 +01003246/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003247 * configured period.
3248 */
3249static int
Willy Tarreau37406352012-04-23 16:16:37 +02003250acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003251{
Willy Tarreau37406352012-04-23 16:16:37 +02003252 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003253 smp->type = SMP_T_UINT;
3254 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003255 if (ts != NULL) {
3256 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3257 if (!ptr)
3258 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003259 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003260 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3261 }
3262 return 1;
3263}
3264
Willy Tarreaua5e37562011-12-16 17:06:15 +01003265/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003266 * over the configured period.
3267 */
3268static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003269acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003270 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003271{
Willy Tarreau56123282010-08-06 19:06:56 +02003272 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003273 return 0;
3274
Willy Tarreau37406352012-04-23 16:16:37 +02003275 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003276}
3277
Willy Tarreaua5e37562011-12-16 17:06:15 +01003278/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003279 * over the configured period.
3280 */
3281static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003282acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003283 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003284{
Willy Tarreau56123282010-08-06 19:06:56 +02003285 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003286 return 0;
3287
Willy Tarreau37406352012-04-23 16:16:37 +02003288 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003289}
3290
Willy Tarreaua5e37562011-12-16 17:06:15 +01003291/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003292 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003293 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003294 */
3295static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003296acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003297 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003298{
3299 struct stktable_key *key;
3300
David du Colombier4f92d322011-03-24 11:09:31 +01003301 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003302 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003303 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003304
Willy Tarreau24e32d82012-04-23 23:55:44 +02003305 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003306 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003307}
3308
Willy Tarreau34db1082012-04-19 17:16:54 +02003309/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003310 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003311 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003312static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003313acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003314 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003315{
Willy Tarreau37406352012-04-23 16:16:37 +02003316 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003317 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003318 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003319 return 1;
3320}
3321
Willy Tarreau34db1082012-04-19 17:16:54 +02003322/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003323 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003324 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003325static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003326acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003327 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003328{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003329 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003330 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003331 smp->type = SMP_T_UINT;
3332 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003333 return 1;
3334}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003335
Willy Tarreau61612d42012-04-19 18:42:05 +02003336/* Note: must not be declared <const> as its list will be overwritten.
3337 * Please take care of keeping this list alphabetically sorted.
3338 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003339static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003340 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3341 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3342 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3343 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3344 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3345 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3346 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3347 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3348 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3349 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3350 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3351 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3352 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3353 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3354 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3355 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3356 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3357 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3358 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3359 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3360 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3361 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3362 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3363 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3364 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3365 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3366 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3367 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3368 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3369 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3370 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3371 { "sc2_sess_rate", acl_parse_int, acl_fetch_sc2_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02003372 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3373 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3374 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3375 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3376 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3377 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3378 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3379 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3380 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3381 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3382 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3383 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3384 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3385 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3386 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3387 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3388 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3389 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3390 { "table_cnt", acl_parse_int, acl_fetch_table_cnt, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003391 { NULL, NULL, NULL, NULL },
3392}};
3393
3394
Willy Tarreau56123282010-08-06 19:06:56 +02003395/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003396 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3397 * <prm> struct is fed with the table name if any. If unspecified, the caller
3398 * will assume that the current proxy's table is used.
3399 */
3400int parse_track_counters(char **args, int *arg,
3401 int section_type, struct proxy *curpx,
3402 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003403 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003404{
Willy Tarreau12785782012-04-27 21:37:17 +02003405 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003406
Willy Tarreau56123282010-08-06 19:06:56 +02003407 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003408 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003409 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003410 */
3411 while (args[*arg]) {
3412 if (strcmp(args[*arg], "src") == 0) {
3413 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003414 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003415 }
3416 else if (strcmp(args[*arg], "table") == 0) {
3417 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003418 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003419 return -1;
3420 }
3421 /* we copy the table name for now, it will be resolved later */
3422 prm->table.n = strdup(args[*arg + 1]);
3423 (*arg)++;
3424 }
3425 else {
3426 /* unhandled keywords are handled by the caller */
3427 break;
3428 }
3429 (*arg)++;
3430 }
3431
Willy Tarreau12785782012-04-27 21:37:17 +02003432 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003433 memprintf(err,
3434 "tracking key not specified (found %s, only 'src' is supported)",
3435 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003436 return -1;
3437 }
3438
3439 return 0;
3440}
3441
Willy Tarreau8b22a712010-06-18 17:46:06 +02003442__attribute__((constructor))
3443static void __session_init(void)
3444{
3445 acl_register_keywords(&acl_kws);
3446}
3447
Willy Tarreaubaaee002006-06-26 02:48:02 +02003448/*
3449 * Local variables:
3450 * c-indent-level: 8
3451 * c-basic-offset: 8
3452 * End:
3453 */