blob: 54bd7a0716ebfcc0c1dfa20bd2dfc794344cf556 [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>
Emeric Brun1d33b292010-01-04 15:47:17 +010042#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010043#include <proto/stream_interface.h>
44#include <proto/stream_sock.h>
45#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020047struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010048struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020049
Willy Tarreau81f9aa32010-06-01 17:45:26 +020050/* This function is called from the protocol layer accept() in order to instanciate
51 * a new session on behalf of a given listener and frontend. It returns a positive
Willy Tarreauabe8ea52010-11-11 10:56:04 +010052 * value upon success, 0 if the connection can be ignored, or a negative value upon
53 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020054 */
55int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
56{
57 struct proxy *p = l->frontend;
58 struct session *s;
59 struct http_txn *txn;
60 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010061 int ret;
62
63
64 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020065
Willy Tarreaufffe1322010-11-11 09:48:16 +010066 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020067 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020068
69 /* minimum session initialization required for monitor mode below */
70 s->flags = 0;
71 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020072 s->stkctr1_entry = NULL;
73 s->stkctr2_entry = NULL;
74 s->stkctr1_table = NULL;
75 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020076
77 /* if this session comes from a known monitoring system, we want to ignore
78 * it as soon as possible, which means closing it immediately for TCP, but
79 * cleanly.
80 */
81 if (unlikely((l->options & LI_O_CHK_MONNET) &&
82 addr->ss_family == AF_INET &&
83 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
84 if (p->mode == PR_MODE_TCP) {
Willy Tarreauabe8ea52010-11-11 10:56:04 +010085 ret = 0; /* successful termination */
86 goto out_free_session;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020087 }
88 s->flags |= SN_MONITOR;
89 s->logs.logwait = 0;
90 }
91
Willy Tarreauabe8ea52010-11-11 10:56:04 +010092 if (unlikely((t = task_new()) == NULL))
93 goto out_free_session;
94
Willy Tarreau81f9aa32010-06-01 17:45:26 +020095 /* OK, we're keeping the session, so let's properly initialize the session */
96 LIST_ADDQ(&sessions, &s->list);
97 LIST_INIT(&s->back_refs);
98
Willy Tarreau81f9aa32010-06-01 17:45:26 +020099 s->term_trace = 0;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200100 s->si[0].addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200101 s->logs.accept_date = date; /* user-visible date for logging */
102 s->logs.tv_accept = now; /* corrected date for internal use */
103 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200104 p->feconn++; /* beconn will be increased once assigned */
105
Willy Tarreaub36b4242010-06-04 20:59:39 +0200106 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200107
108 t->process = l->handler;
109 t->context = s;
110 t->nice = l->nice;
111 t->expire = TICK_ETERNITY;
112
113 s->task = t;
114 s->listener = l;
115
116 /* Note: initially, the session's backend points to the frontend.
117 * This changes later when switching rules are executed or
118 * when the default backend is assigned.
119 */
120 s->be = s->fe = p;
121 s->req = s->rep = NULL; /* will be allocated later */
122
123 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
124 * to abort right here as soon as possible, we check the rules before
125 * even initializing the stream interfaces.
126 */
127 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200128 /* let's do a no-linger now to close with a single RST. */
129 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100130 ret = 0; /* successful termination */
131 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200132 }
133
Willy Tarreaub36b4242010-06-04 20:59:39 +0200134 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100135 if (p->feconn > p->fe_counters.conn_max)
136 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100137
Willy Tarreaub36b4242010-06-04 20:59:39 +0200138 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200139 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200140 void *ptr;
141
Willy Tarreau56123282010-08-06 19:06:56 +0200142 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200143 if (ptr)
144 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200145
Willy Tarreau56123282010-08-06 19:06:56 +0200146 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200147 if (ptr)
148 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200149 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200150 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200151
Willy Tarreau56123282010-08-06 19:06:56 +0200152 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200153 void *ptr;
154
Willy Tarreau56123282010-08-06 19:06:56 +0200155 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200156 if (ptr)
157 stktable_data_cast(ptr, sess_cnt)++;
158
Willy Tarreau56123282010-08-06 19:06:56 +0200159 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200160 if (ptr)
161 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200162 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200163 }
164
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200165 /* this part should be common with other protocols */
166 s->si[0].fd = cfd;
167 s->si[0].owner = t;
168 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
169 s->si[0].err_type = SI_ET_NONE;
170 s->si[0].err_loc = NULL;
171 s->si[0].connect = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200172 s->si[0].release = NULL;
Willy Tarreau9b061e32012-04-07 18:03:52 +0200173 s->si[0].get_src = getpeername;
174 s->si[0].get_dst = getsockname;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100175 clear_target(&s->si[0].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200176 s->si[0].exp = TICK_ETERNITY;
177 s->si[0].flags = SI_FL_NONE;
178
179 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
180 s->si[0].flags |= SI_FL_INDEP_STR;
181
182 if (addr->ss_family == AF_INET || addr->ss_family == AF_INET6)
183 s->si[0].flags = SI_FL_CAP_SPLTCP; /* TCP/TCPv6 splicing possible */
184
185 /* add the various callbacks */
186 stream_sock_prepare_interface(&s->si[0]);
187
188 /* pre-initialize the other side's stream interface to an INIT state. The
189 * callbacks will be initialized before attempting to connect.
190 */
191 s->si[1].fd = -1; /* just to help with debugging */
192 s->si[1].owner = t;
193 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
194 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200195 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200196 s->si[1].err_loc = NULL;
197 s->si[1].connect = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200198 s->si[1].release = NULL;
Willy Tarreau9b061e32012-04-07 18:03:52 +0200199 s->si[1].get_src = NULL;
200 s->si[1].get_dst = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100201 clear_target(&s->si[1].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200202 s->si[1].shutr = stream_int_shutr;
203 s->si[1].shutw = stream_int_shutw;
204 s->si[1].exp = TICK_ETERNITY;
205 s->si[1].flags = SI_FL_NONE;
206
207 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
208 s->si[1].flags |= SI_FL_INDEP_STR;
209
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200210 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100211 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200212 s->pend_pos = NULL;
213
214 /* init store persistence */
215 s->store_count = 0;
216
217 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100218 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200219 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200220
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200221 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
222 goto out_free_task; /* no memory */
223
224 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
225 goto out_free_req; /* no memory */
226
227 /* initialize the request buffer */
228 s->req->size = global.tune.bufsize;
229 buffer_init(s->req);
230 s->req->prod = &s->si[0];
231 s->req->cons = &s->si[1];
232 s->si[0].ib = s->si[1].ob = s->req;
233 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
234
235 /* activate default analysers enabled for this listener */
236 s->req->analysers = l->analysers;
237
238 s->req->wto = TICK_ETERNITY;
239 s->req->rto = TICK_ETERNITY;
240 s->req->rex = TICK_ETERNITY;
241 s->req->wex = TICK_ETERNITY;
242 s->req->analyse_exp = TICK_ETERNITY;
243
244 /* initialize response buffer */
245 s->rep->size = global.tune.bufsize;
246 buffer_init(s->rep);
247 s->rep->prod = &s->si[1];
248 s->rep->cons = &s->si[0];
249 s->si[0].ob = s->si[1].ib = s->rep;
250 s->rep->analysers = 0;
251
Willy Tarreau96e31212011-05-30 18:10:30 +0200252 if (s->fe->options2 & PR_O2_NODELAY) {
253 s->req->flags |= BF_NEVER_WAIT;
254 s->rep->flags |= BF_NEVER_WAIT;
255 }
256
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200257 s->rep->rto = TICK_ETERNITY;
258 s->rep->wto = TICK_ETERNITY;
259 s->rep->rex = TICK_ETERNITY;
260 s->rep->wex = TICK_ETERNITY;
261 s->rep->analyse_exp = TICK_ETERNITY;
262
Willy Tarreau62f791e2012-03-09 11:32:30 +0100263 txn = &s->txn;
264 /* Those variables will be checked and freed if non-NULL in
265 * session.c:session_free(). It is important that they are
266 * properly initialized.
267 */
268 txn->sessid = NULL;
269 txn->srv_cookie = NULL;
270 txn->cli_cookie = NULL;
271 txn->uri = NULL;
272 txn->req.cap = NULL;
273 txn->rsp.cap = NULL;
274 txn->hdr_idx.v = NULL;
275 txn->hdr_idx.size = txn->hdr_idx.used = 0;
276 txn->req.flags = 0;
277 txn->rsp.flags = 0;
278 /* the HTTP messages need to know what buffer they're associated with */
279 txn->req.buf = s->req;
280 txn->rsp.buf = s->rep;
281
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200282 /* finish initialization of the accepted file descriptor */
283 fd_insert(cfd);
284 fdtab[cfd].owner = &s->si[0];
285 fdtab[cfd].state = FD_STREADY;
286 fdtab[cfd].flags = 0;
287 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
288 fdtab[cfd].cb[DIR_RD].b = s->req;
289 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
290 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200291 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
292 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200293 EV_FD_SET(cfd, DIR_RD);
294
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100295 if (p->accept && (ret = p->accept(s)) <= 0) {
296 /* Either we had an unrecoverable error (<0) or work is
297 * finished (=0, eg: monitoring), in both situations,
298 * we can release everything and close.
299 */
300 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200301 }
302
303 /* it is important not to call the wakeup function directly but to
304 * pass through task_wakeup(), because this one knows how to apply
305 * priorities to tasks.
306 */
307 task_wakeup(t, TASK_WOKEN_INIT);
308 return 1;
309
310 /* Error unrolling */
311 out_free_rep:
312 pool_free2(pool2_buffer, s->rep);
313 out_free_req:
314 pool_free2(pool2_buffer, s->req);
315 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200316 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200317 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200318 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200319 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200320 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100321 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200322 pool_free2(pool2_session, s);
323 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200324 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
325 /* critical error, no more memory, try to emit a 500 response */
326 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
327 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
328 }
329
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100330 if (fdtab[cfd].state != FD_STCLOSE)
331 fd_delete(cfd);
332 else
333 close(cfd);
334 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200335}
336
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337/*
338 * frees the context associated to a session. It must have been removed first.
339 */
Simon Hormandec5be42011-06-08 09:19:07 +0900340static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200341{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100342 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200343 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100344 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200345 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100346
Willy Tarreaubaaee002006-06-26 02:48:02 +0200347 if (s->pend_pos)
348 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100349
Willy Tarreau827aee92011-03-10 16:55:02 +0100350 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100351 if (s->flags & SN_CURR_SESS) {
352 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100353 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100354 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100355 if (may_dequeue_tasks(target_srv(&s->target), s->be))
356 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100357 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100358
Willy Tarreau7c669d72008-06-20 15:04:11 +0200359 if (unlikely(s->srv_conn)) {
360 /* the session still has a reserved slot on a server, but
361 * it should normally be only the same as the one above,
362 * so this should not happen in fact.
363 */
364 sess_change_server(s, NULL);
365 }
366
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100367 if (s->req->pipe)
368 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100369
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100370 if (s->rep->pipe)
371 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100372
Willy Tarreau48d63db2008-08-03 17:41:33 +0200373 pool_free2(pool2_buffer, s->req);
374 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375
Willy Tarreau46023632010-01-07 22:51:47 +0100376 http_end_txn(s);
377
Willy Tarreaua4cda672010-06-06 18:28:49 +0200378 for (i = 0; i < s->store_count; i++) {
379 if (!s->store[i].ts)
380 continue;
381 stksess_free(s->store[i].table, s->store[i].ts);
382 s->store[i].ts = NULL;
383 }
384
Willy Tarreau34eb6712011-10-24 18:15:04 +0200385 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200386 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100387 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
388 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200389 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100390
Willy Tarreau56123282010-08-06 19:06:56 +0200391 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200392 session_store_counters(s);
393
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100394 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100395 /* we have to unlink all watchers. We must not relink them if
396 * this session was the last one in the list.
397 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100398 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100399 LIST_INIT(&bref->users);
400 if (s->list.n != &sessions)
401 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100402 bref->ref = s->list.n;
403 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100404 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200405 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200406
407 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200408 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200409 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200410 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200411 pool_flush2(pool2_requri);
412 pool_flush2(pool2_capture);
413 pool_flush2(pool2_session);
414 pool_flush2(fe->req_cap_pool);
415 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200416 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200417}
418
419
420/* perform minimal intializations, report 0 in case of error, 1 if OK. */
421int init_session()
422{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100423 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200424 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
425 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426}
427
Willy Tarreau30e71012007-11-26 20:15:35 +0100428void session_process_counters(struct session *s)
429{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100430 unsigned long long bytes;
431
Willy Tarreau30e71012007-11-26 20:15:35 +0100432 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100433 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100434 s->logs.bytes_in = s->req->total;
435 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100436 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100437
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100438 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100439
Willy Tarreau827aee92011-03-10 16:55:02 +0100440 if (target_srv(&s->target))
441 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200442
443 if (s->listener->counters)
444 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200445
Willy Tarreau56123282010-08-06 19:06:56 +0200446 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200447 void *ptr;
448
Willy Tarreau56123282010-08-06 19:06:56 +0200449 ptr = stktable_data_ptr(s->stkctr2_table,
450 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200451 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200452 if (ptr)
453 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200454
Willy Tarreau56123282010-08-06 19:06:56 +0200455 ptr = stktable_data_ptr(s->stkctr2_table,
456 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200457 STKTABLE_DT_BYTES_IN_RATE);
458 if (ptr)
459 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200460 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200461 }
462
Willy Tarreau56123282010-08-06 19:06:56 +0200463 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200464 void *ptr;
465
Willy Tarreau56123282010-08-06 19:06:56 +0200466 ptr = stktable_data_ptr(s->stkctr1_table,
467 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200468 STKTABLE_DT_BYTES_IN_CNT);
469 if (ptr)
470 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
471
Willy Tarreau56123282010-08-06 19:06:56 +0200472 ptr = stktable_data_ptr(s->stkctr1_table,
473 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200474 STKTABLE_DT_BYTES_IN_RATE);
475 if (ptr)
476 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200477 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200478 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100479 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100480 }
481
Willy Tarreau30e71012007-11-26 20:15:35 +0100482 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100483 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100484 s->logs.bytes_out = s->rep->total;
485 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100486 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100487
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100488 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100489
Willy Tarreau827aee92011-03-10 16:55:02 +0100490 if (target_srv(&s->target))
491 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200492
493 if (s->listener->counters)
494 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200495
Willy Tarreau56123282010-08-06 19:06:56 +0200496 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200497 void *ptr;
498
Willy Tarreau56123282010-08-06 19:06:56 +0200499 ptr = stktable_data_ptr(s->stkctr2_table,
500 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200501 STKTABLE_DT_BYTES_OUT_CNT);
502 if (ptr)
503 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
504
Willy Tarreau56123282010-08-06 19:06:56 +0200505 ptr = stktable_data_ptr(s->stkctr2_table,
506 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200507 STKTABLE_DT_BYTES_OUT_RATE);
508 if (ptr)
509 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200510 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200511 }
512
Willy Tarreau56123282010-08-06 19:06:56 +0200513 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200514 void *ptr;
515
Willy Tarreau56123282010-08-06 19:06:56 +0200516 ptr = stktable_data_ptr(s->stkctr1_table,
517 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200518 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200519 if (ptr)
520 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200521
Willy Tarreau56123282010-08-06 19:06:56 +0200522 ptr = stktable_data_ptr(s->stkctr1_table,
523 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200524 STKTABLE_DT_BYTES_OUT_RATE);
525 if (ptr)
526 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200527 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200528 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100529 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100530 }
531}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100533/* This function is called with (si->state == SI_ST_CON) meaning that a
534 * connection was attempted and that the file descriptor is already allocated.
535 * We must check for establishment, error and abort. Possible output states
536 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
537 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
538 * otherwise 1.
539 */
Simon Hormandec5be42011-06-08 09:19:07 +0900540static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100541{
542 struct buffer *req = si->ob;
543 struct buffer *rep = si->ib;
544
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100545 /* If we got an error, or if nothing happened and the connection timed
546 * out, we must give up. The CER state handler will take care of retry
547 * attempts and error reports.
548 */
549 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100550 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100551 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200552 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100553 fd_delete(si->fd);
554
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200555 if (si->release)
556 si->release(si);
557
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100558 if (si->err_type)
559 return 0;
560
Willy Tarreau827aee92011-03-10 16:55:02 +0100561 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100562 if (si->flags & SI_FL_ERR)
563 si->err_type = SI_ET_CONN_ERR;
564 else
565 si->err_type = SI_ET_CONN_TO;
566 return 0;
567 }
568
569 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200570 if (unlikely((rep->flags & BF_SHUTW) ||
571 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200572 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100573 s->be->options & PR_O_ABRT_CLOSE)))) {
574 /* give up */
575 si->shutw(si);
576 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100577 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200578 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100579 if (s->srv_error)
580 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100581 return 1;
582 }
583
584 /* we need to wait a bit more if there was no activity either */
585 if (!(req->flags & BF_WRITE_ACTIVITY))
586 return 1;
587
588 /* OK, this means that a connection succeeded. The caller will be
589 * responsible for handling the transition from CON to EST.
590 */
591 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100592 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100593 si->state = SI_ST_EST;
594 si->err_type = SI_ET_NONE;
595 si->err_loc = NULL;
596 return 1;
597}
598
599/* This function is called with (si->state == SI_ST_CER) meaning that a
600 * previous connection attempt has failed and that the file descriptor
601 * has already been released. Possible causes include asynchronous error
602 * notification and time out. Possible output states are SI_ST_CLO when
603 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
604 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
605 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
606 * marked as in error state. It returns 0.
607 */
Simon Hormandec5be42011-06-08 09:19:07 +0900608static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100609{
610 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100611 if (target_srv(&s->target)) {
612 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100613
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100614 if (s->flags & SN_CURR_SESS) {
615 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100616 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100617 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100618 }
619
620 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200621 si->conn_retries--;
622 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100623 if (!si->err_type) {
624 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100625 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100626 }
627
Willy Tarreau827aee92011-03-10 16:55:02 +0100628 if (target_srv(&s->target))
629 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100630 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100631 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100632 if (may_dequeue_tasks(target_srv(&s->target), s->be))
633 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100634
635 /* shutw is enough so stop a connecting socket */
636 si->shutw(si);
637 si->ob->flags |= BF_WRITE_ERROR;
638 si->ib->flags |= BF_READ_ERROR;
639
640 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100641 if (s->srv_error)
642 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100643 return 0;
644 }
645
646 /* If the "redispatch" option is set on the backend, we are allowed to
647 * retry on another server for the last retry. In order to achieve this,
648 * we must mark the session unassigned, and eventually clear the DIRECT
649 * bit to ignore any persistence cookie. We won't count a retry nor a
650 * redispatch yet, because this will depend on what server is selected.
651 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100652 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100653 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100654 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100655 if (may_dequeue_tasks(target_srv(&s->target), s->be))
656 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100657
658 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100659 si->state = SI_ST_REQ;
660 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100661 if (target_srv(&s->target))
662 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100663 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100664 si->state = SI_ST_ASS;
665 }
666
667 if (si->flags & SI_FL_ERR) {
668 /* The error was an asynchronous connection error, and we will
669 * likely have to retry connecting to the same server, most
670 * likely leading to the same result. To avoid this, we wait
671 * one second before retrying.
672 */
673
674 if (!si->err_type)
675 si->err_type = SI_ET_CONN_ERR;
676
677 si->state = SI_ST_TAR;
678 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
679 return 0;
680 }
681 return 0;
682}
683
684/*
685 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200686 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
687 * SI_ST_INI) to SI_ST_EST, but only when a ->connect function is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100688 */
Simon Hormandec5be42011-06-08 09:19:07 +0900689static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100690{
691 struct buffer *req = si->ob;
692 struct buffer *rep = si->ib;
693
Willy Tarreau827aee92011-03-10 16:55:02 +0100694 if (target_srv(&s->target))
695 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100696
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100697 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100698 /* if the user wants to log as soon as possible, without counting
699 * bytes from the server, then this is the right moment. */
700 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
701 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100702 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100703 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100704 }
705 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100706 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
707 /* reset hdr_idx which was already initialized by the request.
708 * right now, the http parser does it.
709 * hdr_idx_init(&s->txn.hdr_idx);
710 */
711 }
712
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200713 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100714 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreaud04e8582010-05-31 12:31:35 +0200715 if (si->connect) {
716 /* real connections have timeouts */
717 req->wto = s->be->timeout.server;
718 rep->rto = s->be->timeout.server;
719 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100720 req->wex = TICK_ETERNITY;
721}
722
723/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
724 * Other input states are simply ignored.
725 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
726 * Flags must have previously been updated for timeouts and other conditions.
727 */
Simon Hormandec5be42011-06-08 09:19:07 +0900728static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100729{
Willy Tarreau827aee92011-03-10 16:55:02 +0100730 struct server *srv = target_srv(&s->target);
731
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100732 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 +0100733 now_ms, __FUNCTION__,
734 s,
735 s->req, s->rep,
736 s->req->rex, s->rep->wex,
737 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100738 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 +0100739
740 if (si->state == SI_ST_ASS) {
741 /* Server assigned to connection request, we have to try to connect now */
742 int conn_err;
743
744 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100745 srv = target_srv(&s->target);
746
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100747 if (conn_err == SN_ERR_NONE) {
748 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100749 if (srv)
750 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100751 return;
752 }
753
754 /* We have received a synchronous error. We might have to
755 * abort, retry immediately or redispatch.
756 */
757 if (conn_err == SN_ERR_INTERNAL) {
758 if (!si->err_type) {
759 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100760 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761 }
762
Willy Tarreau827aee92011-03-10 16:55:02 +0100763 if (srv)
764 srv_inc_sess_ctr(srv);
765 if (srv)
766 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100767 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100768
769 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100770 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100771 if (may_dequeue_tasks(srv, s->be))
772 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100773
774 /* Failed and not retryable. */
775 si->shutr(si);
776 si->shutw(si);
777 si->ob->flags |= BF_WRITE_ERROR;
778
779 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
780
781 /* no session was ever accounted for this server */
782 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100783 if (s->srv_error)
784 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100785 return;
786 }
787
788 /* We are facing a retryable error, but we don't want to run a
789 * turn-around now, as the problem is likely a source port
790 * allocation problem, so we want to retry now.
791 */
792 si->state = SI_ST_CER;
793 si->flags &= ~SI_FL_ERR;
794 sess_update_st_cer(s, si);
795 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
796 return;
797 }
798 else if (si->state == SI_ST_QUE) {
799 /* connection request was queued, check for any update */
800 if (!s->pend_pos) {
801 /* The connection is not in the queue anymore. Either
802 * we have a server connection slot available and we
803 * go directly to the assigned state, or we need to
804 * load-balance first and go to the INI state.
805 */
806 si->exp = TICK_ETERNITY;
807 if (unlikely(!(s->flags & SN_ASSIGNED)))
808 si->state = SI_ST_REQ;
809 else {
810 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
811 si->state = SI_ST_ASS;
812 }
813 return;
814 }
815
816 /* Connection request still in queue... */
817 if (si->flags & SI_FL_EXP) {
818 /* ... and timeout expired */
819 si->exp = TICK_ETERNITY;
820 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100821 if (srv)
822 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100823 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100824 si->shutr(si);
825 si->shutw(si);
826 si->ob->flags |= BF_WRITE_TIMEOUT;
827 if (!si->err_type)
828 si->err_type = SI_ET_QUEUE_TO;
829 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100830 if (s->srv_error)
831 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100832 return;
833 }
834
835 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200836 if ((si->ob->flags & (BF_READ_ERROR)) ||
837 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200838 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100839 /* give up */
840 si->exp = TICK_ETERNITY;
841 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
842 si->shutr(si);
843 si->shutw(si);
844 si->err_type |= SI_ET_QUEUE_ABRT;
845 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100846 if (s->srv_error)
847 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100848 return;
849 }
850
851 /* Nothing changed */
852 return;
853 }
854 else if (si->state == SI_ST_TAR) {
855 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200856 if ((si->ob->flags & (BF_READ_ERROR)) ||
857 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200858 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100859 /* give up */
860 si->exp = TICK_ETERNITY;
861 si->shutr(si);
862 si->shutw(si);
863 si->err_type |= SI_ET_CONN_ABRT;
864 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100865 if (s->srv_error)
866 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100867 return;
868 }
869
870 if (!(si->flags & SI_FL_EXP))
871 return; /* still in turn-around */
872
873 si->exp = TICK_ETERNITY;
874
875 /* we keep trying on the same server as long as the session is
876 * marked "assigned".
877 * FIXME: Should we force a redispatch attempt when the server is down ?
878 */
879 if (s->flags & SN_ASSIGNED)
880 si->state = SI_ST_ASS;
881 else
882 si->state = SI_ST_REQ;
883 return;
884 }
885}
886
Simon Hormandec5be42011-06-08 09:19:07 +0900887/* Set correct session termination flags in case no analyser has done it. It
888 * also counts a failed request if the server state has not reached the request
889 * stage.
890 */
891static void sess_set_term_flags(struct session *s)
892{
893 if (!(s->flags & SN_FINST_MASK)) {
894 if (s->si[1].state < SI_ST_REQ) {
895
896 s->fe->fe_counters.failed_req++;
897 if (s->listener->counters)
898 s->listener->counters->failed_req++;
899
900 s->flags |= SN_FINST_R;
901 }
902 else if (s->si[1].state == SI_ST_QUE)
903 s->flags |= SN_FINST_Q;
904 else if (s->si[1].state < SI_ST_EST)
905 s->flags |= SN_FINST_C;
906 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
907 s->flags |= SN_FINST_D;
908 else
909 s->flags |= SN_FINST_L;
910 }
911}
912
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100913/* This function initiates a server connection request on a stream interface
914 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
915 * indicating that a server has been assigned. It may also return SI_ST_QUE,
916 * or SI_ST_CLO upon error.
917 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100918static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
919{
920 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 +0100921 now_ms, __FUNCTION__,
922 s,
923 s->req, s->rep,
924 s->req->rex, s->rep->wex,
925 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100926 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 +0100927
928 if (si->state != SI_ST_REQ)
929 return;
930
931 /* Try to assign a server */
932 if (srv_redispatch_connect(s) != 0) {
933 /* We did not get a server. Either we queued the
934 * connection request, or we encountered an error.
935 */
936 if (si->state == SI_ST_QUE)
937 return;
938
939 /* we did not get any server, let's check the cause */
940 si->shutr(si);
941 si->shutw(si);
942 si->ob->flags |= BF_WRITE_ERROR;
943 if (!si->err_type)
944 si->err_type = SI_ET_CONN_OTHER;
945 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100946 if (s->srv_error)
947 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 return;
949 }
950
951 /* The server is assigned */
952 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
953 si->state = SI_ST_ASS;
954}
955
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200956/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100957 * if appropriate. The default_backend rule is also considered, then the
958 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200959 * It returns 1 if the processing can continue on next analysers, or zero if it
960 * either needs more data or wants to immediately abort the request.
961 */
Simon Hormandec5be42011-06-08 09:19:07 +0900962static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200963{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200964 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100965
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200966 req->analysers &= ~an_bit;
967 req->analyse_exp = TICK_ETERNITY;
968
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100969 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 +0200970 now_ms, __FUNCTION__,
971 s,
972 req,
973 req->rex, req->wex,
974 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100975 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200976 req->analysers);
977
978 /* now check whether we have some switching rules for this request */
979 if (!(s->flags & SN_BE_ASSIGNED)) {
980 struct switching_rule *rule;
981
982 list_for_each_entry(rule, &s->fe->switching_rules, list) {
983 int ret;
984
985 ret = acl_exec_cond(rule->cond, s->fe, s, &s->txn, ACL_DIR_REQ);
986 ret = acl_pass(ret);
987 if (rule->cond->pol == ACL_COND_UNLESS)
988 ret = !ret;
989
990 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200991 if (!session_set_backend(s, rule->be.backend))
992 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200993 break;
994 }
995 }
996
997 /* To ensure correct connection accounting on the backend, we
998 * have to assign one if it was not set (eg: a listen). This
999 * measure also takes care of correctly setting the default
1000 * backend if any.
1001 */
1002 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001003 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1004 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001005 }
1006
Willy Tarreaufb356202010-08-03 14:02:05 +02001007 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1008 if (s->fe == s->be) {
1009 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001010 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001011 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001012
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001013 /* 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 +01001014 * persistence rule, and report that in the session.
1015 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001016 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001017 int ret = 1;
1018
1019 if (prst_rule->cond) {
1020 ret = acl_exec_cond(prst_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
1021 ret = acl_pass(ret);
1022 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1023 ret = !ret;
1024 }
1025
1026 if (ret) {
1027 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001028 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1029 s->flags |= SN_FORCE_PRST;
1030 } else {
1031 s->flags |= SN_IGNORE_PRST;
1032 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001033 break;
1034 }
1035 }
1036
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001037 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001038
1039 sw_failed:
1040 /* immediately abort this request in case of allocation failure */
1041 buffer_abort(s->req);
1042 buffer_abort(s->rep);
1043
1044 if (!(s->flags & SN_ERR_MASK))
1045 s->flags |= SN_ERR_RESOURCE;
1046 if (!(s->flags & SN_FINST_MASK))
1047 s->flags |= SN_FINST_R;
1048
1049 s->txn.status = 500;
1050 s->req->analysers = 0;
1051 s->req->analyse_exp = TICK_ETERNITY;
1052 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001053}
1054
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001055/* This stream analyser works on a request. It applies all use-server rules on
1056 * it then returns 1. The data must already be present in the buffer otherwise
1057 * they won't match. It always returns 1.
1058 */
1059static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1060{
1061 struct proxy *px = s->be;
1062 struct server_rule *rule;
1063
1064 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1065 now_ms, __FUNCTION__,
1066 s,
1067 req,
1068 req->rex, req->wex,
1069 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001070 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001071 req->analysers);
1072
1073 if (!(s->flags & SN_ASSIGNED)) {
1074 list_for_each_entry(rule, &px->server_rules, list) {
1075 int ret;
1076
1077 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
1078 ret = acl_pass(ret);
1079 if (rule->cond->pol == ACL_COND_UNLESS)
1080 ret = !ret;
1081
1082 if (ret) {
1083 struct server *srv = rule->srv.ptr;
1084
1085 if ((srv->state & SRV_RUNNING) ||
1086 (px->options & PR_O_PERSIST) ||
1087 (s->flags & SN_FORCE_PRST)) {
1088 s->flags |= SN_DIRECT | SN_ASSIGNED;
1089 set_target_server(&s->target, srv);
1090 break;
1091 }
1092 /* if the server is not UP, let's go on with next rules
1093 * just in case another one is suited.
1094 */
1095 }
1096 }
1097 }
1098
1099 req->analysers &= ~an_bit;
1100 req->analyse_exp = TICK_ETERNITY;
1101 return 1;
1102}
1103
Emeric Brun1d33b292010-01-04 15:47:17 +01001104/* This stream analyser works on a request. It applies all sticking rules on
1105 * it then returns 1. The data must already be present in the buffer otherwise
1106 * they won't match. It always returns 1.
1107 */
Simon Hormandec5be42011-06-08 09:19:07 +09001108static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001109{
1110 struct proxy *px = s->be;
1111 struct sticking_rule *rule;
1112
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001113 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 +01001114 now_ms, __FUNCTION__,
1115 s,
1116 req,
1117 req->rex, req->wex,
1118 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001119 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001120 req->analysers);
1121
1122 list_for_each_entry(rule, &px->sticking_rules, list) {
1123 int ret = 1 ;
1124 int i;
1125
1126 for (i = 0; i < s->store_count; i++) {
1127 if (rule->table.t == s->store[i].table)
1128 break;
1129 }
1130
1131 if (i != s->store_count)
1132 continue;
1133
1134 if (rule->cond) {
1135 ret = acl_exec_cond(rule->cond, px, s, &s->txn, ACL_DIR_REQ);
1136 ret = acl_pass(ret);
1137 if (rule->cond->pol == ACL_COND_UNLESS)
1138 ret = !ret;
1139 }
1140
1141 if (ret) {
1142 struct stktable_key *key;
1143
Emeric Brun485479d2010-09-23 18:02:19 +02001144 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, PATTERN_FETCH_REQ, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001145 if (!key)
1146 continue;
1147
1148 if (rule->flags & STK_IS_MATCH) {
1149 struct stksess *ts;
1150
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001151 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001152 if (!(s->flags & SN_ASSIGNED)) {
1153 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001154 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001155
1156 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001157 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1158 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001159 if (node) {
1160 struct server *srv;
1161
1162 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001163 if ((srv->state & SRV_RUNNING) ||
1164 (px->options & PR_O_PERSIST) ||
1165 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001166 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001167 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001168 }
1169 }
1170 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001171 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001172 }
1173 }
1174 if (rule->flags & STK_IS_STORE) {
1175 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1176 struct stksess *ts;
1177
1178 ts = stksess_new(rule->table.t, key);
1179 if (ts) {
1180 s->store[s->store_count].table = rule->table.t;
1181 s->store[s->store_count++].ts = ts;
1182 }
1183 }
1184 }
1185 }
1186 }
1187
1188 req->analysers &= ~an_bit;
1189 req->analyse_exp = TICK_ETERNITY;
1190 return 1;
1191}
1192
1193/* This stream analyser works on a response. It applies all store rules on it
1194 * then returns 1. The data must already be present in the buffer otherwise
1195 * they won't match. It always returns 1.
1196 */
Simon Hormandec5be42011-06-08 09:19:07 +09001197static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001198{
1199 struct proxy *px = s->be;
1200 struct sticking_rule *rule;
1201 int i;
1202
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001203 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 +01001204 now_ms, __FUNCTION__,
1205 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001206 rep,
1207 rep->rex, rep->wex,
1208 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001209 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001210 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001211
1212 list_for_each_entry(rule, &px->storersp_rules, list) {
1213 int ret = 1 ;
1214 int storereqidx = -1;
1215
1216 for (i = 0; i < s->store_count; i++) {
1217 if (rule->table.t == s->store[i].table) {
1218 if (!(s->store[i].flags))
1219 storereqidx = i;
1220 break;
1221 }
1222 }
1223
1224 if ((i != s->store_count) && (storereqidx == -1))
1225 continue;
1226
1227 if (rule->cond) {
1228 ret = acl_exec_cond(rule->cond, px, s, &s->txn, ACL_DIR_RTR);
1229 ret = acl_pass(ret);
1230 if (rule->cond->pol == ACL_COND_UNLESS)
1231 ret = !ret;
1232 }
1233
1234 if (ret) {
1235 struct stktable_key *key;
1236
Emeric Brun485479d2010-09-23 18:02:19 +02001237 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, PATTERN_FETCH_RTR, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001238 if (!key)
1239 continue;
1240
1241 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001242 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001243 s->store[storereqidx].flags = 1;
1244 }
1245 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1246 struct stksess *ts;
1247
1248 ts = stksess_new(rule->table.t, key);
1249 if (ts) {
1250 s->store[s->store_count].table = rule->table.t;
1251 s->store[s->store_count].flags = 1;
1252 s->store[s->store_count++].ts = ts;
1253 }
1254 }
1255 }
1256 }
1257
1258 /* process store request and store response */
1259 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001260 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001261 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001262
Simon Hormanfa461682011-06-25 09:39:49 +09001263 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1264 stksess_free(s->store[i].table, s->store[i].ts);
1265 s->store[i].ts = NULL;
1266 continue;
1267 }
1268
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001269 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1270 if (ts) {
1271 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001272 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001273 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001274 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001275 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001276 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001277
1278 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001279 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001280 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001281 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001282 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001283
1284 rep->analysers &= ~an_bit;
1285 rep->analyse_exp = TICK_ETERNITY;
1286 return 1;
1287}
1288
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001289/* This macro is very specific to the function below. See the comments in
1290 * process_session() below to understand the logic and the tests.
1291 */
1292#define UPDATE_ANALYSERS(real, list, back, flag) { \
1293 list = (((list) & ~(flag)) | ~(back)) & (real); \
1294 back = real; \
1295 if (!(list)) \
1296 break; \
1297 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1298 continue; \
1299}
1300
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001301/* Processes the client, server, request and response jobs of a session task,
1302 * then puts it back to the wait queue in a clean state, or cleans up its
1303 * resources if it must be deleted. Returns in <next> the date the task wants
1304 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1305 * nothing too many times, the request and response buffers flags are monitored
1306 * and each function is called only if at least another function has changed at
1307 * least one flag it is interested in.
1308 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001309struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001310{
Willy Tarreau827aee92011-03-10 16:55:02 +01001311 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001312 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001313 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001314 unsigned int rq_prod_last, rq_cons_last;
1315 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001316 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001317
1318 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1319 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1320
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001321 /* this data may be no longer valid, clear it */
1322 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1323
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001324 /* This flag must explicitly be set every time */
1325 s->req->flags &= ~BF_READ_NOEXP;
1326
1327 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001328 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1329 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001330
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001331 /* we don't want the stream interface functions to recursively wake us up */
1332 if (s->req->prod->owner == t)
1333 s->req->prod->flags |= SI_FL_DONT_WAKE;
1334 if (s->req->cons->owner == t)
1335 s->req->cons->flags |= SI_FL_DONT_WAKE;
1336
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001337 /* 1a: Check for low level timeouts if needed. We just set a flag on
1338 * stream interfaces when their timeouts have expired.
1339 */
1340 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1341 stream_int_check_timeouts(&s->si[0]);
1342 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001343
1344 /* check buffer timeouts, and close the corresponding stream interfaces
1345 * for future reads or writes. Note: this will also concern upper layers
1346 * but we do not touch any other flag. We must be careful and correctly
1347 * detect state changes when calling them.
1348 */
1349
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001350 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001351
Willy Tarreau14641402009-12-29 14:49:56 +01001352 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1353 s->req->cons->flags |= SI_FL_NOLINGER;
1354 s->req->cons->shutw(s->req->cons);
1355 }
1356
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001357 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
1358 s->req->prod->shutr(s->req->prod);
1359
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001360 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001361
Willy Tarreau14641402009-12-29 14:49:56 +01001362 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1363 s->rep->cons->flags |= SI_FL_NOLINGER;
1364 s->rep->cons->shutw(s->rep->cons);
1365 }
1366
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001367 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
1368 s->rep->prod->shutr(s->rep->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001369 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001370
1371 /* 1b: check for low-level errors reported at the stream interface.
1372 * First we check if it's a retryable error (in which case we don't
1373 * want to tell the buffer). Otherwise we report the error one level
1374 * upper by setting flags into the buffers. Note that the side towards
1375 * the client cannot have connect (hence retryable) errors. Also, the
1376 * connection setup code must be able to deal with any type of abort.
1377 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001378 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001379 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1380 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
1381 s->si[0].shutr(&s->si[0]);
1382 s->si[0].shutw(&s->si[0]);
1383 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001384 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001385 s->be->be_counters.cli_aborts++;
1386 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001387 if (srv)
1388 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001389 if (!(s->flags & SN_ERR_MASK))
1390 s->flags |= SN_ERR_CLICL;
1391 if (!(s->flags & SN_FINST_MASK))
1392 s->flags |= SN_FINST_D;
1393 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001394 }
1395 }
1396
1397 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1398 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
1399 s->si[1].shutr(&s->si[1]);
1400 s->si[1].shutw(&s->si[1]);
1401 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001402 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001403 if (srv)
1404 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001405 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001406 s->be->be_counters.srv_aborts++;
1407 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001408 if (srv)
1409 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001410 if (!(s->flags & SN_ERR_MASK))
1411 s->flags |= SN_ERR_SRVCL;
1412 if (!(s->flags & SN_FINST_MASK))
1413 s->flags |= SN_FINST_D;
1414 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001415 }
1416 /* note: maybe we should process connection errors here ? */
1417 }
1418
1419 if (s->si[1].state == SI_ST_CON) {
1420 /* we were trying to establish a connection on the server side,
1421 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1422 */
1423 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1424 sess_update_st_cer(s, &s->si[1]);
1425 else if (s->si[1].state == SI_ST_EST)
1426 sess_establish(s, &s->si[1]);
1427
1428 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1429 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1430 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1431 */
1432 }
1433
Willy Tarreau815a9b22010-07-27 17:15:12 +02001434 rq_prod_last = s->si[0].state;
1435 rq_cons_last = s->si[1].state;
1436 rp_cons_last = s->si[0].state;
1437 rp_prod_last = s->si[1].state;
1438
1439 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001440 /* Check for connection closure */
1441
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001442 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001443 "[%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 +01001444 now_ms, __FUNCTION__, __LINE__,
1445 t,
1446 s, s->flags,
1447 s->req, s->rep,
1448 s->req->rex, s->rep->wex,
1449 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001450 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 +01001451 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001452 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001453
1454 /* nothing special to be done on client side */
1455 if (unlikely(s->req->prod->state == SI_ST_DIS))
1456 s->req->prod->state = SI_ST_CLO;
1457
1458 /* When a server-side connection is released, we have to count it and
1459 * check for pending connections on this server.
1460 */
1461 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1462 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001463 srv = target_srv(&s->target);
1464 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001465 if (s->flags & SN_CURR_SESS) {
1466 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001467 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001468 }
1469 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001470 if (may_dequeue_tasks(srv, s->be))
1471 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001472 }
1473 }
1474
1475 /*
1476 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1477 * at this point.
1478 */
1479
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001480 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001481 /* Analyse request */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001482 if (((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001483 ((s->req->flags ^ rqf_last) & BF_MASK_STATIC) ||
1484 s->si[0].state != rq_prod_last ||
1485 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001486 unsigned int flags = s->req->flags;
1487
1488 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001489 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001490 unsigned int ana_list;
1491 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001492
Willy Tarreau90deb182010-01-07 00:20:41 +01001493 /* it's up to the analysers to stop new connections,
1494 * disable reading or closing. Note: if an analyser
1495 * disables any of these bits, it is responsible for
1496 * enabling them again when it disables itself, so
1497 * that other analysers are called in similar conditions.
1498 */
1499 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001500 buffer_auto_connect(s->req);
1501 buffer_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001502
1503 /* We will call all analysers for which a bit is set in
1504 * s->req->analysers, following the bit order from LSB
1505 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001506 * the list when not needed. Any analyser may return 0
1507 * to break out of the loop, either because of missing
1508 * data to take a decision, or because it decides to
1509 * kill the session. We loop at least once through each
1510 * analyser, and we may loop again if other analysers
1511 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001512 *
1513 * We build a list of analysers to run. We evaluate all
1514 * of these analysers in the order of the lower bit to
1515 * the higher bit. This ordering is very important.
1516 * An analyser will often add/remove other analysers,
1517 * including itself. Any changes to itself have no effect
1518 * on the loop. If it removes any other analysers, we
1519 * want those analysers not to be called anymore during
1520 * this loop. If it adds an analyser that is located
1521 * after itself, we want it to be scheduled for being
1522 * processed during the loop. If it adds an analyser
1523 * which is located before it, we want it to switch to
1524 * it immediately, even if it has already been called
1525 * once but removed since.
1526 *
1527 * In order to achieve this, we compare the analyser
1528 * list after the call with a copy of it before the
1529 * call. The work list is fed with analyser bits that
1530 * appeared during the call. Then we compare previous
1531 * work list with the new one, and check the bits that
1532 * appeared. If the lowest of these bits is lower than
1533 * the current bit, it means we have enabled a previous
1534 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001535 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001536
1537 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001538 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001539 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001540
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001541 if (ana_list & AN_REQ_DECODE_PROXY) {
1542 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1543 break;
1544 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1545 }
1546
Willy Tarreaufb356202010-08-03 14:02:05 +02001547 if (ana_list & AN_REQ_INSPECT_FE) {
1548 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001549 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001550 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001551 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001552
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001553 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001554 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001555 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001556 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001557 }
1558
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001559 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001560 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1561 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001562 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001563 }
1564
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001565 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001566 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1567 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001568 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001569 }
1570
Willy Tarreaufb356202010-08-03 14:02:05 +02001571 if (ana_list & AN_REQ_INSPECT_BE) {
1572 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1573 break;
1574 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1575 }
1576
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001577 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001578 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1579 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001580 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001581 }
1582
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001583 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001584 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001585 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001586 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001587 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001588
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001589 if (ana_list & AN_REQ_SRV_RULES) {
1590 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1591 break;
1592 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1593 }
1594
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001595 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001596 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1597 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001598 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001599 }
1600
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001601 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001602 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001603 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001604 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001605 }
Emeric Brun647caf12009-06-30 17:57:00 +02001606
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001607 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001608 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1609 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001610 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001611 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001612
Emeric Brun1d33b292010-01-04 15:47:17 +01001613 if (ana_list & AN_REQ_STICKING_RULES) {
1614 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1615 break;
1616 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1617 }
1618
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001619 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001620 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1621 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001622 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001623 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001624 break;
1625 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001626 }
Willy Tarreau84455332009-03-15 22:34:05 +01001627
Willy Tarreau815a9b22010-07-27 17:15:12 +02001628 rq_prod_last = s->si[0].state;
1629 rq_cons_last = s->si[1].state;
Willy Tarreau0499e352010-12-17 07:13:42 +01001630 s->req->flags &= ~BF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001631 rqf_last = s->req->flags;
1632
1633 if ((s->req->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001634 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001635 }
1636
Willy Tarreau576507f2010-01-07 00:09:04 +01001637 /* we'll monitor the request analysers while parsing the response,
1638 * because some response analysers may indirectly enable new request
1639 * analysers (eg: HTTP keep-alive).
1640 */
1641 req_ana_back = s->req->analysers;
1642
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001643 resync_response:
1644 /* Analyse response */
1645
1646 if (unlikely(s->rep->flags & BF_HIJACK)) {
1647 /* In inject mode, we wake up everytime something has
1648 * happened on the write side of the buffer.
1649 */
1650 unsigned int flags = s->rep->flags;
1651
1652 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
1653 !(s->rep->flags & BF_FULL)) {
1654 s->rep->hijacker(s, s->rep);
1655 }
1656
1657 if ((s->rep->flags ^ flags) & BF_MASK_STATIC) {
1658 rpf_last = s->rep->flags;
1659 goto resync_response;
1660 }
1661 }
Willy Tarreau2f976e12010-11-11 14:28:47 +01001662 else if (((s->rep->flags & ~rpf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001663 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC ||
1664 s->si[0].state != rp_cons_last ||
1665 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001666 unsigned int flags = s->rep->flags;
1667
Willy Tarreau0499e352010-12-17 07:13:42 +01001668 if ((s->rep->flags & BF_MASK_ANALYSER) &&
1669 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1670 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1671 * for some free space in the response buffer, so we might need to call
1672 * it when something changes in the response buffer, but still we pass
1673 * it the request buffer. Note that the SI state might very well still
1674 * be zero due to us returning a flow of redirects!
1675 */
1676 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
1677 s->req->flags |= BF_WAKE_ONCE;
1678 }
1679
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001680 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001681 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001682 unsigned int ana_list;
1683 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001684
Willy Tarreau90deb182010-01-07 00:20:41 +01001685 /* it's up to the analysers to stop disable reading or
1686 * closing. Note: if an analyser disables any of these
1687 * bits, it is responsible for enabling them again when
1688 * it disables itself, so that other analysers are called
1689 * in similar conditions.
1690 */
1691 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001692 buffer_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001693
1694 /* We will call all analysers for which a bit is set in
1695 * s->rep->analysers, following the bit order from LSB
1696 * to MSB. The analysers must remove themselves from
1697 * the list when not needed. Any analyser may return 0
1698 * to break out of the loop, either because of missing
1699 * data to take a decision, or because it decides to
1700 * kill the session. We loop at least once through each
1701 * analyser, and we may loop again if other analysers
1702 * are added in the middle.
1703 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001704
1705 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001706 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001707 /* Warning! ensure that analysers are always placed in ascending order! */
1708
Emeric Brun97679e72010-09-23 17:56:44 +02001709 if (ana_list & AN_RES_INSPECT) {
1710 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1711 break;
1712 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1713 }
1714
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001715 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001716 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1717 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001718 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001719 }
1720
Emeric Brun1d33b292010-01-04 15:47:17 +01001721 if (ana_list & AN_RES_STORE_RULES) {
1722 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1723 break;
1724 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1725 }
1726
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001727 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001728 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1729 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001730 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001731 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001732
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001733 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001734 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1735 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001736 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001737 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001738 break;
1739 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001740 }
1741
Willy Tarreau815a9b22010-07-27 17:15:12 +02001742 rp_cons_last = s->si[0].state;
1743 rp_prod_last = s->si[1].state;
1744 rpf_last = s->rep->flags;
1745
1746 if ((s->rep->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001747 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001748 }
1749
Willy Tarreau576507f2010-01-07 00:09:04 +01001750 /* maybe someone has added some request analysers, so we must check and loop */
1751 if (s->req->analysers & ~req_ana_back)
1752 goto resync_request;
1753
Willy Tarreau0499e352010-12-17 07:13:42 +01001754 if ((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER)
1755 goto resync_request;
1756
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001757 /* FIXME: here we should call protocol handlers which rely on
1758 * both buffers.
1759 */
1760
1761
1762 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001763 * Now we propagate unhandled errors to the session. Normally
1764 * we're just in a data phase here since it means we have not
1765 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001766 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001767 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001768 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001769 if (s->req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1770 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001771 s->req->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001772 if (s->req->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001773 s->be->be_counters.cli_aborts++;
1774 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001775 if (srv)
1776 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001777 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001778 }
1779 else if (s->req->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001780 s->be->be_counters.cli_aborts++;
1781 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001782 if (srv)
1783 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001784 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001785 }
1786 else if (s->req->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001787 s->be->be_counters.srv_aborts++;
1788 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001789 if (srv)
1790 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001791 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001792 }
1793 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001794 s->be->be_counters.srv_aborts++;
1795 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001796 if (srv)
1797 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001798 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001799 }
Willy Tarreau84455332009-03-15 22:34:05 +01001800 sess_set_term_flags(s);
1801 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001802 else if (s->rep->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1803 /* Report it if the server got an error or a read timeout expired */
1804 s->rep->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001805 if (s->rep->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001806 s->be->be_counters.srv_aborts++;
1807 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001808 if (srv)
1809 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001810 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001811 }
1812 else if (s->rep->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001813 s->be->be_counters.srv_aborts++;
1814 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001815 if (srv)
1816 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001817 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001818 }
1819 else if (s->rep->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001820 s->be->be_counters.cli_aborts++;
1821 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001822 if (srv)
1823 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001824 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001825 }
1826 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001827 s->be->be_counters.cli_aborts++;
1828 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001829 if (srv)
1830 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001831 s->flags |= SN_ERR_CLITO;
1832 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001833 sess_set_term_flags(s);
1834 }
Willy Tarreau84455332009-03-15 22:34:05 +01001835 }
1836
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001837 /*
1838 * Here we take care of forwarding unhandled data. This also includes
1839 * connection establishments and shutdown requests.
1840 */
1841
1842
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001843 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001844 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001845 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1846 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001847 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001848 if (!s->req->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001849 !(s->req->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001850 (s->req->prod->state >= SI_ST_EST) &&
1851 (s->req->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001852 /* This buffer is freewheeling, there's no analyser nor hijacker
1853 * attached to it. If any data are left in, we'll permit them to
1854 * move.
1855 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001856 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001857 buffer_auto_connect(s->req);
1858 buffer_auto_close(s->req);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001859 buffer_flush(s->req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001860
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001861 /* We'll let data flow between the producer (if still connected)
1862 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001863 */
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001864 if (!(s->req->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001865 buffer_forward(s->req, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001866 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001867
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001868 /* check if it is wise to enable kernel splicing to forward request data */
1869 if (!(s->req->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1870 s->req->to_forward &&
1871 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001872 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001873 (pipes_used < global.maxpipes) &&
1874 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1875 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
1876 (s->req->flags & BF_STREAMER_FAST)))) {
1877 s->req->flags |= BF_KERN_SPLICING;
1878 }
1879
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001880 /* reflect what the L7 analysers have seen last */
1881 rqf_last = s->req->flags;
1882
1883 /*
1884 * Now forward all shutdown requests between both sides of the buffer
1885 */
1886
Willy Tarreau520d95e2009-09-19 21:04:57 +02001887 /* first, let's check if the request buffer needs to shutdown(write), which may
1888 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001889 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001890 */
Willy Tarreau82eeaf22009-12-29 12:09:05 +01001891 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
Willy Tarreaue4599762010-03-21 23:25:09 +01001892 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001893 buffer_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001894
1895 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001896 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_OUT_EMPTY)) == (BF_SHUTW_NOW|BF_OUT_EMPTY)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001897 s->req->cons->shutw(s->req->cons);
1898
1899 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001900 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
1901 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001902 buffer_shutr_now(s->req);
1903
1904 /* shutdown(read) pending */
1905 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
1906 s->req->prod->shutr(s->req->prod);
1907
Willy Tarreau520d95e2009-09-19 21:04:57 +02001908 /* it's possible that an upper layer has requested a connection setup or abort.
1909 * There are 2 situations where we decide to establish a new connection :
1910 * - there are data scheduled for emission in the buffer
1911 * - the BF_AUTO_CONNECT flag is set (active connection)
1912 */
1913 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001914 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001915 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001916 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001917 * switch to the connected state, otherwise we perform a connection
1918 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001919 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001920 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001921 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau7c0a1512011-03-10 11:17:02 +01001922 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET && !s->req->cons->connect)) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001923 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001924 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1925 s->req->wex = TICK_ETERNITY;
1926 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001927 }
Willy Tarreau73201222009-08-16 18:27:24 +02001928 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001929 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001930 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001931 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1932 buffer_shutr_now(s->rep);
1933 }
Willy Tarreau92795622009-03-06 12:51:23 +01001934 }
1935
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001936
1937 /* we may have a pending connection request, or a connection waiting
1938 * for completion.
1939 */
1940 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1941 do {
1942 /* nb: step 1 might switch from QUE to ASS, but we first want
1943 * to give a chance to step 2 to perform a redirect if needed.
1944 */
1945 if (s->si[1].state != SI_ST_REQ)
1946 sess_update_stream_int(s, &s->si[1]);
1947 if (s->si[1].state == SI_ST_REQ)
1948 sess_prepare_conn_req(s, &s->si[1]);
1949
Willy Tarreau827aee92011-03-10 16:55:02 +01001950 srv = target_srv(&s->target);
1951 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001952 perform_http_redirect(s, &s->si[1]);
1953 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001954
1955 /* Now we can add the server name to a header (if requested) */
1956 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001957 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001958 (s->be->mode == PR_MODE_HTTP) &&
1959 (s->be->server_id_hdr_name != NULL)) {
1960 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001961 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001962 }
1963
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001964 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001965 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001966 goto resync_stream_interface;
1967
Willy Tarreau815a9b22010-07-27 17:15:12 +02001968 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001969 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001970 goto resync_request;
1971
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001972 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001973
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001974 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001975 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001976 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1977 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001978 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001979 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001980 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001981 (s->rep->prod->state >= SI_ST_EST) &&
1982 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001983 /* This buffer is freewheeling, there's no analyser nor hijacker
1984 * attached to it. If any data are left in, we'll permit them to
1985 * move.
1986 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001987 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001988 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001989 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001990
1991 /* We'll let data flow between the producer (if still connected)
1992 * to the consumer.
1993 */
1994 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001995 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001996 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001997
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001998 /* check if it is wise to enable kernel splicing to forward response data */
1999 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
2000 s->rep->to_forward &&
2001 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002002 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002003 (pipes_used < global.maxpipes) &&
2004 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2005 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2006 (s->rep->flags & BF_STREAMER_FAST)))) {
2007 s->rep->flags |= BF_KERN_SPLICING;
2008 }
2009
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002010 /* reflect what the L7 analysers have seen last */
2011 rpf_last = s->rep->flags;
2012
2013 /*
2014 * Now forward all shutdown requests between both sides of the buffer
2015 */
2016
2017 /*
2018 * FIXME: this is probably where we should produce error responses.
2019 */
2020
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002021 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002022 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2023 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002024 buffer_shutw_now(s->rep);
2025
2026 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002027 if (unlikely((s->rep->flags & (BF_SHUTW|BF_OUT_EMPTY|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002028 s->rep->cons->shutw(s->rep->cons);
2029
2030 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002031 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2032 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002033 buffer_shutr_now(s->rep);
2034
2035 /* shutdown(read) pending */
2036 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
2037 s->rep->prod->shutr(s->rep->prod);
2038
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002039 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002040 goto resync_stream_interface;
2041
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002042 if (s->req->flags != rqf_last)
2043 goto resync_request;
2044
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002045 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002046 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002047
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002048 /* we're interested in getting wakeups again */
2049 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2050 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2051
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002052 /* This is needed only when debugging is enabled, to indicate
2053 * client-side or server-side close. Please note that in the unlikely
2054 * event where both sides would close at once, the sequence is reported
2055 * on the server side first.
2056 */
2057 if (unlikely((global.mode & MODE_DEBUG) &&
2058 (!(global.mode & MODE_QUIET) ||
2059 (global.mode & MODE_VERBOSE)))) {
2060 int len;
2061
2062 if (s->si[1].state == SI_ST_CLO &&
2063 s->si[1].prev_state == SI_ST_EST) {
2064 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2065 s->uniq_id, s->be->id,
2066 (unsigned short)s->si[0].fd,
2067 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002068 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002069 }
2070
2071 if (s->si[0].state == SI_ST_CLO &&
2072 s->si[0].prev_state == SI_ST_EST) {
2073 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2074 s->uniq_id, s->be->id,
2075 (unsigned short)s->si[0].fd,
2076 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002077 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002078 }
2079 }
2080
2081 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2082 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2083
2084 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2085 session_process_counters(s);
2086
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002087 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreaudc85b392009-08-18 07:38:19 +02002088 s->rep->cons->update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002089
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002090 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreaudc85b392009-08-18 07:38:19 +02002091 s->req->cons->update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002092
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002093 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2094 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 +01002095 s->si[0].prev_state = s->si[0].state;
2096 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002097 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2098 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002099
2100 /* Trick: if a request is being waiting for the server to respond,
2101 * and if we know the server can timeout, we don't want the timeout
2102 * to expire on the client side first, but we're still interested
2103 * in passing data from the client to the server (eg: POST). Thus,
2104 * we can cancel the client's request timeout if the server's
2105 * request timeout is set and the server has not yet sent a response.
2106 */
2107
Willy Tarreau520d95e2009-09-19 21:04:57 +02002108 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002109 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2110 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002111 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002112 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002113
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002114 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002115 * Note that this one may wake the task up again.
2116 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002117 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2118 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2119 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2120 s->req->cons->target.ptr.a->fct(s->req->cons);
2121 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2122 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002123 if (task_in_rq(t)) {
2124 /* If we woke up, we don't want to requeue the
2125 * task to the wait queue, but rather requeue
2126 * it into the runqueue ASAP.
2127 */
2128 t->expire = TICK_ETERNITY;
2129 return t;
2130 }
2131 }
2132
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002133 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2134 tick_first(s->rep->rex, s->rep->wex));
2135 if (s->req->analysers)
2136 t->expire = tick_first(t->expire, s->req->analyse_exp);
2137
2138 if (s->si[0].exp)
2139 t->expire = tick_first(t->expire, s->si[0].exp);
2140
2141 if (s->si[1].exp)
2142 t->expire = tick_first(t->expire, s->si[1].exp);
2143
2144#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002145 fprintf(stderr,
2146 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2147 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2148 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2149 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 +01002150#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002151
2152#ifdef DEBUG_DEV
2153 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002154 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002155 ABORT_NOW();
2156#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002157 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002158 }
2159
2160 s->fe->feconn--;
2161 if (s->flags & SN_BE_ASSIGNED)
2162 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002163 if (!(s->listener->options & LI_O_UNLIMITED))
2164 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002165 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002166 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002167 if (s->listener->state == LI_FULL)
2168 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002169
Willy Tarreau08ceb102011-07-24 22:58:00 +02002170 /* Dequeues all of the listeners waiting for a resource */
2171 if (!LIST_ISEMPTY(&global_listener_queue))
2172 dequeue_all_listeners(&global_listener_queue);
2173
Willy Tarreaub32907b2011-07-25 08:37:44 +02002174 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2175 (!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 +02002176 dequeue_all_listeners(&s->fe->listener_queue);
2177
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002178 if (unlikely((global.mode & MODE_DEBUG) &&
2179 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2180 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002181 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002182 s->uniq_id, s->be->id,
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002183 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002184 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002185 }
2186
2187 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2188 session_process_counters(s);
2189
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002190 if (s->txn.status) {
2191 int n;
2192
2193 n = s->txn.status / 100;
2194 if (n < 1 || n > 5)
2195 n = 0;
2196
2197 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002198 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002199
Willy Tarreau24657792010-02-26 10:30:28 +01002200 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002201 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002202 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002203 }
2204
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002205 /* let's do a final log if we need it */
2206 if (s->logs.logwait &&
2207 !(s->flags & SN_MONITOR) &&
2208 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002209 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002210 }
2211
2212 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002213 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002214 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002215 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002216 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002217}
2218
Willy Tarreau7c669d72008-06-20 15:04:11 +02002219/*
2220 * This function adjusts sess->srv_conn and maintains the previous and new
2221 * server's served session counts. Setting newsrv to NULL is enough to release
2222 * current connection slot. This function also notifies any LB algo which might
2223 * expect to be informed about any change in the number of active sessions on a
2224 * server.
2225 */
2226void sess_change_server(struct session *sess, struct server *newsrv)
2227{
2228 if (sess->srv_conn == newsrv)
2229 return;
2230
2231 if (sess->srv_conn) {
2232 sess->srv_conn->served--;
2233 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2234 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002235 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002236 }
2237
2238 if (newsrv) {
2239 newsrv->served++;
2240 if (newsrv->proxy->lbprm.server_take_conn)
2241 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002242 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002243 }
2244}
2245
Willy Tarreau84455332009-03-15 22:34:05 +01002246/* Handle server-side errors for default protocols. It is called whenever a a
2247 * connection setup is aborted or a request is aborted in queue. It sets the
2248 * session termination flags so that the caller does not have to worry about
2249 * them. It's installed as ->srv_error for the server-side stream_interface.
2250 */
2251void default_srv_error(struct session *s, struct stream_interface *si)
2252{
2253 int err_type = si->err_type;
2254 int err = 0, fin = 0;
2255
2256 if (err_type & SI_ET_QUEUE_ABRT) {
2257 err = SN_ERR_CLICL;
2258 fin = SN_FINST_Q;
2259 }
2260 else if (err_type & SI_ET_CONN_ABRT) {
2261 err = SN_ERR_CLICL;
2262 fin = SN_FINST_C;
2263 }
2264 else if (err_type & SI_ET_QUEUE_TO) {
2265 err = SN_ERR_SRVTO;
2266 fin = SN_FINST_Q;
2267 }
2268 else if (err_type & SI_ET_QUEUE_ERR) {
2269 err = SN_ERR_SRVCL;
2270 fin = SN_FINST_Q;
2271 }
2272 else if (err_type & SI_ET_CONN_TO) {
2273 err = SN_ERR_SRVTO;
2274 fin = SN_FINST_C;
2275 }
2276 else if (err_type & SI_ET_CONN_ERR) {
2277 err = SN_ERR_SRVCL;
2278 fin = SN_FINST_C;
2279 }
2280 else /* SI_ET_CONN_OTHER and others */ {
2281 err = SN_ERR_INTERNAL;
2282 fin = SN_FINST_C;
2283 }
2284
2285 if (!(s->flags & SN_ERR_MASK))
2286 s->flags |= err;
2287 if (!(s->flags & SN_FINST_MASK))
2288 s->flags |= fin;
2289}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002290
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002291/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2292void session_shutdown(struct session *session, int why)
2293{
2294 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2295 return;
2296
2297 buffer_shutw_now(session->req);
2298 buffer_shutr_now(session->rep);
2299 session->task->nice = 1024;
2300 if (!(session->flags & SN_ERR_MASK))
2301 session->flags |= why;
2302 task_wakeup(session->task, TASK_WOKEN_OTHER);
2303}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002304
Willy Tarreau8b22a712010-06-18 17:46:06 +02002305/************************************************************************/
2306/* All supported ACL keywords must be declared here. */
2307/************************************************************************/
2308
Willy Tarreaua5e37562011-12-16 17:06:15 +01002309/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002310static int
Willy Tarreau37406352012-04-23 16:16:37 +02002311acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002312{
Willy Tarreau37406352012-04-23 16:16:37 +02002313 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002314 temp_pattern.data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002315 if (ts != NULL) {
2316 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2317 if (!ptr)
2318 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002319 temp_pattern.data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002320 }
2321 return 1;
2322}
2323
Willy Tarreaua5e37562011-12-16 17:06:15 +01002324/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002325 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002326 */
2327static int
Willy Tarreau56123282010-08-06 19:06:56 +02002328acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002329 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002330{
Willy Tarreau56123282010-08-06 19:06:56 +02002331 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002332 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002333 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002334}
2335
Willy Tarreaua5e37562011-12-16 17:06:15 +01002336/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002337 * backend counters.
2338 */
2339static int
Willy Tarreau56123282010-08-06 19:06:56 +02002340acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002341 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002342{
Willy Tarreau56123282010-08-06 19:06:56 +02002343 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002344 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002345 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002346}
2347
Willy Tarreaua5e37562011-12-16 17:06:15 +01002348/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002349 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002350 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002351 */
2352static int
2353acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002354 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002355{
2356 struct stktable_key *key;
2357
David du Colombier4f92d322011-03-24 11:09:31 +01002358 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002359 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002360 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002361
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002362 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002363 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002364}
2365
2366/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002367 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002368 */
2369static int
Willy Tarreau37406352012-04-23 16:16:37 +02002370acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002371{
Willy Tarreau37406352012-04-23 16:16:37 +02002372 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002373 temp_pattern.data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002374 if (ts != NULL) {
2375 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2376 if (!ptr)
2377 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002378 temp_pattern.data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002379 }
2380 return 1;
2381}
2382
2383/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002384 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002385 */
2386static int
Willy Tarreau56123282010-08-06 19:06:56 +02002387acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002388 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002389{
Willy Tarreau56123282010-08-06 19:06:56 +02002390 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002391 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002392 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002393}
2394
2395/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002396 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002397 */
2398static int
Willy Tarreau56123282010-08-06 19:06:56 +02002399acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002400 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002401{
Willy Tarreau56123282010-08-06 19:06:56 +02002402 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002403 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002404 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002405}
2406
2407/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002408 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002409 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002410 */
2411static int
2412acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002413 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002414{
2415 struct stktable_key *key;
2416
David du Colombier4f92d322011-03-24 11:09:31 +01002417 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002418 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002419 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002420
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002421 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002422 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002423}
2424
Willy Tarreauf73cd112011-08-13 01:45:16 +02002425/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002426 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002427 */
2428static int
Willy Tarreau37406352012-04-23 16:16:37 +02002429acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002430{
Willy Tarreau37406352012-04-23 16:16:37 +02002431 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002432 temp_pattern.data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002433 if (ts != NULL) {
2434 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2435 if (!ptr)
2436 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002437 temp_pattern.data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002438 stktable_data_cast(ptr, gpc0) = 0;
2439 }
2440 return 1;
2441}
2442
2443/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002444 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002445 */
2446static int
2447acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002448 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002449{
2450 if (!l4->stkctr1_entry)
2451 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002452 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002453}
2454
2455/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002456 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002457 */
2458static int
2459acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002460 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002461{
2462 if (!l4->stkctr2_entry)
2463 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002464 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002465}
2466
2467/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002468 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002469 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002470 */
2471static int
2472acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002473 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002474{
2475 struct stktable_key *key;
2476
2477 key = tcp_src_to_stktable_key(l4);
2478 if (!key)
2479 return 0;
2480
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002481 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002482 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002483}
2484
Willy Tarreaua5e37562011-12-16 17:06:15 +01002485/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002486static int
Willy Tarreau37406352012-04-23 16:16:37 +02002487acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002488{
Willy Tarreau37406352012-04-23 16:16:37 +02002489 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002490 temp_pattern.data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002491 if (ts != NULL) {
2492 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2493 if (!ptr)
2494 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002495 temp_pattern.data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002496 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002497 return 1;
2498}
2499
Willy Tarreaua5e37562011-12-16 17:06:15 +01002500/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002501static int
Willy Tarreau56123282010-08-06 19:06:56 +02002502acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002503 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002504{
Willy Tarreau56123282010-08-06 19:06:56 +02002505 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002506 return 0;
2507
Willy Tarreau37406352012-04-23 16:16:37 +02002508 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002509}
2510
Willy Tarreaua5e37562011-12-16 17:06:15 +01002511/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002512static int
Willy Tarreau56123282010-08-06 19:06:56 +02002513acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002514 struct acl_expr *expr, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002515{
Willy Tarreau56123282010-08-06 19:06:56 +02002516 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002517 return 0;
2518
Willy Tarreau37406352012-04-23 16:16:37 +02002519 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002520}
2521
Willy Tarreaua5e37562011-12-16 17:06:15 +01002522/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002523 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002524 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002525 */
2526static int
2527acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002528 struct acl_expr *expr, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002529{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002530 struct stktable_key *key;
2531
David du Colombier4f92d322011-03-24 11:09:31 +01002532 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002533 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002534 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002535
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002536 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002537 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002538}
2539
Willy Tarreaua5e37562011-12-16 17:06:15 +01002540/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002541static int
Willy Tarreau37406352012-04-23 16:16:37 +02002542acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002543{
Willy Tarreau37406352012-04-23 16:16:37 +02002544 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002545 temp_pattern.data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002546 if (ts != NULL) {
2547 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2548 if (!ptr)
2549 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002550 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002551 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2552 }
2553 return 1;
2554}
2555
Willy Tarreaua5e37562011-12-16 17:06:15 +01002556/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002557 * the configured period.
2558 */
2559static int
Willy Tarreau56123282010-08-06 19:06:56 +02002560acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002561 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002562{
Willy Tarreau56123282010-08-06 19:06:56 +02002563 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002564 return 0;
2565
Willy Tarreau37406352012-04-23 16:16:37 +02002566 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002567}
2568
Willy Tarreaua5e37562011-12-16 17:06:15 +01002569/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002570 * the configured period.
2571 */
2572static int
Willy Tarreau56123282010-08-06 19:06:56 +02002573acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002574 struct acl_expr *expr, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002575{
Willy Tarreau56123282010-08-06 19:06:56 +02002576 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002577 return 0;
2578
Willy Tarreau37406352012-04-23 16:16:37 +02002579 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002580}
2581
Willy Tarreaua5e37562011-12-16 17:06:15 +01002582/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002583 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002584 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002585 */
2586static int
2587acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002588 struct acl_expr *expr, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002589{
2590 struct stktable_key *key;
2591
David du Colombier4f92d322011-03-24 11:09:31 +01002592 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002593 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002594 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002595
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002596 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002597 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002598}
2599
Willy Tarreaua5e37562011-12-16 17:06:15 +01002600/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002601 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002602 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002603 */
2604static int
2605acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002606 struct acl_expr *expr, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002607{
2608 struct stksess *ts;
2609 struct stktable_key *key;
2610 void *ptr;
2611
David du Colombier4f92d322011-03-24 11:09:31 +01002612 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002613 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002614 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002615
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002616 px = expr->args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002617
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002618 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2619 /* entry does not exist and could not be created */
2620 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002621
2622 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2623 if (!ptr)
2624 return 0; /* parameter not stored in this table */
2625
Willy Tarreau422aa072012-04-20 20:49:27 +02002626 temp_pattern.data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002627 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002628 return 1;
2629}
2630
Willy Tarreaua5e37562011-12-16 17:06:15 +01002631/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002632static int
Willy Tarreau37406352012-04-23 16:16:37 +02002633acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002634{
Willy Tarreau37406352012-04-23 16:16:37 +02002635 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002636 temp_pattern.data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002637
2638 if (ts != NULL) {
2639 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2640 if (!ptr)
2641 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002642 temp_pattern.data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002643 }
2644 return 1;
2645}
2646
Willy Tarreaua5e37562011-12-16 17:06:15 +01002647/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002648static int
Willy Tarreau56123282010-08-06 19:06:56 +02002649acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002650 struct acl_expr *expr, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002651{
Willy Tarreau56123282010-08-06 19:06:56 +02002652 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002653 return 0;
2654
Willy Tarreau37406352012-04-23 16:16:37 +02002655 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002656}
2657
Willy Tarreaua5e37562011-12-16 17:06:15 +01002658/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002659static int
Willy Tarreau56123282010-08-06 19:06:56 +02002660acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002661 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002662{
Willy Tarreau56123282010-08-06 19:06:56 +02002663 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002664 return 0;
2665
Willy Tarreau37406352012-04-23 16:16:37 +02002666 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002667}
2668
Willy Tarreaua5e37562011-12-16 17:06:15 +01002669/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002670 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002671 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002672 */
2673static int
2674acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002675 struct acl_expr *expr, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002676{
Willy Tarreau38285c12010-06-18 16:35:43 +02002677 struct stktable_key *key;
2678
David du Colombier4f92d322011-03-24 11:09:31 +01002679 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002680 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002681 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002682
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002683 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002684 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002685}
2686
Willy Tarreaua5e37562011-12-16 17:06:15 +01002687/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002688static int
Willy Tarreau37406352012-04-23 16:16:37 +02002689acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002690{
Willy Tarreau37406352012-04-23 16:16:37 +02002691 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002692 temp_pattern.data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002693 if (ts != NULL) {
2694 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2695 if (!ptr)
2696 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002697 temp_pattern.data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002698 }
2699 return 1;
2700}
2701
Willy Tarreaua5e37562011-12-16 17:06:15 +01002702/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002703static int
Willy Tarreau56123282010-08-06 19:06:56 +02002704acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002705 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002706{
Willy Tarreau56123282010-08-06 19:06:56 +02002707 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002708 return 0;
2709
Willy Tarreau37406352012-04-23 16:16:37 +02002710 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002711}
2712
Willy Tarreaua5e37562011-12-16 17:06:15 +01002713/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002714static int
Willy Tarreau56123282010-08-06 19:06:56 +02002715acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002716 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002717{
Willy Tarreau56123282010-08-06 19:06:56 +02002718 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002719 return 0;
2720
Willy Tarreau37406352012-04-23 16:16:37 +02002721 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002722}
2723
Willy Tarreaua5e37562011-12-16 17:06:15 +01002724/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002725 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002726 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002727 */
2728static int
2729acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002730 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002731{
2732 struct stktable_key *key;
2733
David du Colombier4f92d322011-03-24 11:09:31 +01002734 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002735 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002736 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002737
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002738 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002739 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002740}
2741
Willy Tarreaua5e37562011-12-16 17:06:15 +01002742/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002743static int
Willy Tarreau37406352012-04-23 16:16:37 +02002744acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002745{
Willy Tarreau37406352012-04-23 16:16:37 +02002746 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002747 temp_pattern.data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002748 if (ts != NULL) {
2749 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2750 if (!ptr)
2751 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002752 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002753 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2754 }
2755 return 1;
2756}
2757
Willy Tarreaua5e37562011-12-16 17:06:15 +01002758/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002759 * the configured period.
2760 */
2761static int
Willy Tarreau56123282010-08-06 19:06:56 +02002762acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002763 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002764{
Willy Tarreau56123282010-08-06 19:06:56 +02002765 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002766 return 0;
2767
Willy Tarreau37406352012-04-23 16:16:37 +02002768 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002769}
2770
Willy Tarreaua5e37562011-12-16 17:06:15 +01002771/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002772 * the configured period.
2773 */
2774static int
Willy Tarreau56123282010-08-06 19:06:56 +02002775acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002776 struct acl_expr *expr, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002777{
Willy Tarreau56123282010-08-06 19:06:56 +02002778 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002779 return 0;
2780
Willy Tarreau37406352012-04-23 16:16:37 +02002781 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002782}
2783
Willy Tarreaua5e37562011-12-16 17:06:15 +01002784/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002785 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002786 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002787 */
2788static int
2789acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002790 struct acl_expr *expr, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002791{
2792 struct stktable_key *key;
2793
David du Colombier4f92d322011-03-24 11:09:31 +01002794 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002795 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002796 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002798 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002799 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002800}
2801
Willy Tarreaua5e37562011-12-16 17:06:15 +01002802/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002803static int
Willy Tarreau37406352012-04-23 16:16:37 +02002804acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002805{
Willy Tarreau37406352012-04-23 16:16:37 +02002806 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002807 temp_pattern.data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002808 if (ts != NULL) {
2809 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2810 if (!ptr)
2811 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002812 temp_pattern.data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002813 }
2814 return 1;
2815}
2816
Willy Tarreaua5e37562011-12-16 17:06:15 +01002817/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002818static int
Willy Tarreau56123282010-08-06 19:06:56 +02002819acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002820 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002821{
Willy Tarreau56123282010-08-06 19:06:56 +02002822 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002823 return 0;
2824
Willy Tarreau37406352012-04-23 16:16:37 +02002825 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002826}
2827
Willy Tarreaua5e37562011-12-16 17:06:15 +01002828/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002829static int
Willy Tarreau56123282010-08-06 19:06:56 +02002830acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002831 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002832{
Willy Tarreau56123282010-08-06 19:06:56 +02002833 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002834 return 0;
2835
Willy Tarreau37406352012-04-23 16:16:37 +02002836 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002837}
2838
Willy Tarreaua5e37562011-12-16 17:06:15 +01002839/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002840 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002841 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002842 */
2843static int
2844acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002845 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002846{
2847 struct stktable_key *key;
2848
David du Colombier4f92d322011-03-24 11:09:31 +01002849 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002850 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002851 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002852
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002853 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002854 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002855}
2856
Willy Tarreaua5e37562011-12-16 17:06:15 +01002857/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002858static int
Willy Tarreau37406352012-04-23 16:16:37 +02002859acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002860{
Willy Tarreau37406352012-04-23 16:16:37 +02002861 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002862 temp_pattern.data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002863 if (ts != NULL) {
2864 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2865 if (!ptr)
2866 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002867 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002868 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2869 }
2870 return 1;
2871}
2872
Willy Tarreaua5e37562011-12-16 17:06:15 +01002873/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002874 * the configured period.
2875 */
2876static int
Willy Tarreau56123282010-08-06 19:06:56 +02002877acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002878 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002879{
Willy Tarreau56123282010-08-06 19:06:56 +02002880 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002881 return 0;
2882
Willy Tarreau37406352012-04-23 16:16:37 +02002883 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002884}
2885
Willy Tarreaua5e37562011-12-16 17:06:15 +01002886/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002887 * the configured period.
2888 */
2889static int
Willy Tarreau56123282010-08-06 19:06:56 +02002890acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002891 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002892{
Willy Tarreau56123282010-08-06 19:06:56 +02002893 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002894 return 0;
2895
Willy Tarreau37406352012-04-23 16:16:37 +02002896 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002897}
2898
Willy Tarreaua5e37562011-12-16 17:06:15 +01002899/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002900 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002901 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002902 */
2903static int
2904acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002905 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002906{
2907 struct stktable_key *key;
2908
David du Colombier4f92d322011-03-24 11:09:31 +01002909 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002910 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002911 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002912
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002913 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002914 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002915}
2916
Willy Tarreaua5e37562011-12-16 17:06:15 +01002917/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002918static int
Willy Tarreau37406352012-04-23 16:16:37 +02002919acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002920{
Willy Tarreau37406352012-04-23 16:16:37 +02002921 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002922 temp_pattern.data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002923 if (ts != NULL) {
2924 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2925 if (!ptr)
2926 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002927 temp_pattern.data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002928 }
2929 return 1;
2930}
2931
Willy Tarreaua5e37562011-12-16 17:06:15 +01002932/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002933static int
Willy Tarreau56123282010-08-06 19:06:56 +02002934acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002935 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002936{
Willy Tarreau56123282010-08-06 19:06:56 +02002937 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002938 return 0;
2939
Willy Tarreau37406352012-04-23 16:16:37 +02002940 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002941}
2942
Willy Tarreaua5e37562011-12-16 17:06:15 +01002943/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002944static int
Willy Tarreau56123282010-08-06 19:06:56 +02002945acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002946 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002947{
Willy Tarreau56123282010-08-06 19:06:56 +02002948 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002949 return 0;
2950
Willy Tarreau37406352012-04-23 16:16:37 +02002951 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002952}
2953
Willy Tarreaua5e37562011-12-16 17:06:15 +01002954/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002955 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002956 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002957 */
2958static int
2959acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002960 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002961{
2962 struct stktable_key *key;
2963
David du Colombier4f92d322011-03-24 11:09:31 +01002964 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002965 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002966 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002967
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002968 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002969 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002970}
2971
Willy Tarreaua5e37562011-12-16 17:06:15 +01002972/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002973static int
Willy Tarreau37406352012-04-23 16:16:37 +02002974acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002975{
Willy Tarreau37406352012-04-23 16:16:37 +02002976 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02002977 temp_pattern.data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002978 if (ts != NULL) {
2979 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
2980 if (!ptr)
2981 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02002982 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002983 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
2984 }
2985 return 1;
2986}
2987
Willy Tarreaua5e37562011-12-16 17:06:15 +01002988/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002989 * the configured period.
2990 */
2991static int
Willy Tarreau56123282010-08-06 19:06:56 +02002992acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02002993 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002994{
Willy Tarreau56123282010-08-06 19:06:56 +02002995 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002996 return 0;
2997
Willy Tarreau37406352012-04-23 16:16:37 +02002998 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002999}
3000
Willy Tarreaua5e37562011-12-16 17:06:15 +01003001/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003002 * the configured period.
3003 */
3004static int
Willy Tarreau56123282010-08-06 19:06:56 +02003005acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003006 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003007{
Willy Tarreau56123282010-08-06 19:06:56 +02003008 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003009 return 0;
3010
Willy Tarreau37406352012-04-23 16:16:37 +02003011 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003012}
3013
Willy Tarreaua5e37562011-12-16 17:06:15 +01003014/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003015 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003016 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003017 */
3018static int
3019acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003020 struct acl_expr *expr, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003021{
3022 struct stktable_key *key;
3023
David du Colombier4f92d322011-03-24 11:09:31 +01003024 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003025 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003026 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003027
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003028 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003029 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003030}
3031
Willy Tarreaua5e37562011-12-16 17:06:15 +01003032/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003033static int
Willy Tarreau37406352012-04-23 16:16:37 +02003034acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003035{
Willy Tarreau37406352012-04-23 16:16:37 +02003036 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003037 temp_pattern.data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003038
3039 if (ts != NULL) {
3040 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3041 if (!ptr)
3042 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02003043 temp_pattern.data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003044 }
3045 return 1;
3046}
3047
Willy Tarreaua5e37562011-12-16 17:06:15 +01003048/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003049 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003050 */
3051static int
Willy Tarreau56123282010-08-06 19:06:56 +02003052acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003053 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003054{
Willy Tarreau56123282010-08-06 19:06:56 +02003055 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003056 return 0;
3057
Willy Tarreau37406352012-04-23 16:16:37 +02003058 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003059}
3060
Willy Tarreaua5e37562011-12-16 17:06:15 +01003061/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003062 * session's tracked BE counters.
3063 */
3064static int
Willy Tarreau56123282010-08-06 19:06:56 +02003065acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003066 struct acl_expr *expr, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003067{
Willy Tarreau56123282010-08-06 19:06:56 +02003068 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003069 return 0;
3070
Willy Tarreau37406352012-04-23 16:16:37 +02003071 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003072}
3073
Willy Tarreaua5e37562011-12-16 17:06:15 +01003074/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003075 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003076 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003077 */
3078static int
3079acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003080 struct acl_expr *expr, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003081{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003082 struct stktable_key *key;
3083
David du Colombier4f92d322011-03-24 11:09:31 +01003084 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003085 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003086 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003087
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003088 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003089 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003090}
3091
Willy Tarreaua5e37562011-12-16 17:06:15 +01003092/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003093 * configured period.
3094 */
3095static int
Willy Tarreau37406352012-04-23 16:16:37 +02003096acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003097{
Willy Tarreau37406352012-04-23 16:16:37 +02003098 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003099 temp_pattern.data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003100 if (ts != NULL) {
3101 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3102 if (!ptr)
3103 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02003104 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003105 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3106 }
3107 return 1;
3108}
3109
Willy Tarreaua5e37562011-12-16 17:06:15 +01003110/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003111 * counters over the configured period.
3112 */
3113static int
Willy Tarreau56123282010-08-06 19:06:56 +02003114acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003115 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003116{
Willy Tarreau56123282010-08-06 19:06:56 +02003117 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003118 return 0;
3119
Willy Tarreau37406352012-04-23 16:16:37 +02003120 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003121}
3122
Willy Tarreaua5e37562011-12-16 17:06:15 +01003123/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003124 * counters over the configured period.
3125 */
3126static int
Willy Tarreau56123282010-08-06 19:06:56 +02003127acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003128 struct acl_expr *expr, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003129{
Willy Tarreau56123282010-08-06 19:06:56 +02003130 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003131 return 0;
3132
Willy Tarreau37406352012-04-23 16:16:37 +02003133 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003134}
3135
Willy Tarreaua5e37562011-12-16 17:06:15 +01003136/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003137 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003138 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003139 */
3140static int
3141acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003142 struct acl_expr *expr, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003143{
3144 struct stktable_key *key;
3145
David du Colombier4f92d322011-03-24 11:09:31 +01003146 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003147 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003148 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003149
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003150 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003151 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003152}
3153
Willy Tarreaua5e37562011-12-16 17:06:15 +01003154/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003155static int
Willy Tarreau37406352012-04-23 16:16:37 +02003156acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003157{
Willy Tarreau37406352012-04-23 16:16:37 +02003158 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003159 temp_pattern.data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003160
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003161 if (ts != NULL) {
3162 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003163 if (!ptr)
3164 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02003165 temp_pattern.data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003166 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003167 return 1;
3168}
3169
Willy Tarreaua5e37562011-12-16 17:06:15 +01003170/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003171 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003172 */
3173static int
Willy Tarreau56123282010-08-06 19:06:56 +02003174acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003175 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003176{
Willy Tarreau56123282010-08-06 19:06:56 +02003177 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003178 return 0;
3179
Willy Tarreau37406352012-04-23 16:16:37 +02003180 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003181}
3182
Willy Tarreaua5e37562011-12-16 17:06:15 +01003183/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003184 * tracked BE counters.
3185 */
3186static int
Willy Tarreau56123282010-08-06 19:06:56 +02003187acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003188 struct acl_expr *expr, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003189{
Willy Tarreau56123282010-08-06 19:06:56 +02003190 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003191 return 0;
3192
Willy Tarreau37406352012-04-23 16:16:37 +02003193 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003194}
3195
Willy Tarreaua5e37562011-12-16 17:06:15 +01003196/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003197 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003198 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003199 */
3200static int
3201acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003202 struct acl_expr *expr, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003203{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003204 struct stktable_key *key;
3205
David du Colombier4f92d322011-03-24 11:09:31 +01003206 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003207 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003208 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003209
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003210 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003211 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003212}
3213
Willy Tarreaua5e37562011-12-16 17:06:15 +01003214/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003215 * configured period.
3216 */
3217static int
Willy Tarreau37406352012-04-23 16:16:37 +02003218acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003219{
Willy Tarreau37406352012-04-23 16:16:37 +02003220 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003221 temp_pattern.data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003222 if (ts != NULL) {
3223 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3224 if (!ptr)
3225 return 0; /* parameter not stored */
Willy Tarreau422aa072012-04-20 20:49:27 +02003226 temp_pattern.data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003227 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3228 }
3229 return 1;
3230}
3231
Willy Tarreaua5e37562011-12-16 17:06:15 +01003232/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003233 * over the configured period.
3234 */
3235static int
Willy Tarreau56123282010-08-06 19:06:56 +02003236acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003237 struct acl_expr *expr, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003238{
Willy Tarreau56123282010-08-06 19:06:56 +02003239 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003240 return 0;
3241
Willy Tarreau37406352012-04-23 16:16:37 +02003242 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003243}
3244
Willy Tarreaua5e37562011-12-16 17:06:15 +01003245/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003246 * over the configured period.
3247 */
3248static int
Willy Tarreau56123282010-08-06 19:06:56 +02003249acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003250 struct acl_expr *expr, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003251{
Willy Tarreau56123282010-08-06 19:06:56 +02003252 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003253 return 0;
3254
Willy Tarreau37406352012-04-23 16:16:37 +02003255 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003256}
3257
Willy Tarreaua5e37562011-12-16 17:06:15 +01003258/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003259 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003260 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003261 */
3262static int
3263acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003264 struct acl_expr *expr, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003265{
3266 struct stktable_key *key;
3267
David du Colombier4f92d322011-03-24 11:09:31 +01003268 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003269 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003270 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003271
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003272 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003273 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003274}
3275
Willy Tarreau34db1082012-04-19 17:16:54 +02003276/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003277 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003278 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003279static int
3280acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003281 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003282{
Willy Tarreau37406352012-04-23 16:16:37 +02003283 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003284 temp_pattern.data.uint = expr->args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003285 return 1;
3286}
3287
Willy Tarreau34db1082012-04-19 17:16:54 +02003288/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003289 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003290 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003291static int
3292acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau37406352012-04-23 16:16:37 +02003293 struct acl_expr *expr, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003294{
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003295 px = expr->args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003296 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau422aa072012-04-20 20:49:27 +02003297 temp_pattern.data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003298 return 1;
3299}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003300
Willy Tarreau61612d42012-04-19 18:42:05 +02003301/* Note: must not be declared <const> as its list will be overwritten.
3302 * Please take care of keeping this list alphabetically sorted.
3303 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003304static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003305 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3306 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3307 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3308 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3309 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3310 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3311 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3312 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3313 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3314 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3315 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3316 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3317 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3318 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3319 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3320 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3321 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3322 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3323 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3324 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3325 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3326 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3327 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3328 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3329 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3330 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3331 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3332 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3333 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3334 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3335 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3336 { "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 +02003337 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3338 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3339 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3340 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3341 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3342 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3343 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3344 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3345 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3346 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3347 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3348 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3349 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3350 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3351 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3352 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3353 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3354 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3355 { "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 +02003356 { NULL, NULL, NULL, NULL },
3357}};
3358
3359
Willy Tarreau56123282010-08-06 19:06:56 +02003360/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003361 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3362 * <prm> struct is fed with the table name if any. If unspecified, the caller
3363 * will assume that the current proxy's table is used.
3364 */
3365int parse_track_counters(char **args, int *arg,
3366 int section_type, struct proxy *curpx,
3367 struct track_ctr_prm *prm,
3368 struct proxy *defpx, char *err, int errlen)
3369{
3370 int pattern_type = 0;
Willy Tarreau56123282010-08-06 19:06:56 +02003371 char *kw = args[*arg - 1];
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003372
Willy Tarreau56123282010-08-06 19:06:56 +02003373 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003374 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003375 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003376 */
3377 while (args[*arg]) {
3378 if (strcmp(args[*arg], "src") == 0) {
3379 prm->type = STKTABLE_TYPE_IP;
3380 pattern_type = 1;
3381 }
3382 else if (strcmp(args[*arg], "table") == 0) {
3383 if (!args[*arg + 1]) {
3384 snprintf(err, errlen,
Willy Tarreau56123282010-08-06 19:06:56 +02003385 "missing table for %s in %s '%s'.",
3386 kw, proxy_type_str(curpx), curpx->id);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003387 return -1;
3388 }
3389 /* we copy the table name for now, it will be resolved later */
3390 prm->table.n = strdup(args[*arg + 1]);
3391 (*arg)++;
3392 }
3393 else {
3394 /* unhandled keywords are handled by the caller */
3395 break;
3396 }
3397 (*arg)++;
3398 }
3399
3400 if (!pattern_type) {
3401 snprintf(err, errlen,
Willy Tarreau56123282010-08-06 19:06:56 +02003402 "%s key not specified in %s '%s' (found %s, only 'src' is supported).",
3403 kw, proxy_type_str(curpx), curpx->id, quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003404 return -1;
3405 }
3406
3407 return 0;
3408}
3409
Willy Tarreau8b22a712010-06-18 17:46:06 +02003410__attribute__((constructor))
3411static void __session_init(void)
3412{
3413 acl_register_keywords(&acl_kws);
3414}
3415
Willy Tarreaubaaee002006-06-26 02:48:02 +02003416/*
3417 * Local variables:
3418 * c-indent-level: 8
3419 * c-basic-offset: 8
3420 * End:
3421 */