blob: 353fa666d75701d6e080674c9660ca14914333c2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau81f9aa32010-06-01 17:45:26 +02002 * Session management functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaud28c3532012-04-19 19:28:33 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
Willy Tarreau81f9aa32010-06-01 17:45:26 +020014#include <unistd.h>
15#include <fcntl.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020016
17#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020018#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020019#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010022#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020024#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020025#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010026#include <proto/backend.h>
Willy Tarreau7341d942007-05-13 19:56:02 +020027#include <proto/buffers.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010028#include <proto/checks.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020029#include <proto/dumpstats.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020030#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020031#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010032#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020033#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010035#include <proto/pipe.h>
Willy Tarreau62793712011-07-24 19:23:38 +020036#include <proto/protocols.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010037#include <proto/proto_http.h>
38#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020039#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010041#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020042#include <proto/sample.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020043#include <proto/sock_raw.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010044#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010045#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010046#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020048struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010049struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Willy Tarreau81f9aa32010-06-01 17:45:26 +020051/* This function is called from the protocol layer accept() in order to instanciate
52 * a new session on behalf of a given listener and frontend. It returns a positive
Willy Tarreauabe8ea52010-11-11 10:56:04 +010053 * value upon success, 0 if the connection can be ignored, or a negative value upon
54 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020055 */
56int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
57{
58 struct proxy *p = l->frontend;
59 struct session *s;
60 struct http_txn *txn;
61 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010062 int ret;
63
64
65 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020066
Willy Tarreaufffe1322010-11-11 09:48:16 +010067 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020068 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020069
70 /* minimum session initialization required for monitor mode below */
71 s->flags = 0;
72 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020073 s->stkctr1_entry = NULL;
74 s->stkctr2_entry = NULL;
75 s->stkctr1_table = NULL;
76 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020077
Willy Tarreauabe8ea52010-11-11 10:56:04 +010078 if (unlikely((t = task_new()) == NULL))
79 goto out_free_session;
80
Willy Tarreau81f9aa32010-06-01 17:45:26 +020081 /* OK, we're keeping the session, so let's properly initialize the session */
82 LIST_ADDQ(&sessions, &s->list);
83 LIST_INIT(&s->back_refs);
84
Willy Tarreaubd833142012-05-08 15:51:44 +020085 s->unique_id = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020086 s->term_trace = 0;
Willy Tarreau6471afb2011-09-23 10:54:59 +020087 s->si[0].addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020088 s->logs.accept_date = date; /* user-visible date for logging */
89 s->logs.tv_accept = now; /* corrected date for internal use */
90 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +020091 p->feconn++; /* beconn will be increased once assigned */
92
Willy Tarreaub36b4242010-06-04 20:59:39 +020093 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020094
95 t->process = l->handler;
96 t->context = s;
97 t->nice = l->nice;
98 t->expire = TICK_ETERNITY;
99
100 s->task = t;
101 s->listener = l;
102
103 /* Note: initially, the session's backend points to the frontend.
104 * This changes later when switching rules are executed or
105 * when the default backend is assigned.
106 */
107 s->be = s->fe = p;
108 s->req = s->rep = NULL; /* will be allocated later */
109
Willy Tarreaufe7f1ea2012-05-20 19:22:25 +0200110 /* if this session comes from a known monitoring system, we want to ignore
111 * it as soon as possible, which means closing it immediately for TCP, but
112 * cleanly.
113 */
114 if (unlikely((l->options & LI_O_CHK_MONNET) &&
115 addr->ss_family == AF_INET &&
116 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
117 s->flags |= SN_MONITOR;
118 s->logs.logwait = 0;
119 }
120
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200121 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
122 * to abort right here as soon as possible, we check the rules before
123 * even initializing the stream interfaces.
124 */
125 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200126 /* let's do a no-linger now to close with a single RST. */
127 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100128 ret = 0; /* successful termination */
129 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200130 }
131
Willy Tarreaub36b4242010-06-04 20:59:39 +0200132 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100133 if (p->feconn > p->fe_counters.conn_max)
134 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100135
Willy Tarreaub36b4242010-06-04 20:59:39 +0200136 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200137 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200138 void *ptr;
139
Willy Tarreau56123282010-08-06 19:06:56 +0200140 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200141 if (ptr)
142 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200143
Willy Tarreau56123282010-08-06 19:06:56 +0200144 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200145 if (ptr)
146 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200147 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200148 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200149
Willy Tarreau56123282010-08-06 19:06:56 +0200150 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200151 void *ptr;
152
Willy Tarreau56123282010-08-06 19:06:56 +0200153 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200154 if (ptr)
155 stktable_data_cast(ptr, sess_cnt)++;
156
Willy Tarreau56123282010-08-06 19:06:56 +0200157 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200158 if (ptr)
159 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200160 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200161 }
162
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200163 /* this part should be common with other protocols */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200164 s->si[0].conn.t.sock.fd = cfd;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200165 s->si[0].owner = t;
166 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
167 s->si[0].err_type = SI_ET_NONE;
168 s->si[0].err_loc = NULL;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200169 s->si[0].conn.ctrl = l->proto;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200170 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200171 s->si[0].send_proxy_ofs = 0;
Emeric Brun21adb022012-05-18 16:32:13 +0200172 set_target_client(&s->si[0].target, l);
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 */
Emeric Brund88fd822012-05-18 18:30:29 +0200183 stream_interface_prepare(&s->si[0], l->sock);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200184
185 /* pre-initialize the other side's stream interface to an INIT state. The
186 * callbacks will be initialized before attempting to connect.
187 */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200188 s->si[1].conn.t.sock.fd = -1; /* just to help with debugging */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200189 s->si[1].owner = t;
190 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
191 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200192 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200193 s->si[1].err_loc = NULL;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200194 s->si[1].conn.ctrl = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200195 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200196 s->si[1].send_proxy_ofs = 0;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100197 clear_target(&s->si[1].target);
Willy Tarreauf873d752012-05-11 17:47:17 +0200198 stream_interface_prepare(&s->si[1], &stream_int_embedded);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200199 s->si[1].exp = TICK_ETERNITY;
200 s->si[1].flags = SI_FL_NONE;
201
202 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
203 s->si[1].flags |= SI_FL_INDEP_STR;
204
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200205 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100206 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200207 s->pend_pos = NULL;
208
209 /* init store persistence */
210 s->store_count = 0;
211
212 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100213 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200214 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200215
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200216 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
217 goto out_free_task; /* no memory */
218
219 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
220 goto out_free_req; /* no memory */
221
222 /* initialize the request buffer */
223 s->req->size = global.tune.bufsize;
224 buffer_init(s->req);
225 s->req->prod = &s->si[0];
226 s->req->cons = &s->si[1];
227 s->si[0].ib = s->si[1].ob = s->req;
228 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
229
230 /* activate default analysers enabled for this listener */
231 s->req->analysers = l->analysers;
232
233 s->req->wto = TICK_ETERNITY;
234 s->req->rto = TICK_ETERNITY;
235 s->req->rex = TICK_ETERNITY;
236 s->req->wex = TICK_ETERNITY;
237 s->req->analyse_exp = TICK_ETERNITY;
238
239 /* initialize response buffer */
240 s->rep->size = global.tune.bufsize;
241 buffer_init(s->rep);
242 s->rep->prod = &s->si[1];
243 s->rep->cons = &s->si[0];
244 s->si[0].ob = s->si[1].ib = s->rep;
245 s->rep->analysers = 0;
246
Willy Tarreau96e31212011-05-30 18:10:30 +0200247 if (s->fe->options2 & PR_O2_NODELAY) {
248 s->req->flags |= BF_NEVER_WAIT;
249 s->rep->flags |= BF_NEVER_WAIT;
250 }
251
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200252 s->rep->rto = TICK_ETERNITY;
253 s->rep->wto = TICK_ETERNITY;
254 s->rep->rex = TICK_ETERNITY;
255 s->rep->wex = TICK_ETERNITY;
256 s->rep->analyse_exp = TICK_ETERNITY;
257
Willy Tarreau62f791e2012-03-09 11:32:30 +0100258 txn = &s->txn;
259 /* Those variables will be checked and freed if non-NULL in
260 * session.c:session_free(). It is important that they are
261 * properly initialized.
262 */
263 txn->sessid = NULL;
264 txn->srv_cookie = NULL;
265 txn->cli_cookie = NULL;
266 txn->uri = NULL;
267 txn->req.cap = NULL;
268 txn->rsp.cap = NULL;
269 txn->hdr_idx.v = NULL;
270 txn->hdr_idx.size = txn->hdr_idx.used = 0;
271 txn->req.flags = 0;
272 txn->rsp.flags = 0;
273 /* the HTTP messages need to know what buffer they're associated with */
274 txn->req.buf = s->req;
275 txn->rsp.buf = s->rep;
276
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200277 /* finish initialization of the accepted file descriptor */
278 fd_insert(cfd);
279 fdtab[cfd].owner = &s->si[0];
280 fdtab[cfd].state = FD_STREADY;
281 fdtab[cfd].flags = 0;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200282 fdtab[cfd].cb[DIR_RD].f = si_data(&s->si[0])->read;
283 fdtab[cfd].cb[DIR_WR].f = si_data(&s->si[0])->write;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200284 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
285 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200286 EV_FD_SET(cfd, DIR_RD);
287
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100288 if (p->accept && (ret = p->accept(s)) <= 0) {
289 /* Either we had an unrecoverable error (<0) or work is
290 * finished (=0, eg: monitoring), in both situations,
291 * we can release everything and close.
292 */
293 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200294 }
295
296 /* it is important not to call the wakeup function directly but to
297 * pass through task_wakeup(), because this one knows how to apply
298 * priorities to tasks.
299 */
300 task_wakeup(t, TASK_WOKEN_INIT);
301 return 1;
302
303 /* Error unrolling */
304 out_free_rep:
305 pool_free2(pool2_buffer, s->rep);
306 out_free_req:
307 pool_free2(pool2_buffer, s->req);
308 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200309 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200310 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200311 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200312 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200313 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100314 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200315 pool_free2(pool2_session, s);
316 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200317 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
318 /* critical error, no more memory, try to emit a 500 response */
319 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
320 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
321 }
322
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100323 if (fdtab[cfd].state != FD_STCLOSE)
324 fd_delete(cfd);
325 else
326 close(cfd);
327 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200328}
329
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330/*
331 * frees the context associated to a session. It must have been removed first.
332 */
Simon Hormandec5be42011-06-08 09:19:07 +0900333static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200334{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100335 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200336 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100337 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200338 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100339
Willy Tarreaubaaee002006-06-26 02:48:02 +0200340 if (s->pend_pos)
341 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100342
Willy Tarreau827aee92011-03-10 16:55:02 +0100343 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100344 if (s->flags & SN_CURR_SESS) {
345 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100346 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100347 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100348 if (may_dequeue_tasks(target_srv(&s->target), s->be))
349 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100350 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100351
Willy Tarreau7c669d72008-06-20 15:04:11 +0200352 if (unlikely(s->srv_conn)) {
353 /* the session still has a reserved slot on a server, but
354 * it should normally be only the same as the one above,
355 * so this should not happen in fact.
356 */
357 sess_change_server(s, NULL);
358 }
359
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100360 if (s->req->pipe)
361 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100362
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100363 if (s->rep->pipe)
364 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100365
Willy Tarreau48d63db2008-08-03 17:41:33 +0200366 pool_free2(pool2_buffer, s->req);
367 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200368
Willy Tarreau46023632010-01-07 22:51:47 +0100369 http_end_txn(s);
370
Willy Tarreaua4cda672010-06-06 18:28:49 +0200371 for (i = 0; i < s->store_count; i++) {
372 if (!s->store[i].ts)
373 continue;
374 stksess_free(s->store[i].table, s->store[i].ts);
375 s->store[i].ts = NULL;
376 }
377
Willy Tarreau34eb6712011-10-24 18:15:04 +0200378 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200379 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100380 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
381 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200382 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100383
Willy Tarreau56123282010-08-06 19:06:56 +0200384 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200385 session_store_counters(s);
386
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100387 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100388 /* we have to unlink all watchers. We must not relink them if
389 * this session was the last one in the list.
390 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100391 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100392 LIST_INIT(&bref->users);
393 if (s->list.n != &sessions)
394 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100395 bref->ref = s->list.n;
396 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100397 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200398 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200399
400 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200401 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200402 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200403 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200404 pool_flush2(pool2_requri);
405 pool_flush2(pool2_capture);
406 pool_flush2(pool2_session);
407 pool_flush2(fe->req_cap_pool);
408 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200409 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200410}
411
412
413/* perform minimal intializations, report 0 in case of error, 1 if OK. */
414int init_session()
415{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100416 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200417 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
418 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419}
420
Willy Tarreau30e71012007-11-26 20:15:35 +0100421void session_process_counters(struct session *s)
422{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100423 unsigned long long bytes;
424
Willy Tarreau30e71012007-11-26 20:15:35 +0100425 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100426 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100427 s->logs.bytes_in = s->req->total;
428 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100429 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100430
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100431 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100432
Willy Tarreau827aee92011-03-10 16:55:02 +0100433 if (target_srv(&s->target))
434 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200435
436 if (s->listener->counters)
437 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200438
Willy Tarreau56123282010-08-06 19:06:56 +0200439 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200440 void *ptr;
441
Willy Tarreau56123282010-08-06 19:06:56 +0200442 ptr = stktable_data_ptr(s->stkctr2_table,
443 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200444 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200445 if (ptr)
446 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200447
Willy Tarreau56123282010-08-06 19:06:56 +0200448 ptr = stktable_data_ptr(s->stkctr2_table,
449 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200450 STKTABLE_DT_BYTES_IN_RATE);
451 if (ptr)
452 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200453 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200454 }
455
Willy Tarreau56123282010-08-06 19:06:56 +0200456 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200457 void *ptr;
458
Willy Tarreau56123282010-08-06 19:06:56 +0200459 ptr = stktable_data_ptr(s->stkctr1_table,
460 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200461 STKTABLE_DT_BYTES_IN_CNT);
462 if (ptr)
463 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
464
Willy Tarreau56123282010-08-06 19:06:56 +0200465 ptr = stktable_data_ptr(s->stkctr1_table,
466 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200467 STKTABLE_DT_BYTES_IN_RATE);
468 if (ptr)
469 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200470 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200471 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100472 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100473 }
474
Willy Tarreau30e71012007-11-26 20:15:35 +0100475 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100476 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100477 s->logs.bytes_out = s->rep->total;
478 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100479 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100480
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100481 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100482
Willy Tarreau827aee92011-03-10 16:55:02 +0100483 if (target_srv(&s->target))
484 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200485
486 if (s->listener->counters)
487 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200488
Willy Tarreau56123282010-08-06 19:06:56 +0200489 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200490 void *ptr;
491
Willy Tarreau56123282010-08-06 19:06:56 +0200492 ptr = stktable_data_ptr(s->stkctr2_table,
493 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200494 STKTABLE_DT_BYTES_OUT_CNT);
495 if (ptr)
496 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
497
Willy Tarreau56123282010-08-06 19:06:56 +0200498 ptr = stktable_data_ptr(s->stkctr2_table,
499 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200500 STKTABLE_DT_BYTES_OUT_RATE);
501 if (ptr)
502 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200503 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200504 }
505
Willy Tarreau56123282010-08-06 19:06:56 +0200506 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200507 void *ptr;
508
Willy Tarreau56123282010-08-06 19:06:56 +0200509 ptr = stktable_data_ptr(s->stkctr1_table,
510 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200511 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200512 if (ptr)
513 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200514
Willy Tarreau56123282010-08-06 19:06:56 +0200515 ptr = stktable_data_ptr(s->stkctr1_table,
516 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200517 STKTABLE_DT_BYTES_OUT_RATE);
518 if (ptr)
519 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200520 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200521 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100522 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100523 }
524}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100526/* This function is called with (si->state == SI_ST_CON) meaning that a
527 * connection was attempted and that the file descriptor is already allocated.
528 * We must check for establishment, error and abort. Possible output states
529 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
530 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
531 * otherwise 1.
532 */
Simon Hormandec5be42011-06-08 09:19:07 +0900533static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100534{
535 struct buffer *req = si->ob;
536 struct buffer *rep = si->ib;
537
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100538 /* If we got an error, or if nothing happened and the connection timed
539 * out, we must give up. The CER state handler will take care of retry
540 * attempts and error reports.
541 */
542 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100543 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100544 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200545 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200546 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100547
Willy Tarreau4da69a92012-05-21 18:05:40 +0200548 si_data_close(si);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200549 if (si->release)
550 si->release(si);
551
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100552 if (si->err_type)
553 return 0;
554
Willy Tarreau827aee92011-03-10 16:55:02 +0100555 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100556 if (si->flags & SI_FL_ERR)
557 si->err_type = SI_ET_CONN_ERR;
558 else
559 si->err_type = SI_ET_CONN_TO;
560 return 0;
561 }
562
563 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200564 if (unlikely((rep->flags & BF_SHUTW) ||
565 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200566 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100567 s->be->options & PR_O_ABRT_CLOSE)))) {
568 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200569 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100570 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100571 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200572 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100573 if (s->srv_error)
574 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100575 return 1;
576 }
577
578 /* we need to wait a bit more if there was no activity either */
579 if (!(req->flags & BF_WRITE_ACTIVITY))
580 return 1;
581
582 /* OK, this means that a connection succeeded. The caller will be
583 * responsible for handling the transition from CON to EST.
584 */
585 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100586 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100587 si->state = SI_ST_EST;
588 si->err_type = SI_ET_NONE;
589 si->err_loc = NULL;
590 return 1;
591}
592
593/* This function is called with (si->state == SI_ST_CER) meaning that a
594 * previous connection attempt has failed and that the file descriptor
595 * has already been released. Possible causes include asynchronous error
596 * notification and time out. Possible output states are SI_ST_CLO when
597 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
598 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
599 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
600 * marked as in error state. It returns 0.
601 */
Simon Hormandec5be42011-06-08 09:19:07 +0900602static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100603{
604 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100605 if (target_srv(&s->target)) {
606 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100607
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100608 if (s->flags & SN_CURR_SESS) {
609 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100610 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100611 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100612 }
613
614 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200615 si->conn_retries--;
616 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100617 if (!si->err_type) {
618 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100619 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100620 }
621
Willy Tarreau827aee92011-03-10 16:55:02 +0100622 if (target_srv(&s->target))
623 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100624 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100625 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100626 if (may_dequeue_tasks(target_srv(&s->target), s->be))
627 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100628
629 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200630 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100631 si->ob->flags |= BF_WRITE_ERROR;
632 si->ib->flags |= BF_READ_ERROR;
633
634 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100635 if (s->srv_error)
636 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100637 return 0;
638 }
639
640 /* If the "redispatch" option is set on the backend, we are allowed to
641 * retry on another server for the last retry. In order to achieve this,
642 * we must mark the session unassigned, and eventually clear the DIRECT
643 * bit to ignore any persistence cookie. We won't count a retry nor a
644 * redispatch yet, because this will depend on what server is selected.
645 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100646 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100647 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100648 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100649 if (may_dequeue_tasks(target_srv(&s->target), s->be))
650 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100651
652 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100653 si->state = SI_ST_REQ;
654 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100655 if (target_srv(&s->target))
656 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100657 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100658 si->state = SI_ST_ASS;
659 }
660
661 if (si->flags & SI_FL_ERR) {
662 /* The error was an asynchronous connection error, and we will
663 * likely have to retry connecting to the same server, most
664 * likely leading to the same result. To avoid this, we wait
665 * one second before retrying.
666 */
667
668 if (!si->err_type)
669 si->err_type = SI_ET_CONN_ERR;
670
671 si->state = SI_ST_TAR;
672 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
673 return 0;
674 }
675 return 0;
676}
677
678/*
679 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200680 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200681 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100682 */
Simon Hormandec5be42011-06-08 09:19:07 +0900683static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100684{
685 struct buffer *req = si->ob;
686 struct buffer *rep = si->ib;
687
Willy Tarreau827aee92011-03-10 16:55:02 +0100688 if (target_srv(&s->target))
689 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100690
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100691 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100692 /* if the user wants to log as soon as possible, without counting
693 * bytes from the server, then this is the right moment. */
694 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
695 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100696 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100697 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100698 }
699 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100700 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
701 /* reset hdr_idx which was already initialized by the request.
702 * right now, the http parser does it.
703 * hdr_idx_init(&s->txn.hdr_idx);
704 */
705 }
706
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200707 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100708 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200709 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200710 /* real connections have timeouts */
711 req->wto = s->be->timeout.server;
712 rep->rto = s->be->timeout.server;
713 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100714 req->wex = TICK_ETERNITY;
715}
716
717/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
718 * Other input states are simply ignored.
719 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
720 * Flags must have previously been updated for timeouts and other conditions.
721 */
Simon Hormandec5be42011-06-08 09:19:07 +0900722static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100723{
Willy Tarreau827aee92011-03-10 16:55:02 +0100724 struct server *srv = target_srv(&s->target);
725
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100726 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100727 now_ms, __FUNCTION__,
728 s,
729 s->req, s->rep,
730 s->req->rex, s->rep->wex,
731 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100732 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100733
734 if (si->state == SI_ST_ASS) {
735 /* Server assigned to connection request, we have to try to connect now */
736 int conn_err;
737
738 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100739 srv = target_srv(&s->target);
740
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100741 if (conn_err == SN_ERR_NONE) {
742 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100743 if (srv)
744 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100745 return;
746 }
747
748 /* We have received a synchronous error. We might have to
749 * abort, retry immediately or redispatch.
750 */
751 if (conn_err == SN_ERR_INTERNAL) {
752 if (!si->err_type) {
753 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100754 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100755 }
756
Willy Tarreau827aee92011-03-10 16:55:02 +0100757 if (srv)
758 srv_inc_sess_ctr(srv);
759 if (srv)
760 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100761 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100762
763 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100764 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100765 if (may_dequeue_tasks(srv, s->be))
766 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100767
768 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200769 si_shutr(si);
770 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100771 si->ob->flags |= BF_WRITE_ERROR;
772
773 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
774
775 /* no session was ever accounted for this server */
776 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100777 if (s->srv_error)
778 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100779 return;
780 }
781
782 /* We are facing a retryable error, but we don't want to run a
783 * turn-around now, as the problem is likely a source port
784 * allocation problem, so we want to retry now.
785 */
786 si->state = SI_ST_CER;
787 si->flags &= ~SI_FL_ERR;
788 sess_update_st_cer(s, si);
789 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
790 return;
791 }
792 else if (si->state == SI_ST_QUE) {
793 /* connection request was queued, check for any update */
794 if (!s->pend_pos) {
795 /* The connection is not in the queue anymore. Either
796 * we have a server connection slot available and we
797 * go directly to the assigned state, or we need to
798 * load-balance first and go to the INI state.
799 */
800 si->exp = TICK_ETERNITY;
801 if (unlikely(!(s->flags & SN_ASSIGNED)))
802 si->state = SI_ST_REQ;
803 else {
804 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
805 si->state = SI_ST_ASS;
806 }
807 return;
808 }
809
810 /* Connection request still in queue... */
811 if (si->flags & SI_FL_EXP) {
812 /* ... and timeout expired */
813 si->exp = TICK_ETERNITY;
814 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100815 if (srv)
816 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100817 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200818 si_shutr(si);
819 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100820 si->ob->flags |= BF_WRITE_TIMEOUT;
821 if (!si->err_type)
822 si->err_type = SI_ET_QUEUE_TO;
823 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100824 if (s->srv_error)
825 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100826 return;
827 }
828
829 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200830 if ((si->ob->flags & (BF_READ_ERROR)) ||
831 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200832 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100833 /* give up */
834 si->exp = TICK_ETERNITY;
835 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200836 si_shutr(si);
837 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100838 si->err_type |= SI_ET_QUEUE_ABRT;
839 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100840 if (s->srv_error)
841 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100842 return;
843 }
844
845 /* Nothing changed */
846 return;
847 }
848 else if (si->state == SI_ST_TAR) {
849 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200850 if ((si->ob->flags & (BF_READ_ERROR)) ||
851 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200852 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100853 /* give up */
854 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200855 si_shutr(si);
856 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100857 si->err_type |= SI_ET_CONN_ABRT;
858 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100859 if (s->srv_error)
860 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100861 return;
862 }
863
864 if (!(si->flags & SI_FL_EXP))
865 return; /* still in turn-around */
866
867 si->exp = TICK_ETERNITY;
868
869 /* we keep trying on the same server as long as the session is
870 * marked "assigned".
871 * FIXME: Should we force a redispatch attempt when the server is down ?
872 */
873 if (s->flags & SN_ASSIGNED)
874 si->state = SI_ST_ASS;
875 else
876 si->state = SI_ST_REQ;
877 return;
878 }
879}
880
Simon Hormandec5be42011-06-08 09:19:07 +0900881/* Set correct session termination flags in case no analyser has done it. It
882 * also counts a failed request if the server state has not reached the request
883 * stage.
884 */
885static void sess_set_term_flags(struct session *s)
886{
887 if (!(s->flags & SN_FINST_MASK)) {
888 if (s->si[1].state < SI_ST_REQ) {
889
890 s->fe->fe_counters.failed_req++;
891 if (s->listener->counters)
892 s->listener->counters->failed_req++;
893
894 s->flags |= SN_FINST_R;
895 }
896 else if (s->si[1].state == SI_ST_QUE)
897 s->flags |= SN_FINST_Q;
898 else if (s->si[1].state < SI_ST_EST)
899 s->flags |= SN_FINST_C;
900 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
901 s->flags |= SN_FINST_D;
902 else
903 s->flags |= SN_FINST_L;
904 }
905}
906
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100907/* This function initiates a server connection request on a stream interface
908 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
909 * indicating that a server has been assigned. It may also return SI_ST_QUE,
910 * or SI_ST_CLO upon error.
911 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100912static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
913{
914 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100915 now_ms, __FUNCTION__,
916 s,
917 s->req, s->rep,
918 s->req->rex, s->rep->wex,
919 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100920 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100921
922 if (si->state != SI_ST_REQ)
923 return;
924
925 /* Try to assign a server */
926 if (srv_redispatch_connect(s) != 0) {
927 /* We did not get a server. Either we queued the
928 * connection request, or we encountered an error.
929 */
930 if (si->state == SI_ST_QUE)
931 return;
932
933 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200934 si_shutr(si);
935 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100936 si->ob->flags |= BF_WRITE_ERROR;
937 if (!si->err_type)
938 si->err_type = SI_ET_CONN_OTHER;
939 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100940 if (s->srv_error)
941 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100942 return;
943 }
944
945 /* The server is assigned */
946 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
947 si->state = SI_ST_ASS;
948}
949
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200950/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100951 * if appropriate. The default_backend rule is also considered, then the
952 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200953 * It returns 1 if the processing can continue on next analysers, or zero if it
954 * either needs more data or wants to immediately abort the request.
955 */
Simon Hormandec5be42011-06-08 09:19:07 +0900956static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200957{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200958 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100959
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200960 req->analysers &= ~an_bit;
961 req->analyse_exp = TICK_ETERNITY;
962
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100963 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200964 now_ms, __FUNCTION__,
965 s,
966 req,
967 req->rex, req->wex,
968 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100969 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200970 req->analysers);
971
972 /* now check whether we have some switching rules for this request */
973 if (!(s->flags & SN_BE_ASSIGNED)) {
974 struct switching_rule *rule;
975
976 list_for_each_entry(rule, &s->fe->switching_rules, list) {
977 int ret;
978
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200979 ret = acl_exec_cond(rule->cond, s->fe, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200980 ret = acl_pass(ret);
981 if (rule->cond->pol == ACL_COND_UNLESS)
982 ret = !ret;
983
984 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200985 if (!session_set_backend(s, rule->be.backend))
986 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200987 break;
988 }
989 }
990
991 /* To ensure correct connection accounting on the backend, we
992 * have to assign one if it was not set (eg: a listen). This
993 * measure also takes care of correctly setting the default
994 * backend if any.
995 */
996 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200997 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
998 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200999 }
1000
Willy Tarreaufb356202010-08-03 14:02:05 +02001001 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1002 if (s->fe == s->be) {
1003 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001004 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001005 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001006
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001007 /* 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 +01001008 * persistence rule, and report that in the session.
1009 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001010 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001011 int ret = 1;
1012
1013 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001014 ret = acl_exec_cond(prst_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4de91492010-01-22 19:10:05 +01001015 ret = acl_pass(ret);
1016 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1017 ret = !ret;
1018 }
1019
1020 if (ret) {
1021 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001022 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1023 s->flags |= SN_FORCE_PRST;
1024 } else {
1025 s->flags |= SN_IGNORE_PRST;
1026 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001027 break;
1028 }
1029 }
1030
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001031 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001032
1033 sw_failed:
1034 /* immediately abort this request in case of allocation failure */
1035 buffer_abort(s->req);
1036 buffer_abort(s->rep);
1037
1038 if (!(s->flags & SN_ERR_MASK))
1039 s->flags |= SN_ERR_RESOURCE;
1040 if (!(s->flags & SN_FINST_MASK))
1041 s->flags |= SN_FINST_R;
1042
1043 s->txn.status = 500;
1044 s->req->analysers = 0;
1045 s->req->analyse_exp = TICK_ETERNITY;
1046 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001047}
1048
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001049/* This stream analyser works on a request. It applies all use-server rules on
1050 * it then returns 1. The data must already be present in the buffer otherwise
1051 * they won't match. It always returns 1.
1052 */
1053static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1054{
1055 struct proxy *px = s->be;
1056 struct server_rule *rule;
1057
1058 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1059 now_ms, __FUNCTION__,
1060 s,
1061 req,
1062 req->rex, req->wex,
1063 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001064 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001065 req->analysers);
1066
1067 if (!(s->flags & SN_ASSIGNED)) {
1068 list_for_each_entry(rule, &px->server_rules, list) {
1069 int ret;
1070
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001071 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001072 ret = acl_pass(ret);
1073 if (rule->cond->pol == ACL_COND_UNLESS)
1074 ret = !ret;
1075
1076 if (ret) {
1077 struct server *srv = rule->srv.ptr;
1078
1079 if ((srv->state & SRV_RUNNING) ||
1080 (px->options & PR_O_PERSIST) ||
1081 (s->flags & SN_FORCE_PRST)) {
1082 s->flags |= SN_DIRECT | SN_ASSIGNED;
1083 set_target_server(&s->target, srv);
1084 break;
1085 }
1086 /* if the server is not UP, let's go on with next rules
1087 * just in case another one is suited.
1088 */
1089 }
1090 }
1091 }
1092
1093 req->analysers &= ~an_bit;
1094 req->analyse_exp = TICK_ETERNITY;
1095 return 1;
1096}
1097
Emeric Brun1d33b292010-01-04 15:47:17 +01001098/* This stream analyser works on a request. It applies all sticking rules on
1099 * it then returns 1. The data must already be present in the buffer otherwise
1100 * they won't match. It always returns 1.
1101 */
Simon Hormandec5be42011-06-08 09:19:07 +09001102static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001103{
1104 struct proxy *px = s->be;
1105 struct sticking_rule *rule;
1106
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001107 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001108 now_ms, __FUNCTION__,
1109 s,
1110 req,
1111 req->rex, req->wex,
1112 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001113 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001114 req->analysers);
1115
1116 list_for_each_entry(rule, &px->sticking_rules, list) {
1117 int ret = 1 ;
1118 int i;
1119
1120 for (i = 0; i < s->store_count; i++) {
1121 if (rule->table.t == s->store[i].table)
1122 break;
1123 }
1124
1125 if (i != s->store_count)
1126 continue;
1127
1128 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001129 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001130 ret = acl_pass(ret);
1131 if (rule->cond->pol == ACL_COND_UNLESS)
1132 ret = !ret;
1133 }
1134
1135 if (ret) {
1136 struct stktable_key *key;
1137
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001138 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001139 if (!key)
1140 continue;
1141
1142 if (rule->flags & STK_IS_MATCH) {
1143 struct stksess *ts;
1144
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001145 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001146 if (!(s->flags & SN_ASSIGNED)) {
1147 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001148 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001149
1150 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001151 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1152 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001153 if (node) {
1154 struct server *srv;
1155
1156 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001157 if ((srv->state & SRV_RUNNING) ||
1158 (px->options & PR_O_PERSIST) ||
1159 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001160 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001161 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001162 }
1163 }
1164 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001165 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001166 }
1167 }
1168 if (rule->flags & STK_IS_STORE) {
1169 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1170 struct stksess *ts;
1171
1172 ts = stksess_new(rule->table.t, key);
1173 if (ts) {
1174 s->store[s->store_count].table = rule->table.t;
1175 s->store[s->store_count++].ts = ts;
1176 }
1177 }
1178 }
1179 }
1180 }
1181
1182 req->analysers &= ~an_bit;
1183 req->analyse_exp = TICK_ETERNITY;
1184 return 1;
1185}
1186
1187/* This stream analyser works on a response. It applies all store rules on it
1188 * then returns 1. The data must already be present in the buffer otherwise
1189 * they won't match. It always returns 1.
1190 */
Simon Hormandec5be42011-06-08 09:19:07 +09001191static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001192{
1193 struct proxy *px = s->be;
1194 struct sticking_rule *rule;
1195 int i;
1196
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001197 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001198 now_ms, __FUNCTION__,
1199 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001200 rep,
1201 rep->rex, rep->wex,
1202 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001203 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001204 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001205
1206 list_for_each_entry(rule, &px->storersp_rules, list) {
1207 int ret = 1 ;
1208 int storereqidx = -1;
1209
1210 for (i = 0; i < s->store_count; i++) {
1211 if (rule->table.t == s->store[i].table) {
1212 if (!(s->store[i].flags))
1213 storereqidx = i;
1214 break;
1215 }
1216 }
1217
1218 if ((i != s->store_count) && (storereqidx == -1))
1219 continue;
1220
1221 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001222 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001223 ret = acl_pass(ret);
1224 if (rule->cond->pol == ACL_COND_UNLESS)
1225 ret = !ret;
1226 }
1227
1228 if (ret) {
1229 struct stktable_key *key;
1230
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001231 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->expr);
Emeric Brun1d33b292010-01-04 15:47:17 +01001232 if (!key)
1233 continue;
1234
1235 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001236 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001237 s->store[storereqidx].flags = 1;
1238 }
1239 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1240 struct stksess *ts;
1241
1242 ts = stksess_new(rule->table.t, key);
1243 if (ts) {
1244 s->store[s->store_count].table = rule->table.t;
1245 s->store[s->store_count].flags = 1;
1246 s->store[s->store_count++].ts = ts;
1247 }
1248 }
1249 }
1250 }
1251
1252 /* process store request and store response */
1253 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001254 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001255 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001256
Simon Hormanfa461682011-06-25 09:39:49 +09001257 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1258 stksess_free(s->store[i].table, s->store[i].ts);
1259 s->store[i].ts = NULL;
1260 continue;
1261 }
1262
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001263 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1264 if (ts) {
1265 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001266 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001267 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001268 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001269 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001270 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001271
1272 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001273 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001274 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001275 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001276 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001277
1278 rep->analysers &= ~an_bit;
1279 rep->analyse_exp = TICK_ETERNITY;
1280 return 1;
1281}
1282
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001283/* This macro is very specific to the function below. See the comments in
1284 * process_session() below to understand the logic and the tests.
1285 */
1286#define UPDATE_ANALYSERS(real, list, back, flag) { \
1287 list = (((list) & ~(flag)) | ~(back)) & (real); \
1288 back = real; \
1289 if (!(list)) \
1290 break; \
1291 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1292 continue; \
1293}
1294
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001295/* Processes the client, server, request and response jobs of a session task,
1296 * then puts it back to the wait queue in a clean state, or cleans up its
1297 * resources if it must be deleted. Returns in <next> the date the task wants
1298 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1299 * nothing too many times, the request and response buffers flags are monitored
1300 * and each function is called only if at least another function has changed at
1301 * least one flag it is interested in.
1302 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001303struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001304{
Willy Tarreau827aee92011-03-10 16:55:02 +01001305 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001306 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001307 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001308 unsigned int rq_prod_last, rq_cons_last;
1309 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001310 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001311
1312 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1313 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1314
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001315 /* this data may be no longer valid, clear it */
1316 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1317
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001318 /* This flag must explicitly be set every time */
1319 s->req->flags &= ~BF_READ_NOEXP;
1320
1321 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001322 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1323 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001324
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001325 /* we don't want the stream interface functions to recursively wake us up */
1326 if (s->req->prod->owner == t)
1327 s->req->prod->flags |= SI_FL_DONT_WAKE;
1328 if (s->req->cons->owner == t)
1329 s->req->cons->flags |= SI_FL_DONT_WAKE;
1330
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001331 /* 1a: Check for low level timeouts if needed. We just set a flag on
1332 * stream interfaces when their timeouts have expired.
1333 */
1334 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1335 stream_int_check_timeouts(&s->si[0]);
1336 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001337
1338 /* check buffer timeouts, and close the corresponding stream interfaces
1339 * for future reads or writes. Note: this will also concern upper layers
1340 * but we do not touch any other flag. We must be careful and correctly
1341 * detect state changes when calling them.
1342 */
1343
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001344 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001345
Willy Tarreau14641402009-12-29 14:49:56 +01001346 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1347 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001348 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001349 }
1350
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001351 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT)) {
1352 if (s->req->prod->flags & SI_FL_NOHALF)
1353 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001354 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001355 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001356
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001357 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001358
Willy Tarreau14641402009-12-29 14:49:56 +01001359 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1360 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001361 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001362 }
1363
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001364 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT)) {
1365 if (s->rep->prod->flags & SI_FL_NOHALF)
1366 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001367 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001368 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001369 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001370
1371 /* 1b: check for low-level errors reported at the stream interface.
1372 * First we check if it's a retryable error (in which case we don't
1373 * want to tell the buffer). Otherwise we report the error one level
1374 * upper by setting flags into the buffers. Note that the side towards
1375 * the client cannot have connect (hence retryable) errors. Also, the
1376 * connection setup code must be able to deal with any type of abort.
1377 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001378 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001379 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1380 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001381 si_shutr(&s->si[0]);
1382 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001383 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001384 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001385 s->be->be_counters.cli_aborts++;
1386 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001387 if (srv)
1388 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001389 if (!(s->flags & SN_ERR_MASK))
1390 s->flags |= SN_ERR_CLICL;
1391 if (!(s->flags & SN_FINST_MASK))
1392 s->flags |= SN_FINST_D;
1393 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001394 }
1395 }
1396
1397 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1398 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001399 si_shutr(&s->si[1]);
1400 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001401 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001402 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001403 if (srv)
1404 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001405 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001406 s->be->be_counters.srv_aborts++;
1407 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001408 if (srv)
1409 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001410 if (!(s->flags & SN_ERR_MASK))
1411 s->flags |= SN_ERR_SRVCL;
1412 if (!(s->flags & SN_FINST_MASK))
1413 s->flags |= SN_FINST_D;
1414 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001415 }
1416 /* note: maybe we should process connection errors here ? */
1417 }
1418
1419 if (s->si[1].state == SI_ST_CON) {
1420 /* we were trying to establish a connection on the server side,
1421 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1422 */
1423 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1424 sess_update_st_cer(s, &s->si[1]);
1425 else if (s->si[1].state == SI_ST_EST)
1426 sess_establish(s, &s->si[1]);
1427
1428 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1429 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1430 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1431 */
1432 }
1433
Willy Tarreau815a9b22010-07-27 17:15:12 +02001434 rq_prod_last = s->si[0].state;
1435 rq_cons_last = s->si[1].state;
1436 rp_cons_last = s->si[0].state;
1437 rp_prod_last = s->si[1].state;
1438
1439 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001440 /* Check for connection closure */
1441
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001442 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001443 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001444 now_ms, __FUNCTION__, __LINE__,
1445 t,
1446 s, s->flags,
1447 s->req, s->rep,
1448 s->req->rex, s->rep->wex,
1449 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001450 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001451 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001452 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001453
1454 /* nothing special to be done on client side */
1455 if (unlikely(s->req->prod->state == SI_ST_DIS))
1456 s->req->prod->state = SI_ST_CLO;
1457
1458 /* When a server-side connection is released, we have to count it and
1459 * check for pending connections on this server.
1460 */
1461 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1462 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001463 srv = target_srv(&s->target);
1464 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001465 if (s->flags & SN_CURR_SESS) {
1466 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001467 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001468 }
1469 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001470 if (may_dequeue_tasks(srv, s->be))
1471 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001472 }
1473 }
1474
1475 /*
1476 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1477 * at this point.
1478 */
1479
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001480 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001481 /* Analyse request */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001482 if (((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001483 ((s->req->flags ^ rqf_last) & BF_MASK_STATIC) ||
1484 s->si[0].state != rq_prod_last ||
1485 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001486 unsigned int flags = s->req->flags;
1487
1488 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001489 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001490 unsigned int ana_list;
1491 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001492
Willy Tarreau90deb182010-01-07 00:20:41 +01001493 /* it's up to the analysers to stop new connections,
1494 * disable reading or closing. Note: if an analyser
1495 * disables any of these bits, it is responsible for
1496 * enabling them again when it disables itself, so
1497 * that other analysers are called in similar conditions.
1498 */
1499 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001500 buffer_auto_connect(s->req);
1501 buffer_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001502
1503 /* We will call all analysers for which a bit is set in
1504 * s->req->analysers, following the bit order from LSB
1505 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001506 * the list when not needed. Any analyser may return 0
1507 * to break out of the loop, either because of missing
1508 * data to take a decision, or because it decides to
1509 * kill the session. We loop at least once through each
1510 * analyser, and we may loop again if other analysers
1511 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001512 *
1513 * We build a list of analysers to run. We evaluate all
1514 * of these analysers in the order of the lower bit to
1515 * the higher bit. This ordering is very important.
1516 * An analyser will often add/remove other analysers,
1517 * including itself. Any changes to itself have no effect
1518 * on the loop. If it removes any other analysers, we
1519 * want those analysers not to be called anymore during
1520 * this loop. If it adds an analyser that is located
1521 * after itself, we want it to be scheduled for being
1522 * processed during the loop. If it adds an analyser
1523 * which is located before it, we want it to switch to
1524 * it immediately, even if it has already been called
1525 * once but removed since.
1526 *
1527 * In order to achieve this, we compare the analyser
1528 * list after the call with a copy of it before the
1529 * call. The work list is fed with analyser bits that
1530 * appeared during the call. Then we compare previous
1531 * work list with the new one, and check the bits that
1532 * appeared. If the lowest of these bits is lower than
1533 * the current bit, it means we have enabled a previous
1534 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001535 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001536
1537 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001538 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001539 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001540
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001541 if (ana_list & AN_REQ_DECODE_PROXY) {
1542 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1543 break;
1544 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1545 }
1546
Willy Tarreaufb356202010-08-03 14:02:05 +02001547 if (ana_list & AN_REQ_INSPECT_FE) {
1548 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001549 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001550 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001551 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001552
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001553 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001554 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001555 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001556 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001557 }
1558
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001559 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001560 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1561 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001562 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001563 }
1564
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001565 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001566 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1567 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001568 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001569 }
1570
Willy Tarreaufb356202010-08-03 14:02:05 +02001571 if (ana_list & AN_REQ_INSPECT_BE) {
1572 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1573 break;
1574 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1575 }
1576
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001577 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001578 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1579 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001580 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001581 }
1582
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001583 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001584 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001585 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001586 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001587 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001588
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001589 if (ana_list & AN_REQ_SRV_RULES) {
1590 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1591 break;
1592 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1593 }
1594
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001595 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001596 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1597 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001598 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001599 }
1600
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001601 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001602 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001603 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001604 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001605 }
Emeric Brun647caf12009-06-30 17:57:00 +02001606
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001607 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001608 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1609 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001610 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001611 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001612
Emeric Brun1d33b292010-01-04 15:47:17 +01001613 if (ana_list & AN_REQ_STICKING_RULES) {
1614 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1615 break;
1616 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1617 }
1618
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001619 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001620 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1621 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001622 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001623 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001624 break;
1625 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001626 }
Willy Tarreau84455332009-03-15 22:34:05 +01001627
Willy Tarreau815a9b22010-07-27 17:15:12 +02001628 rq_prod_last = s->si[0].state;
1629 rq_cons_last = s->si[1].state;
Willy Tarreau0499e352010-12-17 07:13:42 +01001630 s->req->flags &= ~BF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001631 rqf_last = s->req->flags;
1632
1633 if ((s->req->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001634 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001635 }
1636
Willy Tarreau576507f2010-01-07 00:09:04 +01001637 /* we'll monitor the request analysers while parsing the response,
1638 * because some response analysers may indirectly enable new request
1639 * analysers (eg: HTTP keep-alive).
1640 */
1641 req_ana_back = s->req->analysers;
1642
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001643 resync_response:
1644 /* Analyse response */
1645
1646 if (unlikely(s->rep->flags & BF_HIJACK)) {
1647 /* In inject mode, we wake up everytime something has
1648 * happened on the write side of the buffer.
1649 */
1650 unsigned int flags = s->rep->flags;
1651
1652 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
1653 !(s->rep->flags & BF_FULL)) {
1654 s->rep->hijacker(s, s->rep);
1655 }
1656
1657 if ((s->rep->flags ^ flags) & BF_MASK_STATIC) {
1658 rpf_last = s->rep->flags;
1659 goto resync_response;
1660 }
1661 }
Willy Tarreau2f976e12010-11-11 14:28:47 +01001662 else if (((s->rep->flags & ~rpf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001663 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC ||
1664 s->si[0].state != rp_cons_last ||
1665 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001666 unsigned int flags = s->rep->flags;
1667
Willy Tarreau0499e352010-12-17 07:13:42 +01001668 if ((s->rep->flags & BF_MASK_ANALYSER) &&
1669 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1670 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1671 * for some free space in the response buffer, so we might need to call
1672 * it when something changes in the response buffer, but still we pass
1673 * it the request buffer. Note that the SI state might very well still
1674 * be zero due to us returning a flow of redirects!
1675 */
1676 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
1677 s->req->flags |= BF_WAKE_ONCE;
1678 }
1679
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001680 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001681 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001682 unsigned int ana_list;
1683 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001684
Willy Tarreau90deb182010-01-07 00:20:41 +01001685 /* it's up to the analysers to stop disable reading or
1686 * closing. Note: if an analyser disables any of these
1687 * bits, it is responsible for enabling them again when
1688 * it disables itself, so that other analysers are called
1689 * in similar conditions.
1690 */
1691 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001692 buffer_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001693
1694 /* We will call all analysers for which a bit is set in
1695 * s->rep->analysers, following the bit order from LSB
1696 * to MSB. The analysers must remove themselves from
1697 * the list when not needed. Any analyser may return 0
1698 * to break out of the loop, either because of missing
1699 * data to take a decision, or because it decides to
1700 * kill the session. We loop at least once through each
1701 * analyser, and we may loop again if other analysers
1702 * are added in the middle.
1703 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001704
1705 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001706 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001707 /* Warning! ensure that analysers are always placed in ascending order! */
1708
Emeric Brun97679e72010-09-23 17:56:44 +02001709 if (ana_list & AN_RES_INSPECT) {
1710 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1711 break;
1712 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1713 }
1714
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001715 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001716 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1717 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001718 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001719 }
1720
Emeric Brun1d33b292010-01-04 15:47:17 +01001721 if (ana_list & AN_RES_STORE_RULES) {
1722 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1723 break;
1724 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1725 }
1726
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001727 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001728 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1729 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001730 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001731 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001732
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001733 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001734 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1735 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001736 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001737 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001738 break;
1739 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001740 }
1741
Willy Tarreau815a9b22010-07-27 17:15:12 +02001742 rp_cons_last = s->si[0].state;
1743 rp_prod_last = s->si[1].state;
1744 rpf_last = s->rep->flags;
1745
1746 if ((s->rep->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001747 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001748 }
1749
Willy Tarreau576507f2010-01-07 00:09:04 +01001750 /* maybe someone has added some request analysers, so we must check and loop */
1751 if (s->req->analysers & ~req_ana_back)
1752 goto resync_request;
1753
Willy Tarreau0499e352010-12-17 07:13:42 +01001754 if ((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER)
1755 goto resync_request;
1756
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001757 /* FIXME: here we should call protocol handlers which rely on
1758 * both buffers.
1759 */
1760
1761
1762 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001763 * Now we propagate unhandled errors to the session. Normally
1764 * we're just in a data phase here since it means we have not
1765 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001766 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001767 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001768 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001769 if (s->req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1770 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001771 s->req->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001772 if (s->req->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001773 s->be->be_counters.cli_aborts++;
1774 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001775 if (srv)
1776 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001777 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001778 }
1779 else if (s->req->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001780 s->be->be_counters.cli_aborts++;
1781 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001782 if (srv)
1783 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001784 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001785 }
1786 else if (s->req->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001787 s->be->be_counters.srv_aborts++;
1788 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001789 if (srv)
1790 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001791 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001792 }
1793 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001794 s->be->be_counters.srv_aborts++;
1795 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001796 if (srv)
1797 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001798 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001799 }
Willy Tarreau84455332009-03-15 22:34:05 +01001800 sess_set_term_flags(s);
1801 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001802 else if (s->rep->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1803 /* Report it if the server got an error or a read timeout expired */
1804 s->rep->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001805 if (s->rep->flags & BF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001806 s->be->be_counters.srv_aborts++;
1807 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001808 if (srv)
1809 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001810 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001811 }
1812 else if (s->rep->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001813 s->be->be_counters.srv_aborts++;
1814 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001815 if (srv)
1816 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001817 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001818 }
1819 else if (s->rep->flags & BF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001820 s->be->be_counters.cli_aborts++;
1821 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001822 if (srv)
1823 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001824 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001825 }
1826 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001827 s->be->be_counters.cli_aborts++;
1828 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001829 if (srv)
1830 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001831 s->flags |= SN_ERR_CLITO;
1832 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001833 sess_set_term_flags(s);
1834 }
Willy Tarreau84455332009-03-15 22:34:05 +01001835 }
1836
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001837 /*
1838 * Here we take care of forwarding unhandled data. This also includes
1839 * connection establishments and shutdown requests.
1840 */
1841
1842
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001843 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001844 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001845 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1846 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001847 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001848 if (!s->req->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001849 !(s->req->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001850 (s->req->prod->state >= SI_ST_EST) &&
1851 (s->req->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001852 /* This buffer is freewheeling, there's no analyser nor hijacker
1853 * attached to it. If any data are left in, we'll permit them to
1854 * move.
1855 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001856 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001857 buffer_auto_connect(s->req);
1858 buffer_auto_close(s->req);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001859 buffer_flush(s->req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001860
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001861 /* We'll let data flow between the producer (if still connected)
1862 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001863 */
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001864 if (!(s->req->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001865 buffer_forward(s->req, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001866 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001867
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001868 /* check if it is wise to enable kernel splicing to forward request data */
1869 if (!(s->req->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1870 s->req->to_forward &&
1871 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001872 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001873 (pipes_used < global.maxpipes) &&
1874 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1875 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
1876 (s->req->flags & BF_STREAMER_FAST)))) {
1877 s->req->flags |= BF_KERN_SPLICING;
1878 }
1879
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001880 /* reflect what the L7 analysers have seen last */
1881 rqf_last = s->req->flags;
1882
1883 /*
1884 * Now forward all shutdown requests between both sides of the buffer
1885 */
1886
Willy Tarreau520d95e2009-09-19 21:04:57 +02001887 /* first, let's check if the request buffer needs to shutdown(write), which may
1888 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001889 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001890 */
Willy Tarreau82eeaf22009-12-29 12:09:05 +01001891 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
Willy Tarreaue4599762010-03-21 23:25:09 +01001892 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001893 buffer_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001894
1895 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001896 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_OUT_EMPTY)) == (BF_SHUTW_NOW|BF_OUT_EMPTY)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02001897 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001898
1899 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001900 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
1901 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001902 buffer_shutr_now(s->req);
1903
1904 /* shutdown(read) pending */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001905 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW)) {
1906 if (s->req->prod->flags & SI_FL_NOHALF)
1907 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001908 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001909 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001910
Willy Tarreau520d95e2009-09-19 21:04:57 +02001911 /* it's possible that an upper layer has requested a connection setup or abort.
1912 * There are 2 situations where we decide to establish a new connection :
1913 * - there are data scheduled for emission in the buffer
1914 * - the BF_AUTO_CONNECT flag is set (active connection)
1915 */
1916 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001917 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001918 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001919 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001920 * switch to the connected state, otherwise we perform a connection
1921 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001922 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001923 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001924 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau26d8c592012-05-07 18:12:14 +02001925 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02001926 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001927 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001928 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1929 s->req->wex = TICK_ETERNITY;
1930 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001931 }
Willy Tarreau73201222009-08-16 18:27:24 +02001932 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001933 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001934 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001935 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1936 buffer_shutr_now(s->rep);
1937 }
Willy Tarreau92795622009-03-06 12:51:23 +01001938 }
1939
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001940
1941 /* we may have a pending connection request, or a connection waiting
1942 * for completion.
1943 */
1944 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1945 do {
1946 /* nb: step 1 might switch from QUE to ASS, but we first want
1947 * to give a chance to step 2 to perform a redirect if needed.
1948 */
1949 if (s->si[1].state != SI_ST_REQ)
1950 sess_update_stream_int(s, &s->si[1]);
1951 if (s->si[1].state == SI_ST_REQ)
1952 sess_prepare_conn_req(s, &s->si[1]);
1953
Willy Tarreau827aee92011-03-10 16:55:02 +01001954 srv = target_srv(&s->target);
1955 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001956 perform_http_redirect(s, &s->si[1]);
1957 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001958
1959 /* Now we can add the server name to a header (if requested) */
1960 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001961 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001962 (s->be->mode == PR_MODE_HTTP) &&
1963 (s->be->server_id_hdr_name != NULL)) {
1964 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001965 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001966 }
1967
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001968 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001969 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001970 goto resync_stream_interface;
1971
Willy Tarreau815a9b22010-07-27 17:15:12 +02001972 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001973 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001974 goto resync_request;
1975
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001976 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001977
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001978 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001979 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001980 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1981 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001982 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001983 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001984 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001985 (s->rep->prod->state >= SI_ST_EST) &&
1986 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001987 /* This buffer is freewheeling, there's no analyser nor hijacker
1988 * attached to it. If any data are left in, we'll permit them to
1989 * move.
1990 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001991 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001992 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001993 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001994
1995 /* We'll let data flow between the producer (if still connected)
1996 * to the consumer.
1997 */
1998 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001999 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002000
2001 /* if we have no analyser anymore in any direction and have a
2002 * tunnel timeout set, use it now.
2003 */
2004 if (!s->req->analysers && s->be->timeout.tunnel) {
2005 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2006 s->be->timeout.tunnel;
2007 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2008 tick_add(now_ms, s->be->timeout.tunnel);
2009 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002010 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002011
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002012 /* check if it is wise to enable kernel splicing to forward response data */
2013 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
2014 s->rep->to_forward &&
2015 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002016 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002017 (pipes_used < global.maxpipes) &&
2018 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2019 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2020 (s->rep->flags & BF_STREAMER_FAST)))) {
2021 s->rep->flags |= BF_KERN_SPLICING;
2022 }
2023
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002024 /* reflect what the L7 analysers have seen last */
2025 rpf_last = s->rep->flags;
2026
2027 /*
2028 * Now forward all shutdown requests between both sides of the buffer
2029 */
2030
2031 /*
2032 * FIXME: this is probably where we should produce error responses.
2033 */
2034
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002035 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002036 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2037 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002038 buffer_shutw_now(s->rep);
2039
2040 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002041 if (unlikely((s->rep->flags & (BF_SHUTW|BF_OUT_EMPTY|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002042 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002043
2044 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002045 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2046 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002047 buffer_shutr_now(s->rep);
2048
2049 /* shutdown(read) pending */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002050 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW)) {
2051 if (s->rep->prod->flags & SI_FL_NOHALF)
2052 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002053 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002054 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002055
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002056 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002057 goto resync_stream_interface;
2058
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002059 if (s->req->flags != rqf_last)
2060 goto resync_request;
2061
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002062 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002063 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002064
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002065 /* we're interested in getting wakeups again */
2066 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2067 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2068
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002069 /* This is needed only when debugging is enabled, to indicate
2070 * client-side or server-side close. Please note that in the unlikely
2071 * event where both sides would close at once, the sequence is reported
2072 * on the server side first.
2073 */
2074 if (unlikely((global.mode & MODE_DEBUG) &&
2075 (!(global.mode & MODE_QUIET) ||
2076 (global.mode & MODE_VERBOSE)))) {
2077 int len;
2078
2079 if (s->si[1].state == SI_ST_CLO &&
2080 s->si[1].prev_state == SI_ST_EST) {
2081 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2082 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002083 (unsigned short)si_fd(&s->si[0]),
2084 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002085 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002086 }
2087
2088 if (s->si[0].state == SI_ST_CLO &&
2089 s->si[0].prev_state == SI_ST_EST) {
2090 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2091 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002092 (unsigned short)si_fd(&s->si[0]),
2093 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002094 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002095 }
2096 }
2097
2098 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2099 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2100
2101 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2102 session_process_counters(s);
2103
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002104 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002105 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002106
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002107 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002108 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002109
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002110 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2111 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 +01002112 s->si[0].prev_state = s->si[0].state;
2113 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002114 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2115 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002116
2117 /* Trick: if a request is being waiting for the server to respond,
2118 * and if we know the server can timeout, we don't want the timeout
2119 * to expire on the client side first, but we're still interested
2120 * in passing data from the client to the server (eg: POST). Thus,
2121 * we can cancel the client's request timeout if the server's
2122 * request timeout is set and the server has not yet sent a response.
2123 */
2124
Willy Tarreau520d95e2009-09-19 21:04:57 +02002125 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002126 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2127 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002128 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002129 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002130
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002131 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002132 * Note that this one may wake the task up again.
2133 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002134 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2135 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2136 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2137 s->req->cons->target.ptr.a->fct(s->req->cons);
2138 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2139 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002140 if (task_in_rq(t)) {
2141 /* If we woke up, we don't want to requeue the
2142 * task to the wait queue, but rather requeue
2143 * it into the runqueue ASAP.
2144 */
2145 t->expire = TICK_ETERNITY;
2146 return t;
2147 }
2148 }
2149
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002150 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2151 tick_first(s->rep->rex, s->rep->wex));
2152 if (s->req->analysers)
2153 t->expire = tick_first(t->expire, s->req->analyse_exp);
2154
2155 if (s->si[0].exp)
2156 t->expire = tick_first(t->expire, s->si[0].exp);
2157
2158 if (s->si[1].exp)
2159 t->expire = tick_first(t->expire, s->si[1].exp);
2160
2161#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002162 fprintf(stderr,
2163 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2164 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2165 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2166 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 +01002167#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002168
2169#ifdef DEBUG_DEV
2170 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002171 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002172 ABORT_NOW();
2173#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002174 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002175 }
2176
2177 s->fe->feconn--;
2178 if (s->flags & SN_BE_ASSIGNED)
2179 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002180 if (!(s->listener->options & LI_O_UNLIMITED))
2181 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002182 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002183 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002184 if (s->listener->state == LI_FULL)
2185 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186
Willy Tarreau08ceb102011-07-24 22:58:00 +02002187 /* Dequeues all of the listeners waiting for a resource */
2188 if (!LIST_ISEMPTY(&global_listener_queue))
2189 dequeue_all_listeners(&global_listener_queue);
2190
Willy Tarreaub32907b2011-07-25 08:37:44 +02002191 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2192 (!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 +02002193 dequeue_all_listeners(&s->fe->listener_queue);
2194
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002195 if (unlikely((global.mode & MODE_DEBUG) &&
2196 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2197 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002198 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002199 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002200 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau21337822012-04-29 14:11:38 +02002201 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002202 }
2203
2204 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2205 session_process_counters(s);
2206
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002207 if (s->txn.status) {
2208 int n;
2209
2210 n = s->txn.status / 100;
2211 if (n < 1 || n > 5)
2212 n = 0;
2213
2214 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002215 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002216
Willy Tarreau24657792010-02-26 10:30:28 +01002217 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002218 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002219 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002220 }
2221
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002222 /* let's do a final log if we need it */
2223 if (s->logs.logwait &&
2224 !(s->flags & SN_MONITOR) &&
2225 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002226 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002227 }
2228
2229 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002230 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002231 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002232 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002233 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002234}
2235
Willy Tarreau7c669d72008-06-20 15:04:11 +02002236/*
2237 * This function adjusts sess->srv_conn and maintains the previous and new
2238 * server's served session counts. Setting newsrv to NULL is enough to release
2239 * current connection slot. This function also notifies any LB algo which might
2240 * expect to be informed about any change in the number of active sessions on a
2241 * server.
2242 */
2243void sess_change_server(struct session *sess, struct server *newsrv)
2244{
2245 if (sess->srv_conn == newsrv)
2246 return;
2247
2248 if (sess->srv_conn) {
2249 sess->srv_conn->served--;
2250 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2251 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002252 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002253 }
2254
2255 if (newsrv) {
2256 newsrv->served++;
2257 if (newsrv->proxy->lbprm.server_take_conn)
2258 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002259 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002260 }
2261}
2262
Willy Tarreau84455332009-03-15 22:34:05 +01002263/* Handle server-side errors for default protocols. It is called whenever a a
2264 * connection setup is aborted or a request is aborted in queue. It sets the
2265 * session termination flags so that the caller does not have to worry about
2266 * them. It's installed as ->srv_error for the server-side stream_interface.
2267 */
2268void default_srv_error(struct session *s, struct stream_interface *si)
2269{
2270 int err_type = si->err_type;
2271 int err = 0, fin = 0;
2272
2273 if (err_type & SI_ET_QUEUE_ABRT) {
2274 err = SN_ERR_CLICL;
2275 fin = SN_FINST_Q;
2276 }
2277 else if (err_type & SI_ET_CONN_ABRT) {
2278 err = SN_ERR_CLICL;
2279 fin = SN_FINST_C;
2280 }
2281 else if (err_type & SI_ET_QUEUE_TO) {
2282 err = SN_ERR_SRVTO;
2283 fin = SN_FINST_Q;
2284 }
2285 else if (err_type & SI_ET_QUEUE_ERR) {
2286 err = SN_ERR_SRVCL;
2287 fin = SN_FINST_Q;
2288 }
2289 else if (err_type & SI_ET_CONN_TO) {
2290 err = SN_ERR_SRVTO;
2291 fin = SN_FINST_C;
2292 }
2293 else if (err_type & SI_ET_CONN_ERR) {
2294 err = SN_ERR_SRVCL;
2295 fin = SN_FINST_C;
2296 }
2297 else /* SI_ET_CONN_OTHER and others */ {
2298 err = SN_ERR_INTERNAL;
2299 fin = SN_FINST_C;
2300 }
2301
2302 if (!(s->flags & SN_ERR_MASK))
2303 s->flags |= err;
2304 if (!(s->flags & SN_FINST_MASK))
2305 s->flags |= fin;
2306}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002307
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002308/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2309void session_shutdown(struct session *session, int why)
2310{
2311 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2312 return;
2313
2314 buffer_shutw_now(session->req);
2315 buffer_shutr_now(session->rep);
2316 session->task->nice = 1024;
2317 if (!(session->flags & SN_ERR_MASK))
2318 session->flags |= why;
2319 task_wakeup(session->task, TASK_WOKEN_OTHER);
2320}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002321
Willy Tarreau8b22a712010-06-18 17:46:06 +02002322/************************************************************************/
2323/* All supported ACL keywords must be declared here. */
2324/************************************************************************/
2325
Willy Tarreaua5e37562011-12-16 17:06:15 +01002326/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002327static int
Willy Tarreau37406352012-04-23 16:16:37 +02002328acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002329{
Willy Tarreau37406352012-04-23 16:16:37 +02002330 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002331 smp->type = SMP_T_UINT;
2332 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002333 if (ts != NULL) {
2334 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2335 if (!ptr)
2336 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002337 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002338 }
2339 return 1;
2340}
2341
Willy Tarreaua5e37562011-12-16 17:06:15 +01002342/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002343 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002344 */
2345static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002346acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002347 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002348{
Willy Tarreau56123282010-08-06 19:06:56 +02002349 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002350 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002351 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002352}
2353
Willy Tarreaua5e37562011-12-16 17:06:15 +01002354/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002355 * backend counters.
2356 */
2357static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002358acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002359 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002360{
Willy Tarreau56123282010-08-06 19:06:56 +02002361 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002362 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002363 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002364}
2365
Willy Tarreaua5e37562011-12-16 17:06:15 +01002366/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002367 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002368 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002369 */
2370static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002371acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002372 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002373{
2374 struct stktable_key *key;
2375
David du Colombier4f92d322011-03-24 11:09:31 +01002376 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002377 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002378 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002379
Willy Tarreau24e32d82012-04-23 23:55:44 +02002380 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002381 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002382}
2383
2384/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002385 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002386 */
2387static int
Willy Tarreau37406352012-04-23 16:16:37 +02002388acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002389{
Willy Tarreau37406352012-04-23 16:16:37 +02002390 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002391 smp->type = SMP_T_UINT;
2392 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002393 if (ts != NULL) {
2394 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2395 if (!ptr)
2396 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002397 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002398 }
2399 return 1;
2400}
2401
2402/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002403 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002404 */
2405static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002406acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002407 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002408{
Willy Tarreau56123282010-08-06 19:06:56 +02002409 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002410 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002411 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002412}
2413
2414/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002415 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002416 */
2417static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002418acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002419 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002420{
Willy Tarreau56123282010-08-06 19:06:56 +02002421 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002422 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002423 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002424}
2425
2426/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002427 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002428 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002429 */
2430static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002431acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002432 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002433{
2434 struct stktable_key *key;
2435
David du Colombier4f92d322011-03-24 11:09:31 +01002436 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002437 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002438 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002439
Willy Tarreau24e32d82012-04-23 23:55:44 +02002440 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002441 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002442}
2443
Willy Tarreauf73cd112011-08-13 01:45:16 +02002444/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002445 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002446 */
2447static int
Willy Tarreau37406352012-04-23 16:16:37 +02002448acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002449{
Willy Tarreau37406352012-04-23 16:16:37 +02002450 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002451 smp->type = SMP_T_UINT;
2452 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002453 if (ts != NULL) {
2454 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2455 if (!ptr)
2456 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002457 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002458 stktable_data_cast(ptr, gpc0) = 0;
2459 }
2460 return 1;
2461}
2462
2463/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002464 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002465 */
2466static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002467acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002468 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002469{
2470 if (!l4->stkctr1_entry)
2471 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002472 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002473}
2474
2475/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002476 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002477 */
2478static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002479acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002480 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002481{
2482 if (!l4->stkctr2_entry)
2483 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002484 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002485}
2486
2487/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002488 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002489 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002490 */
2491static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002492acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002493 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002494{
2495 struct stktable_key *key;
2496
2497 key = tcp_src_to_stktable_key(l4);
2498 if (!key)
2499 return 0;
2500
Willy Tarreau24e32d82012-04-23 23:55:44 +02002501 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002502 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002503}
2504
Willy Tarreaua5e37562011-12-16 17:06:15 +01002505/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002506static int
Willy Tarreau37406352012-04-23 16:16:37 +02002507acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002508{
Willy Tarreau37406352012-04-23 16:16:37 +02002509 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002510 smp->type = SMP_T_UINT;
2511 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002512 if (ts != NULL) {
2513 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2514 if (!ptr)
2515 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002516 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002517 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002518 return 1;
2519}
2520
Willy Tarreaua5e37562011-12-16 17:06:15 +01002521/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002522static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002523acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002524 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002525{
Willy Tarreau56123282010-08-06 19:06:56 +02002526 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002527 return 0;
2528
Willy Tarreau37406352012-04-23 16:16:37 +02002529 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002530}
2531
Willy Tarreaua5e37562011-12-16 17:06:15 +01002532/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002533static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002534acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002535 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002536{
Willy Tarreau56123282010-08-06 19:06:56 +02002537 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002538 return 0;
2539
Willy Tarreau37406352012-04-23 16:16:37 +02002540 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002541}
2542
Willy Tarreaua5e37562011-12-16 17:06:15 +01002543/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002544 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002545 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002546 */
2547static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002548acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002549 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002550{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002551 struct stktable_key *key;
2552
David du Colombier4f92d322011-03-24 11:09:31 +01002553 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002554 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002555 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002556
Willy Tarreau24e32d82012-04-23 23:55:44 +02002557 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002558 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002559}
2560
Willy Tarreaua5e37562011-12-16 17:06:15 +01002561/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002562static int
Willy Tarreau37406352012-04-23 16:16:37 +02002563acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002564{
Willy Tarreau37406352012-04-23 16:16:37 +02002565 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002566 smp->type = SMP_T_UINT;
2567 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002568 if (ts != NULL) {
2569 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2570 if (!ptr)
2571 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002572 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002573 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2574 }
2575 return 1;
2576}
2577
Willy Tarreaua5e37562011-12-16 17:06:15 +01002578/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002579 * the configured period.
2580 */
2581static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002582acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002583 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002584{
Willy Tarreau56123282010-08-06 19:06:56 +02002585 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002586 return 0;
2587
Willy Tarreau37406352012-04-23 16:16:37 +02002588 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002589}
2590
Willy Tarreaua5e37562011-12-16 17:06:15 +01002591/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002592 * the configured period.
2593 */
2594static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002595acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002596 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002597{
Willy Tarreau56123282010-08-06 19:06:56 +02002598 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002599 return 0;
2600
Willy Tarreau37406352012-04-23 16:16:37 +02002601 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002602}
2603
Willy Tarreaua5e37562011-12-16 17:06:15 +01002604/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002605 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002606 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002607 */
2608static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002609acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002610 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002611{
2612 struct stktable_key *key;
2613
David du Colombier4f92d322011-03-24 11:09:31 +01002614 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002615 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002616 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002617
Willy Tarreau24e32d82012-04-23 23:55:44 +02002618 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002619 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002620}
2621
Willy Tarreaua5e37562011-12-16 17:06:15 +01002622/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002623 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002624 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002625 */
2626static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002627acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002628 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002629{
2630 struct stksess *ts;
2631 struct stktable_key *key;
2632 void *ptr;
2633
David du Colombier4f92d322011-03-24 11:09:31 +01002634 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002635 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002636 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002637
Willy Tarreau24e32d82012-04-23 23:55:44 +02002638 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002639
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002640 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2641 /* entry does not exist and could not be created */
2642 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002643
2644 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2645 if (!ptr)
2646 return 0; /* parameter not stored in this table */
2647
Willy Tarreauf853c462012-04-23 18:53:56 +02002648 smp->type = SMP_T_UINT;
2649 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002650 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002651 return 1;
2652}
2653
Willy Tarreaua5e37562011-12-16 17:06:15 +01002654/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002655static int
Willy Tarreau37406352012-04-23 16:16:37 +02002656acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002657{
Willy Tarreau37406352012-04-23 16:16:37 +02002658 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002659 smp->type = SMP_T_UINT;
2660 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002661
2662 if (ts != NULL) {
2663 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2664 if (!ptr)
2665 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002666 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002667 }
2668 return 1;
2669}
2670
Willy Tarreaua5e37562011-12-16 17:06:15 +01002671/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002672static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002673acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002674 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002675{
Willy Tarreau56123282010-08-06 19:06:56 +02002676 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002677 return 0;
2678
Willy Tarreau37406352012-04-23 16:16:37 +02002679 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002680}
2681
Willy Tarreaua5e37562011-12-16 17:06:15 +01002682/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002683static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002684acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002685 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002686{
Willy Tarreau56123282010-08-06 19:06:56 +02002687 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002688 return 0;
2689
Willy Tarreau37406352012-04-23 16:16:37 +02002690 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002691}
2692
Willy Tarreaua5e37562011-12-16 17:06:15 +01002693/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002694 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002695 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002696 */
2697static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002698acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002699 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002700{
Willy Tarreau38285c12010-06-18 16:35:43 +02002701 struct stktable_key *key;
2702
David du Colombier4f92d322011-03-24 11:09:31 +01002703 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002704 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002705 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002706
Willy Tarreau24e32d82012-04-23 23:55:44 +02002707 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002708 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002709}
2710
Willy Tarreaua5e37562011-12-16 17:06:15 +01002711/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002712static int
Willy Tarreau37406352012-04-23 16:16:37 +02002713acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002714{
Willy Tarreau37406352012-04-23 16:16:37 +02002715 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002716 smp->type = SMP_T_UINT;
2717 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002718 if (ts != NULL) {
2719 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2720 if (!ptr)
2721 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002722 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002723 }
2724 return 1;
2725}
2726
Willy Tarreaua5e37562011-12-16 17:06:15 +01002727/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002728static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002729acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002730 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002731{
Willy Tarreau56123282010-08-06 19:06:56 +02002732 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002733 return 0;
2734
Willy Tarreau37406352012-04-23 16:16:37 +02002735 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002736}
2737
Willy Tarreaua5e37562011-12-16 17:06:15 +01002738/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002739static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002740acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002741 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002742{
Willy Tarreau56123282010-08-06 19:06:56 +02002743 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002744 return 0;
2745
Willy Tarreau37406352012-04-23 16:16:37 +02002746 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002747}
2748
Willy Tarreaua5e37562011-12-16 17:06:15 +01002749/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002750 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002751 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002752 */
2753static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002754acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002755 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002756{
2757 struct stktable_key *key;
2758
David du Colombier4f92d322011-03-24 11:09:31 +01002759 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002760 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002761 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002762
Willy Tarreau24e32d82012-04-23 23:55:44 +02002763 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002764 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002765}
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
Willy Tarreau37406352012-04-23 16:16:37 +02002769acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002770{
Willy Tarreau37406352012-04-23 16:16:37 +02002771 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002772 smp->type = SMP_T_UINT;
2773 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002774 if (ts != NULL) {
2775 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2776 if (!ptr)
2777 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002778 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002779 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2780 }
2781 return 1;
2782}
2783
Willy Tarreaua5e37562011-12-16 17:06:15 +01002784/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002785 * the configured period.
2786 */
2787static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002788acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002789 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002790{
Willy Tarreau56123282010-08-06 19:06:56 +02002791 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002792 return 0;
2793
Willy Tarreau37406352012-04-23 16:16:37 +02002794 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002795}
2796
Willy Tarreaua5e37562011-12-16 17:06:15 +01002797/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002798 * the configured period.
2799 */
2800static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002801acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002802 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002803{
Willy Tarreau56123282010-08-06 19:06:56 +02002804 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002805 return 0;
2806
Willy Tarreau37406352012-04-23 16:16:37 +02002807 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002808}
2809
Willy Tarreaua5e37562011-12-16 17:06:15 +01002810/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002811 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002812 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002813 */
2814static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002815acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002816 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002817{
2818 struct stktable_key *key;
2819
David du Colombier4f92d322011-03-24 11:09:31 +01002820 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002821 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002822 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002823
Willy Tarreau24e32d82012-04-23 23:55:44 +02002824 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002825 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002826}
2827
Willy Tarreaua5e37562011-12-16 17:06:15 +01002828/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002829static int
Willy Tarreau37406352012-04-23 16:16:37 +02002830acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002831{
Willy Tarreau37406352012-04-23 16:16:37 +02002832 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002833 smp->type = SMP_T_UINT;
2834 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002835 if (ts != NULL) {
2836 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2837 if (!ptr)
2838 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002839 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002840 }
2841 return 1;
2842}
2843
Willy Tarreaua5e37562011-12-16 17:06:15 +01002844/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002845static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002846acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002847 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002848{
Willy Tarreau56123282010-08-06 19:06:56 +02002849 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002850 return 0;
2851
Willy Tarreau37406352012-04-23 16:16:37 +02002852 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002853}
2854
Willy Tarreaua5e37562011-12-16 17:06:15 +01002855/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002856static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002857acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002858 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002859{
Willy Tarreau56123282010-08-06 19:06:56 +02002860 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002861 return 0;
2862
Willy Tarreau37406352012-04-23 16:16:37 +02002863 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002864}
2865
Willy Tarreaua5e37562011-12-16 17:06:15 +01002866/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002867 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002868 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002869 */
2870static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002871acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002872 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002873{
2874 struct stktable_key *key;
2875
David du Colombier4f92d322011-03-24 11:09:31 +01002876 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002877 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002878 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002879
Willy Tarreau24e32d82012-04-23 23:55:44 +02002880 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002881 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002882}
2883
Willy Tarreaua5e37562011-12-16 17:06:15 +01002884/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002885static int
Willy Tarreau37406352012-04-23 16:16:37 +02002886acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002887{
Willy Tarreau37406352012-04-23 16:16:37 +02002888 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002889 smp->type = SMP_T_UINT;
2890 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002891 if (ts != NULL) {
2892 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2893 if (!ptr)
2894 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002895 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002896 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2897 }
2898 return 1;
2899}
2900
Willy Tarreaua5e37562011-12-16 17:06:15 +01002901/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002902 * the configured period.
2903 */
2904static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002905acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002906 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002907{
Willy Tarreau56123282010-08-06 19:06:56 +02002908 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002909 return 0;
2910
Willy Tarreau37406352012-04-23 16:16:37 +02002911 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002912}
2913
Willy Tarreaua5e37562011-12-16 17:06:15 +01002914/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002915 * the configured period.
2916 */
2917static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002918acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002919 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002920{
Willy Tarreau56123282010-08-06 19:06:56 +02002921 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002922 return 0;
2923
Willy Tarreau37406352012-04-23 16:16:37 +02002924 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002925}
2926
Willy Tarreaua5e37562011-12-16 17:06:15 +01002927/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002928 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002929 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002930 */
2931static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002932acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002933 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002934{
2935 struct stktable_key *key;
2936
David du Colombier4f92d322011-03-24 11:09:31 +01002937 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002938 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002939 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002940
Willy Tarreau24e32d82012-04-23 23:55:44 +02002941 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002942 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002943}
2944
Willy Tarreaua5e37562011-12-16 17:06:15 +01002945/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002946static int
Willy Tarreau37406352012-04-23 16:16:37 +02002947acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002948{
Willy Tarreau37406352012-04-23 16:16:37 +02002949 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002950 smp->type = SMP_T_UINT;
2951 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002952 if (ts != NULL) {
2953 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2954 if (!ptr)
2955 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002956 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002957 }
2958 return 1;
2959}
2960
Willy Tarreaua5e37562011-12-16 17:06:15 +01002961/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002962static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002963acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002964 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002965{
Willy Tarreau56123282010-08-06 19:06:56 +02002966 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002967 return 0;
2968
Willy Tarreau37406352012-04-23 16:16:37 +02002969 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002970}
2971
Willy Tarreaua5e37562011-12-16 17:06:15 +01002972/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002973static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002974acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002975 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002976{
Willy Tarreau56123282010-08-06 19:06:56 +02002977 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002978 return 0;
2979
Willy Tarreau37406352012-04-23 16:16:37 +02002980 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002981}
2982
Willy Tarreaua5e37562011-12-16 17:06:15 +01002983/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002984 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002985 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002986 */
2987static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002988acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002989 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002990{
2991 struct stktable_key *key;
2992
David du Colombier4f92d322011-03-24 11:09:31 +01002993 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002994 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002995 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002996
Willy Tarreau24e32d82012-04-23 23:55:44 +02002997 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002998 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002999}
3000
Willy Tarreaua5e37562011-12-16 17:06:15 +01003001/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003002static int
Willy Tarreau37406352012-04-23 16:16:37 +02003003acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003004{
Willy Tarreau37406352012-04-23 16:16:37 +02003005 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003006 smp->type = SMP_T_UINT;
3007 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003008 if (ts != NULL) {
3009 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3010 if (!ptr)
3011 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003012 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003013 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3014 }
3015 return 1;
3016}
3017
Willy Tarreaua5e37562011-12-16 17:06:15 +01003018/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003019 * the configured period.
3020 */
3021static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003022acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003023 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003024{
Willy Tarreau56123282010-08-06 19:06:56 +02003025 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003026 return 0;
3027
Willy Tarreau37406352012-04-23 16:16:37 +02003028 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003029}
3030
Willy Tarreaua5e37562011-12-16 17:06:15 +01003031/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003032 * the configured period.
3033 */
3034static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003035acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003036 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003037{
Willy Tarreau56123282010-08-06 19:06:56 +02003038 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003039 return 0;
3040
Willy Tarreau37406352012-04-23 16:16:37 +02003041 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003042}
3043
Willy Tarreaua5e37562011-12-16 17:06:15 +01003044/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003045 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003046 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003047 */
3048static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003049acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003050 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003051{
3052 struct stktable_key *key;
3053
David du Colombier4f92d322011-03-24 11:09:31 +01003054 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003055 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003056 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003057
Willy Tarreau24e32d82012-04-23 23:55:44 +02003058 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003059 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003060}
3061
Willy Tarreaua5e37562011-12-16 17:06:15 +01003062/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003063static int
Willy Tarreau37406352012-04-23 16:16:37 +02003064acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003065{
Willy Tarreau37406352012-04-23 16:16:37 +02003066 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003067 smp->type = SMP_T_UINT;
3068 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003069
3070 if (ts != NULL) {
3071 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3072 if (!ptr)
3073 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003074 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003075 }
3076 return 1;
3077}
3078
Willy Tarreaua5e37562011-12-16 17:06:15 +01003079/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003080 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003081 */
3082static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003083acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003084 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003085{
Willy Tarreau56123282010-08-06 19:06:56 +02003086 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003087 return 0;
3088
Willy Tarreau37406352012-04-23 16:16:37 +02003089 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003090}
3091
Willy Tarreaua5e37562011-12-16 17:06:15 +01003092/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003093 * session's tracked BE counters.
3094 */
3095static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003096acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003097 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003098{
Willy Tarreau56123282010-08-06 19:06:56 +02003099 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003100 return 0;
3101
Willy Tarreau37406352012-04-23 16:16:37 +02003102 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003103}
3104
Willy Tarreaua5e37562011-12-16 17:06:15 +01003105/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003106 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003107 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003108 */
3109static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003110acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003111 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003112{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003113 struct stktable_key *key;
3114
David du Colombier4f92d322011-03-24 11:09:31 +01003115 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003116 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003117 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003118
Willy Tarreau24e32d82012-04-23 23:55:44 +02003119 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003120 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003121}
3122
Willy Tarreaua5e37562011-12-16 17:06:15 +01003123/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003124 * configured period.
3125 */
3126static int
Willy Tarreau37406352012-04-23 16:16:37 +02003127acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003128{
Willy Tarreau37406352012-04-23 16:16:37 +02003129 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003130 smp->type = SMP_T_UINT;
3131 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003132 if (ts != NULL) {
3133 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3134 if (!ptr)
3135 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003136 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003137 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3138 }
3139 return 1;
3140}
3141
Willy Tarreaua5e37562011-12-16 17:06:15 +01003142/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003143 * counters over the configured period.
3144 */
3145static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003146acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003147 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003148{
Willy Tarreau56123282010-08-06 19:06:56 +02003149 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003150 return 0;
3151
Willy Tarreau37406352012-04-23 16:16:37 +02003152 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003153}
3154
Willy Tarreaua5e37562011-12-16 17:06:15 +01003155/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003156 * counters over the configured period.
3157 */
3158static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003159acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003160 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003161{
Willy Tarreau56123282010-08-06 19:06:56 +02003162 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003163 return 0;
3164
Willy Tarreau37406352012-04-23 16:16:37 +02003165 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003166}
3167
Willy Tarreaua5e37562011-12-16 17:06:15 +01003168/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003169 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003170 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003171 */
3172static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003173acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003174 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003175{
3176 struct stktable_key *key;
3177
David du Colombier4f92d322011-03-24 11:09:31 +01003178 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003179 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003180 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003181
Willy Tarreau24e32d82012-04-23 23:55:44 +02003182 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003183 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003184}
3185
Willy Tarreaua5e37562011-12-16 17:06:15 +01003186/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003187static int
Willy Tarreau37406352012-04-23 16:16:37 +02003188acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003189{
Willy Tarreau37406352012-04-23 16:16:37 +02003190 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003191 smp->type = SMP_T_UINT;
3192 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003193
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003194 if (ts != NULL) {
3195 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003196 if (!ptr)
3197 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003198 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003199 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003200 return 1;
3201}
3202
Willy Tarreaua5e37562011-12-16 17:06:15 +01003203/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003204 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003205 */
3206static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003207acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003208 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003209{
Willy Tarreau56123282010-08-06 19:06:56 +02003210 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003211 return 0;
3212
Willy Tarreau37406352012-04-23 16:16:37 +02003213 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003214}
3215
Willy Tarreaua5e37562011-12-16 17:06:15 +01003216/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003217 * tracked BE counters.
3218 */
3219static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003220acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003221 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003222{
Willy Tarreau56123282010-08-06 19:06:56 +02003223 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003224 return 0;
3225
Willy Tarreau37406352012-04-23 16:16:37 +02003226 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003227}
3228
Willy Tarreaua5e37562011-12-16 17:06:15 +01003229/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003230 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003231 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003232 */
3233static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003234acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003235 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003236{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003237 struct stktable_key *key;
3238
David du Colombier4f92d322011-03-24 11:09:31 +01003239 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003240 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003241 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003242
Willy Tarreau24e32d82012-04-23 23:55:44 +02003243 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003244 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003245}
3246
Willy Tarreaua5e37562011-12-16 17:06:15 +01003247/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003248 * configured period.
3249 */
3250static int
Willy Tarreau37406352012-04-23 16:16:37 +02003251acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003252{
Willy Tarreau37406352012-04-23 16:16:37 +02003253 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003254 smp->type = SMP_T_UINT;
3255 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003256 if (ts != NULL) {
3257 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3258 if (!ptr)
3259 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003260 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003261 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3262 }
3263 return 1;
3264}
3265
Willy Tarreaua5e37562011-12-16 17:06:15 +01003266/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003267 * over the configured period.
3268 */
3269static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003270acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003271 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003272{
Willy Tarreau56123282010-08-06 19:06:56 +02003273 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003274 return 0;
3275
Willy Tarreau37406352012-04-23 16:16:37 +02003276 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003277}
3278
Willy Tarreaua5e37562011-12-16 17:06:15 +01003279/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003280 * over the configured period.
3281 */
3282static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003283acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003284 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003285{
Willy Tarreau56123282010-08-06 19:06:56 +02003286 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003287 return 0;
3288
Willy Tarreau37406352012-04-23 16:16:37 +02003289 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003290}
3291
Willy Tarreaua5e37562011-12-16 17:06:15 +01003292/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003293 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003294 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003295 */
3296static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003297acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003298 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003299{
3300 struct stktable_key *key;
3301
David du Colombier4f92d322011-03-24 11:09:31 +01003302 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003303 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003304 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003305
Willy Tarreau24e32d82012-04-23 23:55:44 +02003306 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003307 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003308}
3309
Willy Tarreau34db1082012-04-19 17:16:54 +02003310/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003311 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003312 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003313static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003314acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003315 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003316{
Willy Tarreau37406352012-04-23 16:16:37 +02003317 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003318 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003319 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003320 return 1;
3321}
3322
Willy Tarreau34db1082012-04-19 17:16:54 +02003323/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003324 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003325 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003326static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003327acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003328 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003329{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003330 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003331 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003332 smp->type = SMP_T_UINT;
3333 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003334 return 1;
3335}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003336
Willy Tarreau61612d42012-04-19 18:42:05 +02003337/* Note: must not be declared <const> as its list will be overwritten.
3338 * Please take care of keeping this list alphabetically sorted.
3339 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003340static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003341 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3342 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3343 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3344 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3345 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3346 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3347 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3348 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3349 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3350 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3351 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3352 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3353 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3354 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3355 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3356 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3357 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3358 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3359 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3360 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3361 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3362 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3363 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3364 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3365 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3366 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3367 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3368 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3369 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3370 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3371 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3372 { "sc2_sess_rate", acl_parse_int, acl_fetch_sc2_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02003373 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3374 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3375 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3376 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3377 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3378 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3379 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3380 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3381 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3382 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3383 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3384 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3385 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3386 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3387 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3388 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3389 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3390 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3391 { "table_cnt", acl_parse_int, acl_fetch_table_cnt, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003392 { NULL, NULL, NULL, NULL },
3393}};
3394
3395
Willy Tarreau56123282010-08-06 19:06:56 +02003396/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003397 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3398 * <prm> struct is fed with the table name if any. If unspecified, the caller
3399 * will assume that the current proxy's table is used.
3400 */
3401int parse_track_counters(char **args, int *arg,
3402 int section_type, struct proxy *curpx,
3403 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003404 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003405{
Willy Tarreau12785782012-04-27 21:37:17 +02003406 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003407
Willy Tarreau56123282010-08-06 19:06:56 +02003408 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003409 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003410 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003411 */
3412 while (args[*arg]) {
3413 if (strcmp(args[*arg], "src") == 0) {
3414 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003415 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003416 }
3417 else if (strcmp(args[*arg], "table") == 0) {
3418 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003419 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003420 return -1;
3421 }
3422 /* we copy the table name for now, it will be resolved later */
3423 prm->table.n = strdup(args[*arg + 1]);
3424 (*arg)++;
3425 }
3426 else {
3427 /* unhandled keywords are handled by the caller */
3428 break;
3429 }
3430 (*arg)++;
3431 }
3432
Willy Tarreau12785782012-04-27 21:37:17 +02003433 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003434 memprintf(err,
3435 "tracking key not specified (found %s, only 'src' is supported)",
3436 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003437 return -1;
3438 }
3439
3440 return 0;
3441}
3442
Willy Tarreau8b22a712010-06-18 17:46:06 +02003443__attribute__((constructor))
3444static void __session_init(void)
3445{
3446 acl_register_keywords(&acl_kws);
3447}
3448
Willy Tarreaubaaee002006-06-26 02:48:02 +02003449/*
3450 * Local variables:
3451 * c-indent-level: 8
3452 * c-basic-offset: 8
3453 * End:
3454 */