blob: 77fc32e8e1580b57e71f80a3a463c6832415c6e2 [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
78 /* if this session comes from a known monitoring system, we want to ignore
79 * it as soon as possible, which means closing it immediately for TCP, but
80 * cleanly.
81 */
82 if (unlikely((l->options & LI_O_CHK_MONNET) &&
83 addr->ss_family == AF_INET &&
84 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
85 if (p->mode == PR_MODE_TCP) {
Willy Tarreauabe8ea52010-11-11 10:56:04 +010086 ret = 0; /* successful termination */
87 goto out_free_session;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020088 }
89 s->flags |= SN_MONITOR;
90 s->logs.logwait = 0;
91 }
92
Willy Tarreauabe8ea52010-11-11 10:56:04 +010093 if (unlikely((t = task_new()) == NULL))
94 goto out_free_session;
95
Willy Tarreau81f9aa32010-06-01 17:45:26 +020096 /* OK, we're keeping the session, so let's properly initialize the session */
97 LIST_ADDQ(&sessions, &s->list);
98 LIST_INIT(&s->back_refs);
99
Willy Tarreaubd833142012-05-08 15:51:44 +0200100 s->unique_id = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200101 s->term_trace = 0;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200102 s->si[0].addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200103 s->logs.accept_date = date; /* user-visible date for logging */
104 s->logs.tv_accept = now; /* corrected date for internal use */
105 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200106 p->feconn++; /* beconn will be increased once assigned */
107
Willy Tarreaub36b4242010-06-04 20:59:39 +0200108 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200109
110 t->process = l->handler;
111 t->context = s;
112 t->nice = l->nice;
113 t->expire = TICK_ETERNITY;
114
115 s->task = t;
116 s->listener = l;
117
118 /* Note: initially, the session's backend points to the frontend.
119 * This changes later when switching rules are executed or
120 * when the default backend is assigned.
121 */
122 s->be = s->fe = p;
123 s->req = s->rep = NULL; /* will be allocated later */
124
125 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
126 * to abort right here as soon as possible, we check the rules before
127 * even initializing the stream interfaces.
128 */
129 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200130 /* let's do a no-linger now to close with a single RST. */
131 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100132 ret = 0; /* successful termination */
133 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200134 }
135
Willy Tarreaub36b4242010-06-04 20:59:39 +0200136 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100137 if (p->feconn > p->fe_counters.conn_max)
138 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100139
Willy Tarreaub36b4242010-06-04 20:59:39 +0200140 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200141 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200142 void *ptr;
143
Willy Tarreau56123282010-08-06 19:06:56 +0200144 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200145 if (ptr)
146 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200147
Willy Tarreau56123282010-08-06 19:06:56 +0200148 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200149 if (ptr)
150 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200151 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200152 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200153
Willy Tarreau56123282010-08-06 19:06:56 +0200154 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200155 void *ptr;
156
Willy Tarreau56123282010-08-06 19:06:56 +0200157 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200158 if (ptr)
159 stktable_data_cast(ptr, sess_cnt)++;
160
Willy Tarreau56123282010-08-06 19:06:56 +0200161 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200162 if (ptr)
163 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200164 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200165 }
166
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200167 /* this part should be common with other protocols */
168 s->si[0].fd = cfd;
169 s->si[0].owner = t;
170 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
171 s->si[0].err_type = SI_ET_NONE;
172 s->si[0].err_loc = NULL;
Willy Tarreau26d8c592012-05-07 18:12:14 +0200173 s->si[0].proto = l->proto;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200174 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200175 s->si[0].send_proxy_ofs = 0;
Willy Tarreau1539a012012-05-11 14:47:34 +0200176 set_target_client(&s->si[0].target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200177 s->si[0].exp = TICK_ETERNITY;
178 s->si[0].flags = SI_FL_NONE;
179
180 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
181 s->si[0].flags |= SI_FL_INDEP_STR;
182
183 if (addr->ss_family == AF_INET || addr->ss_family == AF_INET6)
184 s->si[0].flags = SI_FL_CAP_SPLTCP; /* TCP/TCPv6 splicing possible */
185
186 /* add the various callbacks */
Willy Tarreau5c979a92012-05-07 17:15:39 +0200187 stream_interface_prepare(&s->si[0], &stream_sock);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200188
189 /* pre-initialize the other side's stream interface to an INIT state. The
190 * callbacks will be initialized before attempting to connect.
191 */
192 s->si[1].fd = -1; /* just to help with debugging */
193 s->si[1].owner = t;
194 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
195 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200196 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200197 s->si[1].err_loc = NULL;
Willy Tarreau26d8c592012-05-07 18:12:14 +0200198 s->si[1].proto = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200199 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200200 s->si[1].send_proxy_ofs = 0;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100201 clear_target(&s->si[1].target);
Willy Tarreau060781f2012-05-07 16:50:03 +0200202 s->si[1].sock.shutr= stream_int_shutr;
203 s->si[1].sock.shutw= stream_int_shutw;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200204 s->si[1].exp = TICK_ETERNITY;
205 s->si[1].flags = SI_FL_NONE;
206
207 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
208 s->si[1].flags |= SI_FL_INDEP_STR;
209
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200210 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100211 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200212 s->pend_pos = NULL;
213
214 /* init store persistence */
215 s->store_count = 0;
216
217 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100218 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200219 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200220
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200221 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
222 goto out_free_task; /* no memory */
223
224 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
225 goto out_free_req; /* no memory */
226
227 /* initialize the request buffer */
228 s->req->size = global.tune.bufsize;
229 buffer_init(s->req);
230 s->req->prod = &s->si[0];
231 s->req->cons = &s->si[1];
232 s->si[0].ib = s->si[1].ob = s->req;
233 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
234
235 /* activate default analysers enabled for this listener */
236 s->req->analysers = l->analysers;
237
238 s->req->wto = TICK_ETERNITY;
239 s->req->rto = TICK_ETERNITY;
240 s->req->rex = TICK_ETERNITY;
241 s->req->wex = TICK_ETERNITY;
242 s->req->analyse_exp = TICK_ETERNITY;
243
244 /* initialize response buffer */
245 s->rep->size = global.tune.bufsize;
246 buffer_init(s->rep);
247 s->rep->prod = &s->si[1];
248 s->rep->cons = &s->si[0];
249 s->si[0].ob = s->si[1].ib = s->rep;
250 s->rep->analysers = 0;
251
Willy Tarreau96e31212011-05-30 18:10:30 +0200252 if (s->fe->options2 & PR_O2_NODELAY) {
253 s->req->flags |= BF_NEVER_WAIT;
254 s->rep->flags |= BF_NEVER_WAIT;
255 }
256
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200257 s->rep->rto = TICK_ETERNITY;
258 s->rep->wto = TICK_ETERNITY;
259 s->rep->rex = TICK_ETERNITY;
260 s->rep->wex = TICK_ETERNITY;
261 s->rep->analyse_exp = TICK_ETERNITY;
262
Willy Tarreau62f791e2012-03-09 11:32:30 +0100263 txn = &s->txn;
264 /* Those variables will be checked and freed if non-NULL in
265 * session.c:session_free(). It is important that they are
266 * properly initialized.
267 */
268 txn->sessid = NULL;
269 txn->srv_cookie = NULL;
270 txn->cli_cookie = NULL;
271 txn->uri = NULL;
272 txn->req.cap = NULL;
273 txn->rsp.cap = NULL;
274 txn->hdr_idx.v = NULL;
275 txn->hdr_idx.size = txn->hdr_idx.used = 0;
276 txn->req.flags = 0;
277 txn->rsp.flags = 0;
278 /* the HTTP messages need to know what buffer they're associated with */
279 txn->req.buf = s->req;
280 txn->rsp.buf = s->rep;
281
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200282 /* finish initialization of the accepted file descriptor */
283 fd_insert(cfd);
284 fdtab[cfd].owner = &s->si[0];
285 fdtab[cfd].state = FD_STREADY;
286 fdtab[cfd].flags = 0;
Willy Tarreau1b79bde2012-05-07 17:01:39 +0200287 fdtab[cfd].cb[DIR_RD].f = s->si[0].sock.read;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200288 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreau1b79bde2012-05-07 17:01:39 +0200289 fdtab[cfd].cb[DIR_WR].f = s->si[0].sock.write;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200290 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200291 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
292 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200293 EV_FD_SET(cfd, DIR_RD);
294
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100295 if (p->accept && (ret = p->accept(s)) <= 0) {
296 /* Either we had an unrecoverable error (<0) or work is
297 * finished (=0, eg: monitoring), in both situations,
298 * we can release everything and close.
299 */
300 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200301 }
302
303 /* it is important not to call the wakeup function directly but to
304 * pass through task_wakeup(), because this one knows how to apply
305 * priorities to tasks.
306 */
307 task_wakeup(t, TASK_WOKEN_INIT);
308 return 1;
309
310 /* Error unrolling */
311 out_free_rep:
312 pool_free2(pool2_buffer, s->rep);
313 out_free_req:
314 pool_free2(pool2_buffer, s->req);
315 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200316 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200317 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200318 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200319 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200320 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100321 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200322 pool_free2(pool2_session, s);
323 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200324 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
325 /* critical error, no more memory, try to emit a 500 response */
326 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
327 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
328 }
329
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100330 if (fdtab[cfd].state != FD_STCLOSE)
331 fd_delete(cfd);
332 else
333 close(cfd);
334 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200335}
336
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337/*
338 * frees the context associated to a session. It must have been removed first.
339 */
Simon Hormandec5be42011-06-08 09:19:07 +0900340static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200341{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100342 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200343 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100344 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200345 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100346
Willy Tarreaubaaee002006-06-26 02:48:02 +0200347 if (s->pend_pos)
348 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100349
Willy Tarreau827aee92011-03-10 16:55:02 +0100350 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100351 if (s->flags & SN_CURR_SESS) {
352 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100353 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100354 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100355 if (may_dequeue_tasks(target_srv(&s->target), s->be))
356 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100357 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100358
Willy Tarreau7c669d72008-06-20 15:04:11 +0200359 if (unlikely(s->srv_conn)) {
360 /* the session still has a reserved slot on a server, but
361 * it should normally be only the same as the one above,
362 * so this should not happen in fact.
363 */
364 sess_change_server(s, NULL);
365 }
366
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100367 if (s->req->pipe)
368 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100369
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100370 if (s->rep->pipe)
371 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100372
Willy Tarreau48d63db2008-08-03 17:41:33 +0200373 pool_free2(pool2_buffer, s->req);
374 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375
Willy Tarreau46023632010-01-07 22:51:47 +0100376 http_end_txn(s);
377
Willy Tarreaua4cda672010-06-06 18:28:49 +0200378 for (i = 0; i < s->store_count; i++) {
379 if (!s->store[i].ts)
380 continue;
381 stksess_free(s->store[i].table, s->store[i].ts);
382 s->store[i].ts = NULL;
383 }
384
Willy Tarreau34eb6712011-10-24 18:15:04 +0200385 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200386 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100387 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
388 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200389 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100390
Willy Tarreau56123282010-08-06 19:06:56 +0200391 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200392 session_store_counters(s);
393
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100394 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100395 /* we have to unlink all watchers. We must not relink them if
396 * this session was the last one in the list.
397 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100398 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100399 LIST_INIT(&bref->users);
400 if (s->list.n != &sessions)
401 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100402 bref->ref = s->list.n;
403 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100404 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200405 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200406
407 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200408 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200409 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200410 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200411 pool_flush2(pool2_requri);
412 pool_flush2(pool2_capture);
413 pool_flush2(pool2_session);
414 pool_flush2(fe->req_cap_pool);
415 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200416 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200417}
418
419
420/* perform minimal intializations, report 0 in case of error, 1 if OK. */
421int init_session()
422{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100423 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200424 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
425 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426}
427
Willy Tarreau30e71012007-11-26 20:15:35 +0100428void session_process_counters(struct session *s)
429{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100430 unsigned long long bytes;
431
Willy Tarreau30e71012007-11-26 20:15:35 +0100432 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100433 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100434 s->logs.bytes_in = s->req->total;
435 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100436 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100437
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100438 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100439
Willy Tarreau827aee92011-03-10 16:55:02 +0100440 if (target_srv(&s->target))
441 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200442
443 if (s->listener->counters)
444 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200445
Willy Tarreau56123282010-08-06 19:06:56 +0200446 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200447 void *ptr;
448
Willy Tarreau56123282010-08-06 19:06:56 +0200449 ptr = stktable_data_ptr(s->stkctr2_table,
450 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200451 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200452 if (ptr)
453 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200454
Willy Tarreau56123282010-08-06 19:06:56 +0200455 ptr = stktable_data_ptr(s->stkctr2_table,
456 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200457 STKTABLE_DT_BYTES_IN_RATE);
458 if (ptr)
459 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200460 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200461 }
462
Willy Tarreau56123282010-08-06 19:06:56 +0200463 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200464 void *ptr;
465
Willy Tarreau56123282010-08-06 19:06:56 +0200466 ptr = stktable_data_ptr(s->stkctr1_table,
467 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200468 STKTABLE_DT_BYTES_IN_CNT);
469 if (ptr)
470 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
471
Willy Tarreau56123282010-08-06 19:06:56 +0200472 ptr = stktable_data_ptr(s->stkctr1_table,
473 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200474 STKTABLE_DT_BYTES_IN_RATE);
475 if (ptr)
476 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200477 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200478 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100479 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100480 }
481
Willy Tarreau30e71012007-11-26 20:15:35 +0100482 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100483 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100484 s->logs.bytes_out = s->rep->total;
485 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100486 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100487
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100488 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100489
Willy Tarreau827aee92011-03-10 16:55:02 +0100490 if (target_srv(&s->target))
491 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200492
493 if (s->listener->counters)
494 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200495
Willy Tarreau56123282010-08-06 19:06:56 +0200496 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200497 void *ptr;
498
Willy Tarreau56123282010-08-06 19:06:56 +0200499 ptr = stktable_data_ptr(s->stkctr2_table,
500 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200501 STKTABLE_DT_BYTES_OUT_CNT);
502 if (ptr)
503 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
504
Willy Tarreau56123282010-08-06 19:06:56 +0200505 ptr = stktable_data_ptr(s->stkctr2_table,
506 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200507 STKTABLE_DT_BYTES_OUT_RATE);
508 if (ptr)
509 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200510 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200511 }
512
Willy Tarreau56123282010-08-06 19:06:56 +0200513 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200514 void *ptr;
515
Willy Tarreau56123282010-08-06 19:06:56 +0200516 ptr = stktable_data_ptr(s->stkctr1_table,
517 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200518 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200519 if (ptr)
520 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200521
Willy Tarreau56123282010-08-06 19:06:56 +0200522 ptr = stktable_data_ptr(s->stkctr1_table,
523 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200524 STKTABLE_DT_BYTES_OUT_RATE);
525 if (ptr)
526 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200527 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200528 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100529 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100530 }
531}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100533/* This function is called with (si->state == SI_ST_CON) meaning that a
534 * connection was attempted and that the file descriptor is already allocated.
535 * We must check for establishment, error and abort. Possible output states
536 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
537 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
538 * otherwise 1.
539 */
Simon Hormandec5be42011-06-08 09:19:07 +0900540static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100541{
542 struct buffer *req = si->ob;
543 struct buffer *rep = si->ib;
544
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100545 /* If we got an error, or if nothing happened and the connection timed
546 * out, we must give up. The CER state handler will take care of retry
547 * attempts and error reports.
548 */
549 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100550 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100551 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200552 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100553 fd_delete(si->fd);
554
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200555 if (si->release)
556 si->release(si);
557
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100558 if (si->err_type)
559 return 0;
560
Willy Tarreau827aee92011-03-10 16:55:02 +0100561 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100562 if (si->flags & SI_FL_ERR)
563 si->err_type = SI_ET_CONN_ERR;
564 else
565 si->err_type = SI_ET_CONN_TO;
566 return 0;
567 }
568
569 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200570 if (unlikely((rep->flags & BF_SHUTW) ||
571 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200572 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100573 s->be->options & PR_O_ABRT_CLOSE)))) {
574 /* give up */
Willy Tarreau060781f2012-05-07 16:50:03 +0200575 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100576 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100577 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200578 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100579 if (s->srv_error)
580 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100581 return 1;
582 }
583
584 /* we need to wait a bit more if there was no activity either */
585 if (!(req->flags & BF_WRITE_ACTIVITY))
586 return 1;
587
588 /* OK, this means that a connection succeeded. The caller will be
589 * responsible for handling the transition from CON to EST.
590 */
591 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100592 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100593 si->state = SI_ST_EST;
594 si->err_type = SI_ET_NONE;
595 si->err_loc = NULL;
596 return 1;
597}
598
599/* This function is called with (si->state == SI_ST_CER) meaning that a
600 * previous connection attempt has failed and that the file descriptor
601 * has already been released. Possible causes include asynchronous error
602 * notification and time out. Possible output states are SI_ST_CLO when
603 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
604 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
605 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
606 * marked as in error state. It returns 0.
607 */
Simon Hormandec5be42011-06-08 09:19:07 +0900608static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100609{
610 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100611 if (target_srv(&s->target)) {
612 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100613
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100614 if (s->flags & SN_CURR_SESS) {
615 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100616 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100617 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100618 }
619
620 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200621 si->conn_retries--;
622 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100623 if (!si->err_type) {
624 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100625 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100626 }
627
Willy Tarreau827aee92011-03-10 16:55:02 +0100628 if (target_srv(&s->target))
629 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100630 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100631 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100632 if (may_dequeue_tasks(target_srv(&s->target), s->be))
633 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100634
635 /* shutw is enough so stop a connecting socket */
Willy Tarreau060781f2012-05-07 16:50:03 +0200636 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100637 si->ob->flags |= BF_WRITE_ERROR;
638 si->ib->flags |= BF_READ_ERROR;
639
640 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100641 if (s->srv_error)
642 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100643 return 0;
644 }
645
646 /* If the "redispatch" option is set on the backend, we are allowed to
647 * retry on another server for the last retry. In order to achieve this,
648 * we must mark the session unassigned, and eventually clear the DIRECT
649 * bit to ignore any persistence cookie. We won't count a retry nor a
650 * redispatch yet, because this will depend on what server is selected.
651 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100652 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100653 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100654 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100655 if (may_dequeue_tasks(target_srv(&s->target), s->be))
656 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100657
658 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100659 si->state = SI_ST_REQ;
660 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100661 if (target_srv(&s->target))
662 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100663 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100664 si->state = SI_ST_ASS;
665 }
666
667 if (si->flags & SI_FL_ERR) {
668 /* The error was an asynchronous connection error, and we will
669 * likely have to retry connecting to the same server, most
670 * likely leading to the same result. To avoid this, we wait
671 * one second before retrying.
672 */
673
674 if (!si->err_type)
675 si->err_type = SI_ET_CONN_ERR;
676
677 si->state = SI_ST_TAR;
678 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
679 return 0;
680 }
681 return 0;
682}
683
684/*
685 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200686 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200687 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100688 */
Simon Hormandec5be42011-06-08 09:19:07 +0900689static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100690{
691 struct buffer *req = si->ob;
692 struct buffer *rep = si->ib;
693
Willy Tarreau827aee92011-03-10 16:55:02 +0100694 if (target_srv(&s->target))
695 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100696
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100697 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100698 /* if the user wants to log as soon as possible, without counting
699 * bytes from the server, then this is the right moment. */
700 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
701 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100702 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100703 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100704 }
705 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100706 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
707 /* reset hdr_idx which was already initialized by the request.
708 * right now, the http parser does it.
709 * hdr_idx_init(&s->txn.hdr_idx);
710 */
711 }
712
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200713 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100714 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau26d8c592012-05-07 18:12:14 +0200715 if (si->proto) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200716 /* real connections have timeouts */
717 req->wto = s->be->timeout.server;
718 rep->rto = s->be->timeout.server;
719 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100720 req->wex = TICK_ETERNITY;
721}
722
723/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
724 * Other input states are simply ignored.
725 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
726 * Flags must have previously been updated for timeouts and other conditions.
727 */
Simon Hormandec5be42011-06-08 09:19:07 +0900728static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100729{
Willy Tarreau827aee92011-03-10 16:55:02 +0100730 struct server *srv = target_srv(&s->target);
731
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100732 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100733 now_ms, __FUNCTION__,
734 s,
735 s->req, s->rep,
736 s->req->rex, s->rep->wex,
737 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100738 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100739
740 if (si->state == SI_ST_ASS) {
741 /* Server assigned to connection request, we have to try to connect now */
742 int conn_err;
743
744 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100745 srv = target_srv(&s->target);
746
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100747 if (conn_err == SN_ERR_NONE) {
748 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100749 if (srv)
750 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100751 return;
752 }
753
754 /* We have received a synchronous error. We might have to
755 * abort, retry immediately or redispatch.
756 */
757 if (conn_err == SN_ERR_INTERNAL) {
758 if (!si->err_type) {
759 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100760 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761 }
762
Willy Tarreau827aee92011-03-10 16:55:02 +0100763 if (srv)
764 srv_inc_sess_ctr(srv);
765 if (srv)
766 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100767 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100768
769 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100770 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100771 if (may_dequeue_tasks(srv, s->be))
772 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100773
774 /* Failed and not retryable. */
Willy Tarreau060781f2012-05-07 16:50:03 +0200775 si->sock.shutr(si);
776 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100777 si->ob->flags |= BF_WRITE_ERROR;
778
779 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
780
781 /* no session was ever accounted for this server */
782 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100783 if (s->srv_error)
784 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100785 return;
786 }
787
788 /* We are facing a retryable error, but we don't want to run a
789 * turn-around now, as the problem is likely a source port
790 * allocation problem, so we want to retry now.
791 */
792 si->state = SI_ST_CER;
793 si->flags &= ~SI_FL_ERR;
794 sess_update_st_cer(s, si);
795 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
796 return;
797 }
798 else if (si->state == SI_ST_QUE) {
799 /* connection request was queued, check for any update */
800 if (!s->pend_pos) {
801 /* The connection is not in the queue anymore. Either
802 * we have a server connection slot available and we
803 * go directly to the assigned state, or we need to
804 * load-balance first and go to the INI state.
805 */
806 si->exp = TICK_ETERNITY;
807 if (unlikely(!(s->flags & SN_ASSIGNED)))
808 si->state = SI_ST_REQ;
809 else {
810 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
811 si->state = SI_ST_ASS;
812 }
813 return;
814 }
815
816 /* Connection request still in queue... */
817 if (si->flags & SI_FL_EXP) {
818 /* ... and timeout expired */
819 si->exp = TICK_ETERNITY;
820 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100821 if (srv)
822 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100823 s->be->be_counters.failed_conns++;
Willy Tarreau060781f2012-05-07 16:50:03 +0200824 si->sock.shutr(si);
825 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100826 si->ob->flags |= BF_WRITE_TIMEOUT;
827 if (!si->err_type)
828 si->err_type = SI_ET_QUEUE_TO;
829 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100830 if (s->srv_error)
831 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100832 return;
833 }
834
835 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200836 if ((si->ob->flags & (BF_READ_ERROR)) ||
837 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200838 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100839 /* give up */
840 si->exp = TICK_ETERNITY;
841 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau060781f2012-05-07 16:50:03 +0200842 si->sock.shutr(si);
843 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100844 si->err_type |= SI_ET_QUEUE_ABRT;
845 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100846 if (s->srv_error)
847 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100848 return;
849 }
850
851 /* Nothing changed */
852 return;
853 }
854 else if (si->state == SI_ST_TAR) {
855 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200856 if ((si->ob->flags & (BF_READ_ERROR)) ||
857 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200858 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100859 /* give up */
860 si->exp = TICK_ETERNITY;
Willy Tarreau060781f2012-05-07 16:50:03 +0200861 si->sock.shutr(si);
862 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100863 si->err_type |= SI_ET_CONN_ABRT;
864 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100865 if (s->srv_error)
866 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100867 return;
868 }
869
870 if (!(si->flags & SI_FL_EXP))
871 return; /* still in turn-around */
872
873 si->exp = TICK_ETERNITY;
874
875 /* we keep trying on the same server as long as the session is
876 * marked "assigned".
877 * FIXME: Should we force a redispatch attempt when the server is down ?
878 */
879 if (s->flags & SN_ASSIGNED)
880 si->state = SI_ST_ASS;
881 else
882 si->state = SI_ST_REQ;
883 return;
884 }
885}
886
Simon Hormandec5be42011-06-08 09:19:07 +0900887/* Set correct session termination flags in case no analyser has done it. It
888 * also counts a failed request if the server state has not reached the request
889 * stage.
890 */
891static void sess_set_term_flags(struct session *s)
892{
893 if (!(s->flags & SN_FINST_MASK)) {
894 if (s->si[1].state < SI_ST_REQ) {
895
896 s->fe->fe_counters.failed_req++;
897 if (s->listener->counters)
898 s->listener->counters->failed_req++;
899
900 s->flags |= SN_FINST_R;
901 }
902 else if (s->si[1].state == SI_ST_QUE)
903 s->flags |= SN_FINST_Q;
904 else if (s->si[1].state < SI_ST_EST)
905 s->flags |= SN_FINST_C;
906 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
907 s->flags |= SN_FINST_D;
908 else
909 s->flags |= SN_FINST_L;
910 }
911}
912
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100913/* This function initiates a server connection request on a stream interface
914 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
915 * indicating that a server has been assigned. It may also return SI_ST_QUE,
916 * or SI_ST_CLO upon error.
917 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100918static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
919{
920 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%d rqt=%d rph=%d rpt=%d cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100921 now_ms, __FUNCTION__,
922 s,
923 s->req, s->rep,
924 s->req->rex, s->rep->wex,
925 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100926 s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100927
928 if (si->state != SI_ST_REQ)
929 return;
930
931 /* Try to assign a server */
932 if (srv_redispatch_connect(s) != 0) {
933 /* We did not get a server. Either we queued the
934 * connection request, or we encountered an error.
935 */
936 if (si->state == SI_ST_QUE)
937 return;
938
939 /* we did not get any server, let's check the cause */
Willy Tarreau060781f2012-05-07 16:50:03 +0200940 si->sock.shutr(si);
941 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100942 si->ob->flags |= BF_WRITE_ERROR;
943 if (!si->err_type)
944 si->err_type = SI_ET_CONN_OTHER;
945 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100946 if (s->srv_error)
947 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 return;
949 }
950
951 /* The server is assigned */
952 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
953 si->state = SI_ST_ASS;
954}
955
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200956/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100957 * if appropriate. The default_backend rule is also considered, then the
958 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200959 * It returns 1 if the processing can continue on next analysers, or zero if it
960 * either needs more data or wants to immediately abort the request.
961 */
Simon Hormandec5be42011-06-08 09:19:07 +0900962static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200963{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200964 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100965
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200966 req->analysers &= ~an_bit;
967 req->analyse_exp = TICK_ETERNITY;
968
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100969 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200970 now_ms, __FUNCTION__,
971 s,
972 req,
973 req->rex, req->wex,
974 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100975 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200976 req->analysers);
977
978 /* now check whether we have some switching rules for this request */
979 if (!(s->flags & SN_BE_ASSIGNED)) {
980 struct switching_rule *rule;
981
982 list_for_each_entry(rule, &s->fe->switching_rules, list) {
983 int ret;
984
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200985 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 +0200986 ret = acl_pass(ret);
987 if (rule->cond->pol == ACL_COND_UNLESS)
988 ret = !ret;
989
990 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200991 if (!session_set_backend(s, rule->be.backend))
992 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200993 break;
994 }
995 }
996
997 /* To ensure correct connection accounting on the backend, we
998 * have to assign one if it was not set (eg: a listen). This
999 * measure also takes care of correctly setting the default
1000 * backend if any.
1001 */
1002 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001003 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1004 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001005 }
1006
Willy Tarreaufb356202010-08-03 14:02:05 +02001007 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1008 if (s->fe == s->be) {
1009 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001010 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001011 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001012
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001013 /* as soon as we know the backend, we must check if we have a matching forced or ignored
Willy Tarreau4de91492010-01-22 19:10:05 +01001014 * persistence rule, and report that in the session.
1015 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001016 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001017 int ret = 1;
1018
1019 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001020 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 +01001021 ret = acl_pass(ret);
1022 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1023 ret = !ret;
1024 }
1025
1026 if (ret) {
1027 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001028 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1029 s->flags |= SN_FORCE_PRST;
1030 } else {
1031 s->flags |= SN_IGNORE_PRST;
1032 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001033 break;
1034 }
1035 }
1036
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001037 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001038
1039 sw_failed:
1040 /* immediately abort this request in case of allocation failure */
1041 buffer_abort(s->req);
1042 buffer_abort(s->rep);
1043
1044 if (!(s->flags & SN_ERR_MASK))
1045 s->flags |= SN_ERR_RESOURCE;
1046 if (!(s->flags & SN_FINST_MASK))
1047 s->flags |= SN_FINST_R;
1048
1049 s->txn.status = 500;
1050 s->req->analysers = 0;
1051 s->req->analyse_exp = TICK_ETERNITY;
1052 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001053}
1054
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001055/* This stream analyser works on a request. It applies all use-server rules on
1056 * it then returns 1. The data must already be present in the buffer otherwise
1057 * they won't match. It always returns 1.
1058 */
1059static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1060{
1061 struct proxy *px = s->be;
1062 struct server_rule *rule;
1063
1064 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1065 now_ms, __FUNCTION__,
1066 s,
1067 req,
1068 req->rex, req->wex,
1069 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001070 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001071 req->analysers);
1072
1073 if (!(s->flags & SN_ASSIGNED)) {
1074 list_for_each_entry(rule, &px->server_rules, list) {
1075 int ret;
1076
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001077 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 +02001078 ret = acl_pass(ret);
1079 if (rule->cond->pol == ACL_COND_UNLESS)
1080 ret = !ret;
1081
1082 if (ret) {
1083 struct server *srv = rule->srv.ptr;
1084
1085 if ((srv->state & SRV_RUNNING) ||
1086 (px->options & PR_O_PERSIST) ||
1087 (s->flags & SN_FORCE_PRST)) {
1088 s->flags |= SN_DIRECT | SN_ASSIGNED;
1089 set_target_server(&s->target, srv);
1090 break;
1091 }
1092 /* if the server is not UP, let's go on with next rules
1093 * just in case another one is suited.
1094 */
1095 }
1096 }
1097 }
1098
1099 req->analysers &= ~an_bit;
1100 req->analyse_exp = TICK_ETERNITY;
1101 return 1;
1102}
1103
Emeric Brun1d33b292010-01-04 15:47:17 +01001104/* This stream analyser works on a request. It applies all sticking rules on
1105 * it then returns 1. The data must already be present in the buffer otherwise
1106 * they won't match. It always returns 1.
1107 */
Simon Hormandec5be42011-06-08 09:19:07 +09001108static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001109{
1110 struct proxy *px = s->be;
1111 struct sticking_rule *rule;
1112
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001113 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001114 now_ms, __FUNCTION__,
1115 s,
1116 req,
1117 req->rex, req->wex,
1118 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001119 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001120 req->analysers);
1121
1122 list_for_each_entry(rule, &px->sticking_rules, list) {
1123 int ret = 1 ;
1124 int i;
1125
1126 for (i = 0; i < s->store_count; i++) {
1127 if (rule->table.t == s->store[i].table)
1128 break;
1129 }
1130
1131 if (i != s->store_count)
1132 continue;
1133
1134 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001135 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001136 ret = acl_pass(ret);
1137 if (rule->cond->pol == ACL_COND_UNLESS)
1138 ret = !ret;
1139 }
1140
1141 if (ret) {
1142 struct stktable_key *key;
1143
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001144 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 +01001145 if (!key)
1146 continue;
1147
1148 if (rule->flags & STK_IS_MATCH) {
1149 struct stksess *ts;
1150
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001151 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001152 if (!(s->flags & SN_ASSIGNED)) {
1153 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001154 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001155
1156 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001157 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1158 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001159 if (node) {
1160 struct server *srv;
1161
1162 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001163 if ((srv->state & SRV_RUNNING) ||
1164 (px->options & PR_O_PERSIST) ||
1165 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001166 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001167 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001168 }
1169 }
1170 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001171 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001172 }
1173 }
1174 if (rule->flags & STK_IS_STORE) {
1175 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1176 struct stksess *ts;
1177
1178 ts = stksess_new(rule->table.t, key);
1179 if (ts) {
1180 s->store[s->store_count].table = rule->table.t;
1181 s->store[s->store_count++].ts = ts;
1182 }
1183 }
1184 }
1185 }
1186 }
1187
1188 req->analysers &= ~an_bit;
1189 req->analyse_exp = TICK_ETERNITY;
1190 return 1;
1191}
1192
1193/* This stream analyser works on a response. It applies all store rules on it
1194 * then returns 1. The data must already be present in the buffer otherwise
1195 * they won't match. It always returns 1.
1196 */
Simon Hormandec5be42011-06-08 09:19:07 +09001197static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001198{
1199 struct proxy *px = s->be;
1200 struct sticking_rule *rule;
1201 int i;
1202
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001203 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001204 now_ms, __FUNCTION__,
1205 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001206 rep,
1207 rep->rex, rep->wex,
1208 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001209 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001210 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001211
1212 list_for_each_entry(rule, &px->storersp_rules, list) {
1213 int ret = 1 ;
1214 int storereqidx = -1;
1215
1216 for (i = 0; i < s->store_count; i++) {
1217 if (rule->table.t == s->store[i].table) {
1218 if (!(s->store[i].flags))
1219 storereqidx = i;
1220 break;
1221 }
1222 }
1223
1224 if ((i != s->store_count) && (storereqidx == -1))
1225 continue;
1226
1227 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001228 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001229 ret = acl_pass(ret);
1230 if (rule->cond->pol == ACL_COND_UNLESS)
1231 ret = !ret;
1232 }
1233
1234 if (ret) {
1235 struct stktable_key *key;
1236
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001237 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 +01001238 if (!key)
1239 continue;
1240
1241 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001242 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001243 s->store[storereqidx].flags = 1;
1244 }
1245 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1246 struct stksess *ts;
1247
1248 ts = stksess_new(rule->table.t, key);
1249 if (ts) {
1250 s->store[s->store_count].table = rule->table.t;
1251 s->store[s->store_count].flags = 1;
1252 s->store[s->store_count++].ts = ts;
1253 }
1254 }
1255 }
1256 }
1257
1258 /* process store request and store response */
1259 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001260 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001261 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001262
Simon Hormanfa461682011-06-25 09:39:49 +09001263 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1264 stksess_free(s->store[i].table, s->store[i].ts);
1265 s->store[i].ts = NULL;
1266 continue;
1267 }
1268
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001269 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1270 if (ts) {
1271 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001272 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001273 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001274 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001275 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001276 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001277
1278 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001279 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001280 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001281 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001282 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001283
1284 rep->analysers &= ~an_bit;
1285 rep->analyse_exp = TICK_ETERNITY;
1286 return 1;
1287}
1288
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001289/* This macro is very specific to the function below. See the comments in
1290 * process_session() below to understand the logic and the tests.
1291 */
1292#define UPDATE_ANALYSERS(real, list, back, flag) { \
1293 list = (((list) & ~(flag)) | ~(back)) & (real); \
1294 back = real; \
1295 if (!(list)) \
1296 break; \
1297 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1298 continue; \
1299}
1300
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001301/* Processes the client, server, request and response jobs of a session task,
1302 * then puts it back to the wait queue in a clean state, or cleans up its
1303 * resources if it must be deleted. Returns in <next> the date the task wants
1304 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1305 * nothing too many times, the request and response buffers flags are monitored
1306 * and each function is called only if at least another function has changed at
1307 * least one flag it is interested in.
1308 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001309struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001310{
Willy Tarreau827aee92011-03-10 16:55:02 +01001311 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001312 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001313 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001314 unsigned int rq_prod_last, rq_cons_last;
1315 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001316 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001317
1318 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1319 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1320
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001321 /* this data may be no longer valid, clear it */
1322 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1323
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001324 /* This flag must explicitly be set every time */
1325 s->req->flags &= ~BF_READ_NOEXP;
1326
1327 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001328 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1329 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001330
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001331 /* we don't want the stream interface functions to recursively wake us up */
1332 if (s->req->prod->owner == t)
1333 s->req->prod->flags |= SI_FL_DONT_WAKE;
1334 if (s->req->cons->owner == t)
1335 s->req->cons->flags |= SI_FL_DONT_WAKE;
1336
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001337 /* 1a: Check for low level timeouts if needed. We just set a flag on
1338 * stream interfaces when their timeouts have expired.
1339 */
1340 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1341 stream_int_check_timeouts(&s->si[0]);
1342 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001343
1344 /* check buffer timeouts, and close the corresponding stream interfaces
1345 * for future reads or writes. Note: this will also concern upper layers
1346 * but we do not touch any other flag. We must be careful and correctly
1347 * detect state changes when calling them.
1348 */
1349
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001350 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001351
Willy Tarreau14641402009-12-29 14:49:56 +01001352 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1353 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau060781f2012-05-07 16:50:03 +02001354 s->req->cons->sock.shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001355 }
1356
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001357 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
Willy Tarreau060781f2012-05-07 16:50:03 +02001358 s->req->prod->sock.shutr(s->req->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001359
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001360 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001361
Willy Tarreau14641402009-12-29 14:49:56 +01001362 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1363 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau060781f2012-05-07 16:50:03 +02001364 s->rep->cons->sock.shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001365 }
1366
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001367 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
Willy Tarreau060781f2012-05-07 16:50:03 +02001368 s->rep->prod->sock.shutr(s->rep->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001369 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001370
1371 /* 1b: check for low-level errors reported at the stream interface.
1372 * First we check if it's a retryable error (in which case we don't
1373 * want to tell the buffer). Otherwise we report the error one level
1374 * upper by setting flags into the buffers. Note that the side towards
1375 * the client cannot have connect (hence retryable) errors. Also, the
1376 * connection setup code must be able to deal with any type of abort.
1377 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001378 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001379 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1380 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau060781f2012-05-07 16:50:03 +02001381 s->si[0].sock.shutr(&s->si[0]);
1382 s->si[0].sock.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 Tarreau060781f2012-05-07 16:50:03 +02001399 s->si[1].sock.shutr(&s->si[1]);
1400 s->si[1].sock.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 Tarreau060781f2012-05-07 16:50:03 +02001897 s->req->cons->sock.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 */
1905 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
Willy Tarreau060781f2012-05-07 16:50:03 +02001906 s->req->prod->sock.shutr(s->req->prod);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001907
Willy Tarreau520d95e2009-09-19 21:04:57 +02001908 /* it's possible that an upper layer has requested a connection setup or abort.
1909 * There are 2 situations where we decide to establish a new connection :
1910 * - there are data scheduled for emission in the buffer
1911 * - the BF_AUTO_CONNECT flag is set (active connection)
1912 */
1913 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001914 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001915 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001916 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001917 * switch to the connected state, otherwise we perform a connection
1918 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001919 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001920 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001921 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau26d8c592012-05-07 18:12:14 +02001922 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET &&
1923 !(s->req->cons->proto && s->req->cons->proto->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001924 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001925 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1926 s->req->wex = TICK_ETERNITY;
1927 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001928 }
Willy Tarreau73201222009-08-16 18:27:24 +02001929 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001930 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001931 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001932 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1933 buffer_shutr_now(s->rep);
1934 }
Willy Tarreau92795622009-03-06 12:51:23 +01001935 }
1936
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001937
1938 /* we may have a pending connection request, or a connection waiting
1939 * for completion.
1940 */
1941 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1942 do {
1943 /* nb: step 1 might switch from QUE to ASS, but we first want
1944 * to give a chance to step 2 to perform a redirect if needed.
1945 */
1946 if (s->si[1].state != SI_ST_REQ)
1947 sess_update_stream_int(s, &s->si[1]);
1948 if (s->si[1].state == SI_ST_REQ)
1949 sess_prepare_conn_req(s, &s->si[1]);
1950
Willy Tarreau827aee92011-03-10 16:55:02 +01001951 srv = target_srv(&s->target);
1952 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001953 perform_http_redirect(s, &s->si[1]);
1954 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001955
1956 /* Now we can add the server name to a header (if requested) */
1957 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001958 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001959 (s->be->mode == PR_MODE_HTTP) &&
1960 (s->be->server_id_hdr_name != NULL)) {
1961 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001962 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001963 }
1964
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001965 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001966 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001967 goto resync_stream_interface;
1968
Willy Tarreau815a9b22010-07-27 17:15:12 +02001969 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001970 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001971 goto resync_request;
1972
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001973 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001974
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001975 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001976 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001977 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1978 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001979 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001980 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001981 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001982 (s->rep->prod->state >= SI_ST_EST) &&
1983 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001984 /* This buffer is freewheeling, there's no analyser nor hijacker
1985 * attached to it. If any data are left in, we'll permit them to
1986 * move.
1987 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001988 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001989 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001990 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001991
1992 /* We'll let data flow between the producer (if still connected)
1993 * to the consumer.
1994 */
1995 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001996 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001997 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001998
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001999 /* check if it is wise to enable kernel splicing to forward response data */
2000 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
2001 s->rep->to_forward &&
2002 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002003 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002004 (pipes_used < global.maxpipes) &&
2005 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2006 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2007 (s->rep->flags & BF_STREAMER_FAST)))) {
2008 s->rep->flags |= BF_KERN_SPLICING;
2009 }
2010
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002011 /* reflect what the L7 analysers have seen last */
2012 rpf_last = s->rep->flags;
2013
2014 /*
2015 * Now forward all shutdown requests between both sides of the buffer
2016 */
2017
2018 /*
2019 * FIXME: this is probably where we should produce error responses.
2020 */
2021
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002022 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002023 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2024 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002025 buffer_shutw_now(s->rep);
2026
2027 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002028 if (unlikely((s->rep->flags & (BF_SHUTW|BF_OUT_EMPTY|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW)))
Willy Tarreau060781f2012-05-07 16:50:03 +02002029 s->rep->cons->sock.shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002030
2031 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002032 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2033 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002034 buffer_shutr_now(s->rep);
2035
2036 /* shutdown(read) pending */
2037 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
Willy Tarreau060781f2012-05-07 16:50:03 +02002038 s->rep->prod->sock.shutr(s->rep->prod);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002039
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002040 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002041 goto resync_stream_interface;
2042
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002043 if (s->req->flags != rqf_last)
2044 goto resync_request;
2045
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002046 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002047 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002048
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002049 /* we're interested in getting wakeups again */
2050 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2051 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2052
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002053 /* This is needed only when debugging is enabled, to indicate
2054 * client-side or server-side close. Please note that in the unlikely
2055 * event where both sides would close at once, the sequence is reported
2056 * on the server side first.
2057 */
2058 if (unlikely((global.mode & MODE_DEBUG) &&
2059 (!(global.mode & MODE_QUIET) ||
2060 (global.mode & MODE_VERBOSE)))) {
2061 int len;
2062
2063 if (s->si[1].state == SI_ST_CLO &&
2064 s->si[1].prev_state == SI_ST_EST) {
2065 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2066 s->uniq_id, s->be->id,
2067 (unsigned short)s->si[0].fd,
2068 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002069 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002070 }
2071
2072 if (s->si[0].state == SI_ST_CLO &&
2073 s->si[0].prev_state == SI_ST_EST) {
2074 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2075 s->uniq_id, s->be->id,
2076 (unsigned short)s->si[0].fd,
2077 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002078 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002079 }
2080 }
2081
2082 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2083 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2084
2085 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2086 session_process_counters(s);
2087
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002088 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau060781f2012-05-07 16:50:03 +02002089 s->rep->cons->sock.update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002090
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002091 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau060781f2012-05-07 16:50:03 +02002092 s->req->cons->sock.update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002093
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002094 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2095 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 +01002096 s->si[0].prev_state = s->si[0].state;
2097 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002098 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2099 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002100
2101 /* Trick: if a request is being waiting for the server to respond,
2102 * and if we know the server can timeout, we don't want the timeout
2103 * to expire on the client side first, but we're still interested
2104 * in passing data from the client to the server (eg: POST). Thus,
2105 * we can cancel the client's request timeout if the server's
2106 * request timeout is set and the server has not yet sent a response.
2107 */
2108
Willy Tarreau520d95e2009-09-19 21:04:57 +02002109 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002110 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2111 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002112 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002113 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002114
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002115 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002116 * Note that this one may wake the task up again.
2117 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002118 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2119 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2120 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2121 s->req->cons->target.ptr.a->fct(s->req->cons);
2122 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2123 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002124 if (task_in_rq(t)) {
2125 /* If we woke up, we don't want to requeue the
2126 * task to the wait queue, but rather requeue
2127 * it into the runqueue ASAP.
2128 */
2129 t->expire = TICK_ETERNITY;
2130 return t;
2131 }
2132 }
2133
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002134 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2135 tick_first(s->rep->rex, s->rep->wex));
2136 if (s->req->analysers)
2137 t->expire = tick_first(t->expire, s->req->analyse_exp);
2138
2139 if (s->si[0].exp)
2140 t->expire = tick_first(t->expire, s->si[0].exp);
2141
2142 if (s->si[1].exp)
2143 t->expire = tick_first(t->expire, s->si[1].exp);
2144
2145#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002146 fprintf(stderr,
2147 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2148 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2149 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2150 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 +01002151#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002152
2153#ifdef DEBUG_DEV
2154 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002155 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002156 ABORT_NOW();
2157#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002158 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002159 }
2160
2161 s->fe->feconn--;
2162 if (s->flags & SN_BE_ASSIGNED)
2163 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002164 if (!(s->listener->options & LI_O_UNLIMITED))
2165 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002166 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002167 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002168 if (s->listener->state == LI_FULL)
2169 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002170
Willy Tarreau08ceb102011-07-24 22:58:00 +02002171 /* Dequeues all of the listeners waiting for a resource */
2172 if (!LIST_ISEMPTY(&global_listener_queue))
2173 dequeue_all_listeners(&global_listener_queue);
2174
Willy Tarreaub32907b2011-07-25 08:37:44 +02002175 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2176 (!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 +02002177 dequeue_all_listeners(&s->fe->listener_queue);
2178
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002179 if (unlikely((global.mode & MODE_DEBUG) &&
2180 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2181 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002182 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002183 s->uniq_id, s->be->id,
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002184 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002185 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186 }
2187
2188 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2189 session_process_counters(s);
2190
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002191 if (s->txn.status) {
2192 int n;
2193
2194 n = s->txn.status / 100;
2195 if (n < 1 || n > 5)
2196 n = 0;
2197
2198 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002199 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002200
Willy Tarreau24657792010-02-26 10:30:28 +01002201 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002202 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002203 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002204 }
2205
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002206 /* let's do a final log if we need it */
2207 if (s->logs.logwait &&
2208 !(s->flags & SN_MONITOR) &&
2209 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002210 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002211 }
2212
2213 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002214 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002215 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002216 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002217 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002218}
2219
Willy Tarreau7c669d72008-06-20 15:04:11 +02002220/*
2221 * This function adjusts sess->srv_conn and maintains the previous and new
2222 * server's served session counts. Setting newsrv to NULL is enough to release
2223 * current connection slot. This function also notifies any LB algo which might
2224 * expect to be informed about any change in the number of active sessions on a
2225 * server.
2226 */
2227void sess_change_server(struct session *sess, struct server *newsrv)
2228{
2229 if (sess->srv_conn == newsrv)
2230 return;
2231
2232 if (sess->srv_conn) {
2233 sess->srv_conn->served--;
2234 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2235 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002236 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002237 }
2238
2239 if (newsrv) {
2240 newsrv->served++;
2241 if (newsrv->proxy->lbprm.server_take_conn)
2242 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002243 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002244 }
2245}
2246
Willy Tarreau84455332009-03-15 22:34:05 +01002247/* Handle server-side errors for default protocols. It is called whenever a a
2248 * connection setup is aborted or a request is aborted in queue. It sets the
2249 * session termination flags so that the caller does not have to worry about
2250 * them. It's installed as ->srv_error for the server-side stream_interface.
2251 */
2252void default_srv_error(struct session *s, struct stream_interface *si)
2253{
2254 int err_type = si->err_type;
2255 int err = 0, fin = 0;
2256
2257 if (err_type & SI_ET_QUEUE_ABRT) {
2258 err = SN_ERR_CLICL;
2259 fin = SN_FINST_Q;
2260 }
2261 else if (err_type & SI_ET_CONN_ABRT) {
2262 err = SN_ERR_CLICL;
2263 fin = SN_FINST_C;
2264 }
2265 else if (err_type & SI_ET_QUEUE_TO) {
2266 err = SN_ERR_SRVTO;
2267 fin = SN_FINST_Q;
2268 }
2269 else if (err_type & SI_ET_QUEUE_ERR) {
2270 err = SN_ERR_SRVCL;
2271 fin = SN_FINST_Q;
2272 }
2273 else if (err_type & SI_ET_CONN_TO) {
2274 err = SN_ERR_SRVTO;
2275 fin = SN_FINST_C;
2276 }
2277 else if (err_type & SI_ET_CONN_ERR) {
2278 err = SN_ERR_SRVCL;
2279 fin = SN_FINST_C;
2280 }
2281 else /* SI_ET_CONN_OTHER and others */ {
2282 err = SN_ERR_INTERNAL;
2283 fin = SN_FINST_C;
2284 }
2285
2286 if (!(s->flags & SN_ERR_MASK))
2287 s->flags |= err;
2288 if (!(s->flags & SN_FINST_MASK))
2289 s->flags |= fin;
2290}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002291
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002292/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2293void session_shutdown(struct session *session, int why)
2294{
2295 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2296 return;
2297
2298 buffer_shutw_now(session->req);
2299 buffer_shutr_now(session->rep);
2300 session->task->nice = 1024;
2301 if (!(session->flags & SN_ERR_MASK))
2302 session->flags |= why;
2303 task_wakeup(session->task, TASK_WOKEN_OTHER);
2304}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002305
Willy Tarreau8b22a712010-06-18 17:46:06 +02002306/************************************************************************/
2307/* All supported ACL keywords must be declared here. */
2308/************************************************************************/
2309
Willy Tarreaua5e37562011-12-16 17:06:15 +01002310/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002311static int
Willy Tarreau37406352012-04-23 16:16:37 +02002312acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002313{
Willy Tarreau37406352012-04-23 16:16:37 +02002314 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002315 smp->type = SMP_T_UINT;
2316 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002317 if (ts != NULL) {
2318 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2319 if (!ptr)
2320 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002321 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002322 }
2323 return 1;
2324}
2325
Willy Tarreaua5e37562011-12-16 17:06:15 +01002326/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002327 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002328 */
2329static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002330acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002331 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002332{
Willy Tarreau56123282010-08-06 19:06:56 +02002333 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002334 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002335 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002336}
2337
Willy Tarreaua5e37562011-12-16 17:06:15 +01002338/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002339 * backend counters.
2340 */
2341static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002342acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002343 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002344{
Willy Tarreau56123282010-08-06 19:06:56 +02002345 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002346 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002347 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002348}
2349
Willy Tarreaua5e37562011-12-16 17:06:15 +01002350/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002351 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002352 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002353 */
2354static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002355acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002356 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002357{
2358 struct stktable_key *key;
2359
David du Colombier4f92d322011-03-24 11:09:31 +01002360 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002361 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002362 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002363
Willy Tarreau24e32d82012-04-23 23:55:44 +02002364 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002365 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002366}
2367
2368/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002369 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002370 */
2371static int
Willy Tarreau37406352012-04-23 16:16:37 +02002372acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002373{
Willy Tarreau37406352012-04-23 16:16:37 +02002374 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002375 smp->type = SMP_T_UINT;
2376 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002377 if (ts != NULL) {
2378 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2379 if (!ptr)
2380 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002381 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002382 }
2383 return 1;
2384}
2385
2386/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002387 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002388 */
2389static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002390acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002391 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002392{
Willy Tarreau56123282010-08-06 19:06:56 +02002393 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002394 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002395 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002396}
2397
2398/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002399 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002400 */
2401static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002402acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002403 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002404{
Willy Tarreau56123282010-08-06 19:06:56 +02002405 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002406 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002407 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002408}
2409
2410/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002411 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002412 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002413 */
2414static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002415acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002416 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002417{
2418 struct stktable_key *key;
2419
David du Colombier4f92d322011-03-24 11:09:31 +01002420 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002421 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002422 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002423
Willy Tarreau24e32d82012-04-23 23:55:44 +02002424 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002425 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002426}
2427
Willy Tarreauf73cd112011-08-13 01:45:16 +02002428/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002429 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002430 */
2431static int
Willy Tarreau37406352012-04-23 16:16:37 +02002432acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002433{
Willy Tarreau37406352012-04-23 16:16:37 +02002434 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002435 smp->type = SMP_T_UINT;
2436 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002437 if (ts != NULL) {
2438 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2439 if (!ptr)
2440 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002441 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002442 stktable_data_cast(ptr, gpc0) = 0;
2443 }
2444 return 1;
2445}
2446
2447/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002448 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002449 */
2450static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002451acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002452 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002453{
2454 if (!l4->stkctr1_entry)
2455 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002456 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002457}
2458
2459/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002460 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002461 */
2462static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002463acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002464 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002465{
2466 if (!l4->stkctr2_entry)
2467 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002468 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002469}
2470
2471/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002472 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002473 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002474 */
2475static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002476acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002477 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002478{
2479 struct stktable_key *key;
2480
2481 key = tcp_src_to_stktable_key(l4);
2482 if (!key)
2483 return 0;
2484
Willy Tarreau24e32d82012-04-23 23:55:44 +02002485 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002486 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002487}
2488
Willy Tarreaua5e37562011-12-16 17:06:15 +01002489/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002490static int
Willy Tarreau37406352012-04-23 16:16:37 +02002491acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002492{
Willy Tarreau37406352012-04-23 16:16:37 +02002493 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002494 smp->type = SMP_T_UINT;
2495 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002496 if (ts != NULL) {
2497 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2498 if (!ptr)
2499 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002500 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002501 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002502 return 1;
2503}
2504
Willy Tarreaua5e37562011-12-16 17:06:15 +01002505/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002506static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002507acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002508 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002509{
Willy Tarreau56123282010-08-06 19:06:56 +02002510 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002511 return 0;
2512
Willy Tarreau37406352012-04-23 16:16:37 +02002513 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002514}
2515
Willy Tarreaua5e37562011-12-16 17:06:15 +01002516/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002517static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002518acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002519 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002520{
Willy Tarreau56123282010-08-06 19:06:56 +02002521 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002522 return 0;
2523
Willy Tarreau37406352012-04-23 16:16:37 +02002524 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002525}
2526
Willy Tarreaua5e37562011-12-16 17:06:15 +01002527/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002528 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002529 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002530 */
2531static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002532acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002533 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002534{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002535 struct stktable_key *key;
2536
David du Colombier4f92d322011-03-24 11:09:31 +01002537 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002538 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002539 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002540
Willy Tarreau24e32d82012-04-23 23:55:44 +02002541 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002542 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002543}
2544
Willy Tarreaua5e37562011-12-16 17:06:15 +01002545/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002546static int
Willy Tarreau37406352012-04-23 16:16:37 +02002547acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002548{
Willy Tarreau37406352012-04-23 16:16:37 +02002549 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002550 smp->type = SMP_T_UINT;
2551 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002552 if (ts != NULL) {
2553 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2554 if (!ptr)
2555 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002556 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002557 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2558 }
2559 return 1;
2560}
2561
Willy Tarreaua5e37562011-12-16 17:06:15 +01002562/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002563 * the configured period.
2564 */
2565static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002566acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002567 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002568{
Willy Tarreau56123282010-08-06 19:06:56 +02002569 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002570 return 0;
2571
Willy Tarreau37406352012-04-23 16:16:37 +02002572 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002573}
2574
Willy Tarreaua5e37562011-12-16 17:06:15 +01002575/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002576 * the configured period.
2577 */
2578static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002579acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002580 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002581{
Willy Tarreau56123282010-08-06 19:06:56 +02002582 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002583 return 0;
2584
Willy Tarreau37406352012-04-23 16:16:37 +02002585 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002586}
2587
Willy Tarreaua5e37562011-12-16 17:06:15 +01002588/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002589 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002590 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002591 */
2592static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002593acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002594 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002595{
2596 struct stktable_key *key;
2597
David du Colombier4f92d322011-03-24 11:09:31 +01002598 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002599 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002600 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002601
Willy Tarreau24e32d82012-04-23 23:55:44 +02002602 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002603 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002604}
2605
Willy Tarreaua5e37562011-12-16 17:06:15 +01002606/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002607 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002608 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002609 */
2610static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002611acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002612 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002613{
2614 struct stksess *ts;
2615 struct stktable_key *key;
2616 void *ptr;
2617
David du Colombier4f92d322011-03-24 11:09:31 +01002618 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002619 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002620 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002621
Willy Tarreau24e32d82012-04-23 23:55:44 +02002622 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002623
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002624 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2625 /* entry does not exist and could not be created */
2626 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002627
2628 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2629 if (!ptr)
2630 return 0; /* parameter not stored in this table */
2631
Willy Tarreauf853c462012-04-23 18:53:56 +02002632 smp->type = SMP_T_UINT;
2633 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002634 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002635 return 1;
2636}
2637
Willy Tarreaua5e37562011-12-16 17:06:15 +01002638/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002639static int
Willy Tarreau37406352012-04-23 16:16:37 +02002640acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002641{
Willy Tarreau37406352012-04-23 16:16:37 +02002642 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002643 smp->type = SMP_T_UINT;
2644 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002645
2646 if (ts != NULL) {
2647 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2648 if (!ptr)
2649 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002650 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002651 }
2652 return 1;
2653}
2654
Willy Tarreaua5e37562011-12-16 17:06:15 +01002655/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002656static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002657acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002658 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002659{
Willy Tarreau56123282010-08-06 19:06:56 +02002660 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002661 return 0;
2662
Willy Tarreau37406352012-04-23 16:16:37 +02002663 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002664}
2665
Willy Tarreaua5e37562011-12-16 17:06:15 +01002666/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002667static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002668acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002669 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002670{
Willy Tarreau56123282010-08-06 19:06:56 +02002671 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002672 return 0;
2673
Willy Tarreau37406352012-04-23 16:16:37 +02002674 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002675}
2676
Willy Tarreaua5e37562011-12-16 17:06:15 +01002677/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002678 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002679 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002680 */
2681static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002682acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002683 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002684{
Willy Tarreau38285c12010-06-18 16:35:43 +02002685 struct stktable_key *key;
2686
David du Colombier4f92d322011-03-24 11:09:31 +01002687 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002688 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002689 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002690
Willy Tarreau24e32d82012-04-23 23:55:44 +02002691 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002692 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002693}
2694
Willy Tarreaua5e37562011-12-16 17:06:15 +01002695/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002696static int
Willy Tarreau37406352012-04-23 16:16:37 +02002697acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002698{
Willy Tarreau37406352012-04-23 16:16:37 +02002699 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002700 smp->type = SMP_T_UINT;
2701 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002702 if (ts != NULL) {
2703 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2704 if (!ptr)
2705 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002706 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002707 }
2708 return 1;
2709}
2710
Willy Tarreaua5e37562011-12-16 17:06:15 +01002711/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002712static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002713acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002714 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002715{
Willy Tarreau56123282010-08-06 19:06:56 +02002716 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002717 return 0;
2718
Willy Tarreau37406352012-04-23 16:16:37 +02002719 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002720}
2721
Willy Tarreaua5e37562011-12-16 17:06:15 +01002722/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002723static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002724acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002725 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002726{
Willy Tarreau56123282010-08-06 19:06:56 +02002727 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002728 return 0;
2729
Willy Tarreau37406352012-04-23 16:16:37 +02002730 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002731}
2732
Willy Tarreaua5e37562011-12-16 17:06:15 +01002733/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002734 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002735 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002736 */
2737static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002738acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002739 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002740{
2741 struct stktable_key *key;
2742
David du Colombier4f92d322011-03-24 11:09:31 +01002743 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002744 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002745 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002746
Willy Tarreau24e32d82012-04-23 23:55:44 +02002747 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002748 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002749}
2750
Willy Tarreaua5e37562011-12-16 17:06:15 +01002751/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002752static int
Willy Tarreau37406352012-04-23 16:16:37 +02002753acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002754{
Willy Tarreau37406352012-04-23 16:16:37 +02002755 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002756 smp->type = SMP_T_UINT;
2757 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002758 if (ts != NULL) {
2759 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2760 if (!ptr)
2761 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002762 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002763 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2764 }
2765 return 1;
2766}
2767
Willy Tarreaua5e37562011-12-16 17:06:15 +01002768/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002769 * the configured period.
2770 */
2771static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002772acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002773 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002774{
Willy Tarreau56123282010-08-06 19:06:56 +02002775 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002776 return 0;
2777
Willy Tarreau37406352012-04-23 16:16:37 +02002778 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002779}
2780
Willy Tarreaua5e37562011-12-16 17:06:15 +01002781/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002782 * the configured period.
2783 */
2784static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002785acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002786 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002787{
Willy Tarreau56123282010-08-06 19:06:56 +02002788 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002789 return 0;
2790
Willy Tarreau37406352012-04-23 16:16:37 +02002791 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002792}
2793
Willy Tarreaua5e37562011-12-16 17:06:15 +01002794/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002795 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002796 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797 */
2798static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002799acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002800 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002801{
2802 struct stktable_key *key;
2803
David du Colombier4f92d322011-03-24 11:09:31 +01002804 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002805 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002806 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807
Willy Tarreau24e32d82012-04-23 23:55:44 +02002808 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002809 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002810}
2811
Willy Tarreaua5e37562011-12-16 17:06:15 +01002812/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002813static int
Willy Tarreau37406352012-04-23 16:16:37 +02002814acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002815{
Willy Tarreau37406352012-04-23 16:16:37 +02002816 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002817 smp->type = SMP_T_UINT;
2818 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002819 if (ts != NULL) {
2820 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2821 if (!ptr)
2822 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002823 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002824 }
2825 return 1;
2826}
2827
Willy Tarreaua5e37562011-12-16 17:06:15 +01002828/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002829static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002830acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002831 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002832{
Willy Tarreau56123282010-08-06 19:06:56 +02002833 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002834 return 0;
2835
Willy Tarreau37406352012-04-23 16:16:37 +02002836 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002837}
2838
Willy Tarreaua5e37562011-12-16 17:06:15 +01002839/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002840static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002841acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002842 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002843{
Willy Tarreau56123282010-08-06 19:06:56 +02002844 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002845 return 0;
2846
Willy Tarreau37406352012-04-23 16:16:37 +02002847 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002848}
2849
Willy Tarreaua5e37562011-12-16 17:06:15 +01002850/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002851 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002852 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002853 */
2854static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002855acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002856 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002857{
2858 struct stktable_key *key;
2859
David du Colombier4f92d322011-03-24 11:09:31 +01002860 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002861 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002862 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002863
Willy Tarreau24e32d82012-04-23 23:55:44 +02002864 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002865 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002866}
2867
Willy Tarreaua5e37562011-12-16 17:06:15 +01002868/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002869static int
Willy Tarreau37406352012-04-23 16:16:37 +02002870acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002871{
Willy Tarreau37406352012-04-23 16:16:37 +02002872 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002873 smp->type = SMP_T_UINT;
2874 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002875 if (ts != NULL) {
2876 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2877 if (!ptr)
2878 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002879 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002880 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2881 }
2882 return 1;
2883}
2884
Willy Tarreaua5e37562011-12-16 17:06:15 +01002885/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002886 * the configured period.
2887 */
2888static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002889acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002890 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002891{
Willy Tarreau56123282010-08-06 19:06:56 +02002892 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002893 return 0;
2894
Willy Tarreau37406352012-04-23 16:16:37 +02002895 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002896}
2897
Willy Tarreaua5e37562011-12-16 17:06:15 +01002898/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002899 * the configured period.
2900 */
2901static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002902acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002903 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002904{
Willy Tarreau56123282010-08-06 19:06:56 +02002905 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002906 return 0;
2907
Willy Tarreau37406352012-04-23 16:16:37 +02002908 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002909}
2910
Willy Tarreaua5e37562011-12-16 17:06:15 +01002911/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002912 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002913 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002914 */
2915static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002916acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002917 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002918{
2919 struct stktable_key *key;
2920
David du Colombier4f92d322011-03-24 11:09:31 +01002921 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002922 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002923 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002924
Willy Tarreau24e32d82012-04-23 23:55:44 +02002925 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002926 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002927}
2928
Willy Tarreaua5e37562011-12-16 17:06:15 +01002929/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002930static int
Willy Tarreau37406352012-04-23 16:16:37 +02002931acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002932{
Willy Tarreau37406352012-04-23 16:16:37 +02002933 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002934 smp->type = SMP_T_UINT;
2935 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002936 if (ts != NULL) {
2937 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2938 if (!ptr)
2939 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002940 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002941 }
2942 return 1;
2943}
2944
Willy Tarreaua5e37562011-12-16 17:06:15 +01002945/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002946static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002947acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002948 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002949{
Willy Tarreau56123282010-08-06 19:06:56 +02002950 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002951 return 0;
2952
Willy Tarreau37406352012-04-23 16:16:37 +02002953 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002954}
2955
Willy Tarreaua5e37562011-12-16 17:06:15 +01002956/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002957static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002958acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002959 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002960{
Willy Tarreau56123282010-08-06 19:06:56 +02002961 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002962 return 0;
2963
Willy Tarreau37406352012-04-23 16:16:37 +02002964 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002965}
2966
Willy Tarreaua5e37562011-12-16 17:06:15 +01002967/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002968 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002969 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002970 */
2971static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002972acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002973 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002974{
2975 struct stktable_key *key;
2976
David du Colombier4f92d322011-03-24 11:09:31 +01002977 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002978 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002979 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002980
Willy Tarreau24e32d82012-04-23 23:55:44 +02002981 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002982 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002983}
2984
Willy Tarreaua5e37562011-12-16 17:06:15 +01002985/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002986static int
Willy Tarreau37406352012-04-23 16:16:37 +02002987acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002988{
Willy Tarreau37406352012-04-23 16:16:37 +02002989 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002990 smp->type = SMP_T_UINT;
2991 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002992 if (ts != NULL) {
2993 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
2994 if (!ptr)
2995 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002996 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002997 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
2998 }
2999 return 1;
3000}
3001
Willy Tarreaua5e37562011-12-16 17:06:15 +01003002/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003003 * the configured period.
3004 */
3005static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003006acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003007 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003008{
Willy Tarreau56123282010-08-06 19:06:56 +02003009 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003010 return 0;
3011
Willy Tarreau37406352012-04-23 16:16:37 +02003012 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003013}
3014
Willy Tarreaua5e37562011-12-16 17:06:15 +01003015/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003016 * the configured period.
3017 */
3018static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003019acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003020 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003021{
Willy Tarreau56123282010-08-06 19:06:56 +02003022 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003023 return 0;
3024
Willy Tarreau37406352012-04-23 16:16:37 +02003025 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003026}
3027
Willy Tarreaua5e37562011-12-16 17:06:15 +01003028/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003029 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003030 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003031 */
3032static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003033acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003034 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003035{
3036 struct stktable_key *key;
3037
David du Colombier4f92d322011-03-24 11:09:31 +01003038 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003039 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003040 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003041
Willy Tarreau24e32d82012-04-23 23:55:44 +02003042 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003043 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003044}
3045
Willy Tarreaua5e37562011-12-16 17:06:15 +01003046/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003047static int
Willy Tarreau37406352012-04-23 16:16:37 +02003048acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003049{
Willy Tarreau37406352012-04-23 16:16:37 +02003050 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003051 smp->type = SMP_T_UINT;
3052 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003053
3054 if (ts != NULL) {
3055 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3056 if (!ptr)
3057 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003058 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003059 }
3060 return 1;
3061}
3062
Willy Tarreaua5e37562011-12-16 17:06:15 +01003063/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003064 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003065 */
3066static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003067acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003068 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003069{
Willy Tarreau56123282010-08-06 19:06:56 +02003070 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003071 return 0;
3072
Willy Tarreau37406352012-04-23 16:16:37 +02003073 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003074}
3075
Willy Tarreaua5e37562011-12-16 17:06:15 +01003076/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003077 * session's tracked BE counters.
3078 */
3079static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003080acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003081 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003082{
Willy Tarreau56123282010-08-06 19:06:56 +02003083 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003084 return 0;
3085
Willy Tarreau37406352012-04-23 16:16:37 +02003086 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003087}
3088
Willy Tarreaua5e37562011-12-16 17:06:15 +01003089/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003090 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003091 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003092 */
3093static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003094acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003095 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003096{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003097 struct stktable_key *key;
3098
David du Colombier4f92d322011-03-24 11:09:31 +01003099 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003100 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003101 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003102
Willy Tarreau24e32d82012-04-23 23:55:44 +02003103 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003104 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003105}
3106
Willy Tarreaua5e37562011-12-16 17:06:15 +01003107/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003108 * configured period.
3109 */
3110static int
Willy Tarreau37406352012-04-23 16:16:37 +02003111acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003112{
Willy Tarreau37406352012-04-23 16:16:37 +02003113 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003114 smp->type = SMP_T_UINT;
3115 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003116 if (ts != NULL) {
3117 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3118 if (!ptr)
3119 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003120 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003121 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3122 }
3123 return 1;
3124}
3125
Willy Tarreaua5e37562011-12-16 17:06:15 +01003126/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003127 * counters over the configured period.
3128 */
3129static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003130acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003131 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003132{
Willy Tarreau56123282010-08-06 19:06:56 +02003133 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003134 return 0;
3135
Willy Tarreau37406352012-04-23 16:16:37 +02003136 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003137}
3138
Willy Tarreaua5e37562011-12-16 17:06:15 +01003139/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003140 * counters over the configured period.
3141 */
3142static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003143acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003144 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003145{
Willy Tarreau56123282010-08-06 19:06:56 +02003146 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003147 return 0;
3148
Willy Tarreau37406352012-04-23 16:16:37 +02003149 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003150}
3151
Willy Tarreaua5e37562011-12-16 17:06:15 +01003152/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003153 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003154 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003155 */
3156static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003157acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003158 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003159{
3160 struct stktable_key *key;
3161
David du Colombier4f92d322011-03-24 11:09:31 +01003162 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003163 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003164 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003165
Willy Tarreau24e32d82012-04-23 23:55:44 +02003166 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003167 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003168}
3169
Willy Tarreaua5e37562011-12-16 17:06:15 +01003170/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003171static int
Willy Tarreau37406352012-04-23 16:16:37 +02003172acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003173{
Willy Tarreau37406352012-04-23 16:16:37 +02003174 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003175 smp->type = SMP_T_UINT;
3176 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003177
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003178 if (ts != NULL) {
3179 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003180 if (!ptr)
3181 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003182 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003183 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003184 return 1;
3185}
3186
Willy Tarreaua5e37562011-12-16 17:06:15 +01003187/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003188 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003189 */
3190static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003191acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003192 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003193{
Willy Tarreau56123282010-08-06 19:06:56 +02003194 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003195 return 0;
3196
Willy Tarreau37406352012-04-23 16:16:37 +02003197 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003198}
3199
Willy Tarreaua5e37562011-12-16 17:06:15 +01003200/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003201 * tracked BE counters.
3202 */
3203static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003204acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003205 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003206{
Willy Tarreau56123282010-08-06 19:06:56 +02003207 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003208 return 0;
3209
Willy Tarreau37406352012-04-23 16:16:37 +02003210 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003211}
3212
Willy Tarreaua5e37562011-12-16 17:06:15 +01003213/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003214 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003215 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003216 */
3217static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003218acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003219 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003220{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003221 struct stktable_key *key;
3222
David du Colombier4f92d322011-03-24 11:09:31 +01003223 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003224 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003225 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003226
Willy Tarreau24e32d82012-04-23 23:55:44 +02003227 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003228 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003229}
3230
Willy Tarreaua5e37562011-12-16 17:06:15 +01003231/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003232 * configured period.
3233 */
3234static int
Willy Tarreau37406352012-04-23 16:16:37 +02003235acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003236{
Willy Tarreau37406352012-04-23 16:16:37 +02003237 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003238 smp->type = SMP_T_UINT;
3239 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003240 if (ts != NULL) {
3241 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3242 if (!ptr)
3243 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003244 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003245 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3246 }
3247 return 1;
3248}
3249
Willy Tarreaua5e37562011-12-16 17:06:15 +01003250/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003251 * over the configured period.
3252 */
3253static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003254acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003255 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003256{
Willy Tarreau56123282010-08-06 19:06:56 +02003257 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003258 return 0;
3259
Willy Tarreau37406352012-04-23 16:16:37 +02003260 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003261}
3262
Willy Tarreaua5e37562011-12-16 17:06:15 +01003263/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003264 * over the configured period.
3265 */
3266static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003267acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003268 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003269{
Willy Tarreau56123282010-08-06 19:06:56 +02003270 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003271 return 0;
3272
Willy Tarreau37406352012-04-23 16:16:37 +02003273 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003274}
3275
Willy Tarreaua5e37562011-12-16 17:06:15 +01003276/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003277 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003278 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003279 */
3280static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003281acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003282 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003283{
3284 struct stktable_key *key;
3285
David du Colombier4f92d322011-03-24 11:09:31 +01003286 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003287 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003288 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003289
Willy Tarreau24e32d82012-04-23 23:55:44 +02003290 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003291 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003292}
3293
Willy Tarreau34db1082012-04-19 17:16:54 +02003294/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003295 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003296 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003297static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003298acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003299 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003300{
Willy Tarreau37406352012-04-23 16:16:37 +02003301 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003302 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003303 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003304 return 1;
3305}
3306
Willy Tarreau34db1082012-04-19 17:16:54 +02003307/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003308 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003309 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003310static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003311acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003312 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003313{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003314 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003315 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003316 smp->type = SMP_T_UINT;
3317 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003318 return 1;
3319}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003320
Willy Tarreau61612d42012-04-19 18:42:05 +02003321/* Note: must not be declared <const> as its list will be overwritten.
3322 * Please take care of keeping this list alphabetically sorted.
3323 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003324static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003325 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3326 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3327 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3328 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3329 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3330 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3331 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3332 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3333 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3334 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3335 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3336 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3337 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3338 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3339 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3340 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3341 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3342 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3343 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3344 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3345 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3346 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3347 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3348 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3349 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3350 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3351 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3352 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3353 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3354 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3355 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3356 { "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 +02003357 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3358 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3359 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3360 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3361 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3362 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3363 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3364 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3365 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3366 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3367 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3368 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3369 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3370 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3371 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3372 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3373 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3374 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3375 { "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 +02003376 { NULL, NULL, NULL, NULL },
3377}};
3378
3379
Willy Tarreau56123282010-08-06 19:06:56 +02003380/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003381 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3382 * <prm> struct is fed with the table name if any. If unspecified, the caller
3383 * will assume that the current proxy's table is used.
3384 */
3385int parse_track_counters(char **args, int *arg,
3386 int section_type, struct proxy *curpx,
3387 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003388 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003389{
Willy Tarreau12785782012-04-27 21:37:17 +02003390 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003391
Willy Tarreau56123282010-08-06 19:06:56 +02003392 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003393 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003394 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003395 */
3396 while (args[*arg]) {
3397 if (strcmp(args[*arg], "src") == 0) {
3398 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003399 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003400 }
3401 else if (strcmp(args[*arg], "table") == 0) {
3402 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003403 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003404 return -1;
3405 }
3406 /* we copy the table name for now, it will be resolved later */
3407 prm->table.n = strdup(args[*arg + 1]);
3408 (*arg)++;
3409 }
3410 else {
3411 /* unhandled keywords are handled by the caller */
3412 break;
3413 }
3414 (*arg)++;
3415 }
3416
Willy Tarreau12785782012-04-27 21:37:17 +02003417 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003418 memprintf(err,
3419 "tracking key not specified (found %s, only 'src' is supported)",
3420 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003421 return -1;
3422 }
3423
3424 return 0;
3425}
3426
Willy Tarreau8b22a712010-06-18 17:46:06 +02003427__attribute__((constructor))
3428static void __session_init(void)
3429{
3430 acl_register_keywords(&acl_kws);
3431}
3432
Willy Tarreaubaaee002006-06-26 02:48:02 +02003433/*
3434 * Local variables:
3435 * c-indent-level: 8
3436 * c-basic-offset: 8
3437 * End:
3438 */