blob: b90b25465fed343437f59db59dd92a0e1228b579 [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 Tarreau81f9aa32010-06-01 17:45:26 +02004 * Copyright 2000-2010 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 Tarreau55a8d0e2008-11-30 18:47:21 +010025#include <proto/backend.h>
Willy Tarreau7341d942007-05-13 19:56:02 +020026#include <proto/buffers.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010027#include <proto/checks.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020028#include <proto/dumpstats.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020029#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020030#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010031#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020032#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010034#include <proto/pipe.h>
Willy Tarreau62793712011-07-24 19:23:38 +020035#include <proto/protocols.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010036#include <proto/proto_http.h>
37#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020038#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010040#include <proto/server.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010041#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010042#include <proto/stream_interface.h>
43#include <proto/stream_sock.h>
44#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020046struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010047struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
Willy Tarreau81f9aa32010-06-01 17:45:26 +020049/* This function is called from the protocol layer accept() in order to instanciate
50 * a new session on behalf of a given listener and frontend. It returns a positive
Willy Tarreauabe8ea52010-11-11 10:56:04 +010051 * value upon success, 0 if the connection can be ignored, or a negative value upon
52 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020053 */
54int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
55{
56 struct proxy *p = l->frontend;
57 struct session *s;
58 struct http_txn *txn;
59 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010060 int ret;
61
62
63 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020064
Willy Tarreaufffe1322010-11-11 09:48:16 +010065 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020066 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020067
68 /* minimum session initialization required for monitor mode below */
69 s->flags = 0;
70 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020071 s->stkctr1_entry = NULL;
72 s->stkctr2_entry = NULL;
73 s->stkctr1_table = NULL;
74 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020075
76 /* if this session comes from a known monitoring system, we want to ignore
77 * it as soon as possible, which means closing it immediately for TCP, but
78 * cleanly.
79 */
80 if (unlikely((l->options & LI_O_CHK_MONNET) &&
81 addr->ss_family == AF_INET &&
82 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
83 if (p->mode == PR_MODE_TCP) {
Willy Tarreauabe8ea52010-11-11 10:56:04 +010084 ret = 0; /* successful termination */
85 goto out_free_session;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020086 }
87 s->flags |= SN_MONITOR;
88 s->logs.logwait = 0;
89 }
90
Willy Tarreauabe8ea52010-11-11 10:56:04 +010091 if (unlikely((t = task_new()) == NULL))
92 goto out_free_session;
93
Willy Tarreau81f9aa32010-06-01 17:45:26 +020094 /* OK, we're keeping the session, so let's properly initialize the session */
95 LIST_ADDQ(&sessions, &s->list);
96 LIST_INIT(&s->back_refs);
97
Willy Tarreau81f9aa32010-06-01 17:45:26 +020098 s->term_trace = 0;
Willy Tarreau6471afb2011-09-23 10:54:59 +020099 s->si[0].addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200100 s->logs.accept_date = date; /* user-visible date for logging */
101 s->logs.tv_accept = now; /* corrected date for internal use */
102 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200103 p->feconn++; /* beconn will be increased once assigned */
104
Willy Tarreaub36b4242010-06-04 20:59:39 +0200105 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200106
107 t->process = l->handler;
108 t->context = s;
109 t->nice = l->nice;
110 t->expire = TICK_ETERNITY;
111
112 s->task = t;
113 s->listener = l;
114
115 /* Note: initially, the session's backend points to the frontend.
116 * This changes later when switching rules are executed or
117 * when the default backend is assigned.
118 */
119 s->be = s->fe = p;
120 s->req = s->rep = NULL; /* will be allocated later */
121
122 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
123 * to abort right here as soon as possible, we check the rules before
124 * even initializing the stream interfaces.
125 */
126 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200127 /* let's do a no-linger now to close with a single RST. */
128 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100129 ret = 0; /* successful termination */
130 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200131 }
132
Willy Tarreaub36b4242010-06-04 20:59:39 +0200133 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100134 if (p->feconn > p->fe_counters.conn_max)
135 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100136
Willy Tarreaub36b4242010-06-04 20:59:39 +0200137 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200138 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200139 void *ptr;
140
Willy Tarreau56123282010-08-06 19:06:56 +0200141 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200142 if (ptr)
143 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200144
Willy Tarreau56123282010-08-06 19:06:56 +0200145 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200146 if (ptr)
147 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200148 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200149 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200150
Willy Tarreau56123282010-08-06 19:06:56 +0200151 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200152 void *ptr;
153
Willy Tarreau56123282010-08-06 19:06:56 +0200154 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200155 if (ptr)
156 stktable_data_cast(ptr, sess_cnt)++;
157
Willy Tarreau56123282010-08-06 19:06:56 +0200158 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200159 if (ptr)
160 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200161 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200162 }
163
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200164 /* this part should be common with other protocols */
165 s->si[0].fd = cfd;
166 s->si[0].owner = t;
167 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
168 s->si[0].err_type = SI_ET_NONE;
169 s->si[0].err_loc = NULL;
170 s->si[0].connect = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200171 s->si[0].release = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100172 clear_target(&s->si[0].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200173 s->si[0].exp = TICK_ETERNITY;
174 s->si[0].flags = SI_FL_NONE;
175
176 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
177 s->si[0].flags |= SI_FL_INDEP_STR;
178
179 if (addr->ss_family == AF_INET || addr->ss_family == AF_INET6)
180 s->si[0].flags = SI_FL_CAP_SPLTCP; /* TCP/TCPv6 splicing possible */
181
182 /* add the various callbacks */
183 stream_sock_prepare_interface(&s->si[0]);
184
185 /* pre-initialize the other side's stream interface to an INIT state. The
186 * callbacks will be initialized before attempting to connect.
187 */
188 s->si[1].fd = -1; /* just to help with debugging */
189 s->si[1].owner = t;
190 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
191 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200192 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200193 s->si[1].err_loc = NULL;
194 s->si[1].connect = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200195 s->si[1].release = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100196 clear_target(&s->si[1].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200197 s->si[1].shutr = stream_int_shutr;
198 s->si[1].shutw = stream_int_shutw;
199 s->si[1].exp = TICK_ETERNITY;
200 s->si[1].flags = SI_FL_NONE;
201
202 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
203 s->si[1].flags |= SI_FL_INDEP_STR;
204
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200205 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100206 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200207 s->pend_pos = NULL;
208
209 /* init store persistence */
210 s->store_count = 0;
211
212 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100213 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200214 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200215
216 txn = &s->txn;
217 /* Those variables will be checked and freed if non-NULL in
218 * session.c:session_free(). It is important that they are
219 * properly initialized.
220 */
221 txn->sessid = NULL;
222 txn->srv_cookie = NULL;
223 txn->cli_cookie = NULL;
224 txn->uri = NULL;
225 txn->req.cap = NULL;
226 txn->rsp.cap = NULL;
227 txn->hdr_idx.v = NULL;
228 txn->hdr_idx.size = txn->hdr_idx.used = 0;
229
230 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
231 goto out_free_task; /* no memory */
232
233 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
234 goto out_free_req; /* no memory */
235
236 /* initialize the request buffer */
237 s->req->size = global.tune.bufsize;
238 buffer_init(s->req);
239 s->req->prod = &s->si[0];
240 s->req->cons = &s->si[1];
241 s->si[0].ib = s->si[1].ob = s->req;
242 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
243
244 /* activate default analysers enabled for this listener */
245 s->req->analysers = l->analysers;
246
247 s->req->wto = TICK_ETERNITY;
248 s->req->rto = TICK_ETERNITY;
249 s->req->rex = TICK_ETERNITY;
250 s->req->wex = TICK_ETERNITY;
251 s->req->analyse_exp = TICK_ETERNITY;
252
253 /* initialize response buffer */
254 s->rep->size = global.tune.bufsize;
255 buffer_init(s->rep);
256 s->rep->prod = &s->si[1];
257 s->rep->cons = &s->si[0];
258 s->si[0].ob = s->si[1].ib = s->rep;
259 s->rep->analysers = 0;
260
Willy Tarreau96e31212011-05-30 18:10:30 +0200261 if (s->fe->options2 & PR_O2_NODELAY) {
262 s->req->flags |= BF_NEVER_WAIT;
263 s->rep->flags |= BF_NEVER_WAIT;
264 }
265
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200266 s->rep->rto = TICK_ETERNITY;
267 s->rep->wto = TICK_ETERNITY;
268 s->rep->rex = TICK_ETERNITY;
269 s->rep->wex = TICK_ETERNITY;
270 s->rep->analyse_exp = TICK_ETERNITY;
271
272 /* finish initialization of the accepted file descriptor */
273 fd_insert(cfd);
274 fdtab[cfd].owner = &s->si[0];
275 fdtab[cfd].state = FD_STREADY;
276 fdtab[cfd].flags = 0;
277 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
278 fdtab[cfd].cb[DIR_RD].b = s->req;
279 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
280 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200281 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
282 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200283 EV_FD_SET(cfd, DIR_RD);
284
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100285 if (p->accept && (ret = p->accept(s)) <= 0) {
286 /* Either we had an unrecoverable error (<0) or work is
287 * finished (=0, eg: monitoring), in both situations,
288 * we can release everything and close.
289 */
290 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200291 }
292
293 /* it is important not to call the wakeup function directly but to
294 * pass through task_wakeup(), because this one knows how to apply
295 * priorities to tasks.
296 */
297 task_wakeup(t, TASK_WOKEN_INIT);
298 return 1;
299
300 /* Error unrolling */
301 out_free_rep:
302 pool_free2(pool2_buffer, s->rep);
303 out_free_req:
304 pool_free2(pool2_buffer, s->req);
305 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200306 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200307 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200308 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200309 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200310 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100311 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200312 pool_free2(pool2_session, s);
313 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200314 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
315 /* critical error, no more memory, try to emit a 500 response */
316 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
317 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
318 }
319
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100320 if (fdtab[cfd].state != FD_STCLOSE)
321 fd_delete(cfd);
322 else
323 close(cfd);
324 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200325}
326
Willy Tarreaubaaee002006-06-26 02:48:02 +0200327/*
328 * frees the context associated to a session. It must have been removed first.
329 */
Simon Hormandec5be42011-06-08 09:19:07 +0900330static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200331{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100332 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200333 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100334 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200335 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100336
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337 if (s->pend_pos)
338 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100339
Willy Tarreau827aee92011-03-10 16:55:02 +0100340 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100341 if (s->flags & SN_CURR_SESS) {
342 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100343 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100344 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100345 if (may_dequeue_tasks(target_srv(&s->target), s->be))
346 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100347 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100348
Willy Tarreau7c669d72008-06-20 15:04:11 +0200349 if (unlikely(s->srv_conn)) {
350 /* the session still has a reserved slot on a server, but
351 * it should normally be only the same as the one above,
352 * so this should not happen in fact.
353 */
354 sess_change_server(s, NULL);
355 }
356
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100357 if (s->req->pipe)
358 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100359
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100360 if (s->rep->pipe)
361 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100362
Willy Tarreau48d63db2008-08-03 17:41:33 +0200363 pool_free2(pool2_buffer, s->req);
364 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200365
Willy Tarreau46023632010-01-07 22:51:47 +0100366 http_end_txn(s);
367
Willy Tarreaua4cda672010-06-06 18:28:49 +0200368 for (i = 0; i < s->store_count; i++) {
369 if (!s->store[i].ts)
370 continue;
371 stksess_free(s->store[i].table, s->store[i].ts);
372 s->store[i].ts = NULL;
373 }
374
Willy Tarreau34eb6712011-10-24 18:15:04 +0200375 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200376 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100377 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
378 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200379 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100380
Willy Tarreau56123282010-08-06 19:06:56 +0200381 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200382 session_store_counters(s);
383
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100384 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100385 /* we have to unlink all watchers. We must not relink them if
386 * this session was the last one in the list.
387 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100388 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100389 LIST_INIT(&bref->users);
390 if (s->list.n != &sessions)
391 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100392 bref->ref = s->list.n;
393 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100394 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200395 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200396
397 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200398 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200399 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200400 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200401 pool_flush2(pool2_requri);
402 pool_flush2(pool2_capture);
403 pool_flush2(pool2_session);
404 pool_flush2(fe->req_cap_pool);
405 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200406 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200407}
408
409
410/* perform minimal intializations, report 0 in case of error, 1 if OK. */
411int init_session()
412{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100413 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200414 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
415 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416}
417
Willy Tarreau30e71012007-11-26 20:15:35 +0100418void session_process_counters(struct session *s)
419{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100420 unsigned long long bytes;
421
Willy Tarreau30e71012007-11-26 20:15:35 +0100422 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100423 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100424 s->logs.bytes_in = s->req->total;
425 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100426 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100427
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100428 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100429
Willy Tarreau827aee92011-03-10 16:55:02 +0100430 if (target_srv(&s->target))
431 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200432
433 if (s->listener->counters)
434 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200435
Willy Tarreau56123282010-08-06 19:06:56 +0200436 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200437 void *ptr;
438
Willy Tarreau56123282010-08-06 19:06:56 +0200439 ptr = stktable_data_ptr(s->stkctr2_table,
440 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200441 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200442 if (ptr)
443 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200444
Willy Tarreau56123282010-08-06 19:06:56 +0200445 ptr = stktable_data_ptr(s->stkctr2_table,
446 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200447 STKTABLE_DT_BYTES_IN_RATE);
448 if (ptr)
449 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200450 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200451 }
452
Willy Tarreau56123282010-08-06 19:06:56 +0200453 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200454 void *ptr;
455
Willy Tarreau56123282010-08-06 19:06:56 +0200456 ptr = stktable_data_ptr(s->stkctr1_table,
457 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200458 STKTABLE_DT_BYTES_IN_CNT);
459 if (ptr)
460 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
461
Willy Tarreau56123282010-08-06 19:06:56 +0200462 ptr = stktable_data_ptr(s->stkctr1_table,
463 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200464 STKTABLE_DT_BYTES_IN_RATE);
465 if (ptr)
466 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200467 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200468 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100469 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100470 }
471
Willy Tarreau30e71012007-11-26 20:15:35 +0100472 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100473 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100474 s->logs.bytes_out = s->rep->total;
475 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100476 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100477
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100478 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100479
Willy Tarreau827aee92011-03-10 16:55:02 +0100480 if (target_srv(&s->target))
481 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200482
483 if (s->listener->counters)
484 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200485
Willy Tarreau56123282010-08-06 19:06:56 +0200486 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200487 void *ptr;
488
Willy Tarreau56123282010-08-06 19:06:56 +0200489 ptr = stktable_data_ptr(s->stkctr2_table,
490 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200491 STKTABLE_DT_BYTES_OUT_CNT);
492 if (ptr)
493 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
494
Willy Tarreau56123282010-08-06 19:06:56 +0200495 ptr = stktable_data_ptr(s->stkctr2_table,
496 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200497 STKTABLE_DT_BYTES_OUT_RATE);
498 if (ptr)
499 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200500 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200501 }
502
Willy Tarreau56123282010-08-06 19:06:56 +0200503 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200504 void *ptr;
505
Willy Tarreau56123282010-08-06 19:06:56 +0200506 ptr = stktable_data_ptr(s->stkctr1_table,
507 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200508 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200509 if (ptr)
510 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200511
Willy Tarreau56123282010-08-06 19:06:56 +0200512 ptr = stktable_data_ptr(s->stkctr1_table,
513 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200514 STKTABLE_DT_BYTES_OUT_RATE);
515 if (ptr)
516 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200517 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200518 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100519 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100520 }
521}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200522
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100523/* This function is called with (si->state == SI_ST_CON) meaning that a
524 * connection was attempted and that the file descriptor is already allocated.
525 * We must check for establishment, error and abort. Possible output states
526 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
527 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
528 * otherwise 1.
529 */
Simon Hormandec5be42011-06-08 09:19:07 +0900530static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100531{
532 struct buffer *req = si->ob;
533 struct buffer *rep = si->ib;
534
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100535 /* If we got an error, or if nothing happened and the connection timed
536 * out, we must give up. The CER state handler will take care of retry
537 * attempts and error reports.
538 */
539 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100540 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100541 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200542 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100543 fd_delete(si->fd);
544
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200545 if (si->release)
546 si->release(si);
547
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100548 if (si->err_type)
549 return 0;
550
Willy Tarreau827aee92011-03-10 16:55:02 +0100551 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100552 if (si->flags & SI_FL_ERR)
553 si->err_type = SI_ET_CONN_ERR;
554 else
555 si->err_type = SI_ET_CONN_TO;
556 return 0;
557 }
558
559 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200560 if (unlikely((rep->flags & BF_SHUTW) ||
561 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200562 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100563 s->be->options & PR_O_ABRT_CLOSE)))) {
564 /* give up */
565 si->shutw(si);
566 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100567 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200568 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100569 if (s->srv_error)
570 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100571 return 1;
572 }
573
574 /* we need to wait a bit more if there was no activity either */
575 if (!(req->flags & BF_WRITE_ACTIVITY))
576 return 1;
577
578 /* OK, this means that a connection succeeded. The caller will be
579 * responsible for handling the transition from CON to EST.
580 */
581 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100582 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100583 si->state = SI_ST_EST;
584 si->err_type = SI_ET_NONE;
585 si->err_loc = NULL;
586 return 1;
587}
588
589/* This function is called with (si->state == SI_ST_CER) meaning that a
590 * previous connection attempt has failed and that the file descriptor
591 * has already been released. Possible causes include asynchronous error
592 * notification and time out. Possible output states are SI_ST_CLO when
593 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
594 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
595 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
596 * marked as in error state. It returns 0.
597 */
Simon Hormandec5be42011-06-08 09:19:07 +0900598static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100599{
600 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100601 if (target_srv(&s->target)) {
602 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100603
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100604 if (s->flags & SN_CURR_SESS) {
605 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100606 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100607 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100608 }
609
610 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200611 si->conn_retries--;
612 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100613 if (!si->err_type) {
614 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100615 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100616 }
617
Willy Tarreau827aee92011-03-10 16:55:02 +0100618 if (target_srv(&s->target))
619 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100620 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100621 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100622 if (may_dequeue_tasks(target_srv(&s->target), s->be))
623 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100624
625 /* shutw is enough so stop a connecting socket */
626 si->shutw(si);
627 si->ob->flags |= BF_WRITE_ERROR;
628 si->ib->flags |= BF_READ_ERROR;
629
630 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100631 if (s->srv_error)
632 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100633 return 0;
634 }
635
636 /* If the "redispatch" option is set on the backend, we are allowed to
637 * retry on another server for the last retry. In order to achieve this,
638 * we must mark the session unassigned, and eventually clear the DIRECT
639 * bit to ignore any persistence cookie. We won't count a retry nor a
640 * redispatch yet, because this will depend on what server is selected.
641 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100642 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100643 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100644 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100645 if (may_dequeue_tasks(target_srv(&s->target), s->be))
646 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100647
648 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100649 si->state = SI_ST_REQ;
650 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100651 if (target_srv(&s->target))
652 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100653 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100654 si->state = SI_ST_ASS;
655 }
656
657 if (si->flags & SI_FL_ERR) {
658 /* The error was an asynchronous connection error, and we will
659 * likely have to retry connecting to the same server, most
660 * likely leading to the same result. To avoid this, we wait
661 * one second before retrying.
662 */
663
664 if (!si->err_type)
665 si->err_type = SI_ET_CONN_ERR;
666
667 si->state = SI_ST_TAR;
668 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
669 return 0;
670 }
671 return 0;
672}
673
674/*
675 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200676 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
677 * SI_ST_INI) to SI_ST_EST, but only when a ->connect function is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100678 */
Simon Hormandec5be42011-06-08 09:19:07 +0900679static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100680{
681 struct buffer *req = si->ob;
682 struct buffer *rep = si->ib;
683
Willy Tarreau827aee92011-03-10 16:55:02 +0100684 if (target_srv(&s->target))
685 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100686
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100687 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100688 /* if the user wants to log as soon as possible, without counting
689 * bytes from the server, then this is the right moment. */
690 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
691 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100692 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100693 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100694 }
695 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100696 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
697 /* reset hdr_idx which was already initialized by the request.
698 * right now, the http parser does it.
699 * hdr_idx_init(&s->txn.hdr_idx);
700 */
701 }
702
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200703 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100704 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreaud04e8582010-05-31 12:31:35 +0200705 if (si->connect) {
706 /* real connections have timeouts */
707 req->wto = s->be->timeout.server;
708 rep->rto = s->be->timeout.server;
709 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100710 req->wex = TICK_ETERNITY;
711}
712
713/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
714 * Other input states are simply ignored.
715 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
716 * Flags must have previously been updated for timeouts and other conditions.
717 */
Simon Hormandec5be42011-06-08 09:19:07 +0900718static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100719{
Willy Tarreau827aee92011-03-10 16:55:02 +0100720 struct server *srv = target_srv(&s->target);
721
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100722 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d\n",
723 now_ms, __FUNCTION__,
724 s,
725 s->req, s->rep,
726 s->req->rex, s->rep->wex,
727 s->req->flags, s->rep->flags,
728 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state);
729
730 if (si->state == SI_ST_ASS) {
731 /* Server assigned to connection request, we have to try to connect now */
732 int conn_err;
733
734 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100735 srv = target_srv(&s->target);
736
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100737 if (conn_err == SN_ERR_NONE) {
738 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100739 if (srv)
740 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100741 return;
742 }
743
744 /* We have received a synchronous error. We might have to
745 * abort, retry immediately or redispatch.
746 */
747 if (conn_err == SN_ERR_INTERNAL) {
748 if (!si->err_type) {
749 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100750 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100751 }
752
Willy Tarreau827aee92011-03-10 16:55:02 +0100753 if (srv)
754 srv_inc_sess_ctr(srv);
755 if (srv)
756 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100757 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100758
759 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100760 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100761 if (may_dequeue_tasks(srv, s->be))
762 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100763
764 /* Failed and not retryable. */
765 si->shutr(si);
766 si->shutw(si);
767 si->ob->flags |= BF_WRITE_ERROR;
768
769 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
770
771 /* no session was ever accounted for this server */
772 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100773 if (s->srv_error)
774 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100775 return;
776 }
777
778 /* We are facing a retryable error, but we don't want to run a
779 * turn-around now, as the problem is likely a source port
780 * allocation problem, so we want to retry now.
781 */
782 si->state = SI_ST_CER;
783 si->flags &= ~SI_FL_ERR;
784 sess_update_st_cer(s, si);
785 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
786 return;
787 }
788 else if (si->state == SI_ST_QUE) {
789 /* connection request was queued, check for any update */
790 if (!s->pend_pos) {
791 /* The connection is not in the queue anymore. Either
792 * we have a server connection slot available and we
793 * go directly to the assigned state, or we need to
794 * load-balance first and go to the INI state.
795 */
796 si->exp = TICK_ETERNITY;
797 if (unlikely(!(s->flags & SN_ASSIGNED)))
798 si->state = SI_ST_REQ;
799 else {
800 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
801 si->state = SI_ST_ASS;
802 }
803 return;
804 }
805
806 /* Connection request still in queue... */
807 if (si->flags & SI_FL_EXP) {
808 /* ... and timeout expired */
809 si->exp = TICK_ETERNITY;
810 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100811 if (srv)
812 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100813 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100814 si->shutr(si);
815 si->shutw(si);
816 si->ob->flags |= BF_WRITE_TIMEOUT;
817 if (!si->err_type)
818 si->err_type = SI_ET_QUEUE_TO;
819 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100820 if (s->srv_error)
821 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100822 return;
823 }
824
825 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200826 if ((si->ob->flags & (BF_READ_ERROR)) ||
827 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200828 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100829 /* give up */
830 si->exp = TICK_ETERNITY;
831 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
832 si->shutr(si);
833 si->shutw(si);
834 si->err_type |= SI_ET_QUEUE_ABRT;
835 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100836 if (s->srv_error)
837 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100838 return;
839 }
840
841 /* Nothing changed */
842 return;
843 }
844 else if (si->state == SI_ST_TAR) {
845 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200846 if ((si->ob->flags & (BF_READ_ERROR)) ||
847 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200848 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100849 /* give up */
850 si->exp = TICK_ETERNITY;
851 si->shutr(si);
852 si->shutw(si);
853 si->err_type |= SI_ET_CONN_ABRT;
854 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100855 if (s->srv_error)
856 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100857 return;
858 }
859
860 if (!(si->flags & SI_FL_EXP))
861 return; /* still in turn-around */
862
863 si->exp = TICK_ETERNITY;
864
865 /* we keep trying on the same server as long as the session is
866 * marked "assigned".
867 * FIXME: Should we force a redispatch attempt when the server is down ?
868 */
869 if (s->flags & SN_ASSIGNED)
870 si->state = SI_ST_ASS;
871 else
872 si->state = SI_ST_REQ;
873 return;
874 }
875}
876
Simon Hormandec5be42011-06-08 09:19:07 +0900877/* Set correct session termination flags in case no analyser has done it. It
878 * also counts a failed request if the server state has not reached the request
879 * stage.
880 */
881static void sess_set_term_flags(struct session *s)
882{
883 if (!(s->flags & SN_FINST_MASK)) {
884 if (s->si[1].state < SI_ST_REQ) {
885
886 s->fe->fe_counters.failed_req++;
887 if (s->listener->counters)
888 s->listener->counters->failed_req++;
889
890 s->flags |= SN_FINST_R;
891 }
892 else if (s->si[1].state == SI_ST_QUE)
893 s->flags |= SN_FINST_Q;
894 else if (s->si[1].state < SI_ST_EST)
895 s->flags |= SN_FINST_C;
896 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
897 s->flags |= SN_FINST_D;
898 else
899 s->flags |= SN_FINST_L;
900 }
901}
902
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100903/* This function initiates a server connection request on a stream interface
904 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
905 * indicating that a server has been assigned. It may also return SI_ST_QUE,
906 * or SI_ST_CLO upon error.
907 */
908static void sess_prepare_conn_req(struct session *s, struct stream_interface *si) {
909 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d\n",
910 now_ms, __FUNCTION__,
911 s,
912 s->req, s->rep,
913 s->req->rex, s->rep->wex,
914 s->req->flags, s->rep->flags,
915 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state);
916
917 if (si->state != SI_ST_REQ)
918 return;
919
920 /* Try to assign a server */
921 if (srv_redispatch_connect(s) != 0) {
922 /* We did not get a server. Either we queued the
923 * connection request, or we encountered an error.
924 */
925 if (si->state == SI_ST_QUE)
926 return;
927
928 /* we did not get any server, let's check the cause */
929 si->shutr(si);
930 si->shutw(si);
931 si->ob->flags |= BF_WRITE_ERROR;
932 if (!si->err_type)
933 si->err_type = SI_ET_CONN_OTHER;
934 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100935 if (s->srv_error)
936 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100937 return;
938 }
939
940 /* The server is assigned */
941 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
942 si->state = SI_ST_ASS;
943}
944
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200945/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100946 * if appropriate. The default_backend rule is also considered, then the
947 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200948 * It returns 1 if the processing can continue on next analysers, or zero if it
949 * either needs more data or wants to immediately abort the request.
950 */
Simon Hormandec5be42011-06-08 09:19:07 +0900951static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200952{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200953 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100954
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200955 req->analysers &= ~an_bit;
956 req->analyse_exp = TICK_ETERNITY;
957
958 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
959 now_ms, __FUNCTION__,
960 s,
961 req,
962 req->rex, req->wex,
963 req->flags,
964 req->l,
965 req->analysers);
966
967 /* now check whether we have some switching rules for this request */
968 if (!(s->flags & SN_BE_ASSIGNED)) {
969 struct switching_rule *rule;
970
971 list_for_each_entry(rule, &s->fe->switching_rules, list) {
972 int ret;
973
974 ret = acl_exec_cond(rule->cond, s->fe, s, &s->txn, ACL_DIR_REQ);
975 ret = acl_pass(ret);
976 if (rule->cond->pol == ACL_COND_UNLESS)
977 ret = !ret;
978
979 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200980 if (!session_set_backend(s, rule->be.backend))
981 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200982 break;
983 }
984 }
985
986 /* To ensure correct connection accounting on the backend, we
987 * have to assign one if it was not set (eg: a listen). This
988 * measure also takes care of correctly setting the default
989 * backend if any.
990 */
991 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200992 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
993 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200994 }
995
Willy Tarreaufb356202010-08-03 14:02:05 +0200996 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
997 if (s->fe == s->be) {
998 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200999 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001000 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001001
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001002 /* 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 +01001003 * persistence rule, and report that in the session.
1004 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001005 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001006 int ret = 1;
1007
1008 if (prst_rule->cond) {
1009 ret = acl_exec_cond(prst_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
1010 ret = acl_pass(ret);
1011 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1012 ret = !ret;
1013 }
1014
1015 if (ret) {
1016 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001017 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1018 s->flags |= SN_FORCE_PRST;
1019 } else {
1020 s->flags |= SN_IGNORE_PRST;
1021 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001022 break;
1023 }
1024 }
1025
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001026 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001027
1028 sw_failed:
1029 /* immediately abort this request in case of allocation failure */
1030 buffer_abort(s->req);
1031 buffer_abort(s->rep);
1032
1033 if (!(s->flags & SN_ERR_MASK))
1034 s->flags |= SN_ERR_RESOURCE;
1035 if (!(s->flags & SN_FINST_MASK))
1036 s->flags |= SN_FINST_R;
1037
1038 s->txn.status = 500;
1039 s->req->analysers = 0;
1040 s->req->analyse_exp = TICK_ETERNITY;
1041 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001042}
1043
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001044/* This stream analyser works on a request. It applies all use-server rules on
1045 * it then returns 1. The data must already be present in the buffer otherwise
1046 * they won't match. It always returns 1.
1047 */
1048static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1049{
1050 struct proxy *px = s->be;
1051 struct server_rule *rule;
1052
1053 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1054 now_ms, __FUNCTION__,
1055 s,
1056 req,
1057 req->rex, req->wex,
1058 req->flags,
1059 req->l,
1060 req->analysers);
1061
1062 if (!(s->flags & SN_ASSIGNED)) {
1063 list_for_each_entry(rule, &px->server_rules, list) {
1064 int ret;
1065
1066 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
1067 ret = acl_pass(ret);
1068 if (rule->cond->pol == ACL_COND_UNLESS)
1069 ret = !ret;
1070
1071 if (ret) {
1072 struct server *srv = rule->srv.ptr;
1073
1074 if ((srv->state & SRV_RUNNING) ||
1075 (px->options & PR_O_PERSIST) ||
1076 (s->flags & SN_FORCE_PRST)) {
1077 s->flags |= SN_DIRECT | SN_ASSIGNED;
1078 set_target_server(&s->target, srv);
1079 break;
1080 }
1081 /* if the server is not UP, let's go on with next rules
1082 * just in case another one is suited.
1083 */
1084 }
1085 }
1086 }
1087
1088 req->analysers &= ~an_bit;
1089 req->analyse_exp = TICK_ETERNITY;
1090 return 1;
1091}
1092
Emeric Brun1d33b292010-01-04 15:47:17 +01001093/* This stream analyser works on a request. It applies all sticking rules on
1094 * it then returns 1. The data must already be present in the buffer otherwise
1095 * they won't match. It always returns 1.
1096 */
Simon Hormandec5be42011-06-08 09:19:07 +09001097static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001098{
1099 struct proxy *px = s->be;
1100 struct sticking_rule *rule;
1101
1102 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1103 now_ms, __FUNCTION__,
1104 s,
1105 req,
1106 req->rex, req->wex,
1107 req->flags,
1108 req->l,
1109 req->analysers);
1110
1111 list_for_each_entry(rule, &px->sticking_rules, list) {
1112 int ret = 1 ;
1113 int i;
1114
1115 for (i = 0; i < s->store_count; i++) {
1116 if (rule->table.t == s->store[i].table)
1117 break;
1118 }
1119
1120 if (i != s->store_count)
1121 continue;
1122
1123 if (rule->cond) {
1124 ret = acl_exec_cond(rule->cond, px, s, &s->txn, ACL_DIR_REQ);
1125 ret = acl_pass(ret);
1126 if (rule->cond->pol == ACL_COND_UNLESS)
1127 ret = !ret;
1128 }
1129
1130 if (ret) {
1131 struct stktable_key *key;
1132
Emeric Brun485479d2010-09-23 18:02:19 +02001133 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, PATTERN_FETCH_REQ, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001134 if (!key)
1135 continue;
1136
1137 if (rule->flags & STK_IS_MATCH) {
1138 struct stksess *ts;
1139
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001140 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001141 if (!(s->flags & SN_ASSIGNED)) {
1142 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001143 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001144
1145 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001146 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1147 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001148 if (node) {
1149 struct server *srv;
1150
1151 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001152 if ((srv->state & SRV_RUNNING) ||
1153 (px->options & PR_O_PERSIST) ||
1154 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001155 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001156 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001157 }
1158 }
1159 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001160 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001161 }
1162 }
1163 if (rule->flags & STK_IS_STORE) {
1164 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1165 struct stksess *ts;
1166
1167 ts = stksess_new(rule->table.t, key);
1168 if (ts) {
1169 s->store[s->store_count].table = rule->table.t;
1170 s->store[s->store_count++].ts = ts;
1171 }
1172 }
1173 }
1174 }
1175 }
1176
1177 req->analysers &= ~an_bit;
1178 req->analyse_exp = TICK_ETERNITY;
1179 return 1;
1180}
1181
1182/* This stream analyser works on a response. It applies all store rules on it
1183 * then returns 1. The data must already be present in the buffer otherwise
1184 * they won't match. It always returns 1.
1185 */
Simon Hormandec5be42011-06-08 09:19:07 +09001186static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001187{
1188 struct proxy *px = s->be;
1189 struct sticking_rule *rule;
1190 int i;
1191
1192 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1193 now_ms, __FUNCTION__,
1194 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001195 rep,
1196 rep->rex, rep->wex,
1197 rep->flags,
1198 rep->l,
1199 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001200
1201 list_for_each_entry(rule, &px->storersp_rules, list) {
1202 int ret = 1 ;
1203 int storereqidx = -1;
1204
1205 for (i = 0; i < s->store_count; i++) {
1206 if (rule->table.t == s->store[i].table) {
1207 if (!(s->store[i].flags))
1208 storereqidx = i;
1209 break;
1210 }
1211 }
1212
1213 if ((i != s->store_count) && (storereqidx == -1))
1214 continue;
1215
1216 if (rule->cond) {
1217 ret = acl_exec_cond(rule->cond, px, s, &s->txn, ACL_DIR_RTR);
1218 ret = acl_pass(ret);
1219 if (rule->cond->pol == ACL_COND_UNLESS)
1220 ret = !ret;
1221 }
1222
1223 if (ret) {
1224 struct stktable_key *key;
1225
Emeric Brun485479d2010-09-23 18:02:19 +02001226 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, PATTERN_FETCH_RTR, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001227 if (!key)
1228 continue;
1229
1230 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001231 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001232 s->store[storereqidx].flags = 1;
1233 }
1234 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1235 struct stksess *ts;
1236
1237 ts = stksess_new(rule->table.t, key);
1238 if (ts) {
1239 s->store[s->store_count].table = rule->table.t;
1240 s->store[s->store_count].flags = 1;
1241 s->store[s->store_count++].ts = ts;
1242 }
1243 }
1244 }
1245 }
1246
1247 /* process store request and store response */
1248 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001249 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001250 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001251
Simon Hormanfa461682011-06-25 09:39:49 +09001252 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1253 stksess_free(s->store[i].table, s->store[i].ts);
1254 s->store[i].ts = NULL;
1255 continue;
1256 }
1257
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001258 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1259 if (ts) {
1260 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001261 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001262 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001263 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001264 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001265 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001266
1267 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001268 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001269 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001270 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001271 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001272
1273 rep->analysers &= ~an_bit;
1274 rep->analyse_exp = TICK_ETERNITY;
1275 return 1;
1276}
1277
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001278/* This macro is very specific to the function below. See the comments in
1279 * process_session() below to understand the logic and the tests.
1280 */
1281#define UPDATE_ANALYSERS(real, list, back, flag) { \
1282 list = (((list) & ~(flag)) | ~(back)) & (real); \
1283 back = real; \
1284 if (!(list)) \
1285 break; \
1286 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1287 continue; \
1288}
1289
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001290/* Processes the client, server, request and response jobs of a session task,
1291 * then puts it back to the wait queue in a clean state, or cleans up its
1292 * resources if it must be deleted. Returns in <next> the date the task wants
1293 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1294 * nothing too many times, the request and response buffers flags are monitored
1295 * and each function is called only if at least another function has changed at
1296 * least one flag it is interested in.
1297 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001298struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001299{
Willy Tarreau827aee92011-03-10 16:55:02 +01001300 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001301 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001302 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001303 unsigned int rq_prod_last, rq_cons_last;
1304 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001305 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001306
1307 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1308 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1309
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001310 /* this data may be no longer valid, clear it */
1311 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1312
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001313 /* This flag must explicitly be set every time */
1314 s->req->flags &= ~BF_READ_NOEXP;
1315
1316 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001317 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1318 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001319
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001320 /* we don't want the stream interface functions to recursively wake us up */
1321 if (s->req->prod->owner == t)
1322 s->req->prod->flags |= SI_FL_DONT_WAKE;
1323 if (s->req->cons->owner == t)
1324 s->req->cons->flags |= SI_FL_DONT_WAKE;
1325
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001326 /* 1a: Check for low level timeouts if needed. We just set a flag on
1327 * stream interfaces when their timeouts have expired.
1328 */
1329 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1330 stream_int_check_timeouts(&s->si[0]);
1331 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001332
1333 /* check buffer timeouts, and close the corresponding stream interfaces
1334 * for future reads or writes. Note: this will also concern upper layers
1335 * but we do not touch any other flag. We must be careful and correctly
1336 * detect state changes when calling them.
1337 */
1338
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001339 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001340
Willy Tarreau14641402009-12-29 14:49:56 +01001341 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1342 s->req->cons->flags |= SI_FL_NOLINGER;
1343 s->req->cons->shutw(s->req->cons);
1344 }
1345
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001346 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
1347 s->req->prod->shutr(s->req->prod);
1348
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001349 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001350
Willy Tarreau14641402009-12-29 14:49:56 +01001351 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1352 s->rep->cons->flags |= SI_FL_NOLINGER;
1353 s->rep->cons->shutw(s->rep->cons);
1354 }
1355
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001356 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
1357 s->rep->prod->shutr(s->rep->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001358 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001359
1360 /* 1b: check for low-level errors reported at the stream interface.
1361 * First we check if it's a retryable error (in which case we don't
1362 * want to tell the buffer). Otherwise we report the error one level
1363 * upper by setting flags into the buffers. Note that the side towards
1364 * the client cannot have connect (hence retryable) errors. Also, the
1365 * connection setup code must be able to deal with any type of abort.
1366 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001367 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001368 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1369 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
1370 s->si[0].shutr(&s->si[0]);
1371 s->si[0].shutw(&s->si[0]);
1372 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001373 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001374 s->be->be_counters.cli_aborts++;
1375 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001376 if (srv)
1377 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001378 if (!(s->flags & SN_ERR_MASK))
1379 s->flags |= SN_ERR_CLICL;
1380 if (!(s->flags & SN_FINST_MASK))
1381 s->flags |= SN_FINST_D;
1382 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001383 }
1384 }
1385
1386 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1387 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
1388 s->si[1].shutr(&s->si[1]);
1389 s->si[1].shutw(&s->si[1]);
1390 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001391 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001392 if (srv)
1393 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001394 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001395 s->be->be_counters.srv_aborts++;
1396 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001397 if (srv)
1398 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001399 if (!(s->flags & SN_ERR_MASK))
1400 s->flags |= SN_ERR_SRVCL;
1401 if (!(s->flags & SN_FINST_MASK))
1402 s->flags |= SN_FINST_D;
1403 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001404 }
1405 /* note: maybe we should process connection errors here ? */
1406 }
1407
1408 if (s->si[1].state == SI_ST_CON) {
1409 /* we were trying to establish a connection on the server side,
1410 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1411 */
1412 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1413 sess_update_st_cer(s, &s->si[1]);
1414 else if (s->si[1].state == SI_ST_EST)
1415 sess_establish(s, &s->si[1]);
1416
1417 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1418 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1419 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1420 */
1421 }
1422
Willy Tarreau815a9b22010-07-27 17:15:12 +02001423 rq_prod_last = s->si[0].state;
1424 rq_cons_last = s->si[1].state;
1425 rp_cons_last = s->si[0].state;
1426 rp_prod_last = s->si[1].state;
1427
1428 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001429 /* Check for connection closure */
1430
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001431 DPRINTF(stderr,
1432 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
1433 now_ms, __FUNCTION__, __LINE__,
1434 t,
1435 s, s->flags,
1436 s->req, s->rep,
1437 s->req->rex, s->rep->wex,
1438 s->req->flags, s->rep->flags,
1439 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state,
1440 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001441 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001442
1443 /* nothing special to be done on client side */
1444 if (unlikely(s->req->prod->state == SI_ST_DIS))
1445 s->req->prod->state = SI_ST_CLO;
1446
1447 /* When a server-side connection is released, we have to count it and
1448 * check for pending connections on this server.
1449 */
1450 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1451 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001452 srv = target_srv(&s->target);
1453 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001454 if (s->flags & SN_CURR_SESS) {
1455 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001456 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001457 }
1458 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001459 if (may_dequeue_tasks(srv, s->be))
1460 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001461 }
1462 }
1463
1464 /*
1465 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1466 * at this point.
1467 */
1468
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001469 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001470 /* Analyse request */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001471 if (((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001472 ((s->req->flags ^ rqf_last) & BF_MASK_STATIC) ||
1473 s->si[0].state != rq_prod_last ||
1474 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001475 unsigned int flags = s->req->flags;
1476
1477 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001478 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001479 unsigned int ana_list;
1480 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001481
Willy Tarreau90deb182010-01-07 00:20:41 +01001482 /* it's up to the analysers to stop new connections,
1483 * disable reading or closing. Note: if an analyser
1484 * disables any of these bits, it is responsible for
1485 * enabling them again when it disables itself, so
1486 * that other analysers are called in similar conditions.
1487 */
1488 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001489 buffer_auto_connect(s->req);
1490 buffer_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001491
1492 /* We will call all analysers for which a bit is set in
1493 * s->req->analysers, following the bit order from LSB
1494 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001495 * the list when not needed. Any analyser may return 0
1496 * to break out of the loop, either because of missing
1497 * data to take a decision, or because it decides to
1498 * kill the session. We loop at least once through each
1499 * analyser, and we may loop again if other analysers
1500 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001501 *
1502 * We build a list of analysers to run. We evaluate all
1503 * of these analysers in the order of the lower bit to
1504 * the higher bit. This ordering is very important.
1505 * An analyser will often add/remove other analysers,
1506 * including itself. Any changes to itself have no effect
1507 * on the loop. If it removes any other analysers, we
1508 * want those analysers not to be called anymore during
1509 * this loop. If it adds an analyser that is located
1510 * after itself, we want it to be scheduled for being
1511 * processed during the loop. If it adds an analyser
1512 * which is located before it, we want it to switch to
1513 * it immediately, even if it has already been called
1514 * once but removed since.
1515 *
1516 * In order to achieve this, we compare the analyser
1517 * list after the call with a copy of it before the
1518 * call. The work list is fed with analyser bits that
1519 * appeared during the call. Then we compare previous
1520 * work list with the new one, and check the bits that
1521 * appeared. If the lowest of these bits is lower than
1522 * the current bit, it means we have enabled a previous
1523 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001524 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001525
1526 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001527 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001528 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001529
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001530 if (ana_list & AN_REQ_DECODE_PROXY) {
1531 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1532 break;
1533 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1534 }
1535
Willy Tarreaufb356202010-08-03 14:02:05 +02001536 if (ana_list & AN_REQ_INSPECT_FE) {
1537 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001538 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001539 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001540 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001541
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001542 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001543 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001544 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001545 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001546 }
1547
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001548 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001549 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1550 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001551 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001552 }
1553
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001554 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001555 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1556 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001557 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001558 }
1559
Willy Tarreaufb356202010-08-03 14:02:05 +02001560 if (ana_list & AN_REQ_INSPECT_BE) {
1561 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1562 break;
1563 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1564 }
1565
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001566 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001567 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1568 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001569 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001570 }
1571
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001572 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001573 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001574 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001575 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001576 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001577
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001578 if (ana_list & AN_REQ_SRV_RULES) {
1579 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1580 break;
1581 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1582 }
1583
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001584 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001585 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1586 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001587 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001588 }
1589
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001590 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001591 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001592 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001593 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001594 }
Emeric Brun647caf12009-06-30 17:57:00 +02001595
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001596 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001597 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1598 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001599 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001600 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001601
Emeric Brun1d33b292010-01-04 15:47:17 +01001602 if (ana_list & AN_REQ_STICKING_RULES) {
1603 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1604 break;
1605 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1606 }
1607
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001608 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001609 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1610 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001611 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001612 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001613 break;
1614 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001615 }
Willy Tarreau84455332009-03-15 22:34:05 +01001616
Willy Tarreau815a9b22010-07-27 17:15:12 +02001617 rq_prod_last = s->si[0].state;
1618 rq_cons_last = s->si[1].state;
Willy Tarreau0499e352010-12-17 07:13:42 +01001619 s->req->flags &= ~BF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001620 rqf_last = s->req->flags;
1621
1622 if ((s->req->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001623 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001624 }
1625
Willy Tarreau576507f2010-01-07 00:09:04 +01001626 /* we'll monitor the request analysers while parsing the response,
1627 * because some response analysers may indirectly enable new request
1628 * analysers (eg: HTTP keep-alive).
1629 */
1630 req_ana_back = s->req->analysers;
1631
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001632 resync_response:
1633 /* Analyse response */
1634
1635 if (unlikely(s->rep->flags & BF_HIJACK)) {
1636 /* In inject mode, we wake up everytime something has
1637 * happened on the write side of the buffer.
1638 */
1639 unsigned int flags = s->rep->flags;
1640
1641 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
1642 !(s->rep->flags & BF_FULL)) {
1643 s->rep->hijacker(s, s->rep);
1644 }
1645
1646 if ((s->rep->flags ^ flags) & BF_MASK_STATIC) {
1647 rpf_last = s->rep->flags;
1648 goto resync_response;
1649 }
1650 }
Willy Tarreau2f976e12010-11-11 14:28:47 +01001651 else if (((s->rep->flags & ~rpf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001652 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC ||
1653 s->si[0].state != rp_cons_last ||
1654 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001655 unsigned int flags = s->rep->flags;
1656
Willy Tarreau0499e352010-12-17 07:13:42 +01001657 if ((s->rep->flags & BF_MASK_ANALYSER) &&
1658 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1659 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1660 * for some free space in the response buffer, so we might need to call
1661 * it when something changes in the response buffer, but still we pass
1662 * it the request buffer. Note that the SI state might very well still
1663 * be zero due to us returning a flow of redirects!
1664 */
1665 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
1666 s->req->flags |= BF_WAKE_ONCE;
1667 }
1668
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001669 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001670 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001671 unsigned int ana_list;
1672 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001673
Willy Tarreau90deb182010-01-07 00:20:41 +01001674 /* it's up to the analysers to stop disable reading or
1675 * closing. Note: if an analyser disables any of these
1676 * bits, it is responsible for enabling them again when
1677 * it disables itself, so that other analysers are called
1678 * in similar conditions.
1679 */
1680 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001681 buffer_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001682
1683 /* We will call all analysers for which a bit is set in
1684 * s->rep->analysers, following the bit order from LSB
1685 * to MSB. The analysers must remove themselves from
1686 * the list when not needed. Any analyser may return 0
1687 * to break out of the loop, either because of missing
1688 * data to take a decision, or because it decides to
1689 * kill the session. We loop at least once through each
1690 * analyser, and we may loop again if other analysers
1691 * are added in the middle.
1692 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001693
1694 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001695 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001696 /* Warning! ensure that analysers are always placed in ascending order! */
1697
Emeric Brun97679e72010-09-23 17:56:44 +02001698 if (ana_list & AN_RES_INSPECT) {
1699 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1700 break;
1701 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1702 }
1703
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001704 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001705 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1706 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001707 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001708 }
1709
Emeric Brun1d33b292010-01-04 15:47:17 +01001710 if (ana_list & AN_RES_STORE_RULES) {
1711 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1712 break;
1713 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1714 }
1715
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001716 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001717 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1718 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001719 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001720 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001721
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001722 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001723 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1724 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001725 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001726 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001727 break;
1728 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001729 }
1730
Willy Tarreau815a9b22010-07-27 17:15:12 +02001731 rp_cons_last = s->si[0].state;
1732 rp_prod_last = s->si[1].state;
1733 rpf_last = s->rep->flags;
1734
1735 if ((s->rep->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001736 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001737 }
1738
Willy Tarreau576507f2010-01-07 00:09:04 +01001739 /* maybe someone has added some request analysers, so we must check and loop */
1740 if (s->req->analysers & ~req_ana_back)
1741 goto resync_request;
1742
Willy Tarreau0499e352010-12-17 07:13:42 +01001743 if ((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER)
1744 goto resync_request;
1745
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001746 /* FIXME: here we should call protocol handlers which rely on
1747 * both buffers.
1748 */
1749
1750
1751 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001752 * Now we propagate unhandled errors to the session. Normally
1753 * we're just in a data phase here since it means we have not
1754 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001755 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001756 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001757 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001758 if (s->req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1759 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001760 s->req->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001761 if (s->req->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001762 s->be->be_counters.cli_aborts++;
1763 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001764 if (srv)
1765 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001766 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001767 }
1768 else if (s->req->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001769 s->be->be_counters.cli_aborts++;
1770 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001771 if (srv)
1772 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001773 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001774 }
1775 else if (s->req->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001776 s->be->be_counters.srv_aborts++;
1777 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001778 if (srv)
1779 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001780 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001781 }
1782 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001783 s->be->be_counters.srv_aborts++;
1784 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001785 if (srv)
1786 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001787 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001788 }
Willy Tarreau84455332009-03-15 22:34:05 +01001789 sess_set_term_flags(s);
1790 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001791 else if (s->rep->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1792 /* Report it if the server got an error or a read timeout expired */
1793 s->rep->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001794 if (s->rep->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001795 s->be->be_counters.srv_aborts++;
1796 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001797 if (srv)
1798 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001799 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001800 }
1801 else if (s->rep->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001802 s->be->be_counters.srv_aborts++;
1803 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001804 if (srv)
1805 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001806 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001807 }
1808 else if (s->rep->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001809 s->be->be_counters.cli_aborts++;
1810 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001811 if (srv)
1812 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001813 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001814 }
1815 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001816 s->be->be_counters.cli_aborts++;
1817 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001818 if (srv)
1819 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001820 s->flags |= SN_ERR_CLITO;
1821 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001822 sess_set_term_flags(s);
1823 }
Willy Tarreau84455332009-03-15 22:34:05 +01001824 }
1825
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001826 /*
1827 * Here we take care of forwarding unhandled data. This also includes
1828 * connection establishments and shutdown requests.
1829 */
1830
1831
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001832 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001833 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001834 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1835 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001836 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001837 if (!s->req->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001838 !(s->req->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001839 (s->req->prod->state >= SI_ST_EST) &&
1840 (s->req->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001841 /* This buffer is freewheeling, there's no analyser nor hijacker
1842 * attached to it. If any data are left in, we'll permit them to
1843 * move.
1844 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001845 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001846 buffer_auto_connect(s->req);
1847 buffer_auto_close(s->req);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001848 buffer_flush(s->req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001849
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001850 /* We'll let data flow between the producer (if still connected)
1851 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001852 */
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001853 if (!(s->req->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001854 buffer_forward(s->req, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001855 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001856
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001857 /* check if it is wise to enable kernel splicing to forward request data */
1858 if (!(s->req->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1859 s->req->to_forward &&
1860 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001861 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001862 (pipes_used < global.maxpipes) &&
1863 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1864 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
1865 (s->req->flags & BF_STREAMER_FAST)))) {
1866 s->req->flags |= BF_KERN_SPLICING;
1867 }
1868
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001869 /* reflect what the L7 analysers have seen last */
1870 rqf_last = s->req->flags;
1871
1872 /*
1873 * Now forward all shutdown requests between both sides of the buffer
1874 */
1875
Willy Tarreau520d95e2009-09-19 21:04:57 +02001876 /* first, let's check if the request buffer needs to shutdown(write), which may
1877 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001878 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001879 */
Willy Tarreau82eeaf22009-12-29 12:09:05 +01001880 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
Willy Tarreaue4599762010-03-21 23:25:09 +01001881 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001882 buffer_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001883
1884 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001885 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 +01001886 s->req->cons->shutw(s->req->cons);
1887
1888 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001889 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
1890 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001891 buffer_shutr_now(s->req);
1892
1893 /* shutdown(read) pending */
1894 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
1895 s->req->prod->shutr(s->req->prod);
1896
Willy Tarreau520d95e2009-09-19 21:04:57 +02001897 /* it's possible that an upper layer has requested a connection setup or abort.
1898 * There are 2 situations where we decide to establish a new connection :
1899 * - there are data scheduled for emission in the buffer
1900 * - the BF_AUTO_CONNECT flag is set (active connection)
1901 */
1902 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001903 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001904 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001905 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001906 * switch to the connected state, otherwise we perform a connection
1907 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001908 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001909 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001910 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau7c0a1512011-03-10 11:17:02 +01001911 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET && !s->req->cons->connect)) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001912 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001913 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1914 s->req->wex = TICK_ETERNITY;
1915 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001916 }
Willy Tarreau73201222009-08-16 18:27:24 +02001917 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001918 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001919 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001920 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1921 buffer_shutr_now(s->rep);
1922 }
Willy Tarreau92795622009-03-06 12:51:23 +01001923 }
1924
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001925
1926 /* we may have a pending connection request, or a connection waiting
1927 * for completion.
1928 */
1929 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1930 do {
1931 /* nb: step 1 might switch from QUE to ASS, but we first want
1932 * to give a chance to step 2 to perform a redirect if needed.
1933 */
1934 if (s->si[1].state != SI_ST_REQ)
1935 sess_update_stream_int(s, &s->si[1]);
1936 if (s->si[1].state == SI_ST_REQ)
1937 sess_prepare_conn_req(s, &s->si[1]);
1938
Willy Tarreau827aee92011-03-10 16:55:02 +01001939 srv = target_srv(&s->target);
1940 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001941 perform_http_redirect(s, &s->si[1]);
1942 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001943
1944 /* Now we can add the server name to a header (if requested) */
1945 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001946 if ((s->flags & SN_BE_ASSIGNED) &&
Mark Lamourinec2247f02012-01-04 13:02:01 -05001947 (s->be->mode == PR_MODE_HTTP) &&
1948 (s->be->server_id_hdr_name != NULL)) {
1949
1950 http_send_name_header(&s->txn,
1951 &s->txn.req,
1952 s->req,
1953 s->be,
1954 target_srv(&s->target)->id);
1955 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001956 }
1957
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001958 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001959 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001960 goto resync_stream_interface;
1961
Willy Tarreau815a9b22010-07-27 17:15:12 +02001962 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001963 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001964 goto resync_request;
1965
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001966 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001967
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001968 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001969 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001970 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1971 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001972 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001973 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001974 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001975 (s->rep->prod->state >= SI_ST_EST) &&
1976 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001977 /* This buffer is freewheeling, there's no analyser nor hijacker
1978 * attached to it. If any data are left in, we'll permit them to
1979 * move.
1980 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001981 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001982 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001983 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001984
1985 /* We'll let data flow between the producer (if still connected)
1986 * to the consumer.
1987 */
1988 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001989 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001990 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001991
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001992 /* check if it is wise to enable kernel splicing to forward response data */
1993 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1994 s->rep->to_forward &&
1995 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001996 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001997 (pipes_used < global.maxpipes) &&
1998 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
1999 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2000 (s->rep->flags & BF_STREAMER_FAST)))) {
2001 s->rep->flags |= BF_KERN_SPLICING;
2002 }
2003
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002004 /* reflect what the L7 analysers have seen last */
2005 rpf_last = s->rep->flags;
2006
2007 /*
2008 * Now forward all shutdown requests between both sides of the buffer
2009 */
2010
2011 /*
2012 * FIXME: this is probably where we should produce error responses.
2013 */
2014
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002015 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002016 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2017 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002018 buffer_shutw_now(s->rep);
2019
2020 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002021 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 +01002022 s->rep->cons->shutw(s->rep->cons);
2023
2024 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002025 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2026 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002027 buffer_shutr_now(s->rep);
2028
2029 /* shutdown(read) pending */
2030 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
2031 s->rep->prod->shutr(s->rep->prod);
2032
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002033 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002034 goto resync_stream_interface;
2035
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002036 if (s->req->flags != rqf_last)
2037 goto resync_request;
2038
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002039 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002040 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002041
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002042 /* we're interested in getting wakeups again */
2043 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2044 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2045
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002046 /* This is needed only when debugging is enabled, to indicate
2047 * client-side or server-side close. Please note that in the unlikely
2048 * event where both sides would close at once, the sequence is reported
2049 * on the server side first.
2050 */
2051 if (unlikely((global.mode & MODE_DEBUG) &&
2052 (!(global.mode & MODE_QUIET) ||
2053 (global.mode & MODE_VERBOSE)))) {
2054 int len;
2055
2056 if (s->si[1].state == SI_ST_CLO &&
2057 s->si[1].prev_state == SI_ST_EST) {
2058 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2059 s->uniq_id, s->be->id,
2060 (unsigned short)s->si[0].fd,
2061 (unsigned short)s->si[1].fd);
2062 write(1, trash, len);
2063 }
2064
2065 if (s->si[0].state == SI_ST_CLO &&
2066 s->si[0].prev_state == SI_ST_EST) {
2067 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2068 s->uniq_id, s->be->id,
2069 (unsigned short)s->si[0].fd,
2070 (unsigned short)s->si[1].fd);
2071 write(1, trash, len);
2072 }
2073 }
2074
2075 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2076 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2077
2078 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2079 session_process_counters(s);
2080
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002081 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreaudc85b392009-08-18 07:38:19 +02002082 s->rep->cons->update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002083
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002084 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreaudc85b392009-08-18 07:38:19 +02002085 s->req->cons->update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002086
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002087 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2088 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 +01002089 s->si[0].prev_state = s->si[0].state;
2090 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002091 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2092 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002093
2094 /* Trick: if a request is being waiting for the server to respond,
2095 * and if we know the server can timeout, we don't want the timeout
2096 * to expire on the client side first, but we're still interested
2097 * in passing data from the client to the server (eg: POST). Thus,
2098 * we can cancel the client's request timeout if the server's
2099 * request timeout is set and the server has not yet sent a response.
2100 */
2101
Willy Tarreau520d95e2009-09-19 21:04:57 +02002102 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002103 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2104 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002105 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002106 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002107
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002108 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002109 * Note that this one may wake the task up again.
2110 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002111 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2112 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2113 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2114 s->req->cons->target.ptr.a->fct(s->req->cons);
2115 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2116 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002117 if (task_in_rq(t)) {
2118 /* If we woke up, we don't want to requeue the
2119 * task to the wait queue, but rather requeue
2120 * it into the runqueue ASAP.
2121 */
2122 t->expire = TICK_ETERNITY;
2123 return t;
2124 }
2125 }
2126
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002127 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2128 tick_first(s->rep->rex, s->rep->wex));
2129 if (s->req->analysers)
2130 t->expire = tick_first(t->expire, s->req->analyse_exp);
2131
2132 if (s->si[0].exp)
2133 t->expire = tick_first(t->expire, s->si[0].exp);
2134
2135 if (s->si[1].exp)
2136 t->expire = tick_first(t->expire, s->si[1].exp);
2137
2138#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002139 fprintf(stderr,
2140 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2141 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2142 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2143 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 +01002144#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002145
2146#ifdef DEBUG_DEV
2147 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002148 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002149 ABORT_NOW();
2150#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002151 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002152 }
2153
2154 s->fe->feconn--;
2155 if (s->flags & SN_BE_ASSIGNED)
2156 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002157 if (!(s->listener->options & LI_O_UNLIMITED))
2158 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002159 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002160 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002161 if (s->listener->state == LI_FULL)
2162 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002163
Willy Tarreau08ceb102011-07-24 22:58:00 +02002164 /* Dequeues all of the listeners waiting for a resource */
2165 if (!LIST_ISEMPTY(&global_listener_queue))
2166 dequeue_all_listeners(&global_listener_queue);
2167
Willy Tarreaub32907b2011-07-25 08:37:44 +02002168 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2169 (!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 +02002170 dequeue_all_listeners(&s->fe->listener_queue);
2171
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002172 if (unlikely((global.mode & MODE_DEBUG) &&
2173 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2174 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002175 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002176 s->uniq_id, s->be->id,
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002177 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002178 write(1, trash, len);
2179 }
2180
2181 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2182 session_process_counters(s);
2183
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002184 if (s->txn.status) {
2185 int n;
2186
2187 n = s->txn.status / 100;
2188 if (n < 1 || n > 5)
2189 n = 0;
2190
2191 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002192 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002193
Willy Tarreau24657792010-02-26 10:30:28 +01002194 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002195 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002196 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002197 }
2198
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002199 /* let's do a final log if we need it */
2200 if (s->logs.logwait &&
2201 !(s->flags & SN_MONITOR) &&
2202 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002203 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002204 }
2205
2206 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002207 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002208 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002209 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002210 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002211}
2212
Willy Tarreau7c669d72008-06-20 15:04:11 +02002213/*
2214 * This function adjusts sess->srv_conn and maintains the previous and new
2215 * server's served session counts. Setting newsrv to NULL is enough to release
2216 * current connection slot. This function also notifies any LB algo which might
2217 * expect to be informed about any change in the number of active sessions on a
2218 * server.
2219 */
2220void sess_change_server(struct session *sess, struct server *newsrv)
2221{
2222 if (sess->srv_conn == newsrv)
2223 return;
2224
2225 if (sess->srv_conn) {
2226 sess->srv_conn->served--;
2227 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2228 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002229 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002230 }
2231
2232 if (newsrv) {
2233 newsrv->served++;
2234 if (newsrv->proxy->lbprm.server_take_conn)
2235 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002236 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002237 }
2238}
2239
Willy Tarreau84455332009-03-15 22:34:05 +01002240/* Handle server-side errors for default protocols. It is called whenever a a
2241 * connection setup is aborted or a request is aborted in queue. It sets the
2242 * session termination flags so that the caller does not have to worry about
2243 * them. It's installed as ->srv_error for the server-side stream_interface.
2244 */
2245void default_srv_error(struct session *s, struct stream_interface *si)
2246{
2247 int err_type = si->err_type;
2248 int err = 0, fin = 0;
2249
2250 if (err_type & SI_ET_QUEUE_ABRT) {
2251 err = SN_ERR_CLICL;
2252 fin = SN_FINST_Q;
2253 }
2254 else if (err_type & SI_ET_CONN_ABRT) {
2255 err = SN_ERR_CLICL;
2256 fin = SN_FINST_C;
2257 }
2258 else if (err_type & SI_ET_QUEUE_TO) {
2259 err = SN_ERR_SRVTO;
2260 fin = SN_FINST_Q;
2261 }
2262 else if (err_type & SI_ET_QUEUE_ERR) {
2263 err = SN_ERR_SRVCL;
2264 fin = SN_FINST_Q;
2265 }
2266 else if (err_type & SI_ET_CONN_TO) {
2267 err = SN_ERR_SRVTO;
2268 fin = SN_FINST_C;
2269 }
2270 else if (err_type & SI_ET_CONN_ERR) {
2271 err = SN_ERR_SRVCL;
2272 fin = SN_FINST_C;
2273 }
2274 else /* SI_ET_CONN_OTHER and others */ {
2275 err = SN_ERR_INTERNAL;
2276 fin = SN_FINST_C;
2277 }
2278
2279 if (!(s->flags & SN_ERR_MASK))
2280 s->flags |= err;
2281 if (!(s->flags & SN_FINST_MASK))
2282 s->flags |= fin;
2283}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002284
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002285/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2286void session_shutdown(struct session *session, int why)
2287{
2288 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2289 return;
2290
2291 buffer_shutw_now(session->req);
2292 buffer_shutr_now(session->rep);
2293 session->task->nice = 1024;
2294 if (!(session->flags & SN_ERR_MASK))
2295 session->flags |= why;
2296 task_wakeup(session->task, TASK_WOKEN_OTHER);
2297}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002298
Willy Tarreau8b22a712010-06-18 17:46:06 +02002299/************************************************************************/
2300/* All supported ACL keywords must be declared here. */
2301/************************************************************************/
2302
Willy Tarreaua5e37562011-12-16 17:06:15 +01002303/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002304static int
2305acl_fetch_get_gpc0(struct stktable *table, struct acl_test *test, struct stksess *ts)
2306{
2307 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002308 temp_pattern.data.integer = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002309 if (ts != NULL) {
2310 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2311 if (!ptr)
2312 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002313 temp_pattern.data.integer = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002314 }
2315 return 1;
2316}
2317
Willy Tarreaua5e37562011-12-16 17:06:15 +01002318/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002319 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002320 */
2321static int
Willy Tarreau56123282010-08-06 19:06:56 +02002322acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2323 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002324{
Willy Tarreau56123282010-08-06 19:06:56 +02002325 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002326 return 0;
Willy Tarreau56123282010-08-06 19:06:56 +02002327 return acl_fetch_get_gpc0(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002328}
2329
Willy Tarreaua5e37562011-12-16 17:06:15 +01002330/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002331 * backend counters.
2332 */
2333static int
Willy Tarreau56123282010-08-06 19:06:56 +02002334acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2335 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002336{
Willy Tarreau56123282010-08-06 19:06:56 +02002337 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002338 return 0;
Willy Tarreau56123282010-08-06 19:06:56 +02002339 return acl_fetch_get_gpc0(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002340}
2341
Willy Tarreaua5e37562011-12-16 17:06:15 +01002342/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002343 * address in the table pointed to by expr.
2344 */
2345static int
2346acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2347 struct acl_expr *expr, struct acl_test *test)
2348{
2349 struct stktable_key *key;
2350
David du Colombier4f92d322011-03-24 11:09:31 +01002351 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002352 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002353 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002354
2355 if (expr->arg_len)
2356 px = find_stktable(expr->arg.str);
2357
2358 if (!px)
2359 return 0; /* table not found */
2360
2361 return acl_fetch_get_gpc0(&px->table, test, stktable_lookup_key(&px->table, key));
2362}
2363
2364/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002365 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002366 */
2367static int
2368acl_fetch_inc_gpc0(struct stktable *table, struct acl_test *test, struct stksess *ts)
2369{
2370 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002371 temp_pattern.data.integer = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002372 if (ts != NULL) {
2373 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2374 if (!ptr)
2375 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002376 temp_pattern.data.integer = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002377 }
2378 return 1;
2379}
2380
2381/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002382 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002383 */
2384static int
Willy Tarreau56123282010-08-06 19:06:56 +02002385acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2386 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002387{
Willy Tarreau56123282010-08-06 19:06:56 +02002388 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002389 return 0;
Willy Tarreau56123282010-08-06 19:06:56 +02002390 return acl_fetch_inc_gpc0(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002391}
2392
2393/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002394 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002395 */
2396static int
Willy Tarreau56123282010-08-06 19:06:56 +02002397acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2398 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002399{
Willy Tarreau56123282010-08-06 19:06:56 +02002400 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002401 return 0;
Willy Tarreau56123282010-08-06 19:06:56 +02002402 return acl_fetch_inc_gpc0(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002403}
2404
2405/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002406 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002407 */
2408static int
2409acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2410 struct acl_expr *expr, struct acl_test *test)
2411{
2412 struct stktable_key *key;
2413
David du Colombier4f92d322011-03-24 11:09:31 +01002414 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002415 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002416 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002417
2418 if (expr->arg_len)
2419 px = find_stktable(expr->arg.str);
2420
2421 if (!px)
2422 return 0; /* table not found */
2423
2424 return acl_fetch_inc_gpc0(&px->table, test, stktable_update_key(&px->table, key));
2425}
2426
Willy Tarreauf73cd112011-08-13 01:45:16 +02002427/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002428 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002429 */
2430static int
2431acl_fetch_clr_gpc0(struct stktable *table, struct acl_test *test, struct stksess *ts)
2432{
2433 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002434 temp_pattern.data.integer = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002435 if (ts != NULL) {
2436 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2437 if (!ptr)
2438 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002439 temp_pattern.data.integer = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002440 stktable_data_cast(ptr, gpc0) = 0;
2441 }
2442 return 1;
2443}
2444
2445/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002446 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002447 */
2448static int
2449acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2450 struct acl_expr *expr, struct acl_test *test)
2451{
2452 if (!l4->stkctr1_entry)
2453 return 0;
2454 return acl_fetch_clr_gpc0(l4->stkctr1_table, test, l4->stkctr1_entry);
2455}
2456
2457/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002458 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002459 */
2460static int
2461acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2462 struct acl_expr *expr, struct acl_test *test)
2463{
2464 if (!l4->stkctr2_entry)
2465 return 0;
2466 return acl_fetch_clr_gpc0(l4->stkctr2_table, test, l4->stkctr2_entry);
2467}
2468
2469/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002470 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002471 */
2472static int
2473acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, int dir,
2474 struct acl_expr *expr, struct acl_test *test)
2475{
2476 struct stktable_key *key;
2477
2478 key = tcp_src_to_stktable_key(l4);
2479 if (!key)
2480 return 0;
2481
2482 if (expr->arg_len)
2483 px = find_stktable(expr->arg.str);
2484
2485 if (!px)
2486 return 0; /* table not found */
2487
2488 return acl_fetch_clr_gpc0(&px->table, test, stktable_update_key(&px->table, key));
2489}
2490
Willy Tarreaua5e37562011-12-16 17:06:15 +01002491/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002492static int
2493acl_fetch_conn_cnt(struct stktable *table, struct acl_test *test, struct stksess *ts)
2494{
2495 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002496 temp_pattern.data.integer = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002497 if (ts != NULL) {
2498 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2499 if (!ptr)
2500 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002501 temp_pattern.data.integer = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002502 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002503 return 1;
2504}
2505
Willy Tarreaua5e37562011-12-16 17:06:15 +01002506/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002507static int
Willy Tarreau56123282010-08-06 19:06:56 +02002508acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2509 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002510{
Willy Tarreau56123282010-08-06 19:06:56 +02002511 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002512 return 0;
2513
Willy Tarreau56123282010-08-06 19:06:56 +02002514 return acl_fetch_conn_cnt(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002515}
2516
Willy Tarreaua5e37562011-12-16 17:06:15 +01002517/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002518static int
Willy Tarreau56123282010-08-06 19:06:56 +02002519acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2520 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002521{
Willy Tarreau56123282010-08-06 19:06:56 +02002522 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002523 return 0;
2524
Willy Tarreau56123282010-08-06 19:06:56 +02002525 return acl_fetch_conn_cnt(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002526}
2527
Willy Tarreaua5e37562011-12-16 17:06:15 +01002528/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002529 * address in the table pointed to by expr.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002530 */
2531static int
2532acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2533 struct acl_expr *expr, struct acl_test *test)
2534{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002535 struct stktable_key *key;
2536
David du Colombier4f92d322011-03-24 11:09:31 +01002537 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002538 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002539 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002540
2541 if (expr->arg_len)
2542 px = find_stktable(expr->arg.str);
2543
2544 if (!px)
2545 return 0; /* table not found */
2546
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002547 return acl_fetch_conn_cnt(&px->table, test, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002548}
2549
Willy Tarreaua5e37562011-12-16 17:06:15 +01002550/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002551static int
2552acl_fetch_conn_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
2553{
2554 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002555 temp_pattern.data.integer = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002556 if (ts != NULL) {
2557 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2558 if (!ptr)
2559 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002560 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002561 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2562 }
2563 return 1;
2564}
2565
Willy Tarreaua5e37562011-12-16 17:06:15 +01002566/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002567 * the configured period.
2568 */
2569static int
Willy Tarreau56123282010-08-06 19:06:56 +02002570acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2571 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002572{
Willy Tarreau56123282010-08-06 19:06:56 +02002573 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002574 return 0;
2575
Willy Tarreau56123282010-08-06 19:06:56 +02002576 return acl_fetch_conn_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002577}
2578
Willy Tarreaua5e37562011-12-16 17:06:15 +01002579/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002580 * the configured period.
2581 */
2582static int
Willy Tarreau56123282010-08-06 19:06:56 +02002583acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2584 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002585{
Willy Tarreau56123282010-08-06 19:06:56 +02002586 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002587 return 0;
2588
Willy Tarreau56123282010-08-06 19:06:56 +02002589 return acl_fetch_conn_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002590}
2591
Willy Tarreaua5e37562011-12-16 17:06:15 +01002592/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002593 * table pointed to by expr, over the configured period.
2594 */
2595static int
2596acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2597 struct acl_expr *expr, struct acl_test *test)
2598{
2599 struct stktable_key *key;
2600
David du Colombier4f92d322011-03-24 11:09:31 +01002601 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002602 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002603 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002604
2605 if (expr->arg_len)
2606 px = find_stktable(expr->arg.str);
2607
2608 if (!px)
2609 return 0; /* table not found */
2610
2611 return acl_fetch_conn_rate(&px->table, test, stktable_lookup_key(&px->table, key));
2612}
2613
Willy Tarreaua5e37562011-12-16 17:06:15 +01002614/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002615 * in the table pointed to by expr, after updating it.
2616 */
2617static int
2618acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2619 struct acl_expr *expr, struct acl_test *test)
2620{
2621 struct stksess *ts;
2622 struct stktable_key *key;
2623 void *ptr;
2624
David du Colombier4f92d322011-03-24 11:09:31 +01002625 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002626 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002627 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002628
2629 if (expr->arg_len)
2630 px = find_stktable(expr->arg.str);
2631
2632 if (!px)
2633 return 0; /* table not found */
2634
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002635 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2636 /* entry does not exist and could not be created */
2637 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002638
2639 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2640 if (!ptr)
2641 return 0; /* parameter not stored in this table */
2642
Willy Tarreaua5e37562011-12-16 17:06:15 +01002643 temp_pattern.data.integer = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002644 test->flags = ACL_TEST_F_VOL_TEST;
2645 return 1;
2646}
2647
Willy Tarreaua5e37562011-12-16 17:06:15 +01002648/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002649static int
2650acl_fetch_conn_cur(struct stktable *table, struct acl_test *test, struct stksess *ts)
2651{
2652 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002653 temp_pattern.data.integer = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002654
2655 if (ts != NULL) {
2656 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2657 if (!ptr)
2658 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002659 temp_pattern.data.integer = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002660 }
2661 return 1;
2662}
2663
Willy Tarreaua5e37562011-12-16 17:06:15 +01002664/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002665static int
Willy Tarreau56123282010-08-06 19:06:56 +02002666acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
2667 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002668{
Willy Tarreau56123282010-08-06 19:06:56 +02002669 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002670 return 0;
2671
Willy Tarreau56123282010-08-06 19:06:56 +02002672 return acl_fetch_conn_cur(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002673}
2674
Willy Tarreaua5e37562011-12-16 17:06:15 +01002675/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002676static int
Willy Tarreau56123282010-08-06 19:06:56 +02002677acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
2678 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002679{
Willy Tarreau56123282010-08-06 19:06:56 +02002680 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002681 return 0;
2682
Willy Tarreau56123282010-08-06 19:06:56 +02002683 return acl_fetch_conn_cur(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002684}
2685
Willy Tarreaua5e37562011-12-16 17:06:15 +01002686/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002687 * address in the table pointed to by expr.
2688 */
2689static int
2690acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, int dir,
2691 struct acl_expr *expr, struct acl_test *test)
2692{
Willy Tarreau38285c12010-06-18 16:35:43 +02002693 struct stktable_key *key;
2694
David du Colombier4f92d322011-03-24 11:09:31 +01002695 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002696 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002697 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002698
2699 if (expr->arg_len)
2700 px = find_stktable(expr->arg.str);
2701
2702 if (!px)
2703 return 0; /* table not found */
2704
Willy Tarreau1b6e6082011-03-16 06:55:50 +01002705 return acl_fetch_conn_cur(&px->table, test, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002706}
2707
Willy Tarreaua5e37562011-12-16 17:06:15 +01002708/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002709static int
2710acl_fetch_sess_cnt(struct stktable *table, struct acl_test *test, struct stksess *ts)
2711{
2712 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002713 temp_pattern.data.integer = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002714 if (ts != NULL) {
2715 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2716 if (!ptr)
2717 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002718 temp_pattern.data.integer = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002719 }
2720 return 1;
2721}
2722
Willy Tarreaua5e37562011-12-16 17:06:15 +01002723/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002724static int
Willy Tarreau56123282010-08-06 19:06:56 +02002725acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2726 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002727{
Willy Tarreau56123282010-08-06 19:06:56 +02002728 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002729 return 0;
2730
Willy Tarreau56123282010-08-06 19:06:56 +02002731 return acl_fetch_sess_cnt(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002732}
2733
Willy Tarreaua5e37562011-12-16 17:06:15 +01002734/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002735static int
Willy Tarreau56123282010-08-06 19:06:56 +02002736acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2737 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002738{
Willy Tarreau56123282010-08-06 19:06:56 +02002739 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002740 return 0;
2741
Willy Tarreau56123282010-08-06 19:06:56 +02002742 return acl_fetch_sess_cnt(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002743}
2744
Willy Tarreaua5e37562011-12-16 17:06:15 +01002745/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002746 * address in the table pointed to by expr.
2747 */
2748static int
2749acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2750 struct acl_expr *expr, struct acl_test *test)
2751{
2752 struct stktable_key *key;
2753
David du Colombier4f92d322011-03-24 11:09:31 +01002754 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002755 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002756 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002757
2758 if (expr->arg_len)
2759 px = find_stktable(expr->arg.str);
2760
2761 if (!px)
2762 return 0; /* table not found */
2763
2764 return acl_fetch_sess_cnt(&px->table, test, stktable_lookup_key(&px->table, key));
2765}
2766
Willy Tarreaua5e37562011-12-16 17:06:15 +01002767/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002768static int
2769acl_fetch_sess_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
2770{
2771 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002772 temp_pattern.data.integer = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002773 if (ts != NULL) {
2774 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2775 if (!ptr)
2776 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002777 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002778 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2779 }
2780 return 1;
2781}
2782
Willy Tarreaua5e37562011-12-16 17:06:15 +01002783/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002784 * the configured period.
2785 */
2786static int
Willy Tarreau56123282010-08-06 19:06:56 +02002787acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2788 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002789{
Willy Tarreau56123282010-08-06 19:06:56 +02002790 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002791 return 0;
2792
Willy Tarreau56123282010-08-06 19:06:56 +02002793 return acl_fetch_sess_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002794}
2795
Willy Tarreaua5e37562011-12-16 17:06:15 +01002796/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797 * the configured period.
2798 */
2799static int
Willy Tarreau56123282010-08-06 19:06:56 +02002800acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2801 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002802{
Willy Tarreau56123282010-08-06 19:06:56 +02002803 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002804 return 0;
2805
Willy Tarreau56123282010-08-06 19:06:56 +02002806 return acl_fetch_sess_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807}
2808
Willy Tarreaua5e37562011-12-16 17:06:15 +01002809/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002810 * table pointed to by expr, over the configured period.
2811 */
2812static int
2813acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2814 struct acl_expr *expr, struct acl_test *test)
2815{
2816 struct stktable_key *key;
2817
David du Colombier4f92d322011-03-24 11:09:31 +01002818 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002819 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002820 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002821
2822 if (expr->arg_len)
2823 px = find_stktable(expr->arg.str);
2824
2825 if (!px)
2826 return 0; /* table not found */
2827
2828 return acl_fetch_sess_rate(&px->table, test, stktable_lookup_key(&px->table, key));
2829}
2830
Willy Tarreaua5e37562011-12-16 17:06:15 +01002831/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002832static int
2833acl_fetch_http_req_cnt(struct stktable *table, struct acl_test *test, struct stksess *ts)
2834{
2835 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002836 temp_pattern.data.integer = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002837 if (ts != NULL) {
2838 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2839 if (!ptr)
2840 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002841 temp_pattern.data.integer = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002842 }
2843 return 1;
2844}
2845
Willy Tarreaua5e37562011-12-16 17:06:15 +01002846/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002847static int
Willy Tarreau56123282010-08-06 19:06:56 +02002848acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2849 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002850{
Willy Tarreau56123282010-08-06 19:06:56 +02002851 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002852 return 0;
2853
Willy Tarreau56123282010-08-06 19:06:56 +02002854 return acl_fetch_http_req_cnt(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002855}
2856
Willy Tarreaua5e37562011-12-16 17:06:15 +01002857/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002858static int
Willy Tarreau56123282010-08-06 19:06:56 +02002859acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2860 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002861{
Willy Tarreau56123282010-08-06 19:06:56 +02002862 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002863 return 0;
2864
Willy Tarreau56123282010-08-06 19:06:56 +02002865 return acl_fetch_http_req_cnt(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002866}
2867
Willy Tarreaua5e37562011-12-16 17:06:15 +01002868/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002869 * address in the table pointed to by expr.
2870 */
2871static int
2872acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau56123282010-08-06 19:06:56 +02002873 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002874{
2875 struct stktable_key *key;
2876
David du Colombier4f92d322011-03-24 11:09:31 +01002877 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002878 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002879 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002880
2881 if (expr->arg_len)
2882 px = find_stktable(expr->arg.str);
2883
2884 if (!px)
2885 return 0; /* table not found */
2886
2887 return acl_fetch_http_req_cnt(&px->table, test, stktable_lookup_key(&px->table, key));
2888}
2889
Willy Tarreaua5e37562011-12-16 17:06:15 +01002890/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002891static int
2892acl_fetch_http_req_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
2893{
2894 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002895 temp_pattern.data.integer = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002896 if (ts != NULL) {
2897 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2898 if (!ptr)
2899 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002900 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002901 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2902 }
2903 return 1;
2904}
2905
Willy Tarreaua5e37562011-12-16 17:06:15 +01002906/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002907 * the configured period.
2908 */
2909static int
Willy Tarreau56123282010-08-06 19:06:56 +02002910acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2911 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002912{
Willy Tarreau56123282010-08-06 19:06:56 +02002913 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002914 return 0;
2915
Willy Tarreau56123282010-08-06 19:06:56 +02002916 return acl_fetch_http_req_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002917}
2918
Willy Tarreaua5e37562011-12-16 17:06:15 +01002919/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002920 * the configured period.
2921 */
2922static int
Willy Tarreau56123282010-08-06 19:06:56 +02002923acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
2924 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002925{
Willy Tarreau56123282010-08-06 19:06:56 +02002926 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002927 return 0;
2928
Willy Tarreau56123282010-08-06 19:06:56 +02002929 return acl_fetch_http_req_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002930}
2931
Willy Tarreaua5e37562011-12-16 17:06:15 +01002932/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002933 * table pointed to by expr, over the configured period.
2934 */
2935static int
2936acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau56123282010-08-06 19:06:56 +02002937 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002938{
2939 struct stktable_key *key;
2940
David du Colombier4f92d322011-03-24 11:09:31 +01002941 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002942 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002943 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002944
2945 if (expr->arg_len)
2946 px = find_stktable(expr->arg.str);
2947
2948 if (!px)
2949 return 0; /* table not found */
2950
2951 return acl_fetch_http_req_rate(&px->table, test, stktable_lookup_key(&px->table, key));
2952}
2953
Willy Tarreaua5e37562011-12-16 17:06:15 +01002954/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002955static int
2956acl_fetch_http_err_cnt(struct stktable *table, struct acl_test *test, struct stksess *ts)
2957{
2958 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01002959 temp_pattern.data.integer = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002960 if (ts != NULL) {
2961 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2962 if (!ptr)
2963 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01002964 temp_pattern.data.integer = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002965 }
2966 return 1;
2967}
2968
Willy Tarreaua5e37562011-12-16 17:06:15 +01002969/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002970static int
Willy Tarreau56123282010-08-06 19:06:56 +02002971acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2972 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002973{
Willy Tarreau56123282010-08-06 19:06:56 +02002974 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002975 return 0;
2976
Willy Tarreau56123282010-08-06 19:06:56 +02002977 return acl_fetch_http_err_cnt(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002978}
2979
Willy Tarreaua5e37562011-12-16 17:06:15 +01002980/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002981static int
Willy Tarreau56123282010-08-06 19:06:56 +02002982acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
2983 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002984{
Willy Tarreau56123282010-08-06 19:06:56 +02002985 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002986 return 0;
2987
Willy Tarreau56123282010-08-06 19:06:56 +02002988 return acl_fetch_http_err_cnt(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002989}
2990
Willy Tarreaua5e37562011-12-16 17:06:15 +01002991/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002992 * address in the table pointed to by expr.
2993 */
2994static int
2995acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau56123282010-08-06 19:06:56 +02002996 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002997{
2998 struct stktable_key *key;
2999
David du Colombier4f92d322011-03-24 11:09:31 +01003000 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003001 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003002 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003003
3004 if (expr->arg_len)
3005 px = find_stktable(expr->arg.str);
3006
3007 if (!px)
3008 return 0; /* table not found */
3009
3010 return acl_fetch_http_err_cnt(&px->table, test, stktable_lookup_key(&px->table, key));
3011}
3012
Willy Tarreaua5e37562011-12-16 17:06:15 +01003013/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003014static int
3015acl_fetch_http_err_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
3016{
3017 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003018 temp_pattern.data.integer = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003019 if (ts != NULL) {
3020 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3021 if (!ptr)
3022 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01003023 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003024 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3025 }
3026 return 1;
3027}
3028
Willy Tarreaua5e37562011-12-16 17:06:15 +01003029/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003030 * the configured period.
3031 */
3032static int
Willy Tarreau56123282010-08-06 19:06:56 +02003033acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3034 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003035{
Willy Tarreau56123282010-08-06 19:06:56 +02003036 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003037 return 0;
3038
Willy Tarreau56123282010-08-06 19:06:56 +02003039 return acl_fetch_http_err_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003040}
3041
Willy Tarreaua5e37562011-12-16 17:06:15 +01003042/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003043 * the configured period.
3044 */
3045static int
Willy Tarreau56123282010-08-06 19:06:56 +02003046acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3047 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003048{
Willy Tarreau56123282010-08-06 19:06:56 +02003049 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003050 return 0;
3051
Willy Tarreau56123282010-08-06 19:06:56 +02003052 return acl_fetch_http_err_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003053}
3054
Willy Tarreaua5e37562011-12-16 17:06:15 +01003055/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003056 * table pointed to by expr, over the configured period.
3057 */
3058static int
3059acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3060 struct acl_expr *expr, struct acl_test *test)
3061{
3062 struct stktable_key *key;
3063
David du Colombier4f92d322011-03-24 11:09:31 +01003064 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003065 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003066 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003067
3068 if (expr->arg_len)
3069 px = find_stktable(expr->arg.str);
3070
3071 if (!px)
3072 return 0; /* table not found */
3073
3074 return acl_fetch_http_err_rate(&px->table, test, stktable_lookup_key(&px->table, key));
3075}
3076
Willy Tarreaua5e37562011-12-16 17:06:15 +01003077/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003078static int
3079acl_fetch_kbytes_in(struct stktable *table, struct acl_test *test, struct stksess *ts)
3080{
3081 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003082 temp_pattern.data.integer = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003083
3084 if (ts != NULL) {
3085 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3086 if (!ptr)
3087 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01003088 temp_pattern.data.integer = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003089 }
3090 return 1;
3091}
3092
Willy Tarreaua5e37562011-12-16 17:06:15 +01003093/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003094 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003095 */
3096static int
Willy Tarreau56123282010-08-06 19:06:56 +02003097acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
3098 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003099{
Willy Tarreau56123282010-08-06 19:06:56 +02003100 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003101 return 0;
3102
Willy Tarreau56123282010-08-06 19:06:56 +02003103 return acl_fetch_kbytes_in(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003104}
3105
Willy Tarreaua5e37562011-12-16 17:06:15 +01003106/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003107 * session's tracked BE counters.
3108 */
3109static int
Willy Tarreau56123282010-08-06 19:06:56 +02003110acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
3111 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003112{
Willy Tarreau56123282010-08-06 19:06:56 +02003113 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003114 return 0;
3115
Willy Tarreau56123282010-08-06 19:06:56 +02003116 return acl_fetch_kbytes_in(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003117}
3118
Willy Tarreaua5e37562011-12-16 17:06:15 +01003119/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003120 * address in the table pointed to by expr.
3121 */
3122static int
3123acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, int dir,
3124 struct acl_expr *expr, struct acl_test *test)
3125{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003126 struct stktable_key *key;
3127
David du Colombier4f92d322011-03-24 11:09:31 +01003128 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003129 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003130 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003131
3132 if (expr->arg_len)
3133 px = find_stktable(expr->arg.str);
3134
3135 if (!px)
3136 return 0; /* table not found */
3137
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003138 return acl_fetch_kbytes_in(&px->table, test, stktable_lookup_key(&px->table, key));
3139}
3140
Willy Tarreaua5e37562011-12-16 17:06:15 +01003141/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003142 * configured period.
3143 */
3144static int
3145acl_fetch_bytes_in_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
3146{
3147 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003148 temp_pattern.data.integer = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003149 if (ts != NULL) {
3150 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3151 if (!ptr)
3152 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01003153 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003154 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3155 }
3156 return 1;
3157}
3158
Willy Tarreaua5e37562011-12-16 17:06:15 +01003159/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003160 * counters over the configured period.
3161 */
3162static int
Willy Tarreau56123282010-08-06 19:06:56 +02003163acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3164 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003165{
Willy Tarreau56123282010-08-06 19:06:56 +02003166 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003167 return 0;
3168
Willy Tarreau56123282010-08-06 19:06:56 +02003169 return acl_fetch_bytes_in_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003170}
3171
Willy Tarreaua5e37562011-12-16 17:06:15 +01003172/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003173 * counters over the configured period.
3174 */
3175static int
Willy Tarreau56123282010-08-06 19:06:56 +02003176acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3177 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003178{
Willy Tarreau56123282010-08-06 19:06:56 +02003179 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003180 return 0;
3181
Willy Tarreau56123282010-08-06 19:06:56 +02003182 return acl_fetch_bytes_in_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003183}
3184
Willy Tarreaua5e37562011-12-16 17:06:15 +01003185/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003186 * in the table pointed to by expr, over the configured period.
3187 */
3188static int
3189acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau56123282010-08-06 19:06:56 +02003190 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003191{
3192 struct stktable_key *key;
3193
David du Colombier4f92d322011-03-24 11:09:31 +01003194 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003195 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003196 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003197
3198 if (expr->arg_len)
3199 px = find_stktable(expr->arg.str);
3200
3201 if (!px)
3202 return 0; /* table not found */
3203
3204 return acl_fetch_bytes_in_rate(&px->table, test, stktable_lookup_key(&px->table, key));
3205}
3206
Willy Tarreaua5e37562011-12-16 17:06:15 +01003207/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003208static int
3209acl_fetch_kbytes_out(struct stktable *table, struct acl_test *test, struct stksess *ts)
3210{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003211 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003212 temp_pattern.data.integer = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003213
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003214 if (ts != NULL) {
3215 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003216 if (!ptr)
3217 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01003218 temp_pattern.data.integer = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003219 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003220 return 1;
3221}
3222
Willy Tarreaua5e37562011-12-16 17:06:15 +01003223/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003224 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003225 */
3226static int
Willy Tarreau56123282010-08-06 19:06:56 +02003227acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
3228 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003229{
Willy Tarreau56123282010-08-06 19:06:56 +02003230 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003231 return 0;
3232
Willy Tarreau56123282010-08-06 19:06:56 +02003233 return acl_fetch_kbytes_out(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003234}
3235
Willy Tarreaua5e37562011-12-16 17:06:15 +01003236/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003237 * tracked BE counters.
3238 */
3239static int
Willy Tarreau56123282010-08-06 19:06:56 +02003240acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
3241 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003242{
Willy Tarreau56123282010-08-06 19:06:56 +02003243 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003244 return 0;
3245
Willy Tarreau56123282010-08-06 19:06:56 +02003246 return acl_fetch_kbytes_out(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003247}
3248
Willy Tarreaua5e37562011-12-16 17:06:15 +01003249/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003250 * the table pointed to by expr.
3251 */
3252static int
3253acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, int dir,
3254 struct acl_expr *expr, struct acl_test *test)
3255{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003256 struct stktable_key *key;
3257
David du Colombier4f92d322011-03-24 11:09:31 +01003258 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003259 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003260 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003261
3262 if (expr->arg_len)
3263 px = find_stktable(expr->arg.str);
3264
3265 if (!px)
3266 return 0; /* table not found */
3267
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003268 return acl_fetch_kbytes_out(&px->table, test, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003269}
3270
Willy Tarreaua5e37562011-12-16 17:06:15 +01003271/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003272 * configured period.
3273 */
3274static int
3275acl_fetch_bytes_out_rate(struct stktable *table, struct acl_test *test, struct stksess *ts)
3276{
3277 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003278 temp_pattern.data.integer = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003279 if (ts != NULL) {
3280 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3281 if (!ptr)
3282 return 0; /* parameter not stored */
Willy Tarreaua5e37562011-12-16 17:06:15 +01003283 temp_pattern.data.integer = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003284 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3285 }
3286 return 1;
3287}
3288
Willy Tarreaua5e37562011-12-16 17:06:15 +01003289/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003290 * over the configured period.
3291 */
3292static int
Willy Tarreau56123282010-08-06 19:06:56 +02003293acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3294 struct acl_expr *expr, struct acl_test *test)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003295{
Willy Tarreau56123282010-08-06 19:06:56 +02003296 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003297 return 0;
3298
Willy Tarreau56123282010-08-06 19:06:56 +02003299 return acl_fetch_bytes_out_rate(l4->stkctr1_table, test, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003300}
3301
Willy Tarreaua5e37562011-12-16 17:06:15 +01003302/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003303 * over the configured period.
3304 */
3305static int
Willy Tarreau56123282010-08-06 19:06:56 +02003306acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
3307 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003308{
Willy Tarreau56123282010-08-06 19:06:56 +02003309 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003310 return 0;
3311
Willy Tarreau56123282010-08-06 19:06:56 +02003312 return acl_fetch_bytes_out_rate(l4->stkctr2_table, test, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003313}
3314
Willy Tarreaua5e37562011-12-16 17:06:15 +01003315/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003316 * the table pointed to by expr, over the configured period.
3317 */
3318static int
3319acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, int dir,
Willy Tarreau56123282010-08-06 19:06:56 +02003320 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003321{
3322 struct stktable_key *key;
3323
David du Colombier4f92d322011-03-24 11:09:31 +01003324 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003325 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003326 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003327
3328 if (expr->arg_len)
3329 px = find_stktable(expr->arg.str);
3330
3331 if (!px)
3332 return 0; /* table not found */
3333
3334 return acl_fetch_bytes_out_rate(&px->table, test, stktable_lookup_key(&px->table, key));
3335}
3336
Willy Tarreaua5e37562011-12-16 17:06:15 +01003337/* set temp integer to the number of used entries in the table pointed to by expr. */
Willy Tarreauc735a072011-03-29 00:57:02 +02003338static int
3339acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
3340 struct acl_expr *expr, struct acl_test *test)
3341{
3342 if (expr->arg_len)
3343 px = find_stktable(expr->arg.str);
3344
3345 if (!px)
3346 return 0; /* table not found */
3347
3348 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003349 temp_pattern.data.integer = px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003350 return 1;
3351}
3352
Willy Tarreaua5e37562011-12-16 17:06:15 +01003353/* set temp integer to the number of free entries in the table pointed to by expr. */
Willy Tarreauc735a072011-03-29 00:57:02 +02003354static int
3355acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, int dir,
3356 struct acl_expr *expr, struct acl_test *test)
3357{
3358 if (expr->arg_len)
3359 px = find_stktable(expr->arg.str);
3360
3361 if (!px)
3362 return 0; /* table not found */
3363
3364 test->flags = ACL_TEST_F_VOL_TEST;
Willy Tarreaua5e37562011-12-16 17:06:15 +01003365 temp_pattern.data.integer = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003366 return 1;
3367}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003368
3369/* Note: must not be declared <const> as its list will be overwritten */
3370static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau56123282010-08-06 19:06:56 +02003371 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING },
3372 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING },
3373 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE },
3374 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING },
3375 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING },
3376 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE },
Willy Tarreauf73cd112011-08-13 01:45:16 +02003377 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING },
3378 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING },
3379 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE },
Willy Tarreau56123282010-08-06 19:06:56 +02003380 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING },
3381 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING },
3382 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE },
3383 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING },
3384 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING },
3385 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
3386 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE },
3387 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING },
3388 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING },
3389 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE },
3390 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING },
3391 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING },
3392 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE },
3393 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING },
3394 { "sc2_sess_rate", acl_parse_int, acl_fetch_sc2_sess_rate, acl_match_int, ACL_USE_NOTHING },
3395 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
3396 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING },
3397 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING },
3398 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE },
3399 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING },
3400 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING },
3401 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
3402 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING },
3403 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING },
3404 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE },
3405 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING },
3406 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING },
3407 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
3408 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE },
3409 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE },
3410 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE },
3411 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING },
3412 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING },
3413 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
3414 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE },
3415 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE },
3416 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE },
3417 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING },
3418 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING },
3419 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE },
Willy Tarreauc735a072011-03-29 00:57:02 +02003420 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING },
3421 { "table_cnt", acl_parse_int, acl_fetch_table_cnt, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003422 { NULL, NULL, NULL, NULL },
3423}};
3424
3425
Willy Tarreau56123282010-08-06 19:06:56 +02003426/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003427 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3428 * <prm> struct is fed with the table name if any. If unspecified, the caller
3429 * will assume that the current proxy's table is used.
3430 */
3431int parse_track_counters(char **args, int *arg,
3432 int section_type, struct proxy *curpx,
3433 struct track_ctr_prm *prm,
3434 struct proxy *defpx, char *err, int errlen)
3435{
3436 int pattern_type = 0;
Willy Tarreau56123282010-08-06 19:06:56 +02003437 char *kw = args[*arg - 1];
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003438
Willy Tarreau56123282010-08-06 19:06:56 +02003439 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003440 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003441 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003442 */
3443 while (args[*arg]) {
3444 if (strcmp(args[*arg], "src") == 0) {
3445 prm->type = STKTABLE_TYPE_IP;
3446 pattern_type = 1;
3447 }
3448 else if (strcmp(args[*arg], "table") == 0) {
3449 if (!args[*arg + 1]) {
3450 snprintf(err, errlen,
Willy Tarreau56123282010-08-06 19:06:56 +02003451 "missing table for %s in %s '%s'.",
3452 kw, proxy_type_str(curpx), curpx->id);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003453 return -1;
3454 }
3455 /* we copy the table name for now, it will be resolved later */
3456 prm->table.n = strdup(args[*arg + 1]);
3457 (*arg)++;
3458 }
3459 else {
3460 /* unhandled keywords are handled by the caller */
3461 break;
3462 }
3463 (*arg)++;
3464 }
3465
3466 if (!pattern_type) {
3467 snprintf(err, errlen,
Willy Tarreau56123282010-08-06 19:06:56 +02003468 "%s key not specified in %s '%s' (found %s, only 'src' is supported).",
3469 kw, proxy_type_str(curpx), curpx->id, quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003470 return -1;
3471 }
3472
3473 return 0;
3474}
3475
Willy Tarreau8b22a712010-06-18 17:46:06 +02003476__attribute__((constructor))
3477static void __session_init(void)
3478{
3479 acl_register_keywords(&acl_kws);
3480}
3481
Willy Tarreaubaaee002006-06-26 02:48:02 +02003482/*
3483 * Local variables:
3484 * c-indent-level: 8
3485 * c-basic-offset: 8
3486 * End:
3487 */