blob: 088b43663102e23d75c9f1d2e4f5b1adb531e43f [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 Tarreaub277d6e2012-05-11 16:59:14 +0200187 stream_interface_prepare(&s->si[0], &sock_raw);
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 Tarreauf873d752012-05-11 17:47:17 +0200202 stream_interface_prepare(&s->si[1], &stream_int_embedded);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200203 s->si[1].exp = TICK_ETERNITY;
204 s->si[1].flags = SI_FL_NONE;
205
206 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
207 s->si[1].flags |= SI_FL_INDEP_STR;
208
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200209 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100210 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200211 s->pend_pos = NULL;
212
213 /* init store persistence */
214 s->store_count = 0;
215
216 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100217 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200218 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200219
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200220 if (unlikely((s->req = pool_alloc2(pool2_buffer)) == NULL))
221 goto out_free_task; /* no memory */
222
223 if (unlikely((s->rep = pool_alloc2(pool2_buffer)) == NULL))
224 goto out_free_req; /* no memory */
225
226 /* initialize the request buffer */
227 s->req->size = global.tune.bufsize;
228 buffer_init(s->req);
229 s->req->prod = &s->si[0];
230 s->req->cons = &s->si[1];
231 s->si[0].ib = s->si[1].ob = s->req;
232 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
233
234 /* activate default analysers enabled for this listener */
235 s->req->analysers = l->analysers;
236
237 s->req->wto = TICK_ETERNITY;
238 s->req->rto = TICK_ETERNITY;
239 s->req->rex = TICK_ETERNITY;
240 s->req->wex = TICK_ETERNITY;
241 s->req->analyse_exp = TICK_ETERNITY;
242
243 /* initialize response buffer */
244 s->rep->size = global.tune.bufsize;
245 buffer_init(s->rep);
246 s->rep->prod = &s->si[1];
247 s->rep->cons = &s->si[0];
248 s->si[0].ob = s->si[1].ib = s->rep;
249 s->rep->analysers = 0;
250
Willy Tarreau96e31212011-05-30 18:10:30 +0200251 if (s->fe->options2 & PR_O2_NODELAY) {
252 s->req->flags |= BF_NEVER_WAIT;
253 s->rep->flags |= BF_NEVER_WAIT;
254 }
255
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200256 s->rep->rto = TICK_ETERNITY;
257 s->rep->wto = TICK_ETERNITY;
258 s->rep->rex = TICK_ETERNITY;
259 s->rep->wex = TICK_ETERNITY;
260 s->rep->analyse_exp = TICK_ETERNITY;
261
Willy Tarreau62f791e2012-03-09 11:32:30 +0100262 txn = &s->txn;
263 /* Those variables will be checked and freed if non-NULL in
264 * session.c:session_free(). It is important that they are
265 * properly initialized.
266 */
267 txn->sessid = NULL;
268 txn->srv_cookie = NULL;
269 txn->cli_cookie = NULL;
270 txn->uri = NULL;
271 txn->req.cap = NULL;
272 txn->rsp.cap = NULL;
273 txn->hdr_idx.v = NULL;
274 txn->hdr_idx.size = txn->hdr_idx.used = 0;
275 txn->req.flags = 0;
276 txn->rsp.flags = 0;
277 /* the HTTP messages need to know what buffer they're associated with */
278 txn->req.buf = s->req;
279 txn->rsp.buf = s->rep;
280
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200281 /* finish initialization of the accepted file descriptor */
282 fd_insert(cfd);
283 fdtab[cfd].owner = &s->si[0];
284 fdtab[cfd].state = FD_STREADY;
285 fdtab[cfd].flags = 0;
Willy Tarreau1b79bde2012-05-07 17:01:39 +0200286 fdtab[cfd].cb[DIR_RD].f = s->si[0].sock.read;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200287 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreau1b79bde2012-05-07 17:01:39 +0200288 fdtab[cfd].cb[DIR_WR].f = s->si[0].sock.write;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200289 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau6471afb2011-09-23 10:54:59 +0200290 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->si[0].addr.from;
291 fdinfo[cfd].peerlen = sizeof(s->si[0].addr.from);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200292 EV_FD_SET(cfd, DIR_RD);
293
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100294 if (p->accept && (ret = p->accept(s)) <= 0) {
295 /* Either we had an unrecoverable error (<0) or work is
296 * finished (=0, eg: monitoring), in both situations,
297 * we can release everything and close.
298 */
299 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200300 }
301
302 /* it is important not to call the wakeup function directly but to
303 * pass through task_wakeup(), because this one knows how to apply
304 * priorities to tasks.
305 */
306 task_wakeup(t, TASK_WOKEN_INIT);
307 return 1;
308
309 /* Error unrolling */
310 out_free_rep:
311 pool_free2(pool2_buffer, s->rep);
312 out_free_req:
313 pool_free2(pool2_buffer, s->req);
314 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200315 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200316 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200317 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200318 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200319 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100320 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200321 pool_free2(pool2_session, s);
322 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200323 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
324 /* critical error, no more memory, try to emit a 500 response */
325 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
326 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
327 }
328
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100329 if (fdtab[cfd].state != FD_STCLOSE)
330 fd_delete(cfd);
331 else
332 close(cfd);
333 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200334}
335
Willy Tarreaubaaee002006-06-26 02:48:02 +0200336/*
337 * frees the context associated to a session. It must have been removed first.
338 */
Simon Hormandec5be42011-06-08 09:19:07 +0900339static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200340{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100341 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200342 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100343 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200344 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100345
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346 if (s->pend_pos)
347 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100348
Willy Tarreau827aee92011-03-10 16:55:02 +0100349 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100350 if (s->flags & SN_CURR_SESS) {
351 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100352 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100353 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100354 if (may_dequeue_tasks(target_srv(&s->target), s->be))
355 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100356 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100357
Willy Tarreau7c669d72008-06-20 15:04:11 +0200358 if (unlikely(s->srv_conn)) {
359 /* the session still has a reserved slot on a server, but
360 * it should normally be only the same as the one above,
361 * so this should not happen in fact.
362 */
363 sess_change_server(s, NULL);
364 }
365
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100366 if (s->req->pipe)
367 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100368
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100369 if (s->rep->pipe)
370 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100371
Willy Tarreau48d63db2008-08-03 17:41:33 +0200372 pool_free2(pool2_buffer, s->req);
373 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200374
Willy Tarreau46023632010-01-07 22:51:47 +0100375 http_end_txn(s);
376
Willy Tarreaua4cda672010-06-06 18:28:49 +0200377 for (i = 0; i < s->store_count; i++) {
378 if (!s->store[i].ts)
379 continue;
380 stksess_free(s->store[i].table, s->store[i].ts);
381 s->store[i].ts = NULL;
382 }
383
Willy Tarreau34eb6712011-10-24 18:15:04 +0200384 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200385 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100386 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
387 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200388 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100389
Willy Tarreau56123282010-08-06 19:06:56 +0200390 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200391 session_store_counters(s);
392
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100393 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100394 /* we have to unlink all watchers. We must not relink them if
395 * this session was the last one in the list.
396 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100397 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100398 LIST_INIT(&bref->users);
399 if (s->list.n != &sessions)
400 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100401 bref->ref = s->list.n;
402 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100403 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200404 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200405
406 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200407 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200408 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200409 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200410 pool_flush2(pool2_requri);
411 pool_flush2(pool2_capture);
412 pool_flush2(pool2_session);
413 pool_flush2(fe->req_cap_pool);
414 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200415 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200416}
417
418
419/* perform minimal intializations, report 0 in case of error, 1 if OK. */
420int init_session()
421{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100422 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200423 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
424 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425}
426
Willy Tarreau30e71012007-11-26 20:15:35 +0100427void session_process_counters(struct session *s)
428{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100429 unsigned long long bytes;
430
Willy Tarreau30e71012007-11-26 20:15:35 +0100431 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100432 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100433 s->logs.bytes_in = s->req->total;
434 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100435 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100436
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100437 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100438
Willy Tarreau827aee92011-03-10 16:55:02 +0100439 if (target_srv(&s->target))
440 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200441
442 if (s->listener->counters)
443 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200444
Willy Tarreau56123282010-08-06 19:06:56 +0200445 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200446 void *ptr;
447
Willy Tarreau56123282010-08-06 19:06:56 +0200448 ptr = stktable_data_ptr(s->stkctr2_table,
449 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200450 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200451 if (ptr)
452 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200453
Willy Tarreau56123282010-08-06 19:06:56 +0200454 ptr = stktable_data_ptr(s->stkctr2_table,
455 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200456 STKTABLE_DT_BYTES_IN_RATE);
457 if (ptr)
458 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200459 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200460 }
461
Willy Tarreau56123282010-08-06 19:06:56 +0200462 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200463 void *ptr;
464
Willy Tarreau56123282010-08-06 19:06:56 +0200465 ptr = stktable_data_ptr(s->stkctr1_table,
466 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200467 STKTABLE_DT_BYTES_IN_CNT);
468 if (ptr)
469 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
470
Willy Tarreau56123282010-08-06 19:06:56 +0200471 ptr = stktable_data_ptr(s->stkctr1_table,
472 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200473 STKTABLE_DT_BYTES_IN_RATE);
474 if (ptr)
475 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200476 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200477 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100478 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100479 }
480
Willy Tarreau30e71012007-11-26 20:15:35 +0100481 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100482 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100483 s->logs.bytes_out = s->rep->total;
484 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100485 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100486
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100487 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100488
Willy Tarreau827aee92011-03-10 16:55:02 +0100489 if (target_srv(&s->target))
490 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200491
492 if (s->listener->counters)
493 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200494
Willy Tarreau56123282010-08-06 19:06:56 +0200495 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200496 void *ptr;
497
Willy Tarreau56123282010-08-06 19:06:56 +0200498 ptr = stktable_data_ptr(s->stkctr2_table,
499 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200500 STKTABLE_DT_BYTES_OUT_CNT);
501 if (ptr)
502 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
503
Willy Tarreau56123282010-08-06 19:06:56 +0200504 ptr = stktable_data_ptr(s->stkctr2_table,
505 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200506 STKTABLE_DT_BYTES_OUT_RATE);
507 if (ptr)
508 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200509 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200510 }
511
Willy Tarreau56123282010-08-06 19:06:56 +0200512 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200513 void *ptr;
514
Willy Tarreau56123282010-08-06 19:06:56 +0200515 ptr = stktable_data_ptr(s->stkctr1_table,
516 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200517 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200518 if (ptr)
519 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200520
Willy Tarreau56123282010-08-06 19:06:56 +0200521 ptr = stktable_data_ptr(s->stkctr1_table,
522 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200523 STKTABLE_DT_BYTES_OUT_RATE);
524 if (ptr)
525 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200526 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200527 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100528 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100529 }
530}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200531
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100532/* This function is called with (si->state == SI_ST_CON) meaning that a
533 * connection was attempted and that the file descriptor is already allocated.
534 * We must check for establishment, error and abort. Possible output states
535 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
536 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
537 * otherwise 1.
538 */
Simon Hormandec5be42011-06-08 09:19:07 +0900539static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100540{
541 struct buffer *req = si->ob;
542 struct buffer *rep = si->ib;
543
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100544 /* If we got an error, or if nothing happened and the connection timed
545 * out, we must give up. The CER state handler will take care of retry
546 * attempts and error reports.
547 */
548 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100549 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100550 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200551 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100552 fd_delete(si->fd);
553
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200554 if (si->release)
555 si->release(si);
556
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100557 if (si->err_type)
558 return 0;
559
Willy Tarreau827aee92011-03-10 16:55:02 +0100560 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100561 if (si->flags & SI_FL_ERR)
562 si->err_type = SI_ET_CONN_ERR;
563 else
564 si->err_type = SI_ET_CONN_TO;
565 return 0;
566 }
567
568 /* OK, maybe we want to abort */
Willy Tarreau418fd472009-09-06 21:37:23 +0200569 if (unlikely((rep->flags & BF_SHUTW) ||
570 ((req->flags & BF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200571 (((req->flags & (BF_OUT_EMPTY|BF_WRITE_ACTIVITY)) == BF_OUT_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100572 s->be->options & PR_O_ABRT_CLOSE)))) {
573 /* give up */
Willy Tarreau060781f2012-05-07 16:50:03 +0200574 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100575 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100576 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200577 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100578 if (s->srv_error)
579 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100580 return 1;
581 }
582
583 /* we need to wait a bit more if there was no activity either */
584 if (!(req->flags & BF_WRITE_ACTIVITY))
585 return 1;
586
587 /* OK, this means that a connection succeeded. The caller will be
588 * responsible for handling the transition from CON to EST.
589 */
590 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100591 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100592 si->state = SI_ST_EST;
593 si->err_type = SI_ET_NONE;
594 si->err_loc = NULL;
595 return 1;
596}
597
598/* This function is called with (si->state == SI_ST_CER) meaning that a
599 * previous connection attempt has failed and that the file descriptor
600 * has already been released. Possible causes include asynchronous error
601 * notification and time out. Possible output states are SI_ST_CLO when
602 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
603 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
604 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
605 * marked as in error state. It returns 0.
606 */
Simon Hormandec5be42011-06-08 09:19:07 +0900607static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100608{
609 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100610 if (target_srv(&s->target)) {
611 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100612
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100613 if (s->flags & SN_CURR_SESS) {
614 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100615 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100616 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100617 }
618
619 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200620 si->conn_retries--;
621 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100622 if (!si->err_type) {
623 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100624 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100625 }
626
Willy Tarreau827aee92011-03-10 16:55:02 +0100627 if (target_srv(&s->target))
628 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100629 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100630 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100631 if (may_dequeue_tasks(target_srv(&s->target), s->be))
632 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100633
634 /* shutw is enough so stop a connecting socket */
Willy Tarreau060781f2012-05-07 16:50:03 +0200635 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100636 si->ob->flags |= BF_WRITE_ERROR;
637 si->ib->flags |= BF_READ_ERROR;
638
639 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100640 if (s->srv_error)
641 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100642 return 0;
643 }
644
645 /* If the "redispatch" option is set on the backend, we are allowed to
646 * retry on another server for the last retry. In order to achieve this,
647 * we must mark the session unassigned, and eventually clear the DIRECT
648 * bit to ignore any persistence cookie. We won't count a retry nor a
649 * redispatch yet, because this will depend on what server is selected.
650 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100651 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100652 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100653 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100654 if (may_dequeue_tasks(target_srv(&s->target), s->be))
655 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100656
657 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100658 si->state = SI_ST_REQ;
659 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100660 if (target_srv(&s->target))
661 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100662 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100663 si->state = SI_ST_ASS;
664 }
665
666 if (si->flags & SI_FL_ERR) {
667 /* The error was an asynchronous connection error, and we will
668 * likely have to retry connecting to the same server, most
669 * likely leading to the same result. To avoid this, we wait
670 * one second before retrying.
671 */
672
673 if (!si->err_type)
674 si->err_type = SI_ET_CONN_ERR;
675
676 si->state = SI_ST_TAR;
677 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
678 return 0;
679 }
680 return 0;
681}
682
683/*
684 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200685 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200686 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100687 */
Simon Hormandec5be42011-06-08 09:19:07 +0900688static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100689{
690 struct buffer *req = si->ob;
691 struct buffer *rep = si->ib;
692
Willy Tarreau827aee92011-03-10 16:55:02 +0100693 if (target_srv(&s->target))
694 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100695
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100696 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100697 /* if the user wants to log as soon as possible, without counting
698 * bytes from the server, then this is the right moment. */
699 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
700 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100701 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100702 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100703 }
704 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100705 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
706 /* reset hdr_idx which was already initialized by the request.
707 * right now, the http parser does it.
708 * hdr_idx_init(&s->txn.hdr_idx);
709 */
710 }
711
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200712 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100713 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau26d8c592012-05-07 18:12:14 +0200714 if (si->proto) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200715 /* real connections have timeouts */
716 req->wto = s->be->timeout.server;
717 rep->rto = s->be->timeout.server;
718 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100719 req->wex = TICK_ETERNITY;
Willy Tarreau2f5b6fc2012-05-12 08:08:09 +0200720
721 if (si->sock.init) {
722 /* initialize the socket layer if needed */
723 void *arg = NULL;
724 if (target_srv(&s->target))
725 arg = target_srv(&s->target)->sock_init_arg;
726 si->sock.init(si, arg);
727 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100728}
729
730/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
731 * Other input states are simply ignored.
732 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
733 * Flags must have previously been updated for timeouts and other conditions.
734 */
Simon Hormandec5be42011-06-08 09:19:07 +0900735static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100736{
Willy Tarreau827aee92011-03-10 16:55:02 +0100737 struct server *srv = target_srv(&s->target);
738
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100739 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 +0100740 now_ms, __FUNCTION__,
741 s,
742 s->req, s->rep,
743 s->req->rex, s->rep->wex,
744 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100745 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 +0100746
747 if (si->state == SI_ST_ASS) {
748 /* Server assigned to connection request, we have to try to connect now */
749 int conn_err;
750
751 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100752 srv = target_srv(&s->target);
753
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100754 if (conn_err == SN_ERR_NONE) {
755 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100756 if (srv)
757 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100758 return;
759 }
760
761 /* We have received a synchronous error. We might have to
762 * abort, retry immediately or redispatch.
763 */
764 if (conn_err == SN_ERR_INTERNAL) {
765 if (!si->err_type) {
766 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100767 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100768 }
769
Willy Tarreau827aee92011-03-10 16:55:02 +0100770 if (srv)
771 srv_inc_sess_ctr(srv);
772 if (srv)
773 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100774 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100775
776 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100777 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100778 if (may_dequeue_tasks(srv, s->be))
779 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100780
781 /* Failed and not retryable. */
Willy Tarreau060781f2012-05-07 16:50:03 +0200782 si->sock.shutr(si);
783 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100784 si->ob->flags |= BF_WRITE_ERROR;
785
786 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
787
788 /* no session was ever accounted for this server */
789 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100790 if (s->srv_error)
791 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100792 return;
793 }
794
795 /* We are facing a retryable error, but we don't want to run a
796 * turn-around now, as the problem is likely a source port
797 * allocation problem, so we want to retry now.
798 */
799 si->state = SI_ST_CER;
800 si->flags &= ~SI_FL_ERR;
801 sess_update_st_cer(s, si);
802 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
803 return;
804 }
805 else if (si->state == SI_ST_QUE) {
806 /* connection request was queued, check for any update */
807 if (!s->pend_pos) {
808 /* The connection is not in the queue anymore. Either
809 * we have a server connection slot available and we
810 * go directly to the assigned state, or we need to
811 * load-balance first and go to the INI state.
812 */
813 si->exp = TICK_ETERNITY;
814 if (unlikely(!(s->flags & SN_ASSIGNED)))
815 si->state = SI_ST_REQ;
816 else {
817 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
818 si->state = SI_ST_ASS;
819 }
820 return;
821 }
822
823 /* Connection request still in queue... */
824 if (si->flags & SI_FL_EXP) {
825 /* ... and timeout expired */
826 si->exp = TICK_ETERNITY;
827 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100828 if (srv)
829 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100830 s->be->be_counters.failed_conns++;
Willy Tarreau060781f2012-05-07 16:50:03 +0200831 si->sock.shutr(si);
832 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100833 si->ob->flags |= BF_WRITE_TIMEOUT;
834 if (!si->err_type)
835 si->err_type = SI_ET_QUEUE_TO;
836 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100837 if (s->srv_error)
838 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100839 return;
840 }
841
842 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau418fd472009-09-06 21:37:23 +0200843 if ((si->ob->flags & (BF_READ_ERROR)) ||
844 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200845 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100846 /* give up */
847 si->exp = TICK_ETERNITY;
848 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau060781f2012-05-07 16:50:03 +0200849 si->sock.shutr(si);
850 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100851 si->err_type |= SI_ET_QUEUE_ABRT;
852 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100853 if (s->srv_error)
854 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100855 return;
856 }
857
858 /* Nothing changed */
859 return;
860 }
861 else if (si->state == SI_ST_TAR) {
862 /* Connection request might be aborted */
Willy Tarreau418fd472009-09-06 21:37:23 +0200863 if ((si->ob->flags & (BF_READ_ERROR)) ||
864 ((si->ob->flags & BF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200865 (si->ob->flags & BF_OUT_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100866 /* give up */
867 si->exp = TICK_ETERNITY;
Willy Tarreau060781f2012-05-07 16:50:03 +0200868 si->sock.shutr(si);
869 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100870 si->err_type |= SI_ET_CONN_ABRT;
871 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100872 if (s->srv_error)
873 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100874 return;
875 }
876
877 if (!(si->flags & SI_FL_EXP))
878 return; /* still in turn-around */
879
880 si->exp = TICK_ETERNITY;
881
882 /* we keep trying on the same server as long as the session is
883 * marked "assigned".
884 * FIXME: Should we force a redispatch attempt when the server is down ?
885 */
886 if (s->flags & SN_ASSIGNED)
887 si->state = SI_ST_ASS;
888 else
889 si->state = SI_ST_REQ;
890 return;
891 }
892}
893
Simon Hormandec5be42011-06-08 09:19:07 +0900894/* Set correct session termination flags in case no analyser has done it. It
895 * also counts a failed request if the server state has not reached the request
896 * stage.
897 */
898static void sess_set_term_flags(struct session *s)
899{
900 if (!(s->flags & SN_FINST_MASK)) {
901 if (s->si[1].state < SI_ST_REQ) {
902
903 s->fe->fe_counters.failed_req++;
904 if (s->listener->counters)
905 s->listener->counters->failed_req++;
906
907 s->flags |= SN_FINST_R;
908 }
909 else if (s->si[1].state == SI_ST_QUE)
910 s->flags |= SN_FINST_Q;
911 else if (s->si[1].state < SI_ST_EST)
912 s->flags |= SN_FINST_C;
913 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
914 s->flags |= SN_FINST_D;
915 else
916 s->flags |= SN_FINST_L;
917 }
918}
919
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920/* This function initiates a server connection request on a stream interface
921 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
922 * indicating that a server has been assigned. It may also return SI_ST_QUE,
923 * or SI_ST_CLO upon error.
924 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100925static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
926{
927 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 +0100928 now_ms, __FUNCTION__,
929 s,
930 s->req, s->rep,
931 s->req->rex, s->rep->wex,
932 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100933 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 +0100934
935 if (si->state != SI_ST_REQ)
936 return;
937
938 /* Try to assign a server */
939 if (srv_redispatch_connect(s) != 0) {
940 /* We did not get a server. Either we queued the
941 * connection request, or we encountered an error.
942 */
943 if (si->state == SI_ST_QUE)
944 return;
945
946 /* we did not get any server, let's check the cause */
Willy Tarreau060781f2012-05-07 16:50:03 +0200947 si->sock.shutr(si);
948 si->sock.shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100949 si->ob->flags |= BF_WRITE_ERROR;
950 if (!si->err_type)
951 si->err_type = SI_ET_CONN_OTHER;
952 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100953 if (s->srv_error)
954 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100955 return;
956 }
957
958 /* The server is assigned */
959 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
960 si->state = SI_ST_ASS;
961}
962
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200963/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100964 * if appropriate. The default_backend rule is also considered, then the
965 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200966 * It returns 1 if the processing can continue on next analysers, or zero if it
967 * either needs more data or wants to immediately abort the request.
968 */
Simon Hormandec5be42011-06-08 09:19:07 +0900969static int process_switching_rules(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200970{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200971 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100972
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200973 req->analysers &= ~an_bit;
974 req->analyse_exp = TICK_ETERNITY;
975
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100976 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 +0200977 now_ms, __FUNCTION__,
978 s,
979 req,
980 req->rex, req->wex,
981 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100982 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200983 req->analysers);
984
985 /* now check whether we have some switching rules for this request */
986 if (!(s->flags & SN_BE_ASSIGNED)) {
987 struct switching_rule *rule;
988
989 list_for_each_entry(rule, &s->fe->switching_rules, list) {
990 int ret;
991
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200992 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 +0200993 ret = acl_pass(ret);
994 if (rule->cond->pol == ACL_COND_UNLESS)
995 ret = !ret;
996
997 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200998 if (!session_set_backend(s, rule->be.backend))
999 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001000 break;
1001 }
1002 }
1003
1004 /* To ensure correct connection accounting on the backend, we
1005 * have to assign one if it was not set (eg: a listen). This
1006 * measure also takes care of correctly setting the default
1007 * backend if any.
1008 */
1009 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001010 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1011 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001012 }
1013
Willy Tarreaufb356202010-08-03 14:02:05 +02001014 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1015 if (s->fe == s->be) {
1016 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001017 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001018 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001019
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001020 /* 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 +01001021 * persistence rule, and report that in the session.
1022 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001023 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001024 int ret = 1;
1025
1026 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001027 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 +01001028 ret = acl_pass(ret);
1029 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1030 ret = !ret;
1031 }
1032
1033 if (ret) {
1034 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001035 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1036 s->flags |= SN_FORCE_PRST;
1037 } else {
1038 s->flags |= SN_IGNORE_PRST;
1039 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001040 break;
1041 }
1042 }
1043
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001044 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001045
1046 sw_failed:
1047 /* immediately abort this request in case of allocation failure */
1048 buffer_abort(s->req);
1049 buffer_abort(s->rep);
1050
1051 if (!(s->flags & SN_ERR_MASK))
1052 s->flags |= SN_ERR_RESOURCE;
1053 if (!(s->flags & SN_FINST_MASK))
1054 s->flags |= SN_FINST_R;
1055
1056 s->txn.status = 500;
1057 s->req->analysers = 0;
1058 s->req->analyse_exp = TICK_ETERNITY;
1059 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001060}
1061
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001062/* This stream analyser works on a request. It applies all use-server rules on
1063 * it then returns 1. The data must already be present in the buffer otherwise
1064 * they won't match. It always returns 1.
1065 */
1066static int process_server_rules(struct session *s, struct buffer *req, int an_bit)
1067{
1068 struct proxy *px = s->be;
1069 struct server_rule *rule;
1070
1071 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1072 now_ms, __FUNCTION__,
1073 s,
1074 req,
1075 req->rex, req->wex,
1076 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001077 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001078 req->analysers);
1079
1080 if (!(s->flags & SN_ASSIGNED)) {
1081 list_for_each_entry(rule, &px->server_rules, list) {
1082 int ret;
1083
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001084 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 +02001085 ret = acl_pass(ret);
1086 if (rule->cond->pol == ACL_COND_UNLESS)
1087 ret = !ret;
1088
1089 if (ret) {
1090 struct server *srv = rule->srv.ptr;
1091
1092 if ((srv->state & SRV_RUNNING) ||
1093 (px->options & PR_O_PERSIST) ||
1094 (s->flags & SN_FORCE_PRST)) {
1095 s->flags |= SN_DIRECT | SN_ASSIGNED;
1096 set_target_server(&s->target, srv);
1097 break;
1098 }
1099 /* if the server is not UP, let's go on with next rules
1100 * just in case another one is suited.
1101 */
1102 }
1103 }
1104 }
1105
1106 req->analysers &= ~an_bit;
1107 req->analyse_exp = TICK_ETERNITY;
1108 return 1;
1109}
1110
Emeric Brun1d33b292010-01-04 15:47:17 +01001111/* This stream analyser works on a request. It applies all sticking rules on
1112 * it then returns 1. The data must already be present in the buffer otherwise
1113 * they won't match. It always returns 1.
1114 */
Simon Hormandec5be42011-06-08 09:19:07 +09001115static int process_sticking_rules(struct session *s, struct buffer *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001116{
1117 struct proxy *px = s->be;
1118 struct sticking_rule *rule;
1119
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001120 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 +01001121 now_ms, __FUNCTION__,
1122 s,
1123 req,
1124 req->rex, req->wex,
1125 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001126 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001127 req->analysers);
1128
1129 list_for_each_entry(rule, &px->sticking_rules, list) {
1130 int ret = 1 ;
1131 int i;
1132
1133 for (i = 0; i < s->store_count; i++) {
1134 if (rule->table.t == s->store[i].table)
1135 break;
1136 }
1137
1138 if (i != s->store_count)
1139 continue;
1140
1141 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001142 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001143 ret = acl_pass(ret);
1144 if (rule->cond->pol == ACL_COND_UNLESS)
1145 ret = !ret;
1146 }
1147
1148 if (ret) {
1149 struct stktable_key *key;
1150
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001151 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 +01001152 if (!key)
1153 continue;
1154
1155 if (rule->flags & STK_IS_MATCH) {
1156 struct stksess *ts;
1157
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001158 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001159 if (!(s->flags & SN_ASSIGNED)) {
1160 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001161 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001162
1163 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001164 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1165 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001166 if (node) {
1167 struct server *srv;
1168
1169 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001170 if ((srv->state & SRV_RUNNING) ||
1171 (px->options & PR_O_PERSIST) ||
1172 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001173 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001174 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001175 }
1176 }
1177 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001178 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001179 }
1180 }
1181 if (rule->flags & STK_IS_STORE) {
1182 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1183 struct stksess *ts;
1184
1185 ts = stksess_new(rule->table.t, key);
1186 if (ts) {
1187 s->store[s->store_count].table = rule->table.t;
1188 s->store[s->store_count++].ts = ts;
1189 }
1190 }
1191 }
1192 }
1193 }
1194
1195 req->analysers &= ~an_bit;
1196 req->analyse_exp = TICK_ETERNITY;
1197 return 1;
1198}
1199
1200/* This stream analyser works on a response. It applies all store rules on it
1201 * then returns 1. The data must already be present in the buffer otherwise
1202 * they won't match. It always returns 1.
1203 */
Simon Hormandec5be42011-06-08 09:19:07 +09001204static int process_store_rules(struct session *s, struct buffer *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001205{
1206 struct proxy *px = s->be;
1207 struct sticking_rule *rule;
1208 int i;
1209
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001210 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 +01001211 now_ms, __FUNCTION__,
1212 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001213 rep,
1214 rep->rex, rep->wex,
1215 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001216 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001217 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001218
1219 list_for_each_entry(rule, &px->storersp_rules, list) {
1220 int ret = 1 ;
1221 int storereqidx = -1;
1222
1223 for (i = 0; i < s->store_count; i++) {
1224 if (rule->table.t == s->store[i].table) {
1225 if (!(s->store[i].flags))
1226 storereqidx = i;
1227 break;
1228 }
1229 }
1230
1231 if ((i != s->store_count) && (storereqidx == -1))
1232 continue;
1233
1234 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001235 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001236 ret = acl_pass(ret);
1237 if (rule->cond->pol == ACL_COND_UNLESS)
1238 ret = !ret;
1239 }
1240
1241 if (ret) {
1242 struct stktable_key *key;
1243
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001244 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 +01001245 if (!key)
1246 continue;
1247
1248 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001249 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001250 s->store[storereqidx].flags = 1;
1251 }
1252 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1253 struct stksess *ts;
1254
1255 ts = stksess_new(rule->table.t, key);
1256 if (ts) {
1257 s->store[s->store_count].table = rule->table.t;
1258 s->store[s->store_count].flags = 1;
1259 s->store[s->store_count++].ts = ts;
1260 }
1261 }
1262 }
1263 }
1264
1265 /* process store request and store response */
1266 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001267 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001268 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001269
Simon Hormanfa461682011-06-25 09:39:49 +09001270 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1271 stksess_free(s->store[i].table, s->store[i].ts);
1272 s->store[i].ts = NULL;
1273 continue;
1274 }
1275
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001276 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1277 if (ts) {
1278 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001279 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001280 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001281 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001282 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001283 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001284
1285 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001286 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001287 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001288 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001289 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001290
1291 rep->analysers &= ~an_bit;
1292 rep->analyse_exp = TICK_ETERNITY;
1293 return 1;
1294}
1295
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001296/* This macro is very specific to the function below. See the comments in
1297 * process_session() below to understand the logic and the tests.
1298 */
1299#define UPDATE_ANALYSERS(real, list, back, flag) { \
1300 list = (((list) & ~(flag)) | ~(back)) & (real); \
1301 back = real; \
1302 if (!(list)) \
1303 break; \
1304 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1305 continue; \
1306}
1307
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001308/* Processes the client, server, request and response jobs of a session task,
1309 * then puts it back to the wait queue in a clean state, or cleans up its
1310 * resources if it must be deleted. Returns in <next> the date the task wants
1311 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1312 * nothing too many times, the request and response buffers flags are monitored
1313 * and each function is called only if at least another function has changed at
1314 * least one flag it is interested in.
1315 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001316struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001317{
Willy Tarreau827aee92011-03-10 16:55:02 +01001318 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001319 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001320 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001321 unsigned int rq_prod_last, rq_cons_last;
1322 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001323 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001324
1325 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1326 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1327
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001328 /* this data may be no longer valid, clear it */
1329 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1330
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001331 /* This flag must explicitly be set every time */
1332 s->req->flags &= ~BF_READ_NOEXP;
1333
1334 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001335 rqf_last = s->req->flags & ~BF_MASK_ANALYSER;
1336 rpf_last = s->rep->flags & ~BF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001337
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001338 /* we don't want the stream interface functions to recursively wake us up */
1339 if (s->req->prod->owner == t)
1340 s->req->prod->flags |= SI_FL_DONT_WAKE;
1341 if (s->req->cons->owner == t)
1342 s->req->cons->flags |= SI_FL_DONT_WAKE;
1343
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001344 /* 1a: Check for low level timeouts if needed. We just set a flag on
1345 * stream interfaces when their timeouts have expired.
1346 */
1347 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1348 stream_int_check_timeouts(&s->si[0]);
1349 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001350
1351 /* check buffer timeouts, and close the corresponding stream interfaces
1352 * for future reads or writes. Note: this will also concern upper layers
1353 * but we do not touch any other flag. We must be careful and correctly
1354 * detect state changes when calling them.
1355 */
1356
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001357 buffer_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001358
Willy Tarreau14641402009-12-29 14:49:56 +01001359 if (unlikely((s->req->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1360 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau060781f2012-05-07 16:50:03 +02001361 s->req->cons->sock.shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001362 }
1363
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001364 if (unlikely((s->req->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
Willy Tarreau060781f2012-05-07 16:50:03 +02001365 s->req->prod->sock.shutr(s->req->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001366
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001367 buffer_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001368
Willy Tarreau14641402009-12-29 14:49:56 +01001369 if (unlikely((s->rep->flags & (BF_SHUTW|BF_WRITE_TIMEOUT)) == BF_WRITE_TIMEOUT)) {
1370 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau060781f2012-05-07 16:50:03 +02001371 s->rep->cons->sock.shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001372 }
1373
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001374 if (unlikely((s->rep->flags & (BF_SHUTR|BF_READ_TIMEOUT)) == BF_READ_TIMEOUT))
Willy Tarreau060781f2012-05-07 16:50:03 +02001375 s->rep->prod->sock.shutr(s->rep->prod);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001376 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001377
1378 /* 1b: check for low-level errors reported at the stream interface.
1379 * First we check if it's a retryable error (in which case we don't
1380 * want to tell the buffer). Otherwise we report the error one level
1381 * upper by setting flags into the buffers. Note that the side towards
1382 * the client cannot have connect (hence retryable) errors. Also, the
1383 * connection setup code must be able to deal with any type of abort.
1384 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001385 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001386 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1387 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau060781f2012-05-07 16:50:03 +02001388 s->si[0].sock.shutr(&s->si[0]);
1389 s->si[0].sock.shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001390 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001391 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001392 s->be->be_counters.cli_aborts++;
1393 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001394 if (srv)
1395 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001396 if (!(s->flags & SN_ERR_MASK))
1397 s->flags |= SN_ERR_CLICL;
1398 if (!(s->flags & SN_FINST_MASK))
1399 s->flags |= SN_FINST_D;
1400 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001401 }
1402 }
1403
1404 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1405 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau060781f2012-05-07 16:50:03 +02001406 s->si[1].sock.shutr(&s->si[1]);
1407 s->si[1].sock.shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001408 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001409 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001410 if (srv)
1411 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001412 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001413 s->be->be_counters.srv_aborts++;
1414 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001415 if (srv)
1416 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001417 if (!(s->flags & SN_ERR_MASK))
1418 s->flags |= SN_ERR_SRVCL;
1419 if (!(s->flags & SN_FINST_MASK))
1420 s->flags |= SN_FINST_D;
1421 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001422 }
1423 /* note: maybe we should process connection errors here ? */
1424 }
1425
1426 if (s->si[1].state == SI_ST_CON) {
1427 /* we were trying to establish a connection on the server side,
1428 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1429 */
1430 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1431 sess_update_st_cer(s, &s->si[1]);
1432 else if (s->si[1].state == SI_ST_EST)
1433 sess_establish(s, &s->si[1]);
1434
1435 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1436 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1437 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1438 */
1439 }
1440
Willy Tarreau815a9b22010-07-27 17:15:12 +02001441 rq_prod_last = s->si[0].state;
1442 rq_cons_last = s->si[1].state;
1443 rp_cons_last = s->si[0].state;
1444 rp_prod_last = s->si[1].state;
1445
1446 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001447 /* Check for connection closure */
1448
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001449 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001450 "[%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 +01001451 now_ms, __FUNCTION__, __LINE__,
1452 t,
1453 s, s->flags,
1454 s->req, s->rep,
1455 s->req->rex, s->rep->wex,
1456 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001457 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 +01001458 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001459 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001460
1461 /* nothing special to be done on client side */
1462 if (unlikely(s->req->prod->state == SI_ST_DIS))
1463 s->req->prod->state = SI_ST_CLO;
1464
1465 /* When a server-side connection is released, we have to count it and
1466 * check for pending connections on this server.
1467 */
1468 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1469 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001470 srv = target_srv(&s->target);
1471 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001472 if (s->flags & SN_CURR_SESS) {
1473 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001474 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001475 }
1476 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001477 if (may_dequeue_tasks(srv, s->be))
1478 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001479 }
1480 }
1481
1482 /*
1483 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1484 * at this point.
1485 */
1486
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001487 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001488 /* Analyse request */
Willy Tarreau2f976e12010-11-11 14:28:47 +01001489 if (((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001490 ((s->req->flags ^ rqf_last) & BF_MASK_STATIC) ||
1491 s->si[0].state != rq_prod_last ||
1492 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001493 unsigned int flags = s->req->flags;
1494
1495 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001496 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001497 unsigned int ana_list;
1498 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001499
Willy Tarreau90deb182010-01-07 00:20:41 +01001500 /* it's up to the analysers to stop new connections,
1501 * disable reading or closing. Note: if an analyser
1502 * disables any of these bits, it is responsible for
1503 * enabling them again when it disables itself, so
1504 * that other analysers are called in similar conditions.
1505 */
1506 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001507 buffer_auto_connect(s->req);
1508 buffer_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001509
1510 /* We will call all analysers for which a bit is set in
1511 * s->req->analysers, following the bit order from LSB
1512 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001513 * the list when not needed. Any analyser may return 0
1514 * to break out of the loop, either because of missing
1515 * data to take a decision, or because it decides to
1516 * kill the session. We loop at least once through each
1517 * analyser, and we may loop again if other analysers
1518 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001519 *
1520 * We build a list of analysers to run. We evaluate all
1521 * of these analysers in the order of the lower bit to
1522 * the higher bit. This ordering is very important.
1523 * An analyser will often add/remove other analysers,
1524 * including itself. Any changes to itself have no effect
1525 * on the loop. If it removes any other analysers, we
1526 * want those analysers not to be called anymore during
1527 * this loop. If it adds an analyser that is located
1528 * after itself, we want it to be scheduled for being
1529 * processed during the loop. If it adds an analyser
1530 * which is located before it, we want it to switch to
1531 * it immediately, even if it has already been called
1532 * once but removed since.
1533 *
1534 * In order to achieve this, we compare the analyser
1535 * list after the call with a copy of it before the
1536 * call. The work list is fed with analyser bits that
1537 * appeared during the call. Then we compare previous
1538 * work list with the new one, and check the bits that
1539 * appeared. If the lowest of these bits is lower than
1540 * the current bit, it means we have enabled a previous
1541 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001542 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001543
1544 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001545 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001546 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001547
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001548 if (ana_list & AN_REQ_DECODE_PROXY) {
1549 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1550 break;
1551 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1552 }
1553
Willy Tarreaufb356202010-08-03 14:02:05 +02001554 if (ana_list & AN_REQ_INSPECT_FE) {
1555 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001556 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001557 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001558 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001559
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001560 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001561 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001562 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001563 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001564 }
1565
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001566 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001567 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1568 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001569 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001570 }
1571
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001572 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001573 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1574 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001575 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001576 }
1577
Willy Tarreaufb356202010-08-03 14:02:05 +02001578 if (ana_list & AN_REQ_INSPECT_BE) {
1579 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1580 break;
1581 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1582 }
1583
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001584 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001585 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1586 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001587 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001588 }
1589
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001590 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001591 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001592 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001593 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001594 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001595
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001596 if (ana_list & AN_REQ_SRV_RULES) {
1597 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1598 break;
1599 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1600 }
1601
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001602 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001603 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1604 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001605 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001606 }
1607
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001608 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001609 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001610 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001611 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001612 }
Emeric Brun647caf12009-06-30 17:57:00 +02001613
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001614 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001615 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1616 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001617 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001618 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001619
Emeric Brun1d33b292010-01-04 15:47:17 +01001620 if (ana_list & AN_REQ_STICKING_RULES) {
1621 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1622 break;
1623 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1624 }
1625
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001626 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001627 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1628 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001629 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001630 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001631 break;
1632 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001633 }
Willy Tarreau84455332009-03-15 22:34:05 +01001634
Willy Tarreau815a9b22010-07-27 17:15:12 +02001635 rq_prod_last = s->si[0].state;
1636 rq_cons_last = s->si[1].state;
Willy Tarreau0499e352010-12-17 07:13:42 +01001637 s->req->flags &= ~BF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001638 rqf_last = s->req->flags;
1639
1640 if ((s->req->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001641 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001642 }
1643
Willy Tarreau576507f2010-01-07 00:09:04 +01001644 /* we'll monitor the request analysers while parsing the response,
1645 * because some response analysers may indirectly enable new request
1646 * analysers (eg: HTTP keep-alive).
1647 */
1648 req_ana_back = s->req->analysers;
1649
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001650 resync_response:
1651 /* Analyse response */
1652
1653 if (unlikely(s->rep->flags & BF_HIJACK)) {
1654 /* In inject mode, we wake up everytime something has
1655 * happened on the write side of the buffer.
1656 */
1657 unsigned int flags = s->rep->flags;
1658
1659 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
1660 !(s->rep->flags & BF_FULL)) {
1661 s->rep->hijacker(s, s->rep);
1662 }
1663
1664 if ((s->rep->flags ^ flags) & BF_MASK_STATIC) {
1665 rpf_last = s->rep->flags;
1666 goto resync_response;
1667 }
1668 }
Willy Tarreau2f976e12010-11-11 14:28:47 +01001669 else if (((s->rep->flags & ~rpf_last) & BF_MASK_ANALYSER) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001670 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC ||
1671 s->si[0].state != rp_cons_last ||
1672 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001673 unsigned int flags = s->rep->flags;
1674
Willy Tarreau0499e352010-12-17 07:13:42 +01001675 if ((s->rep->flags & BF_MASK_ANALYSER) &&
1676 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1677 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1678 * for some free space in the response buffer, so we might need to call
1679 * it when something changes in the response buffer, but still we pass
1680 * it the request buffer. Note that the SI state might very well still
1681 * be zero due to us returning a flow of redirects!
1682 */
1683 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
1684 s->req->flags |= BF_WAKE_ONCE;
1685 }
1686
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001687 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001688 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001689 unsigned int ana_list;
1690 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001691
Willy Tarreau90deb182010-01-07 00:20:41 +01001692 /* it's up to the analysers to stop disable reading or
1693 * closing. Note: if an analyser disables any of these
1694 * bits, it is responsible for enabling them again when
1695 * it disables itself, so that other analysers are called
1696 * in similar conditions.
1697 */
1698 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001699 buffer_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001700
1701 /* We will call all analysers for which a bit is set in
1702 * s->rep->analysers, following the bit order from LSB
1703 * to MSB. The analysers must remove themselves from
1704 * the list when not needed. Any analyser may return 0
1705 * to break out of the loop, either because of missing
1706 * data to take a decision, or because it decides to
1707 * kill the session. We loop at least once through each
1708 * analyser, and we may loop again if other analysers
1709 * are added in the middle.
1710 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001711
1712 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001713 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001714 /* Warning! ensure that analysers are always placed in ascending order! */
1715
Emeric Brun97679e72010-09-23 17:56:44 +02001716 if (ana_list & AN_RES_INSPECT) {
1717 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1718 break;
1719 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1720 }
1721
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001722 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001723 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1724 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001725 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001726 }
1727
Emeric Brun1d33b292010-01-04 15:47:17 +01001728 if (ana_list & AN_RES_STORE_RULES) {
1729 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1730 break;
1731 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1732 }
1733
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001734 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001735 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1736 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001737 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001738 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001739
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001740 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001741 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1742 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001743 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001744 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001745 break;
1746 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001747 }
1748
Willy Tarreau815a9b22010-07-27 17:15:12 +02001749 rp_cons_last = s->si[0].state;
1750 rp_prod_last = s->si[1].state;
1751 rpf_last = s->rep->flags;
1752
1753 if ((s->rep->flags ^ flags) & BF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001754 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001755 }
1756
Willy Tarreau576507f2010-01-07 00:09:04 +01001757 /* maybe someone has added some request analysers, so we must check and loop */
1758 if (s->req->analysers & ~req_ana_back)
1759 goto resync_request;
1760
Willy Tarreau0499e352010-12-17 07:13:42 +01001761 if ((s->req->flags & ~rqf_last) & BF_MASK_ANALYSER)
1762 goto resync_request;
1763
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001764 /* FIXME: here we should call protocol handlers which rely on
1765 * both buffers.
1766 */
1767
1768
1769 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001770 * Now we propagate unhandled errors to the session. Normally
1771 * we're just in a data phase here since it means we have not
1772 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001773 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001774 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001775 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001776 if (s->req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1777 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001778 s->req->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001779 if (s->req->flags & BF_READ_ERROR) {
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_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001785 }
1786 else if (s->req->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001787 s->be->be_counters.cli_aborts++;
1788 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001789 if (srv)
1790 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001791 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001792 }
1793 else if (s->req->flags & BF_WRITE_ERROR) {
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_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001799 }
1800 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001801 s->be->be_counters.srv_aborts++;
1802 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001803 if (srv)
1804 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001805 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001806 }
Willy Tarreau84455332009-03-15 22:34:05 +01001807 sess_set_term_flags(s);
1808 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001809 else if (s->rep->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
1810 /* Report it if the server got an error or a read timeout expired */
1811 s->rep->analysers = 0;
Willy Tarreauae526782010-03-04 20:34:23 +01001812 if (s->rep->flags & BF_READ_ERROR) {
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_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001818 }
1819 else if (s->rep->flags & BF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001820 s->be->be_counters.srv_aborts++;
1821 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001822 if (srv)
1823 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001824 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001825 }
1826 else if (s->rep->flags & BF_WRITE_ERROR) {
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 Tarreau3deb3d02009-06-21 22:43:05 +02001831 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001832 }
1833 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001834 s->be->be_counters.cli_aborts++;
1835 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001836 if (srv)
1837 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001838 s->flags |= SN_ERR_CLITO;
1839 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001840 sess_set_term_flags(s);
1841 }
Willy Tarreau84455332009-03-15 22:34:05 +01001842 }
1843
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001844 /*
1845 * Here we take care of forwarding unhandled data. This also includes
1846 * connection establishments and shutdown requests.
1847 */
1848
1849
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001850 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001851 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001852 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1853 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001854 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001855 if (!s->req->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001856 !(s->req->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001857 (s->req->prod->state >= SI_ST_EST) &&
1858 (s->req->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001859 /* This buffer is freewheeling, there's no analyser nor hijacker
1860 * attached to it. If any data are left in, we'll permit them to
1861 * move.
1862 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001863 buffer_auto_read(s->req);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001864 buffer_auto_connect(s->req);
1865 buffer_auto_close(s->req);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001866 buffer_flush(s->req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001867
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001868 /* We'll let data flow between the producer (if still connected)
1869 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001870 */
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001871 if (!(s->req->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02001872 buffer_forward(s->req, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001873 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001874
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001875 /* check if it is wise to enable kernel splicing to forward request data */
1876 if (!(s->req->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
1877 s->req->to_forward &&
1878 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001879 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001880 (pipes_used < global.maxpipes) &&
1881 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1882 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
1883 (s->req->flags & BF_STREAMER_FAST)))) {
1884 s->req->flags |= BF_KERN_SPLICING;
1885 }
1886
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001887 /* reflect what the L7 analysers have seen last */
1888 rqf_last = s->req->flags;
1889
1890 /*
1891 * Now forward all shutdown requests between both sides of the buffer
1892 */
1893
Willy Tarreau520d95e2009-09-19 21:04:57 +02001894 /* first, let's check if the request buffer needs to shutdown(write), which may
1895 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001896 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001897 */
Willy Tarreau82eeaf22009-12-29 12:09:05 +01001898 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
Willy Tarreaue4599762010-03-21 23:25:09 +01001899 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001900 buffer_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001901
1902 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001903 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 +02001904 s->req->cons->sock.shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001905
1906 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001907 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
1908 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001909 buffer_shutr_now(s->req);
1910
1911 /* shutdown(read) pending */
1912 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
Willy Tarreau060781f2012-05-07 16:50:03 +02001913 s->req->prod->sock.shutr(s->req->prod);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001914
Willy Tarreau520d95e2009-09-19 21:04:57 +02001915 /* it's possible that an upper layer has requested a connection setup or abort.
1916 * There are 2 situations where we decide to establish a new connection :
1917 * - there are data scheduled for emission in the buffer
1918 * - the BF_AUTO_CONNECT flag is set (active connection)
1919 */
1920 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreaue4599762010-03-21 23:25:09 +01001921 if (!(s->req->flags & BF_SHUTW)) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001922 if ((s->req->flags & (BF_AUTO_CONNECT|BF_OUT_EMPTY)) != BF_OUT_EMPTY) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001923 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001924 * switch to the connected state, otherwise we perform a connection
1925 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001926 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001927 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001928 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau26d8c592012-05-07 18:12:14 +02001929 if (unlikely(s->req->cons->target.type == TARG_TYPE_APPLET &&
1930 !(s->req->cons->proto && s->req->cons->proto->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001931 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001932 s->rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
1933 s->req->wex = TICK_ETERNITY;
1934 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001935 }
Willy Tarreau73201222009-08-16 18:27:24 +02001936 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001937 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001938 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001939 buffer_shutw_now(s->req); /* fix buffer flags upon abort */
1940 buffer_shutr_now(s->rep);
1941 }
Willy Tarreau92795622009-03-06 12:51:23 +01001942 }
1943
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001944
1945 /* we may have a pending connection request, or a connection waiting
1946 * for completion.
1947 */
1948 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1949 do {
1950 /* nb: step 1 might switch from QUE to ASS, but we first want
1951 * to give a chance to step 2 to perform a redirect if needed.
1952 */
1953 if (s->si[1].state != SI_ST_REQ)
1954 sess_update_stream_int(s, &s->si[1]);
1955 if (s->si[1].state == SI_ST_REQ)
1956 sess_prepare_conn_req(s, &s->si[1]);
1957
Willy Tarreau827aee92011-03-10 16:55:02 +01001958 srv = target_srv(&s->target);
1959 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001960 perform_http_redirect(s, &s->si[1]);
1961 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001962
1963 /* Now we can add the server name to a header (if requested) */
1964 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001965 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001966 (s->be->mode == PR_MODE_HTTP) &&
1967 (s->be->server_id_hdr_name != NULL)) {
1968 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001969 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001970 }
1971
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001972 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001973 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001974 goto resync_stream_interface;
1975
Willy Tarreau815a9b22010-07-27 17:15:12 +02001976 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001977 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001978 goto resync_request;
1979
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001980 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001981
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001982 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001983 * everything. We configure the buffer to forward indefinitely.
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001984 * Note that we're checking BF_SHUTR_NOW as an indication of a possible
1985 * recent call to buffer_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001986 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001987 if (!s->rep->analysers &&
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001988 !(s->rep->flags & (BF_HIJACK|BF_SHUTW|BF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001989 (s->rep->prod->state >= SI_ST_EST) &&
1990 (s->rep->to_forward != BUF_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001991 /* This buffer is freewheeling, there's no analyser nor hijacker
1992 * attached to it. If any data are left in, we'll permit them to
1993 * move.
1994 */
Willy Tarreau90deb182010-01-07 00:20:41 +01001995 buffer_auto_read(s->rep);
Willy Tarreau520d95e2009-09-19 21:04:57 +02001996 buffer_auto_close(s->rep);
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001997 buffer_flush(s->rep);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001998
1999 /* We'll let data flow between the producer (if still connected)
2000 * to the consumer.
2001 */
2002 if (!(s->rep->flags & (BF_SHUTR|BF_SHUTW_NOW)))
Willy Tarreau31971e52009-09-20 12:07:52 +02002003 buffer_forward(s->rep, BUF_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002004 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002005
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002006 /* check if it is wise to enable kernel splicing to forward response data */
2007 if (!(s->rep->flags & (BF_KERN_SPLICING|BF_SHUTR)) &&
2008 s->rep->to_forward &&
2009 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002010 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002011 (pipes_used < global.maxpipes) &&
2012 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2013 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
2014 (s->rep->flags & BF_STREAMER_FAST)))) {
2015 s->rep->flags |= BF_KERN_SPLICING;
2016 }
2017
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002018 /* reflect what the L7 analysers have seen last */
2019 rpf_last = s->rep->flags;
2020
2021 /*
2022 * Now forward all shutdown requests between both sides of the buffer
2023 */
2024
2025 /*
2026 * FIXME: this is probably where we should produce error responses.
2027 */
2028
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002029 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002030 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTR)) ==
2031 (BF_AUTO_CLOSE|BF_SHUTR)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002032 buffer_shutw_now(s->rep);
2033
2034 /* shutdown(write) pending */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02002035 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 +02002036 s->rep->cons->sock.shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002037
2038 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002039 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
2040 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002041 buffer_shutr_now(s->rep);
2042
2043 /* shutdown(read) pending */
2044 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
Willy Tarreau060781f2012-05-07 16:50:03 +02002045 s->rep->prod->sock.shutr(s->rep->prod);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002046
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002047 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002048 goto resync_stream_interface;
2049
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002050 if (s->req->flags != rqf_last)
2051 goto resync_request;
2052
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002053 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002054 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002055
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002056 /* we're interested in getting wakeups again */
2057 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2058 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2059
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002060 /* This is needed only when debugging is enabled, to indicate
2061 * client-side or server-side close. Please note that in the unlikely
2062 * event where both sides would close at once, the sequence is reported
2063 * on the server side first.
2064 */
2065 if (unlikely((global.mode & MODE_DEBUG) &&
2066 (!(global.mode & MODE_QUIET) ||
2067 (global.mode & MODE_VERBOSE)))) {
2068 int len;
2069
2070 if (s->si[1].state == SI_ST_CLO &&
2071 s->si[1].prev_state == SI_ST_EST) {
2072 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2073 s->uniq_id, s->be->id,
2074 (unsigned short)s->si[0].fd,
2075 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002076 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002077 }
2078
2079 if (s->si[0].state == SI_ST_CLO &&
2080 s->si[0].prev_state == SI_ST_EST) {
2081 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2082 s->uniq_id, s->be->id,
2083 (unsigned short)s->si[0].fd,
2084 (unsigned short)s->si[1].fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002085 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002086 }
2087 }
2088
2089 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2090 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2091
2092 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2093 session_process_counters(s);
2094
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002095 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau060781f2012-05-07 16:50:03 +02002096 s->rep->cons->sock.update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002097
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002098 if (s->req->cons->state == SI_ST_EST && s->req->cons->target.type != TARG_TYPE_APPLET)
Willy Tarreau060781f2012-05-07 16:50:03 +02002099 s->req->cons->sock.update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002100
Willy Tarreaua6eebb32010-06-04 11:40:20 +02002101 s->req->flags &= ~(BF_READ_NULL|BF_READ_PARTIAL|BF_WRITE_NULL|BF_WRITE_PARTIAL|BF_READ_ATTACHED);
2102 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 +01002103 s->si[0].prev_state = s->si[0].state;
2104 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002105 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2106 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002107
2108 /* Trick: if a request is being waiting for the server to respond,
2109 * and if we know the server can timeout, we don't want the timeout
2110 * to expire on the client side first, but we're still interested
2111 * in passing data from the client to the server (eg: POST). Thus,
2112 * we can cancel the client's request timeout if the server's
2113 * request timeout is set and the server has not yet sent a response.
2114 */
2115
Willy Tarreau520d95e2009-09-19 21:04:57 +02002116 if ((s->rep->flags & (BF_AUTO_CLOSE|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002117 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
2118 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002119 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002120 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002121
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002122 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002123 * Note that this one may wake the task up again.
2124 */
Willy Tarreau7c0a1512011-03-10 11:17:02 +01002125 if (s->req->cons->target.type == TARG_TYPE_APPLET ||
2126 s->rep->cons->target.type == TARG_TYPE_APPLET) {
2127 if (s->req->cons->target.type == TARG_TYPE_APPLET)
2128 s->req->cons->target.ptr.a->fct(s->req->cons);
2129 if (s->rep->cons->target.type == TARG_TYPE_APPLET)
2130 s->rep->cons->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002131 if (task_in_rq(t)) {
2132 /* If we woke up, we don't want to requeue the
2133 * task to the wait queue, but rather requeue
2134 * it into the runqueue ASAP.
2135 */
2136 t->expire = TICK_ETERNITY;
2137 return t;
2138 }
2139 }
2140
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002141 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2142 tick_first(s->rep->rex, s->rep->wex));
2143 if (s->req->analysers)
2144 t->expire = tick_first(t->expire, s->req->analyse_exp);
2145
2146 if (s->si[0].exp)
2147 t->expire = tick_first(t->expire, s->si[0].exp);
2148
2149 if (s->si[1].exp)
2150 t->expire = tick_first(t->expire, s->si[1].exp);
2151
2152#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002153 fprintf(stderr,
2154 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2155 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2156 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2157 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 +01002158#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002159
2160#ifdef DEBUG_DEV
2161 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002162 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002163 ABORT_NOW();
2164#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002165 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002166 }
2167
2168 s->fe->feconn--;
2169 if (s->flags & SN_BE_ASSIGNED)
2170 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002171 if (!(s->listener->options & LI_O_UNLIMITED))
2172 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002173 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002174 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002175 if (s->listener->state == LI_FULL)
2176 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002177
Willy Tarreau08ceb102011-07-24 22:58:00 +02002178 /* Dequeues all of the listeners waiting for a resource */
2179 if (!LIST_ISEMPTY(&global_listener_queue))
2180 dequeue_all_listeners(&global_listener_queue);
2181
Willy Tarreaub32907b2011-07-25 08:37:44 +02002182 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2183 (!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 +02002184 dequeue_all_listeners(&s->fe->listener_queue);
2185
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186 if (unlikely((global.mode & MODE_DEBUG) &&
2187 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2188 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002189 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002190 s->uniq_id, s->be->id,
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002191 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd);
Willy Tarreau21337822012-04-29 14:11:38 +02002192 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002193 }
2194
2195 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2196 session_process_counters(s);
2197
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002198 if (s->txn.status) {
2199 int n;
2200
2201 n = s->txn.status / 100;
2202 if (n < 1 || n > 5)
2203 n = 0;
2204
2205 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002206 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002207
Willy Tarreau24657792010-02-26 10:30:28 +01002208 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002209 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002210 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002211 }
2212
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002213 /* let's do a final log if we need it */
2214 if (s->logs.logwait &&
2215 !(s->flags & SN_MONITOR) &&
2216 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002217 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002218 }
2219
2220 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002221 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002222 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002223 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002224 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002225}
2226
Willy Tarreau7c669d72008-06-20 15:04:11 +02002227/*
2228 * This function adjusts sess->srv_conn and maintains the previous and new
2229 * server's served session counts. Setting newsrv to NULL is enough to release
2230 * current connection slot. This function also notifies any LB algo which might
2231 * expect to be informed about any change in the number of active sessions on a
2232 * server.
2233 */
2234void sess_change_server(struct session *sess, struct server *newsrv)
2235{
2236 if (sess->srv_conn == newsrv)
2237 return;
2238
2239 if (sess->srv_conn) {
2240 sess->srv_conn->served--;
2241 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2242 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002243 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002244 }
2245
2246 if (newsrv) {
2247 newsrv->served++;
2248 if (newsrv->proxy->lbprm.server_take_conn)
2249 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002250 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002251 }
2252}
2253
Willy Tarreau84455332009-03-15 22:34:05 +01002254/* Handle server-side errors for default protocols. It is called whenever a a
2255 * connection setup is aborted or a request is aborted in queue. It sets the
2256 * session termination flags so that the caller does not have to worry about
2257 * them. It's installed as ->srv_error for the server-side stream_interface.
2258 */
2259void default_srv_error(struct session *s, struct stream_interface *si)
2260{
2261 int err_type = si->err_type;
2262 int err = 0, fin = 0;
2263
2264 if (err_type & SI_ET_QUEUE_ABRT) {
2265 err = SN_ERR_CLICL;
2266 fin = SN_FINST_Q;
2267 }
2268 else if (err_type & SI_ET_CONN_ABRT) {
2269 err = SN_ERR_CLICL;
2270 fin = SN_FINST_C;
2271 }
2272 else if (err_type & SI_ET_QUEUE_TO) {
2273 err = SN_ERR_SRVTO;
2274 fin = SN_FINST_Q;
2275 }
2276 else if (err_type & SI_ET_QUEUE_ERR) {
2277 err = SN_ERR_SRVCL;
2278 fin = SN_FINST_Q;
2279 }
2280 else if (err_type & SI_ET_CONN_TO) {
2281 err = SN_ERR_SRVTO;
2282 fin = SN_FINST_C;
2283 }
2284 else if (err_type & SI_ET_CONN_ERR) {
2285 err = SN_ERR_SRVCL;
2286 fin = SN_FINST_C;
2287 }
2288 else /* SI_ET_CONN_OTHER and others */ {
2289 err = SN_ERR_INTERNAL;
2290 fin = SN_FINST_C;
2291 }
2292
2293 if (!(s->flags & SN_ERR_MASK))
2294 s->flags |= err;
2295 if (!(s->flags & SN_FINST_MASK))
2296 s->flags |= fin;
2297}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002298
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002299/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2300void session_shutdown(struct session *session, int why)
2301{
2302 if (session->req->flags & (BF_SHUTW|BF_SHUTW_NOW))
2303 return;
2304
2305 buffer_shutw_now(session->req);
2306 buffer_shutr_now(session->rep);
2307 session->task->nice = 1024;
2308 if (!(session->flags & SN_ERR_MASK))
2309 session->flags |= why;
2310 task_wakeup(session->task, TASK_WOKEN_OTHER);
2311}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002312
Willy Tarreau8b22a712010-06-18 17:46:06 +02002313/************************************************************************/
2314/* All supported ACL keywords must be declared here. */
2315/************************************************************************/
2316
Willy Tarreaua5e37562011-12-16 17:06:15 +01002317/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002318static int
Willy Tarreau37406352012-04-23 16:16:37 +02002319acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002320{
Willy Tarreau37406352012-04-23 16:16:37 +02002321 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002322 smp->type = SMP_T_UINT;
2323 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002324 if (ts != NULL) {
2325 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2326 if (!ptr)
2327 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002328 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002329 }
2330 return 1;
2331}
2332
Willy Tarreaua5e37562011-12-16 17:06:15 +01002333/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002334 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002335 */
2336static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002337acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002338 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002339{
Willy Tarreau56123282010-08-06 19:06:56 +02002340 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002341 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002342 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002343}
2344
Willy Tarreaua5e37562011-12-16 17:06:15 +01002345/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002346 * backend counters.
2347 */
2348static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002349acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002350 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002351{
Willy Tarreau56123282010-08-06 19:06:56 +02002352 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002353 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002354 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002355}
2356
Willy Tarreaua5e37562011-12-16 17:06:15 +01002357/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002358 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002359 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002360 */
2361static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002362acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002363 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002364{
2365 struct stktable_key *key;
2366
David du Colombier4f92d322011-03-24 11:09:31 +01002367 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002368 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002369 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002370
Willy Tarreau24e32d82012-04-23 23:55:44 +02002371 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002372 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002373}
2374
2375/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002376 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002377 */
2378static int
Willy Tarreau37406352012-04-23 16:16:37 +02002379acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002380{
Willy Tarreau37406352012-04-23 16:16:37 +02002381 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002382 smp->type = SMP_T_UINT;
2383 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002384 if (ts != NULL) {
2385 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2386 if (!ptr)
2387 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002388 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002389 }
2390 return 1;
2391}
2392
2393/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002394 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002395 */
2396static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002397acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002398 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002399{
Willy Tarreau56123282010-08-06 19:06:56 +02002400 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002401 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002402 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002403}
2404
2405/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002406 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002407 */
2408static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002409acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002410 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002411{
Willy Tarreau56123282010-08-06 19:06:56 +02002412 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002413 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002414 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002415}
2416
2417/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002418 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002419 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002420 */
2421static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002422acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002423 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002424{
2425 struct stktable_key *key;
2426
David du Colombier4f92d322011-03-24 11:09:31 +01002427 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002428 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002429 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002430
Willy Tarreau24e32d82012-04-23 23:55:44 +02002431 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002432 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002433}
2434
Willy Tarreauf73cd112011-08-13 01:45:16 +02002435/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002436 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002437 */
2438static int
Willy Tarreau37406352012-04-23 16:16:37 +02002439acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002440{
Willy Tarreau37406352012-04-23 16:16:37 +02002441 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002442 smp->type = SMP_T_UINT;
2443 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002444 if (ts != NULL) {
2445 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2446 if (!ptr)
2447 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002448 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002449 stktable_data_cast(ptr, gpc0) = 0;
2450 }
2451 return 1;
2452}
2453
2454/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002455 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002456 */
2457static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002458acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002459 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002460{
2461 if (!l4->stkctr1_entry)
2462 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002463 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002464}
2465
2466/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002467 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002468 */
2469static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002470acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002471 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002472{
2473 if (!l4->stkctr2_entry)
2474 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002475 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002476}
2477
2478/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002479 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002480 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002481 */
2482static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002483acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002484 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002485{
2486 struct stktable_key *key;
2487
2488 key = tcp_src_to_stktable_key(l4);
2489 if (!key)
2490 return 0;
2491
Willy Tarreau24e32d82012-04-23 23:55:44 +02002492 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002493 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002494}
2495
Willy Tarreaua5e37562011-12-16 17:06:15 +01002496/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002497static int
Willy Tarreau37406352012-04-23 16:16:37 +02002498acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002499{
Willy Tarreau37406352012-04-23 16:16:37 +02002500 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002501 smp->type = SMP_T_UINT;
2502 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002503 if (ts != NULL) {
2504 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2505 if (!ptr)
2506 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002507 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002508 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002509 return 1;
2510}
2511
Willy Tarreaua5e37562011-12-16 17:06:15 +01002512/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002513static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002514acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002515 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002516{
Willy Tarreau56123282010-08-06 19:06:56 +02002517 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002518 return 0;
2519
Willy Tarreau37406352012-04-23 16:16:37 +02002520 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002521}
2522
Willy Tarreaua5e37562011-12-16 17:06:15 +01002523/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002524static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002525acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002526 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002527{
Willy Tarreau56123282010-08-06 19:06:56 +02002528 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002529 return 0;
2530
Willy Tarreau37406352012-04-23 16:16:37 +02002531 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002532}
2533
Willy Tarreaua5e37562011-12-16 17:06:15 +01002534/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002535 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002536 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002537 */
2538static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002539acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002540 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002541{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002542 struct stktable_key *key;
2543
David du Colombier4f92d322011-03-24 11:09:31 +01002544 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002545 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002546 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002547
Willy Tarreau24e32d82012-04-23 23:55:44 +02002548 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002549 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002550}
2551
Willy Tarreaua5e37562011-12-16 17:06:15 +01002552/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002553static int
Willy Tarreau37406352012-04-23 16:16:37 +02002554acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002555{
Willy Tarreau37406352012-04-23 16:16:37 +02002556 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002557 smp->type = SMP_T_UINT;
2558 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002559 if (ts != NULL) {
2560 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2561 if (!ptr)
2562 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002563 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002564 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2565 }
2566 return 1;
2567}
2568
Willy Tarreaua5e37562011-12-16 17:06:15 +01002569/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002570 * the configured period.
2571 */
2572static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002573acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002574 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002575{
Willy Tarreau56123282010-08-06 19:06:56 +02002576 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002577 return 0;
2578
Willy Tarreau37406352012-04-23 16:16:37 +02002579 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002580}
2581
Willy Tarreaua5e37562011-12-16 17:06:15 +01002582/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002583 * the configured period.
2584 */
2585static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002586acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002587 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002588{
Willy Tarreau56123282010-08-06 19:06:56 +02002589 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002590 return 0;
2591
Willy Tarreau37406352012-04-23 16:16:37 +02002592 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002593}
2594
Willy Tarreaua5e37562011-12-16 17:06:15 +01002595/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002596 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002597 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002598 */
2599static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002600acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002601 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002602{
2603 struct stktable_key *key;
2604
David du Colombier4f92d322011-03-24 11:09:31 +01002605 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002606 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002607 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002608
Willy Tarreau24e32d82012-04-23 23:55:44 +02002609 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002610 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002611}
2612
Willy Tarreaua5e37562011-12-16 17:06:15 +01002613/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002614 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002615 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002616 */
2617static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002618acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002619 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002620{
2621 struct stksess *ts;
2622 struct stktable_key *key;
2623 void *ptr;
2624
David du Colombier4f92d322011-03-24 11:09:31 +01002625 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002626 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002627 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002628
Willy Tarreau24e32d82012-04-23 23:55:44 +02002629 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002630
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002631 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2632 /* entry does not exist and could not be created */
2633 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002634
2635 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2636 if (!ptr)
2637 return 0; /* parameter not stored in this table */
2638
Willy Tarreauf853c462012-04-23 18:53:56 +02002639 smp->type = SMP_T_UINT;
2640 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002641 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002642 return 1;
2643}
2644
Willy Tarreaua5e37562011-12-16 17:06:15 +01002645/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002646static int
Willy Tarreau37406352012-04-23 16:16:37 +02002647acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002648{
Willy Tarreau37406352012-04-23 16:16:37 +02002649 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002650 smp->type = SMP_T_UINT;
2651 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002652
2653 if (ts != NULL) {
2654 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2655 if (!ptr)
2656 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002657 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002658 }
2659 return 1;
2660}
2661
Willy Tarreaua5e37562011-12-16 17:06:15 +01002662/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002663static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002664acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002665 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002666{
Willy Tarreau56123282010-08-06 19:06:56 +02002667 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002668 return 0;
2669
Willy Tarreau37406352012-04-23 16:16:37 +02002670 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002671}
2672
Willy Tarreaua5e37562011-12-16 17:06:15 +01002673/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002674static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002675acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002676 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002677{
Willy Tarreau56123282010-08-06 19:06:56 +02002678 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002679 return 0;
2680
Willy Tarreau37406352012-04-23 16:16:37 +02002681 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002682}
2683
Willy Tarreaua5e37562011-12-16 17:06:15 +01002684/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002685 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002686 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002687 */
2688static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002689acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002690 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002691{
Willy Tarreau38285c12010-06-18 16:35:43 +02002692 struct stktable_key *key;
2693
David du Colombier4f92d322011-03-24 11:09:31 +01002694 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002695 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002696 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002697
Willy Tarreau24e32d82012-04-23 23:55:44 +02002698 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002699 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002700}
2701
Willy Tarreaua5e37562011-12-16 17:06:15 +01002702/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002703static int
Willy Tarreau37406352012-04-23 16:16:37 +02002704acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002705{
Willy Tarreau37406352012-04-23 16:16:37 +02002706 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002707 smp->type = SMP_T_UINT;
2708 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002709 if (ts != NULL) {
2710 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2711 if (!ptr)
2712 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002713 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002714 }
2715 return 1;
2716}
2717
Willy Tarreaua5e37562011-12-16 17:06:15 +01002718/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002719static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002720acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002721 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002722{
Willy Tarreau56123282010-08-06 19:06:56 +02002723 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002724 return 0;
2725
Willy Tarreau37406352012-04-23 16:16:37 +02002726 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002727}
2728
Willy Tarreaua5e37562011-12-16 17:06:15 +01002729/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002730static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002731acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002732 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002733{
Willy Tarreau56123282010-08-06 19:06:56 +02002734 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002735 return 0;
2736
Willy Tarreau37406352012-04-23 16:16:37 +02002737 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002738}
2739
Willy Tarreaua5e37562011-12-16 17:06:15 +01002740/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002741 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002742 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002743 */
2744static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002745acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002746 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002747{
2748 struct stktable_key *key;
2749
David du Colombier4f92d322011-03-24 11:09:31 +01002750 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002751 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002752 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002753
Willy Tarreau24e32d82012-04-23 23:55:44 +02002754 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002755 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002756}
2757
Willy Tarreaua5e37562011-12-16 17:06:15 +01002758/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002759static int
Willy Tarreau37406352012-04-23 16:16:37 +02002760acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002761{
Willy Tarreau37406352012-04-23 16:16:37 +02002762 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002763 smp->type = SMP_T_UINT;
2764 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002765 if (ts != NULL) {
2766 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2767 if (!ptr)
2768 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002769 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002770 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2771 }
2772 return 1;
2773}
2774
Willy Tarreaua5e37562011-12-16 17:06:15 +01002775/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002776 * the configured period.
2777 */
2778static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002779acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002780 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002781{
Willy Tarreau56123282010-08-06 19:06:56 +02002782 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002783 return 0;
2784
Willy Tarreau37406352012-04-23 16:16:37 +02002785 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002786}
2787
Willy Tarreaua5e37562011-12-16 17:06:15 +01002788/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002789 * the configured period.
2790 */
2791static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002792acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002793 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002794{
Willy Tarreau56123282010-08-06 19:06:56 +02002795 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002796 return 0;
2797
Willy Tarreau37406352012-04-23 16:16:37 +02002798 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002799}
2800
Willy Tarreaua5e37562011-12-16 17:06:15 +01002801/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002802 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002803 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002804 */
2805static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002806acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002807 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002808{
2809 struct stktable_key *key;
2810
David du Colombier4f92d322011-03-24 11:09:31 +01002811 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002812 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002813 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002814
Willy Tarreau24e32d82012-04-23 23:55:44 +02002815 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002816 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002817}
2818
Willy Tarreaua5e37562011-12-16 17:06:15 +01002819/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002820static int
Willy Tarreau37406352012-04-23 16:16:37 +02002821acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002822{
Willy Tarreau37406352012-04-23 16:16:37 +02002823 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002824 smp->type = SMP_T_UINT;
2825 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002826 if (ts != NULL) {
2827 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2828 if (!ptr)
2829 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002830 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002831 }
2832 return 1;
2833}
2834
Willy Tarreaua5e37562011-12-16 17:06:15 +01002835/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002836static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002837acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002838 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002839{
Willy Tarreau56123282010-08-06 19:06:56 +02002840 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002841 return 0;
2842
Willy Tarreau37406352012-04-23 16:16:37 +02002843 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002844}
2845
Willy Tarreaua5e37562011-12-16 17:06:15 +01002846/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002847static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002848acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002849 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002850{
Willy Tarreau56123282010-08-06 19:06:56 +02002851 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002852 return 0;
2853
Willy Tarreau37406352012-04-23 16:16:37 +02002854 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002855}
2856
Willy Tarreaua5e37562011-12-16 17:06:15 +01002857/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002858 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002859 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002860 */
2861static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002862acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002863 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002864{
2865 struct stktable_key *key;
2866
David du Colombier4f92d322011-03-24 11:09:31 +01002867 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002868 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002869 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002870
Willy Tarreau24e32d82012-04-23 23:55:44 +02002871 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002872 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002873}
2874
Willy Tarreaua5e37562011-12-16 17:06:15 +01002875/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002876static int
Willy Tarreau37406352012-04-23 16:16:37 +02002877acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002878{
Willy Tarreau37406352012-04-23 16:16:37 +02002879 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002880 smp->type = SMP_T_UINT;
2881 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002882 if (ts != NULL) {
2883 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2884 if (!ptr)
2885 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002886 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002887 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2888 }
2889 return 1;
2890}
2891
Willy Tarreaua5e37562011-12-16 17:06:15 +01002892/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002893 * the configured period.
2894 */
2895static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002896acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002897 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002898{
Willy Tarreau56123282010-08-06 19:06:56 +02002899 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002900 return 0;
2901
Willy Tarreau37406352012-04-23 16:16:37 +02002902 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002903}
2904
Willy Tarreaua5e37562011-12-16 17:06:15 +01002905/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002906 * the configured period.
2907 */
2908static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002909acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002910 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002911{
Willy Tarreau56123282010-08-06 19:06:56 +02002912 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002913 return 0;
2914
Willy Tarreau37406352012-04-23 16:16:37 +02002915 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002916}
2917
Willy Tarreaua5e37562011-12-16 17:06:15 +01002918/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002919 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002920 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002921 */
2922static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002923acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002924 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002925{
2926 struct stktable_key *key;
2927
David du Colombier4f92d322011-03-24 11:09:31 +01002928 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002929 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002930 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002931
Willy Tarreau24e32d82012-04-23 23:55:44 +02002932 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002933 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002934}
2935
Willy Tarreaua5e37562011-12-16 17:06:15 +01002936/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002937static int
Willy Tarreau37406352012-04-23 16:16:37 +02002938acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002939{
Willy Tarreau37406352012-04-23 16:16:37 +02002940 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002941 smp->type = SMP_T_UINT;
2942 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002943 if (ts != NULL) {
2944 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2945 if (!ptr)
2946 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002947 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002948 }
2949 return 1;
2950}
2951
Willy Tarreaua5e37562011-12-16 17:06:15 +01002952/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002953static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002954acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002955 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002956{
Willy Tarreau56123282010-08-06 19:06:56 +02002957 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002958 return 0;
2959
Willy Tarreau37406352012-04-23 16:16:37 +02002960 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002961}
2962
Willy Tarreaua5e37562011-12-16 17:06:15 +01002963/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002964static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002965acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002966 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002967{
Willy Tarreau56123282010-08-06 19:06:56 +02002968 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002969 return 0;
2970
Willy Tarreau37406352012-04-23 16:16:37 +02002971 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002972}
2973
Willy Tarreaua5e37562011-12-16 17:06:15 +01002974/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002975 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002976 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002977 */
2978static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002979acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002980 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002981{
2982 struct stktable_key *key;
2983
David du Colombier4f92d322011-03-24 11:09:31 +01002984 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002985 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002986 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002987
Willy Tarreau24e32d82012-04-23 23:55:44 +02002988 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002989 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002990}
2991
Willy Tarreaua5e37562011-12-16 17:06:15 +01002992/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002993static int
Willy Tarreau37406352012-04-23 16:16:37 +02002994acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002995{
Willy Tarreau37406352012-04-23 16:16:37 +02002996 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002997 smp->type = SMP_T_UINT;
2998 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002999 if (ts != NULL) {
3000 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3001 if (!ptr)
3002 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003003 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003004 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3005 }
3006 return 1;
3007}
3008
Willy Tarreaua5e37562011-12-16 17:06:15 +01003009/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003010 * the configured period.
3011 */
3012static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003013acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003014 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003015{
Willy Tarreau56123282010-08-06 19:06:56 +02003016 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003017 return 0;
3018
Willy Tarreau37406352012-04-23 16:16:37 +02003019 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003020}
3021
Willy Tarreaua5e37562011-12-16 17:06:15 +01003022/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003023 * the configured period.
3024 */
3025static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003026acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003027 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003028{
Willy Tarreau56123282010-08-06 19:06:56 +02003029 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003030 return 0;
3031
Willy Tarreau37406352012-04-23 16:16:37 +02003032 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003033}
3034
Willy Tarreaua5e37562011-12-16 17:06:15 +01003035/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003036 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003037 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003038 */
3039static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003040acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003041 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003042{
3043 struct stktable_key *key;
3044
David du Colombier4f92d322011-03-24 11:09:31 +01003045 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003046 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003047 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003048
Willy Tarreau24e32d82012-04-23 23:55:44 +02003049 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003050 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003051}
3052
Willy Tarreaua5e37562011-12-16 17:06:15 +01003053/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003054static int
Willy Tarreau37406352012-04-23 16:16:37 +02003055acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003056{
Willy Tarreau37406352012-04-23 16:16:37 +02003057 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003058 smp->type = SMP_T_UINT;
3059 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003060
3061 if (ts != NULL) {
3062 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3063 if (!ptr)
3064 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003065 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003066 }
3067 return 1;
3068}
3069
Willy Tarreaua5e37562011-12-16 17:06:15 +01003070/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003071 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003072 */
3073static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003074acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003075 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003076{
Willy Tarreau56123282010-08-06 19:06:56 +02003077 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003078 return 0;
3079
Willy Tarreau37406352012-04-23 16:16:37 +02003080 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003081}
3082
Willy Tarreaua5e37562011-12-16 17:06:15 +01003083/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003084 * session's tracked BE counters.
3085 */
3086static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003087acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003088 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003089{
Willy Tarreau56123282010-08-06 19:06:56 +02003090 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003091 return 0;
3092
Willy Tarreau37406352012-04-23 16:16:37 +02003093 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003094}
3095
Willy Tarreaua5e37562011-12-16 17:06:15 +01003096/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003097 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003098 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003099 */
3100static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003101acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003102 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003103{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003104 struct stktable_key *key;
3105
David du Colombier4f92d322011-03-24 11:09:31 +01003106 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003107 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003108 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003109
Willy Tarreau24e32d82012-04-23 23:55:44 +02003110 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003111 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003112}
3113
Willy Tarreaua5e37562011-12-16 17:06:15 +01003114/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003115 * configured period.
3116 */
3117static int
Willy Tarreau37406352012-04-23 16:16:37 +02003118acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003119{
Willy Tarreau37406352012-04-23 16:16:37 +02003120 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003121 smp->type = SMP_T_UINT;
3122 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003123 if (ts != NULL) {
3124 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3125 if (!ptr)
3126 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003127 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003128 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3129 }
3130 return 1;
3131}
3132
Willy Tarreaua5e37562011-12-16 17:06:15 +01003133/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003134 * counters over the configured period.
3135 */
3136static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003137acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003138 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003139{
Willy Tarreau56123282010-08-06 19:06:56 +02003140 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003141 return 0;
3142
Willy Tarreau37406352012-04-23 16:16:37 +02003143 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003144}
3145
Willy Tarreaua5e37562011-12-16 17:06:15 +01003146/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003147 * counters over the configured period.
3148 */
3149static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003150acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003151 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003152{
Willy Tarreau56123282010-08-06 19:06:56 +02003153 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003154 return 0;
3155
Willy Tarreau37406352012-04-23 16:16:37 +02003156 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003157}
3158
Willy Tarreaua5e37562011-12-16 17:06:15 +01003159/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003160 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003161 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003162 */
3163static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003164acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003165 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003166{
3167 struct stktable_key *key;
3168
David du Colombier4f92d322011-03-24 11:09:31 +01003169 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003170 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003171 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003172
Willy Tarreau24e32d82012-04-23 23:55:44 +02003173 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003174 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003175}
3176
Willy Tarreaua5e37562011-12-16 17:06:15 +01003177/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003178static int
Willy Tarreau37406352012-04-23 16:16:37 +02003179acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003180{
Willy Tarreau37406352012-04-23 16:16:37 +02003181 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003182 smp->type = SMP_T_UINT;
3183 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003184
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003185 if (ts != NULL) {
3186 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003187 if (!ptr)
3188 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003189 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003190 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003191 return 1;
3192}
3193
Willy Tarreaua5e37562011-12-16 17:06:15 +01003194/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003195 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003196 */
3197static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003198acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003199 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003200{
Willy Tarreau56123282010-08-06 19:06:56 +02003201 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003202 return 0;
3203
Willy Tarreau37406352012-04-23 16:16:37 +02003204 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003205}
3206
Willy Tarreaua5e37562011-12-16 17:06:15 +01003207/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003208 * tracked BE counters.
3209 */
3210static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003211acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003212 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003213{
Willy Tarreau56123282010-08-06 19:06:56 +02003214 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003215 return 0;
3216
Willy Tarreau37406352012-04-23 16:16:37 +02003217 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003218}
3219
Willy Tarreaua5e37562011-12-16 17:06:15 +01003220/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003221 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003222 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003223 */
3224static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003225acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003226 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003227{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003228 struct stktable_key *key;
3229
David du Colombier4f92d322011-03-24 11:09:31 +01003230 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003231 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003232 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003233
Willy Tarreau24e32d82012-04-23 23:55:44 +02003234 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003235 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003236}
3237
Willy Tarreaua5e37562011-12-16 17:06:15 +01003238/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003239 * configured period.
3240 */
3241static int
Willy Tarreau37406352012-04-23 16:16:37 +02003242acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003243{
Willy Tarreau37406352012-04-23 16:16:37 +02003244 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003245 smp->type = SMP_T_UINT;
3246 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003247 if (ts != NULL) {
3248 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3249 if (!ptr)
3250 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003251 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003252 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3253 }
3254 return 1;
3255}
3256
Willy Tarreaua5e37562011-12-16 17:06:15 +01003257/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003258 * over the configured period.
3259 */
3260static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003261acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003262 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003263{
Willy Tarreau56123282010-08-06 19:06:56 +02003264 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003265 return 0;
3266
Willy Tarreau37406352012-04-23 16:16:37 +02003267 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003268}
3269
Willy Tarreaua5e37562011-12-16 17:06:15 +01003270/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003271 * over the configured period.
3272 */
3273static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003274acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003275 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003276{
Willy Tarreau56123282010-08-06 19:06:56 +02003277 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003278 return 0;
3279
Willy Tarreau37406352012-04-23 16:16:37 +02003280 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003281}
3282
Willy Tarreaua5e37562011-12-16 17:06:15 +01003283/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003284 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003285 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003286 */
3287static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003288acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003289 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003290{
3291 struct stktable_key *key;
3292
David du Colombier4f92d322011-03-24 11:09:31 +01003293 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003294 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003295 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003296
Willy Tarreau24e32d82012-04-23 23:55:44 +02003297 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003298 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003299}
3300
Willy Tarreau34db1082012-04-19 17:16:54 +02003301/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003302 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003303 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003304static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003305acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003306 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003307{
Willy Tarreau37406352012-04-23 16:16:37 +02003308 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003309 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003310 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003311 return 1;
3312}
3313
Willy Tarreau34db1082012-04-19 17:16:54 +02003314/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003315 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003316 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003317static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003318acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003319 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003320{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003321 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003322 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003323 smp->type = SMP_T_UINT;
3324 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003325 return 1;
3326}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003327
Willy Tarreau61612d42012-04-19 18:42:05 +02003328/* Note: must not be declared <const> as its list will be overwritten.
3329 * Please take care of keeping this list alphabetically sorted.
3330 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003331static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003332 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3333 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3334 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3335 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3336 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3337 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3338 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3339 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3340 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3341 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3342 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3343 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3344 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3345 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3346 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3347 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3348 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3349 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3350 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3351 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3352 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3353 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3354 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3355 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3356 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3357 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3358 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3359 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3360 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3361 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3362 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3363 { "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 +02003364 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3365 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3366 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3367 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3368 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3369 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3370 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3371 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3372 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3373 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3374 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3375 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3376 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3377 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3378 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3379 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3380 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3381 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3382 { "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 +02003383 { NULL, NULL, NULL, NULL },
3384}};
3385
3386
Willy Tarreau56123282010-08-06 19:06:56 +02003387/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003388 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3389 * <prm> struct is fed with the table name if any. If unspecified, the caller
3390 * will assume that the current proxy's table is used.
3391 */
3392int parse_track_counters(char **args, int *arg,
3393 int section_type, struct proxy *curpx,
3394 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003395 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003396{
Willy Tarreau12785782012-04-27 21:37:17 +02003397 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003398
Willy Tarreau56123282010-08-06 19:06:56 +02003399 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003400 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003401 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003402 */
3403 while (args[*arg]) {
3404 if (strcmp(args[*arg], "src") == 0) {
3405 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003406 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003407 }
3408 else if (strcmp(args[*arg], "table") == 0) {
3409 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003410 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003411 return -1;
3412 }
3413 /* we copy the table name for now, it will be resolved later */
3414 prm->table.n = strdup(args[*arg + 1]);
3415 (*arg)++;
3416 }
3417 else {
3418 /* unhandled keywords are handled by the caller */
3419 break;
3420 }
3421 (*arg)++;
3422 }
3423
Willy Tarreau12785782012-04-27 21:37:17 +02003424 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003425 memprintf(err,
3426 "tracking key not specified (found %s, only 'src' is supported)",
3427 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003428 return -1;
3429 }
3430
3431 return 0;
3432}
3433
Willy Tarreau8b22a712010-06-18 17:46:06 +02003434__attribute__((constructor))
3435static void __session_init(void)
3436{
3437 acl_register_keywords(&acl_kws);
3438}
3439
Willy Tarreaubaaee002006-06-26 02:48:02 +02003440/*
3441 * Local variables:
3442 * c-indent-level: 8
3443 * c-basic-offset: 8
3444 * End:
3445 */