blob: 07824191f454e3c9ad686c8e37b4a9b225d1e55c [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 Tarreauc7e42382012-08-24 19:22:53 +020027#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010028#include <proto/checks.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020029#include <proto/connection.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020030#include <proto/dumpstats.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020031#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020032#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010033#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020034#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010036#include <proto/pipe.h>
Willy Tarreau62793712011-07-24 19:23:38 +020037#include <proto/protocols.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010038#include <proto/proto_http.h>
39#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020040#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010042#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020043#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010044#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010045#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010046#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020048struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010049struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Willy Tarreau81f9aa32010-06-01 17:45:26 +020051/* This function is called from the protocol layer accept() in order to instanciate
52 * a new session on behalf of a given listener and frontend. It returns a positive
Willy Tarreauabe8ea52010-11-11 10:56:04 +010053 * value upon success, 0 if the connection can be ignored, or a negative value upon
54 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020055 */
56int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
57{
58 struct proxy *p = l->frontend;
59 struct session *s;
60 struct http_txn *txn;
61 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010062 int ret;
63
64
65 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020066
Willy Tarreaufffe1322010-11-11 09:48:16 +010067 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020068 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020069
70 /* minimum session initialization required for monitor mode below */
71 s->flags = 0;
72 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020073 s->stkctr1_entry = NULL;
74 s->stkctr2_entry = NULL;
75 s->stkctr1_table = NULL;
76 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020077
Willy Tarreauabe8ea52010-11-11 10:56:04 +010078 if (unlikely((t = task_new()) == NULL))
79 goto out_free_session;
80
Willy Tarreau81f9aa32010-06-01 17:45:26 +020081 /* OK, we're keeping the session, so let's properly initialize the session */
82 LIST_ADDQ(&sessions, &s->list);
83 LIST_INIT(&s->back_refs);
84
Willy Tarreaubd833142012-05-08 15:51:44 +020085 s->unique_id = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020086 s->term_trace = 0;
Willy Tarreau96596ae2012-06-08 22:57:36 +020087 s->si[0].conn.t.sock.fd = cfd;
88 s->si[0].conn.ctrl = l->proto;
Willy Tarreaufd31e532012-07-23 18:24:25 +020089 s->si[0].conn.flags = CO_FL_NONE | CO_FL_NOTIFY_SI; /* we're on a stream_interface */
Willy Tarreau986a9d22012-08-30 21:11:38 +020090 s->si[0].conn.addr.from = *addr;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020091 s->logs.accept_date = date; /* user-visible date for logging */
92 s->logs.tv_accept = now; /* corrected date for internal use */
93 s->uniq_id = totalconn;
Willy Tarreau24dcaf32010-06-05 10:49:41 +020094 p->feconn++; /* beconn will be increased once assigned */
95
Willy Tarreaub36b4242010-06-04 20:59:39 +020096 proxy_inc_fe_conn_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020097
98 t->process = l->handler;
99 t->context = s;
100 t->nice = l->nice;
101 t->expire = TICK_ETERNITY;
102
103 s->task = t;
104 s->listener = l;
105
106 /* Note: initially, the session's backend points to the frontend.
107 * This changes later when switching rules are executed or
108 * when the default backend is assigned.
109 */
110 s->be = s->fe = p;
111 s->req = s->rep = NULL; /* will be allocated later */
112
Willy Tarreaufe7f1ea2012-05-20 19:22:25 +0200113 /* if this session comes from a known monitoring system, we want to ignore
114 * it as soon as possible, which means closing it immediately for TCP, but
115 * cleanly.
116 */
117 if (unlikely((l->options & LI_O_CHK_MONNET) &&
118 addr->ss_family == AF_INET &&
119 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr)) {
120 s->flags |= SN_MONITOR;
121 s->logs.logwait = 0;
122 }
123
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200124 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
125 * to abort right here as soon as possible, we check the rules before
126 * even initializing the stream interfaces.
127 */
128 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200129 /* let's do a no-linger now to close with a single RST. */
130 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100131 ret = 0; /* successful termination */
132 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200133 }
134
Willy Tarreaub36b4242010-06-04 20:59:39 +0200135 /* This session was accepted, count it now */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100136 if (p->feconn > p->fe_counters.conn_max)
137 p->fe_counters.conn_max = p->feconn;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100138
Willy Tarreaub36b4242010-06-04 20:59:39 +0200139 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200140 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200141 void *ptr;
142
Willy Tarreau56123282010-08-06 19:06:56 +0200143 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200144 if (ptr)
145 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200146
Willy Tarreau56123282010-08-06 19:06:56 +0200147 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200148 if (ptr)
149 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200150 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200151 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200152
Willy Tarreau56123282010-08-06 19:06:56 +0200153 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200154 void *ptr;
155
Willy Tarreau56123282010-08-06 19:06:56 +0200156 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200157 if (ptr)
158 stktable_data_cast(ptr, sess_cnt)++;
159
Willy Tarreau56123282010-08-06 19:06:56 +0200160 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200161 if (ptr)
162 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200163 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200164 }
165
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200166 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200167 s->si[0].owner = t;
168 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
169 s->si[0].err_type = SI_ET_NONE;
170 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200171 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200172 s->si[0].send_proxy_ofs = 0;
Willy Tarreau3cefd522012-08-30 15:49:18 +0200173 set_target_client(&s->si[0].conn.target, l);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200174 s->si[0].exp = TICK_ETERNITY;
175 s->si[0].flags = SI_FL_NONE;
176
177 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
178 s->si[0].flags |= SI_FL_INDEP_STR;
179
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200180 /* add the various callbacks */
Willy Tarreauc5788912012-08-24 18:12:41 +0200181 si_prepare_conn(&s->si[0], l->proto, l->data);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200182
Willy Tarreau96199b12012-08-24 00:46:52 +0200183 if ((s->si[0].conn.data->rcv_pipe && s->si[0].conn.data->snd_pipe) &&
184 (addr->ss_family == AF_INET || addr->ss_family == AF_INET6))
185 s->si[0].flags = SI_FL_CAP_SPLTCP; /* TCP/TCPv6 splicing possible */
186
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200187 /* pre-initialize the other side's stream interface to an INIT state. The
188 * callbacks will be initialized before attempting to connect.
189 */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200190 s->si[1].conn.t.sock.fd = -1; /* just to help with debugging */
Willy Tarreau505e34a2012-07-06 10:17:53 +0200191 s->si[1].conn.flags = CO_FL_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200192 s->si[1].owner = t;
193 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
194 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200195 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200196 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200197 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200198 s->si[1].send_proxy_ofs = 0;
Willy Tarreau3cefd522012-08-30 15:49:18 +0200199 clear_target(&s->si[1].conn.target);
Willy Tarreauc5788912012-08-24 18:12:41 +0200200 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200201 s->si[1].exp = TICK_ETERNITY;
202 s->si[1].flags = SI_FL_NONE;
203
204 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
205 s->si[1].flags |= SI_FL_INDEP_STR;
206
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200207 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100208 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200209 s->pend_pos = NULL;
210
211 /* init store persistence */
212 s->store_count = 0;
213
214 /* Adjust some socket options */
Willy Tarreaufffe1322010-11-11 09:48:16 +0100215 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200216 goto out_free_task;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200217
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200218 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200219 goto out_free_task; /* no memory */
220
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200221 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200222 goto out_free_req; /* no memory */
223
224 /* initialize the request buffer */
Willy Tarreau572bf902012-07-02 17:01:20 +0200225 s->req->buf.size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200226 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200227 s->req->prod = &s->si[0];
228 s->req->cons = &s->si[1];
229 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200230 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200231
232 /* activate default analysers enabled for this listener */
233 s->req->analysers = l->analysers;
234
235 s->req->wto = TICK_ETERNITY;
236 s->req->rto = TICK_ETERNITY;
237 s->req->rex = TICK_ETERNITY;
238 s->req->wex = TICK_ETERNITY;
239 s->req->analyse_exp = TICK_ETERNITY;
240
241 /* initialize response buffer */
Willy Tarreau572bf902012-07-02 17:01:20 +0200242 s->rep->buf.size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200243 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200244 s->rep->prod = &s->si[1];
245 s->rep->cons = &s->si[0];
246 s->si[0].ob = s->si[1].ib = s->rep;
247 s->rep->analysers = 0;
248
Willy Tarreau96e31212011-05-30 18:10:30 +0200249 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200250 s->req->flags |= CF_NEVER_WAIT;
251 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200252 }
253
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200254 s->rep->rto = TICK_ETERNITY;
255 s->rep->wto = TICK_ETERNITY;
256 s->rep->rex = TICK_ETERNITY;
257 s->rep->wex = TICK_ETERNITY;
258 s->rep->analyse_exp = TICK_ETERNITY;
259
Willy Tarreau62f791e2012-03-09 11:32:30 +0100260 txn = &s->txn;
261 /* Those variables will be checked and freed if non-NULL in
262 * session.c:session_free(). It is important that they are
263 * properly initialized.
264 */
265 txn->sessid = NULL;
266 txn->srv_cookie = NULL;
267 txn->cli_cookie = NULL;
268 txn->uri = NULL;
269 txn->req.cap = NULL;
270 txn->rsp.cap = NULL;
271 txn->hdr_idx.v = NULL;
272 txn->hdr_idx.size = txn->hdr_idx.used = 0;
273 txn->req.flags = 0;
274 txn->rsp.flags = 0;
275 /* the HTTP messages need to know what buffer they're associated with */
276 txn->req.buf = s->req;
277 txn->rsp.buf = s->rep;
278
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200279 /* finish initialization of the accepted file descriptor */
280 fd_insert(cfd);
Willy Tarreau80184712012-07-06 14:54:49 +0200281 fdtab[cfd].owner = &s->si[0].conn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200282 fdtab[cfd].flags = 0;
Willy Tarreaud2274c62012-07-06 14:29:45 +0200283 fdtab[cfd].iocb = conn_fd_handler;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200284 conn_data_want_recv(&s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200285
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100286 if (p->accept && (ret = p->accept(s)) <= 0) {
287 /* Either we had an unrecoverable error (<0) or work is
288 * finished (=0, eg: monitoring), in both situations,
289 * we can release everything and close.
290 */
291 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200292 }
293
294 /* it is important not to call the wakeup function directly but to
295 * pass through task_wakeup(), because this one knows how to apply
296 * priorities to tasks.
297 */
298 task_wakeup(t, TASK_WOKEN_INIT);
299 return 1;
300
301 /* Error unrolling */
302 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200303 pool_free2(pool2_channel, s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200304 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200305 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200306 out_free_task:
Willy Tarreau24dcaf32010-06-05 10:49:41 +0200307 p->feconn--;
Willy Tarreau56123282010-08-06 19:06:56 +0200308 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200309 session_store_counters(s);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200310 task_free(t);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200311 LIST_DEL(&s->list);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100312 out_free_session:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200313 pool_free2(pool2_session, s);
314 out_close:
Willy Tarreau2b154922011-07-22 17:36:27 +0200315 if (ret < 0 && s->fe->mode == PR_MODE_HTTP) {
316 /* critical error, no more memory, try to emit a 500 response */
317 struct chunk *err_msg = error_message(s, HTTP_ERR_500);
318 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
319 }
320
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200321 if (fdtab[cfd].owner)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100322 fd_delete(cfd);
323 else
324 close(cfd);
325 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200326}
327
Willy Tarreaubaaee002006-06-26 02:48:02 +0200328/*
329 * frees the context associated to a session. It must have been removed first.
330 */
Simon Hormandec5be42011-06-08 09:19:07 +0900331static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200332{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100333 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200334 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100335 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200336 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100337
Willy Tarreaubaaee002006-06-26 02:48:02 +0200338 if (s->pend_pos)
339 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100340
Willy Tarreau827aee92011-03-10 16:55:02 +0100341 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100342 if (s->flags & SN_CURR_SESS) {
343 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100344 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100345 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100346 if (may_dequeue_tasks(target_srv(&s->target), s->be))
347 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100348 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100349
Willy Tarreau7c669d72008-06-20 15:04:11 +0200350 if (unlikely(s->srv_conn)) {
351 /* the session still has a reserved slot on a server, but
352 * it should normally be only the same as the one above,
353 * so this should not happen in fact.
354 */
355 sess_change_server(s, NULL);
356 }
357
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100358 if (s->req->pipe)
359 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100360
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100361 if (s->rep->pipe)
362 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100363
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200364 pool_free2(pool2_channel, s->req);
365 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200366
Willy Tarreau46023632010-01-07 22:51:47 +0100367 http_end_txn(s);
368
Willy Tarreaua4cda672010-06-06 18:28:49 +0200369 for (i = 0; i < s->store_count; i++) {
370 if (!s->store[i].ts)
371 continue;
372 stksess_free(s->store[i].table, s->store[i].ts);
373 s->store[i].ts = NULL;
374 }
375
Willy Tarreau34eb6712011-10-24 18:15:04 +0200376 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200377 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100378 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
379 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200380 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100381
Willy Tarreau56123282010-08-06 19:06:56 +0200382 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200383 session_store_counters(s);
384
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100385 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100386 /* we have to unlink all watchers. We must not relink them if
387 * this session was the last one in the list.
388 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100389 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100390 LIST_INIT(&bref->users);
391 if (s->list.n != &sessions)
392 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100393 bref->ref = s->list.n;
394 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100395 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200396 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200397
398 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200399 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200400 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200401 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200402 pool_flush2(pool2_requri);
403 pool_flush2(pool2_capture);
404 pool_flush2(pool2_session);
405 pool_flush2(fe->req_cap_pool);
406 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200407 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200408}
409
410
411/* perform minimal intializations, report 0 in case of error, 1 if OK. */
412int init_session()
413{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100414 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200415 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
416 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417}
418
Willy Tarreau30e71012007-11-26 20:15:35 +0100419void session_process_counters(struct session *s)
420{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100421 unsigned long long bytes;
422
Willy Tarreau30e71012007-11-26 20:15:35 +0100423 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100424 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100425 s->logs.bytes_in = s->req->total;
426 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100427 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100428
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100429 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100430
Willy Tarreau827aee92011-03-10 16:55:02 +0100431 if (target_srv(&s->target))
432 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200433
434 if (s->listener->counters)
435 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200436
Willy Tarreau56123282010-08-06 19:06:56 +0200437 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200438 void *ptr;
439
Willy Tarreau56123282010-08-06 19:06:56 +0200440 ptr = stktable_data_ptr(s->stkctr2_table,
441 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200442 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200443 if (ptr)
444 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200445
Willy Tarreau56123282010-08-06 19:06:56 +0200446 ptr = stktable_data_ptr(s->stkctr2_table,
447 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200448 STKTABLE_DT_BYTES_IN_RATE);
449 if (ptr)
450 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200451 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200452 }
453
Willy Tarreau56123282010-08-06 19:06:56 +0200454 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200455 void *ptr;
456
Willy Tarreau56123282010-08-06 19:06:56 +0200457 ptr = stktable_data_ptr(s->stkctr1_table,
458 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200459 STKTABLE_DT_BYTES_IN_CNT);
460 if (ptr)
461 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
462
Willy Tarreau56123282010-08-06 19:06:56 +0200463 ptr = stktable_data_ptr(s->stkctr1_table,
464 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200465 STKTABLE_DT_BYTES_IN_RATE);
466 if (ptr)
467 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200468 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200469 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100470 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100471 }
472
Willy Tarreau30e71012007-11-26 20:15:35 +0100473 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100474 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100475 s->logs.bytes_out = s->rep->total;
476 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100477 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100478
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100479 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100480
Willy Tarreau827aee92011-03-10 16:55:02 +0100481 if (target_srv(&s->target))
482 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200483
484 if (s->listener->counters)
485 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200486
Willy Tarreau56123282010-08-06 19:06:56 +0200487 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200488 void *ptr;
489
Willy Tarreau56123282010-08-06 19:06:56 +0200490 ptr = stktable_data_ptr(s->stkctr2_table,
491 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200492 STKTABLE_DT_BYTES_OUT_CNT);
493 if (ptr)
494 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
495
Willy Tarreau56123282010-08-06 19:06:56 +0200496 ptr = stktable_data_ptr(s->stkctr2_table,
497 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200498 STKTABLE_DT_BYTES_OUT_RATE);
499 if (ptr)
500 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200501 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200502 }
503
Willy Tarreau56123282010-08-06 19:06:56 +0200504 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200505 void *ptr;
506
Willy Tarreau56123282010-08-06 19:06:56 +0200507 ptr = stktable_data_ptr(s->stkctr1_table,
508 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200509 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200510 if (ptr)
511 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200512
Willy Tarreau56123282010-08-06 19:06:56 +0200513 ptr = stktable_data_ptr(s->stkctr1_table,
514 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200515 STKTABLE_DT_BYTES_OUT_RATE);
516 if (ptr)
517 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200518 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200519 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100520 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100521 }
522}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200523
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100524/* This function is called with (si->state == SI_ST_CON) meaning that a
525 * connection was attempted and that the file descriptor is already allocated.
526 * We must check for establishment, error and abort. Possible output states
527 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
528 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
529 * otherwise 1.
530 */
Simon Hormandec5be42011-06-08 09:19:07 +0900531static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100532{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200533 struct channel *req = si->ob;
534 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100535
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100536 /* If we got an error, or if nothing happened and the connection timed
537 * out, we must give up. The CER state handler will take care of retry
538 * attempts and error reports.
539 */
540 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100541 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100542 si->state = SI_ST_CER;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200543 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200544 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100545
Willy Tarreau8b117082012-08-06 15:06:49 +0200546 conn_data_close(&si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200547 if (si->release)
548 si->release(si);
549
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100550 if (si->err_type)
551 return 0;
552
Willy Tarreau827aee92011-03-10 16:55:02 +0100553 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100554 if (si->flags & SI_FL_ERR)
555 si->err_type = SI_ET_CONN_ERR;
556 else
557 si->err_type = SI_ET_CONN_TO;
558 return 0;
559 }
560
561 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200562 if (unlikely((rep->flags & CF_SHUTW) ||
563 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
564 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100565 s->be->options & PR_O_ABRT_CLOSE)))) {
566 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200567 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100568 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100569 si->err_loc = target_srv(&s->target);
Willy Tarreaudc340a92009-06-28 23:10:19 +0200570 si->flags &= ~SI_FL_CAP_SPLICE;
Willy Tarreau84455332009-03-15 22:34:05 +0100571 if (s->srv_error)
572 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100573 return 1;
574 }
575
576 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200577 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100578 return 1;
579
580 /* OK, this means that a connection succeeded. The caller will be
581 * responsible for handling the transition from CON to EST.
582 */
583 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100584 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100585 si->state = SI_ST_EST;
586 si->err_type = SI_ET_NONE;
587 si->err_loc = NULL;
588 return 1;
589}
590
591/* This function is called with (si->state == SI_ST_CER) meaning that a
592 * previous connection attempt has failed and that the file descriptor
593 * has already been released. Possible causes include asynchronous error
594 * notification and time out. Possible output states are SI_ST_CLO when
595 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
596 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
597 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
598 * marked as in error state. It returns 0.
599 */
Simon Hormandec5be42011-06-08 09:19:07 +0900600static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100601{
602 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100603 if (target_srv(&s->target)) {
604 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100605
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100606 if (s->flags & SN_CURR_SESS) {
607 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100608 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100609 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100610 }
611
612 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200613 si->conn_retries--;
614 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100615 if (!si->err_type) {
616 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100617 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100618 }
619
Willy Tarreau827aee92011-03-10 16:55:02 +0100620 if (target_srv(&s->target))
621 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100622 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100623 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100624 if (may_dequeue_tasks(target_srv(&s->target), s->be))
625 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100626
627 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200628 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200629 si->ob->flags |= CF_WRITE_ERROR;
630 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100631
632 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100633 if (s->srv_error)
634 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100635 return 0;
636 }
637
638 /* If the "redispatch" option is set on the backend, we are allowed to
639 * retry on another server for the last retry. In order to achieve this,
640 * we must mark the session unassigned, and eventually clear the DIRECT
641 * bit to ignore any persistence cookie. We won't count a retry nor a
642 * redispatch yet, because this will depend on what server is selected.
643 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100644 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100645 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100646 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100647 if (may_dequeue_tasks(target_srv(&s->target), s->be))
648 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100649
650 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100651 si->state = SI_ST_REQ;
652 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100653 if (target_srv(&s->target))
654 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100655 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100656 si->state = SI_ST_ASS;
657 }
658
659 if (si->flags & SI_FL_ERR) {
660 /* The error was an asynchronous connection error, and we will
661 * likely have to retry connecting to the same server, most
662 * likely leading to the same result. To avoid this, we wait
663 * one second before retrying.
664 */
665
666 if (!si->err_type)
667 si->err_type = SI_ET_CONN_ERR;
668
669 si->state = SI_ST_TAR;
670 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
671 return 0;
672 }
673 return 0;
674}
675
676/*
677 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200678 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200679 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100680 */
Simon Hormandec5be42011-06-08 09:19:07 +0900681static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100682{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200683 struct channel *req = si->ob;
684 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100685
Willy Tarreau827aee92011-03-10 16:55:02 +0100686 if (target_srv(&s->target))
687 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100688
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100689 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100690 /* if the user wants to log as soon as possible, without counting
691 * bytes from the server, then this is the right moment. */
692 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
693 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100694 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100695 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100696 }
697 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100698 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
699 /* reset hdr_idx which was already initialized by the request.
700 * right now, the http parser does it.
701 * hdr_idx_init(&s->txn.hdr_idx);
702 */
703 }
704
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200705 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200706 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200707 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200708 /* real connections have timeouts */
709 req->wto = s->be->timeout.server;
710 rep->rto = s->be->timeout.server;
711 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100712 req->wex = TICK_ETERNITY;
713}
714
715/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
716 * Other input states are simply ignored.
717 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
718 * Flags must have previously been updated for timeouts and other conditions.
719 */
Simon Hormandec5be42011-06-08 09:19:07 +0900720static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100721{
Willy Tarreau827aee92011-03-10 16:55:02 +0100722 struct server *srv = target_srv(&s->target);
723
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100724 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 +0100725 now_ms, __FUNCTION__,
726 s,
727 s->req, s->rep,
728 s->req->rex, s->rep->wex,
729 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100730 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 +0100731
732 if (si->state == SI_ST_ASS) {
733 /* Server assigned to connection request, we have to try to connect now */
734 int conn_err;
735
736 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100737 srv = target_srv(&s->target);
738
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100739 if (conn_err == SN_ERR_NONE) {
740 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100741 if (srv)
742 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100743 return;
744 }
745
746 /* We have received a synchronous error. We might have to
747 * abort, retry immediately or redispatch.
748 */
749 if (conn_err == SN_ERR_INTERNAL) {
750 if (!si->err_type) {
751 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100752 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100753 }
754
Willy Tarreau827aee92011-03-10 16:55:02 +0100755 if (srv)
756 srv_inc_sess_ctr(srv);
757 if (srv)
758 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100759 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100760
761 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100762 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100763 if (may_dequeue_tasks(srv, s->be))
764 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100765
766 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200767 si_shutr(si);
768 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200769 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100770
771 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
772
773 /* no session was ever accounted for this server */
774 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100775 if (s->srv_error)
776 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100777 return;
778 }
779
780 /* We are facing a retryable error, but we don't want to run a
781 * turn-around now, as the problem is likely a source port
782 * allocation problem, so we want to retry now.
783 */
784 si->state = SI_ST_CER;
785 si->flags &= ~SI_FL_ERR;
786 sess_update_st_cer(s, si);
787 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
788 return;
789 }
790 else if (si->state == SI_ST_QUE) {
791 /* connection request was queued, check for any update */
792 if (!s->pend_pos) {
793 /* The connection is not in the queue anymore. Either
794 * we have a server connection slot available and we
795 * go directly to the assigned state, or we need to
796 * load-balance first and go to the INI state.
797 */
798 si->exp = TICK_ETERNITY;
799 if (unlikely(!(s->flags & SN_ASSIGNED)))
800 si->state = SI_ST_REQ;
801 else {
802 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
803 si->state = SI_ST_ASS;
804 }
805 return;
806 }
807
808 /* Connection request still in queue... */
809 if (si->flags & SI_FL_EXP) {
810 /* ... and timeout expired */
811 si->exp = TICK_ETERNITY;
812 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100813 if (srv)
814 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100815 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200816 si_shutr(si);
817 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200818 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100819 if (!si->err_type)
820 si->err_type = SI_ET_QUEUE_TO;
821 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100822 if (s->srv_error)
823 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100824 return;
825 }
826
827 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200828 if ((si->ob->flags & (CF_READ_ERROR)) ||
829 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200830 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100831 /* give up */
832 si->exp = TICK_ETERNITY;
833 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200834 si_shutr(si);
835 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100836 si->err_type |= SI_ET_QUEUE_ABRT;
837 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100838 if (s->srv_error)
839 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100840 return;
841 }
842
843 /* Nothing changed */
844 return;
845 }
846 else if (si->state == SI_ST_TAR) {
847 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200848 if ((si->ob->flags & (CF_READ_ERROR)) ||
849 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200850 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100851 /* give up */
852 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200853 si_shutr(si);
854 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100855 si->err_type |= SI_ET_CONN_ABRT;
856 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100857 if (s->srv_error)
858 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100859 return;
860 }
861
862 if (!(si->flags & SI_FL_EXP))
863 return; /* still in turn-around */
864
865 si->exp = TICK_ETERNITY;
866
867 /* we keep trying on the same server as long as the session is
868 * marked "assigned".
869 * FIXME: Should we force a redispatch attempt when the server is down ?
870 */
871 if (s->flags & SN_ASSIGNED)
872 si->state = SI_ST_ASS;
873 else
874 si->state = SI_ST_REQ;
875 return;
876 }
877}
878
Simon Hormandec5be42011-06-08 09:19:07 +0900879/* Set correct session termination flags in case no analyser has done it. It
880 * also counts a failed request if the server state has not reached the request
881 * stage.
882 */
883static void sess_set_term_flags(struct session *s)
884{
885 if (!(s->flags & SN_FINST_MASK)) {
886 if (s->si[1].state < SI_ST_REQ) {
887
888 s->fe->fe_counters.failed_req++;
889 if (s->listener->counters)
890 s->listener->counters->failed_req++;
891
892 s->flags |= SN_FINST_R;
893 }
894 else if (s->si[1].state == SI_ST_QUE)
895 s->flags |= SN_FINST_Q;
896 else if (s->si[1].state < SI_ST_EST)
897 s->flags |= SN_FINST_C;
898 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
899 s->flags |= SN_FINST_D;
900 else
901 s->flags |= SN_FINST_L;
902 }
903}
904
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100905/* This function initiates a server connection request on a stream interface
906 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
907 * indicating that a server has been assigned. It may also return SI_ST_QUE,
908 * or SI_ST_CLO upon error.
909 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100910static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
911{
912 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 +0100913 now_ms, __FUNCTION__,
914 s,
915 s->req, s->rep,
916 s->req->rex, s->rep->wex,
917 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100918 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 +0100919
920 if (si->state != SI_ST_REQ)
921 return;
922
923 /* Try to assign a server */
924 if (srv_redispatch_connect(s) != 0) {
925 /* We did not get a server. Either we queued the
926 * connection request, or we encountered an error.
927 */
928 if (si->state == SI_ST_QUE)
929 return;
930
931 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200932 si_shutr(si);
933 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200934 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100935 if (!si->err_type)
936 si->err_type = SI_ET_CONN_OTHER;
937 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100938 if (s->srv_error)
939 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100940 return;
941 }
942
943 /* The server is assigned */
944 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
945 si->state = SI_ST_ASS;
946}
947
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200948/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +0100949 * if appropriate. The default_backend rule is also considered, then the
950 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200951 * It returns 1 if the processing can continue on next analysers, or zero if it
952 * either needs more data or wants to immediately abort the request.
953 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200954static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200955{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200956 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +0100957
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200958 req->analysers &= ~an_bit;
959 req->analyse_exp = TICK_ETERNITY;
960
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100961 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 +0200962 now_ms, __FUNCTION__,
963 s,
964 req,
965 req->rex, req->wex,
966 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100967 req->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200968 req->analysers);
969
970 /* now check whether we have some switching rules for this request */
971 if (!(s->flags & SN_BE_ASSIGNED)) {
972 struct switching_rule *rule;
973
974 list_for_each_entry(rule, &s->fe->switching_rules, list) {
975 int ret;
976
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200977 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 +0200978 ret = acl_pass(ret);
979 if (rule->cond->pol == ACL_COND_UNLESS)
980 ret = !ret;
981
982 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200983 if (!session_set_backend(s, rule->be.backend))
984 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200985 break;
986 }
987 }
988
989 /* To ensure correct connection accounting on the backend, we
990 * have to assign one if it was not set (eg: a listen). This
991 * measure also takes care of correctly setting the default
992 * backend if any.
993 */
994 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200995 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
996 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200997 }
998
Willy Tarreaufb356202010-08-03 14:02:05 +0200999 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1000 if (s->fe == s->be) {
1001 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001002 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001003 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001004
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001005 /* 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 +01001006 * persistence rule, and report that in the session.
1007 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001008 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001009 int ret = 1;
1010
1011 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001012 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 +01001013 ret = acl_pass(ret);
1014 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1015 ret = !ret;
1016 }
1017
1018 if (ret) {
1019 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001020 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1021 s->flags |= SN_FORCE_PRST;
1022 } else {
1023 s->flags |= SN_IGNORE_PRST;
1024 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001025 break;
1026 }
1027 }
1028
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001029 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001030
1031 sw_failed:
1032 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001033 channel_abort(s->req);
1034 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001035
1036 if (!(s->flags & SN_ERR_MASK))
1037 s->flags |= SN_ERR_RESOURCE;
1038 if (!(s->flags & SN_FINST_MASK))
1039 s->flags |= SN_FINST_R;
1040
1041 s->txn.status = 500;
1042 s->req->analysers = 0;
1043 s->req->analyse_exp = TICK_ETERNITY;
1044 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001045}
1046
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001047/* This stream analyser works on a request. It applies all use-server rules on
1048 * it then returns 1. The data must already be present in the buffer otherwise
1049 * they won't match. It always returns 1.
1050 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001051static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001052{
1053 struct proxy *px = s->be;
1054 struct server_rule *rule;
1055
1056 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1057 now_ms, __FUNCTION__,
1058 s,
1059 req,
1060 req->rex, req->wex,
1061 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001062 req->i + req->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001063 req->analysers);
1064
1065 if (!(s->flags & SN_ASSIGNED)) {
1066 list_for_each_entry(rule, &px->server_rules, list) {
1067 int ret;
1068
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001069 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 +02001070 ret = acl_pass(ret);
1071 if (rule->cond->pol == ACL_COND_UNLESS)
1072 ret = !ret;
1073
1074 if (ret) {
1075 struct server *srv = rule->srv.ptr;
1076
1077 if ((srv->state & SRV_RUNNING) ||
1078 (px->options & PR_O_PERSIST) ||
1079 (s->flags & SN_FORCE_PRST)) {
1080 s->flags |= SN_DIRECT | SN_ASSIGNED;
1081 set_target_server(&s->target, srv);
1082 break;
1083 }
1084 /* if the server is not UP, let's go on with next rules
1085 * just in case another one is suited.
1086 */
1087 }
1088 }
1089 }
1090
1091 req->analysers &= ~an_bit;
1092 req->analyse_exp = TICK_ETERNITY;
1093 return 1;
1094}
1095
Emeric Brun1d33b292010-01-04 15:47:17 +01001096/* This stream analyser works on a request. It applies all sticking rules on
1097 * it then returns 1. The data must already be present in the buffer otherwise
1098 * they won't match. It always returns 1.
1099 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001100static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001101{
1102 struct proxy *px = s->be;
1103 struct sticking_rule *rule;
1104
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001105 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 +01001106 now_ms, __FUNCTION__,
1107 s,
1108 req,
1109 req->rex, req->wex,
1110 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001111 req->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001112 req->analysers);
1113
1114 list_for_each_entry(rule, &px->sticking_rules, list) {
1115 int ret = 1 ;
1116 int i;
1117
1118 for (i = 0; i < s->store_count; i++) {
1119 if (rule->table.t == s->store[i].table)
1120 break;
1121 }
1122
1123 if (i != s->store_count)
1124 continue;
1125
1126 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001127 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001128 ret = acl_pass(ret);
1129 if (rule->cond->pol == ACL_COND_UNLESS)
1130 ret = !ret;
1131 }
1132
1133 if (ret) {
1134 struct stktable_key *key;
1135
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001136 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 +01001137 if (!key)
1138 continue;
1139
1140 if (rule->flags & STK_IS_MATCH) {
1141 struct stksess *ts;
1142
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001143 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001144 if (!(s->flags & SN_ASSIGNED)) {
1145 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001146 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001147
1148 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001149 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1150 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001151 if (node) {
1152 struct server *srv;
1153
1154 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001155 if ((srv->state & SRV_RUNNING) ||
1156 (px->options & PR_O_PERSIST) ||
1157 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001158 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001159 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001160 }
1161 }
1162 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001163 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001164 }
1165 }
1166 if (rule->flags & STK_IS_STORE) {
1167 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1168 struct stksess *ts;
1169
1170 ts = stksess_new(rule->table.t, key);
1171 if (ts) {
1172 s->store[s->store_count].table = rule->table.t;
1173 s->store[s->store_count++].ts = ts;
1174 }
1175 }
1176 }
1177 }
1178 }
1179
1180 req->analysers &= ~an_bit;
1181 req->analyse_exp = TICK_ETERNITY;
1182 return 1;
1183}
1184
1185/* This stream analyser works on a response. It applies all store rules on it
1186 * then returns 1. The data must already be present in the buffer otherwise
1187 * they won't match. It always returns 1.
1188 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001189static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001190{
1191 struct proxy *px = s->be;
1192 struct sticking_rule *rule;
1193 int i;
1194
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001195 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 +01001196 now_ms, __FUNCTION__,
1197 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001198 rep,
1199 rep->rex, rep->wex,
1200 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001201 rep->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001202 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001203
1204 list_for_each_entry(rule, &px->storersp_rules, list) {
1205 int ret = 1 ;
1206 int storereqidx = -1;
1207
1208 for (i = 0; i < s->store_count; i++) {
1209 if (rule->table.t == s->store[i].table) {
1210 if (!(s->store[i].flags))
1211 storereqidx = i;
1212 break;
1213 }
1214 }
1215
1216 if ((i != s->store_count) && (storereqidx == -1))
1217 continue;
1218
1219 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001220 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001221 ret = acl_pass(ret);
1222 if (rule->cond->pol == ACL_COND_UNLESS)
1223 ret = !ret;
1224 }
1225
1226 if (ret) {
1227 struct stktable_key *key;
1228
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001229 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 +01001230 if (!key)
1231 continue;
1232
1233 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001234 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001235 s->store[storereqidx].flags = 1;
1236 }
1237 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1238 struct stksess *ts;
1239
1240 ts = stksess_new(rule->table.t, key);
1241 if (ts) {
1242 s->store[s->store_count].table = rule->table.t;
1243 s->store[s->store_count].flags = 1;
1244 s->store[s->store_count++].ts = ts;
1245 }
1246 }
1247 }
1248 }
1249
1250 /* process store request and store response */
1251 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001252 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001253 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001254
Simon Hormanfa461682011-06-25 09:39:49 +09001255 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1256 stksess_free(s->store[i].table, s->store[i].ts);
1257 s->store[i].ts = NULL;
1258 continue;
1259 }
1260
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001261 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1262 if (ts) {
1263 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001264 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001265 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001266 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001267 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001268 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001269
1270 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001271 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001272 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001273 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001274 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001275
1276 rep->analysers &= ~an_bit;
1277 rep->analyse_exp = TICK_ETERNITY;
1278 return 1;
1279}
1280
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001281/* This macro is very specific to the function below. See the comments in
1282 * process_session() below to understand the logic and the tests.
1283 */
1284#define UPDATE_ANALYSERS(real, list, back, flag) { \
1285 list = (((list) & ~(flag)) | ~(back)) & (real); \
1286 back = real; \
1287 if (!(list)) \
1288 break; \
1289 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1290 continue; \
1291}
1292
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001293/* Processes the client, server, request and response jobs of a session task,
1294 * then puts it back to the wait queue in a clean state, or cleans up its
1295 * resources if it must be deleted. Returns in <next> the date the task wants
1296 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1297 * nothing too many times, the request and response buffers flags are monitored
1298 * and each function is called only if at least another function has changed at
1299 * least one flag it is interested in.
1300 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001301struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001302{
Willy Tarreau827aee92011-03-10 16:55:02 +01001303 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001304 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001305 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001306 unsigned int rq_prod_last, rq_cons_last;
1307 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001308 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001309
1310 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1311 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1312
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001313 /* this data may be no longer valid, clear it */
1314 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1315
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001316 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001317 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001318
1319 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001320 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1321 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001322
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001323 /* we don't want the stream interface functions to recursively wake us up */
1324 if (s->req->prod->owner == t)
1325 s->req->prod->flags |= SI_FL_DONT_WAKE;
1326 if (s->req->cons->owner == t)
1327 s->req->cons->flags |= SI_FL_DONT_WAKE;
1328
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001329 /* 1a: Check for low level timeouts if needed. We just set a flag on
1330 * stream interfaces when their timeouts have expired.
1331 */
1332 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1333 stream_int_check_timeouts(&s->si[0]);
1334 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001335
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001336 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001337 * for future reads or writes. Note: this will also concern upper layers
1338 * but we do not touch any other flag. We must be careful and correctly
1339 * detect state changes when calling them.
1340 */
1341
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001342 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001343
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001344 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001345 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001346 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001347 }
1348
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001349 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001350 if (s->req->prod->flags & SI_FL_NOHALF)
1351 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001352 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001353 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001354
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001355 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001356
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001357 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001358 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001359 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001360 }
1361
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001362 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001363 if (s->rep->prod->flags & SI_FL_NOHALF)
1364 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001365 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001366 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001367 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001368
1369 /* 1b: check for low-level errors reported at the stream interface.
1370 * First we check if it's a retryable error (in which case we don't
1371 * want to tell the buffer). Otherwise we report the error one level
1372 * upper by setting flags into the buffers. Note that the side towards
1373 * the client cannot have connect (hence retryable) errors. Also, the
1374 * connection setup code must be able to deal with any type of abort.
1375 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001376 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001377 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1378 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001379 si_shutr(&s->si[0]);
1380 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001381 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001382 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001383 s->be->be_counters.cli_aborts++;
1384 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001385 if (srv)
1386 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001387 if (!(s->flags & SN_ERR_MASK))
1388 s->flags |= SN_ERR_CLICL;
1389 if (!(s->flags & SN_FINST_MASK))
1390 s->flags |= SN_FINST_D;
1391 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001392 }
1393 }
1394
1395 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1396 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001397 si_shutr(&s->si[1]);
1398 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001399 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001400 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001401 if (srv)
1402 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001403 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001404 s->be->be_counters.srv_aborts++;
1405 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001406 if (srv)
1407 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001408 if (!(s->flags & SN_ERR_MASK))
1409 s->flags |= SN_ERR_SRVCL;
1410 if (!(s->flags & SN_FINST_MASK))
1411 s->flags |= SN_FINST_D;
1412 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001413 }
1414 /* note: maybe we should process connection errors here ? */
1415 }
1416
1417 if (s->si[1].state == SI_ST_CON) {
1418 /* we were trying to establish a connection on the server side,
1419 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1420 */
1421 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1422 sess_update_st_cer(s, &s->si[1]);
1423 else if (s->si[1].state == SI_ST_EST)
1424 sess_establish(s, &s->si[1]);
1425
1426 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1427 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1428 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1429 */
1430 }
1431
Willy Tarreau815a9b22010-07-27 17:15:12 +02001432 rq_prod_last = s->si[0].state;
1433 rq_cons_last = s->si[1].state;
1434 rp_cons_last = s->si[0].state;
1435 rp_prod_last = s->si[1].state;
1436
1437 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001438 /* Check for connection closure */
1439
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001440 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001441 "[%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 +01001442 now_ms, __FUNCTION__, __LINE__,
1443 t,
1444 s, s->flags,
1445 s->req, s->rep,
1446 s->req->rex, s->rep->wex,
1447 s->req->flags, s->rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001448 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 +01001449 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001450 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001451
1452 /* nothing special to be done on client side */
1453 if (unlikely(s->req->prod->state == SI_ST_DIS))
1454 s->req->prod->state = SI_ST_CLO;
1455
1456 /* When a server-side connection is released, we have to count it and
1457 * check for pending connections on this server.
1458 */
1459 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1460 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001461 srv = target_srv(&s->target);
1462 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001463 if (s->flags & SN_CURR_SESS) {
1464 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001465 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001466 }
1467 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001468 if (may_dequeue_tasks(srv, s->be))
1469 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001470 }
1471 }
1472
1473 /*
1474 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1475 * at this point.
1476 */
1477
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001478 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001479 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001480 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1481 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001482 s->si[0].state != rq_prod_last ||
1483 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001484 unsigned int flags = s->req->flags;
1485
1486 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001487 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001488 unsigned int ana_list;
1489 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001490
Willy Tarreau90deb182010-01-07 00:20:41 +01001491 /* it's up to the analysers to stop new connections,
1492 * disable reading or closing. Note: if an analyser
1493 * disables any of these bits, it is responsible for
1494 * enabling them again when it disables itself, so
1495 * that other analysers are called in similar conditions.
1496 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001497 channel_auto_read(s->req);
1498 channel_auto_connect(s->req);
1499 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001500
1501 /* We will call all analysers for which a bit is set in
1502 * s->req->analysers, following the bit order from LSB
1503 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001504 * the list when not needed. Any analyser may return 0
1505 * to break out of the loop, either because of missing
1506 * data to take a decision, or because it decides to
1507 * kill the session. We loop at least once through each
1508 * analyser, and we may loop again if other analysers
1509 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001510 *
1511 * We build a list of analysers to run. We evaluate all
1512 * of these analysers in the order of the lower bit to
1513 * the higher bit. This ordering is very important.
1514 * An analyser will often add/remove other analysers,
1515 * including itself. Any changes to itself have no effect
1516 * on the loop. If it removes any other analysers, we
1517 * want those analysers not to be called anymore during
1518 * this loop. If it adds an analyser that is located
1519 * after itself, we want it to be scheduled for being
1520 * processed during the loop. If it adds an analyser
1521 * which is located before it, we want it to switch to
1522 * it immediately, even if it has already been called
1523 * once but removed since.
1524 *
1525 * In order to achieve this, we compare the analyser
1526 * list after the call with a copy of it before the
1527 * call. The work list is fed with analyser bits that
1528 * appeared during the call. Then we compare previous
1529 * work list with the new one, and check the bits that
1530 * appeared. If the lowest of these bits is lower than
1531 * the current bit, it means we have enabled a previous
1532 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001533 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001534
1535 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001536 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001537 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001538
Willy Tarreau3041b9f2010-10-15 23:25:20 +02001539 if (ana_list & AN_REQ_DECODE_PROXY) {
1540 if (!frontend_decode_proxy_request(s, s->req, AN_REQ_DECODE_PROXY))
1541 break;
1542 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_DECODE_PROXY);
1543 }
1544
Willy Tarreaufb356202010-08-03 14:02:05 +02001545 if (ana_list & AN_REQ_INSPECT_FE) {
1546 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001547 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001548 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001549 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001550
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001551 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001552 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001553 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001554 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001555 }
1556
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001557 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001558 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1559 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001560 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001561 }
1562
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001563 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001564 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1565 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001566 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001567 }
1568
Willy Tarreaufb356202010-08-03 14:02:05 +02001569 if (ana_list & AN_REQ_INSPECT_BE) {
1570 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1571 break;
1572 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1573 }
1574
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001575 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001576 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1577 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001578 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001579 }
1580
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001581 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001582 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001583 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001584 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001585 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001586
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001587 if (ana_list & AN_REQ_SRV_RULES) {
1588 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1589 break;
1590 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1591 }
1592
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001593 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001594 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1595 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001596 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001597 }
1598
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001599 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001600 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001601 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001602 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001603 }
Emeric Brun647caf12009-06-30 17:57:00 +02001604
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001605 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001606 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1607 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001608 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001609 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001610
Emeric Brun1d33b292010-01-04 15:47:17 +01001611 if (ana_list & AN_REQ_STICKING_RULES) {
1612 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1613 break;
1614 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1615 }
1616
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001617 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001618 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1619 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001620 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001621 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001622 break;
1623 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001624 }
Willy Tarreau84455332009-03-15 22:34:05 +01001625
Willy Tarreau815a9b22010-07-27 17:15:12 +02001626 rq_prod_last = s->si[0].state;
1627 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001628 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001629 rqf_last = s->req->flags;
1630
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001631 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001632 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001633 }
1634
Willy Tarreau576507f2010-01-07 00:09:04 +01001635 /* we'll monitor the request analysers while parsing the response,
1636 * because some response analysers may indirectly enable new request
1637 * analysers (eg: HTTP keep-alive).
1638 */
1639 req_ana_back = s->req->analysers;
1640
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001641 resync_response:
1642 /* Analyse response */
1643
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001644 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001645 /* In inject mode, we wake up everytime something has
1646 * happened on the write side of the buffer.
1647 */
1648 unsigned int flags = s->rep->flags;
1649
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001650 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001651 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001652 s->rep->hijacker(s, s->rep);
1653 }
1654
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001655 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001656 rpf_last = s->rep->flags;
1657 goto resync_response;
1658 }
1659 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001660 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1661 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001662 s->si[0].state != rp_cons_last ||
1663 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001664 unsigned int flags = s->rep->flags;
1665
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001666 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001667 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1668 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1669 * for some free space in the response buffer, so we might need to call
1670 * it when something changes in the response buffer, but still we pass
1671 * it the request buffer. Note that the SI state might very well still
1672 * be zero due to us returning a flow of redirects!
1673 */
1674 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001675 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001676 }
1677
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001678 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001679 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001680 unsigned int ana_list;
1681 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001682
Willy Tarreau90deb182010-01-07 00:20:41 +01001683 /* it's up to the analysers to stop disable reading or
1684 * closing. Note: if an analyser disables any of these
1685 * bits, it is responsible for enabling them again when
1686 * it disables itself, so that other analysers are called
1687 * in similar conditions.
1688 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001689 channel_auto_read(s->rep);
1690 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001691
1692 /* We will call all analysers for which a bit is set in
1693 * s->rep->analysers, following the bit order from LSB
1694 * to MSB. The analysers must remove themselves from
1695 * the list when not needed. Any analyser may return 0
1696 * to break out of the loop, either because of missing
1697 * data to take a decision, or because it decides to
1698 * kill the session. We loop at least once through each
1699 * analyser, and we may loop again if other analysers
1700 * are added in the middle.
1701 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001702
1703 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001704 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001705 /* Warning! ensure that analysers are always placed in ascending order! */
1706
Emeric Brun97679e72010-09-23 17:56:44 +02001707 if (ana_list & AN_RES_INSPECT) {
1708 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1709 break;
1710 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1711 }
1712
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001713 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001714 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1715 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001716 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001717 }
1718
Emeric Brun1d33b292010-01-04 15:47:17 +01001719 if (ana_list & AN_RES_STORE_RULES) {
1720 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1721 break;
1722 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1723 }
1724
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001725 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001726 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1727 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001728 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001729 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001730
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001731 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001732 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1733 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001734 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001735 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001736 break;
1737 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001738 }
1739
Willy Tarreau815a9b22010-07-27 17:15:12 +02001740 rp_cons_last = s->si[0].state;
1741 rp_prod_last = s->si[1].state;
1742 rpf_last = s->rep->flags;
1743
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001744 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001745 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001746 }
1747
Willy Tarreau576507f2010-01-07 00:09:04 +01001748 /* maybe someone has added some request analysers, so we must check and loop */
1749 if (s->req->analysers & ~req_ana_back)
1750 goto resync_request;
1751
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001752 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001753 goto resync_request;
1754
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001755 /* FIXME: here we should call protocol handlers which rely on
1756 * both buffers.
1757 */
1758
1759
1760 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001761 * Now we propagate unhandled errors to the session. Normally
1762 * we're just in a data phase here since it means we have not
1763 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001764 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001765 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001766 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001767 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001768 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001769 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001770 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001771 s->be->be_counters.cli_aborts++;
1772 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001773 if (srv)
1774 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001775 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001776 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001777 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001778 s->be->be_counters.cli_aborts++;
1779 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001780 if (srv)
1781 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001782 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001783 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001784 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001785 s->be->be_counters.srv_aborts++;
1786 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001787 if (srv)
1788 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001789 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001790 }
1791 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001792 s->be->be_counters.srv_aborts++;
1793 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001794 if (srv)
1795 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001796 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001797 }
Willy Tarreau84455332009-03-15 22:34:05 +01001798 sess_set_term_flags(s);
1799 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001800 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001801 /* Report it if the server got an error or a read timeout expired */
1802 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001803 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001804 s->be->be_counters.srv_aborts++;
1805 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001806 if (srv)
1807 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001808 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001809 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001810 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001811 s->be->be_counters.srv_aborts++;
1812 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001813 if (srv)
1814 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001815 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001816 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001817 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001818 s->be->be_counters.cli_aborts++;
1819 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001820 if (srv)
1821 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001822 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001823 }
1824 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001825 s->be->be_counters.cli_aborts++;
1826 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001827 if (srv)
1828 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001829 s->flags |= SN_ERR_CLITO;
1830 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001831 sess_set_term_flags(s);
1832 }
Willy Tarreau84455332009-03-15 22:34:05 +01001833 }
1834
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001835 /*
1836 * Here we take care of forwarding unhandled data. This also includes
1837 * connection establishments and shutdown requests.
1838 */
1839
1840
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001841 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001842 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001843 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001844 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001845 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001846 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001847 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001848 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001849 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001850 /* This buffer is freewheeling, there's no analyser nor hijacker
1851 * attached to it. If any data are left in, we'll permit them to
1852 * move.
1853 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001854 channel_auto_read(s->req);
1855 channel_auto_connect(s->req);
1856 channel_auto_close(s->req);
Willy Tarreaua75bcef2012-08-24 22:56:11 +02001857 buffer_flush(&s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001858
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001859 /* We'll let data flow between the producer (if still connected)
1860 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001861 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001862 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001863 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001864 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001865
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001866 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001867 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001868 s->req->to_forward &&
1869 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02001870 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001871 (pipes_used < global.maxpipes) &&
1872 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1873 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001874 (s->req->flags & CF_STREAMER_FAST)))) {
1875 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001876 }
1877
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001878 /* reflect what the L7 analysers have seen last */
1879 rqf_last = s->req->flags;
1880
1881 /*
1882 * Now forward all shutdown requests between both sides of the buffer
1883 */
1884
Willy Tarreau520d95e2009-09-19 21:04:57 +02001885 /* first, let's check if the request buffer needs to shutdown(write), which may
1886 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01001887 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001888 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001889 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
1890 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001891 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001892
1893 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001894 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001895 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02001896 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001897
1898 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001899 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01001900 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001901 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001902
1903 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001904 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001905 if (s->req->prod->flags & SI_FL_NOHALF)
1906 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001907 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001908 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001909
Willy Tarreau520d95e2009-09-19 21:04:57 +02001910 /* it's possible that an upper layer has requested a connection setup or abort.
1911 * There are 2 situations where we decide to establish a new connection :
1912 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001913 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02001914 */
1915 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001916 if (!(s->req->flags & CF_SHUTW)) {
1917 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01001918 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02001919 * switch to the connected state, otherwise we perform a connection
1920 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02001921 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001922 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02001923 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau3cefd522012-08-30 15:49:18 +02001924 if (unlikely(s->req->cons->conn.target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02001925 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02001926 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001927 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02001928 s->req->wex = TICK_ETERNITY;
1929 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02001930 }
Willy Tarreau73201222009-08-16 18:27:24 +02001931 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001932 else {
Willy Tarreau92795622009-03-06 12:51:23 +01001933 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001934 channel_shutw_now(s->req); /* fix buffer flags upon abort */
1935 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02001936 }
Willy Tarreau92795622009-03-06 12:51:23 +01001937 }
1938
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001939
1940 /* we may have a pending connection request, or a connection waiting
1941 * for completion.
1942 */
1943 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
1944 do {
1945 /* nb: step 1 might switch from QUE to ASS, but we first want
1946 * to give a chance to step 2 to perform a redirect if needed.
1947 */
1948 if (s->si[1].state != SI_ST_REQ)
1949 sess_update_stream_int(s, &s->si[1]);
1950 if (s->si[1].state == SI_ST_REQ)
1951 sess_prepare_conn_req(s, &s->si[1]);
1952
Willy Tarreau827aee92011-03-10 16:55:02 +01001953 srv = target_srv(&s->target);
1954 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001955 perform_http_redirect(s, &s->si[1]);
1956 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001957
1958 /* Now we can add the server name to a header (if requested) */
1959 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01001960 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01001961 (s->be->mode == PR_MODE_HTTP) &&
1962 (s->be->server_id_hdr_name != NULL)) {
1963 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05001964 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001965 }
1966
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001967 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001968 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001969 goto resync_stream_interface;
1970
Willy Tarreau815a9b22010-07-27 17:15:12 +02001971 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001972 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001973 goto resync_request;
1974
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001975 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01001976
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001977 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001978 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001979 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001980 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001981 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001982 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001983 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02001984 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001985 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001986 /* This buffer is freewheeling, there's no analyser nor hijacker
1987 * attached to it. If any data are left in, we'll permit them to
1988 * move.
1989 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001990 channel_auto_read(s->rep);
1991 channel_auto_close(s->rep);
Willy Tarreaua75bcef2012-08-24 22:56:11 +02001992 buffer_flush(&s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001993
1994 /* We'll let data flow between the producer (if still connected)
1995 * to the consumer.
1996 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001997 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001998 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02001999
2000 /* if we have no analyser anymore in any direction and have a
2001 * tunnel timeout set, use it now.
2002 */
2003 if (!s->req->analysers && s->be->timeout.tunnel) {
2004 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2005 s->be->timeout.tunnel;
2006 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2007 tick_add(now_ms, s->be->timeout.tunnel);
2008 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002009 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002010
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002011 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002012 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002013 s->rep->to_forward &&
2014 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaudc340a92009-06-28 23:10:19 +02002015 (s->si[0].flags & s->si[1].flags & SI_FL_CAP_SPLICE) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002016 (pipes_used < global.maxpipes) &&
2017 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2018 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002019 (s->rep->flags & CF_STREAMER_FAST)))) {
2020 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002021 }
2022
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002023 /* reflect what the L7 analysers have seen last */
2024 rpf_last = s->rep->flags;
2025
2026 /*
2027 * Now forward all shutdown requests between both sides of the buffer
2028 */
2029
2030 /*
2031 * FIXME: this is probably where we should produce error responses.
2032 */
2033
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002034 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002035 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2036 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002037 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002038
2039 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002040 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002041 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002042 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002043
2044 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002045 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002046 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002047 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002048
2049 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002050 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002051 if (s->rep->prod->flags & SI_FL_NOHALF)
2052 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002053 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002054 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002055
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002056 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002057 goto resync_stream_interface;
2058
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002059 if (s->req->flags != rqf_last)
2060 goto resync_request;
2061
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002062 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002063 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002064
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002065 /* we're interested in getting wakeups again */
2066 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2067 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2068
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002069 /* This is needed only when debugging is enabled, to indicate
2070 * client-side or server-side close. Please note that in the unlikely
2071 * event where both sides would close at once, the sequence is reported
2072 * on the server side first.
2073 */
2074 if (unlikely((global.mode & MODE_DEBUG) &&
2075 (!(global.mode & MODE_QUIET) ||
2076 (global.mode & MODE_VERBOSE)))) {
2077 int len;
2078
2079 if (s->si[1].state == SI_ST_CLO &&
2080 s->si[1].prev_state == SI_ST_EST) {
2081 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2082 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002083 (unsigned short)si_fd(&s->si[0]),
2084 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002085 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002086 }
2087
2088 if (s->si[0].state == SI_ST_CLO &&
2089 s->si[0].prev_state == SI_ST_EST) {
2090 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2091 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002092 (unsigned short)si_fd(&s->si[0]),
2093 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002094 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002095 }
2096 }
2097
2098 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2099 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2100
2101 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2102 session_process_counters(s);
2103
Willy Tarreau3cefd522012-08-30 15:49:18 +02002104 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002105 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002106
Willy Tarreau3cefd522012-08-30 15:49:18 +02002107 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002108 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002109
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002110 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2111 s->rep->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002112 s->si[0].prev_state = s->si[0].state;
2113 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002114 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2115 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002116
2117 /* Trick: if a request is being waiting for the server to respond,
2118 * and if we know the server can timeout, we don't want the timeout
2119 * to expire on the client side first, but we're still interested
2120 * in passing data from the client to the server (eg: POST). Thus,
2121 * we can cancel the client's request timeout if the server's
2122 * request timeout is set and the server has not yet sent a response.
2123 */
2124
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002125 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002126 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002127 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002128 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002129 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002130
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002131 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002132 * Note that this one may wake the task up again.
2133 */
Willy Tarreau3cefd522012-08-30 15:49:18 +02002134 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET ||
2135 s->rep->cons->conn.target.type == TARG_TYPE_APPLET) {
2136 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET)
2137 s->req->cons->conn.target.ptr.a->fct(s->req->cons);
2138 if (s->rep->cons->conn.target.type == TARG_TYPE_APPLET)
2139 s->rep->cons->conn.target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002140 if (task_in_rq(t)) {
2141 /* If we woke up, we don't want to requeue the
2142 * task to the wait queue, but rather requeue
2143 * it into the runqueue ASAP.
2144 */
2145 t->expire = TICK_ETERNITY;
2146 return t;
2147 }
2148 }
2149
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002150 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2151 tick_first(s->rep->rex, s->rep->wex));
2152 if (s->req->analysers)
2153 t->expire = tick_first(t->expire, s->req->analyse_exp);
2154
2155 if (s->si[0].exp)
2156 t->expire = tick_first(t->expire, s->si[0].exp);
2157
2158 if (s->si[1].exp)
2159 t->expire = tick_first(t->expire, s->si[1].exp);
2160
2161#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002162 fprintf(stderr,
2163 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2164 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2165 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2166 s->rep->rex, s->rep->wex, s->si[0].exp, s->si[1].exp, s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002167#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002168
2169#ifdef DEBUG_DEV
2170 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002171 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002172 ABORT_NOW();
2173#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002174 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002175 }
2176
2177 s->fe->feconn--;
2178 if (s->flags & SN_BE_ASSIGNED)
2179 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002180 if (!(s->listener->options & LI_O_UNLIMITED))
2181 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002182 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002183 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002184 if (s->listener->state == LI_FULL)
2185 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186
Willy Tarreau08ceb102011-07-24 22:58:00 +02002187 /* Dequeues all of the listeners waiting for a resource */
2188 if (!LIST_ISEMPTY(&global_listener_queue))
2189 dequeue_all_listeners(&global_listener_queue);
2190
Willy Tarreaub32907b2011-07-25 08:37:44 +02002191 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2192 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
Willy Tarreau07687c12011-07-24 23:55:06 +02002193 dequeue_all_listeners(&s->fe->listener_queue);
2194
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002195 if (unlikely((global.mode & MODE_DEBUG) &&
2196 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2197 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002198 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002199 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002200 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau21337822012-04-29 14:11:38 +02002201 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002202 }
2203
2204 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2205 session_process_counters(s);
2206
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002207 if (s->txn.status) {
2208 int n;
2209
2210 n = s->txn.status / 100;
2211 if (n < 1 || n > 5)
2212 n = 0;
2213
2214 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002215 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002216
Willy Tarreau24657792010-02-26 10:30:28 +01002217 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002218 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002219 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002220 }
2221
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002222 /* let's do a final log if we need it */
2223 if (s->logs.logwait &&
2224 !(s->flags & SN_MONITOR) &&
2225 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002226 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002227 }
2228
2229 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002230 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002231 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002232 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002233 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002234}
2235
Willy Tarreau7c669d72008-06-20 15:04:11 +02002236/*
2237 * This function adjusts sess->srv_conn and maintains the previous and new
2238 * server's served session counts. Setting newsrv to NULL is enough to release
2239 * current connection slot. This function also notifies any LB algo which might
2240 * expect to be informed about any change in the number of active sessions on a
2241 * server.
2242 */
2243void sess_change_server(struct session *sess, struct server *newsrv)
2244{
2245 if (sess->srv_conn == newsrv)
2246 return;
2247
2248 if (sess->srv_conn) {
2249 sess->srv_conn->served--;
2250 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2251 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002252 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002253 }
2254
2255 if (newsrv) {
2256 newsrv->served++;
2257 if (newsrv->proxy->lbprm.server_take_conn)
2258 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002259 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002260 }
2261}
2262
Willy Tarreau84455332009-03-15 22:34:05 +01002263/* Handle server-side errors for default protocols. It is called whenever a a
2264 * connection setup is aborted or a request is aborted in queue. It sets the
2265 * session termination flags so that the caller does not have to worry about
2266 * them. It's installed as ->srv_error for the server-side stream_interface.
2267 */
2268void default_srv_error(struct session *s, struct stream_interface *si)
2269{
2270 int err_type = si->err_type;
2271 int err = 0, fin = 0;
2272
2273 if (err_type & SI_ET_QUEUE_ABRT) {
2274 err = SN_ERR_CLICL;
2275 fin = SN_FINST_Q;
2276 }
2277 else if (err_type & SI_ET_CONN_ABRT) {
2278 err = SN_ERR_CLICL;
2279 fin = SN_FINST_C;
2280 }
2281 else if (err_type & SI_ET_QUEUE_TO) {
2282 err = SN_ERR_SRVTO;
2283 fin = SN_FINST_Q;
2284 }
2285 else if (err_type & SI_ET_QUEUE_ERR) {
2286 err = SN_ERR_SRVCL;
2287 fin = SN_FINST_Q;
2288 }
2289 else if (err_type & SI_ET_CONN_TO) {
2290 err = SN_ERR_SRVTO;
2291 fin = SN_FINST_C;
2292 }
2293 else if (err_type & SI_ET_CONN_ERR) {
2294 err = SN_ERR_SRVCL;
2295 fin = SN_FINST_C;
2296 }
2297 else /* SI_ET_CONN_OTHER and others */ {
2298 err = SN_ERR_INTERNAL;
2299 fin = SN_FINST_C;
2300 }
2301
2302 if (!(s->flags & SN_ERR_MASK))
2303 s->flags |= err;
2304 if (!(s->flags & SN_FINST_MASK))
2305 s->flags |= fin;
2306}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002307
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002308/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2309void session_shutdown(struct session *session, int why)
2310{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002311 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002312 return;
2313
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002314 channel_shutw_now(session->req);
2315 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002316 session->task->nice = 1024;
2317 if (!(session->flags & SN_ERR_MASK))
2318 session->flags |= why;
2319 task_wakeup(session->task, TASK_WOKEN_OTHER);
2320}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002321
Willy Tarreau8b22a712010-06-18 17:46:06 +02002322/************************************************************************/
2323/* All supported ACL keywords must be declared here. */
2324/************************************************************************/
2325
Willy Tarreaua5e37562011-12-16 17:06:15 +01002326/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002327static int
Willy Tarreau37406352012-04-23 16:16:37 +02002328acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002329{
Willy Tarreau37406352012-04-23 16:16:37 +02002330 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002331 smp->type = SMP_T_UINT;
2332 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002333 if (ts != NULL) {
2334 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2335 if (!ptr)
2336 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002337 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002338 }
2339 return 1;
2340}
2341
Willy Tarreaua5e37562011-12-16 17:06:15 +01002342/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002343 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002344 */
2345static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002346acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002347 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002348{
Willy Tarreau56123282010-08-06 19:06:56 +02002349 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002350 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002351 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002352}
2353
Willy Tarreaua5e37562011-12-16 17:06:15 +01002354/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002355 * backend counters.
2356 */
2357static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002358acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002359 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002360{
Willy Tarreau56123282010-08-06 19:06:56 +02002361 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002362 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002363 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002364}
2365
Willy Tarreaua5e37562011-12-16 17:06:15 +01002366/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002367 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002368 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002369 */
2370static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002371acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002372 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002373{
2374 struct stktable_key *key;
2375
David du Colombier4f92d322011-03-24 11:09:31 +01002376 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002377 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002378 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002379
Willy Tarreau24e32d82012-04-23 23:55:44 +02002380 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002381 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002382}
2383
2384/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002385 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002386 */
2387static int
Willy Tarreau37406352012-04-23 16:16:37 +02002388acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002389{
Willy Tarreau37406352012-04-23 16:16:37 +02002390 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002391 smp->type = SMP_T_UINT;
2392 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002393 if (ts != NULL) {
2394 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2395 if (!ptr)
2396 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002397 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002398 }
2399 return 1;
2400}
2401
2402/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002403 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002404 */
2405static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002406acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002407 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002408{
Willy Tarreau56123282010-08-06 19:06:56 +02002409 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002410 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002411 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002412}
2413
2414/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002415 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002416 */
2417static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002418acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002419 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002420{
Willy Tarreau56123282010-08-06 19:06:56 +02002421 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002422 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002423 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002424}
2425
2426/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002427 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002428 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002429 */
2430static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002431acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002432 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002433{
2434 struct stktable_key *key;
2435
David du Colombier4f92d322011-03-24 11:09:31 +01002436 key = tcp_src_to_stktable_key(l4);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002437 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002438 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002439
Willy Tarreau24e32d82012-04-23 23:55:44 +02002440 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002441 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002442}
2443
Willy Tarreauf73cd112011-08-13 01:45:16 +02002444/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002445 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002446 */
2447static int
Willy Tarreau37406352012-04-23 16:16:37 +02002448acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002449{
Willy Tarreau37406352012-04-23 16:16:37 +02002450 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002451 smp->type = SMP_T_UINT;
2452 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002453 if (ts != NULL) {
2454 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2455 if (!ptr)
2456 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002457 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002458 stktable_data_cast(ptr, gpc0) = 0;
2459 }
2460 return 1;
2461}
2462
2463/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002464 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002465 */
2466static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002467acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002468 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002469{
2470 if (!l4->stkctr1_entry)
2471 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002472 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002473}
2474
2475/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002476 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002477 */
2478static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002479acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002480 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002481{
2482 if (!l4->stkctr2_entry)
2483 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002484 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002485}
2486
2487/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002488 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002489 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002490 */
2491static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002492acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002493 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002494{
2495 struct stktable_key *key;
2496
2497 key = tcp_src_to_stktable_key(l4);
2498 if (!key)
2499 return 0;
2500
Willy Tarreau24e32d82012-04-23 23:55:44 +02002501 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002502 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002503}
2504
Willy Tarreaua5e37562011-12-16 17:06:15 +01002505/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002506static int
Willy Tarreau37406352012-04-23 16:16:37 +02002507acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002508{
Willy Tarreau37406352012-04-23 16:16:37 +02002509 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002510 smp->type = SMP_T_UINT;
2511 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002512 if (ts != NULL) {
2513 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2514 if (!ptr)
2515 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002516 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002517 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002518 return 1;
2519}
2520
Willy Tarreaua5e37562011-12-16 17:06:15 +01002521/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002522static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002523acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002524 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002525{
Willy Tarreau56123282010-08-06 19:06:56 +02002526 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002527 return 0;
2528
Willy Tarreau37406352012-04-23 16:16:37 +02002529 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002530}
2531
Willy Tarreaua5e37562011-12-16 17:06:15 +01002532/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002533static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002534acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002535 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002536{
Willy Tarreau56123282010-08-06 19:06:56 +02002537 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002538 return 0;
2539
Willy Tarreau37406352012-04-23 16:16:37 +02002540 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002541}
2542
Willy Tarreaua5e37562011-12-16 17:06:15 +01002543/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002544 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002545 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002546 */
2547static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002548acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002549 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002550{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002551 struct stktable_key *key;
2552
David du Colombier4f92d322011-03-24 11:09:31 +01002553 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002554 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002555 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002556
Willy Tarreau24e32d82012-04-23 23:55:44 +02002557 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002558 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002559}
2560
Willy Tarreaua5e37562011-12-16 17:06:15 +01002561/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002562static int
Willy Tarreau37406352012-04-23 16:16:37 +02002563acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002564{
Willy Tarreau37406352012-04-23 16:16:37 +02002565 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002566 smp->type = SMP_T_UINT;
2567 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002568 if (ts != NULL) {
2569 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2570 if (!ptr)
2571 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002572 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002573 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2574 }
2575 return 1;
2576}
2577
Willy Tarreaua5e37562011-12-16 17:06:15 +01002578/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002579 * the configured period.
2580 */
2581static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002582acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002583 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002584{
Willy Tarreau56123282010-08-06 19:06:56 +02002585 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002586 return 0;
2587
Willy Tarreau37406352012-04-23 16:16:37 +02002588 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002589}
2590
Willy Tarreaua5e37562011-12-16 17:06:15 +01002591/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002592 * the configured period.
2593 */
2594static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002595acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002596 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002597{
Willy Tarreau56123282010-08-06 19:06:56 +02002598 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002599 return 0;
2600
Willy Tarreau37406352012-04-23 16:16:37 +02002601 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002602}
2603
Willy Tarreaua5e37562011-12-16 17:06:15 +01002604/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002605 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002606 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002607 */
2608static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002609acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002610 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002611{
2612 struct stktable_key *key;
2613
David du Colombier4f92d322011-03-24 11:09:31 +01002614 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002615 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002616 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002617
Willy Tarreau24e32d82012-04-23 23:55:44 +02002618 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002619 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002620}
2621
Willy Tarreaua5e37562011-12-16 17:06:15 +01002622/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002623 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002624 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002625 */
2626static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002627acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002628 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002629{
2630 struct stksess *ts;
2631 struct stktable_key *key;
2632 void *ptr;
2633
David du Colombier4f92d322011-03-24 11:09:31 +01002634 key = tcp_src_to_stktable_key(l4);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002635 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002636 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002637
Willy Tarreau24e32d82012-04-23 23:55:44 +02002638 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002639
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002640 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2641 /* entry does not exist and could not be created */
2642 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002643
2644 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2645 if (!ptr)
2646 return 0; /* parameter not stored in this table */
2647
Willy Tarreauf853c462012-04-23 18:53:56 +02002648 smp->type = SMP_T_UINT;
2649 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002650 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002651 return 1;
2652}
2653
Willy Tarreaua5e37562011-12-16 17:06:15 +01002654/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002655static int
Willy Tarreau37406352012-04-23 16:16:37 +02002656acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002657{
Willy Tarreau37406352012-04-23 16:16:37 +02002658 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002659 smp->type = SMP_T_UINT;
2660 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002661
2662 if (ts != NULL) {
2663 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2664 if (!ptr)
2665 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002666 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002667 }
2668 return 1;
2669}
2670
Willy Tarreaua5e37562011-12-16 17:06:15 +01002671/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002672static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002673acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002674 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002675{
Willy Tarreau56123282010-08-06 19:06:56 +02002676 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002677 return 0;
2678
Willy Tarreau37406352012-04-23 16:16:37 +02002679 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002680}
2681
Willy Tarreaua5e37562011-12-16 17:06:15 +01002682/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002683static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002684acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002685 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002686{
Willy Tarreau56123282010-08-06 19:06:56 +02002687 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002688 return 0;
2689
Willy Tarreau37406352012-04-23 16:16:37 +02002690 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002691}
2692
Willy Tarreaua5e37562011-12-16 17:06:15 +01002693/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002694 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002695 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002696 */
2697static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002698acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002699 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002700{
Willy Tarreau38285c12010-06-18 16:35:43 +02002701 struct stktable_key *key;
2702
David du Colombier4f92d322011-03-24 11:09:31 +01002703 key = tcp_src_to_stktable_key(l4);
Willy Tarreau38285c12010-06-18 16:35:43 +02002704 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002705 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002706
Willy Tarreau24e32d82012-04-23 23:55:44 +02002707 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002708 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002709}
2710
Willy Tarreaua5e37562011-12-16 17:06:15 +01002711/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002712static int
Willy Tarreau37406352012-04-23 16:16:37 +02002713acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002714{
Willy Tarreau37406352012-04-23 16:16:37 +02002715 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002716 smp->type = SMP_T_UINT;
2717 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002718 if (ts != NULL) {
2719 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2720 if (!ptr)
2721 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002722 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002723 }
2724 return 1;
2725}
2726
Willy Tarreaua5e37562011-12-16 17:06:15 +01002727/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002728static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002729acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002730 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002731{
Willy Tarreau56123282010-08-06 19:06:56 +02002732 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002733 return 0;
2734
Willy Tarreau37406352012-04-23 16:16:37 +02002735 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002736}
2737
Willy Tarreaua5e37562011-12-16 17:06:15 +01002738/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002739static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002740acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002741 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002742{
Willy Tarreau56123282010-08-06 19:06:56 +02002743 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002744 return 0;
2745
Willy Tarreau37406352012-04-23 16:16:37 +02002746 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002747}
2748
Willy Tarreaua5e37562011-12-16 17:06:15 +01002749/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002750 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002751 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002752 */
2753static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002754acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002755 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002756{
2757 struct stktable_key *key;
2758
David du Colombier4f92d322011-03-24 11:09:31 +01002759 key = tcp_src_to_stktable_key(l4);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002760 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002761 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002762
Willy Tarreau24e32d82012-04-23 23:55:44 +02002763 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002764 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002765}
2766
Willy Tarreaua5e37562011-12-16 17:06:15 +01002767/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002768static int
Willy Tarreau37406352012-04-23 16:16:37 +02002769acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002770{
Willy Tarreau37406352012-04-23 16:16:37 +02002771 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002772 smp->type = SMP_T_UINT;
2773 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002774 if (ts != NULL) {
2775 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2776 if (!ptr)
2777 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002778 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002779 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2780 }
2781 return 1;
2782}
2783
Willy Tarreaua5e37562011-12-16 17:06:15 +01002784/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002785 * the configured period.
2786 */
2787static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002788acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002789 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002790{
Willy Tarreau56123282010-08-06 19:06:56 +02002791 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002792 return 0;
2793
Willy Tarreau37406352012-04-23 16:16:37 +02002794 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002795}
2796
Willy Tarreaua5e37562011-12-16 17:06:15 +01002797/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002798 * the configured period.
2799 */
2800static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002801acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002802 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002803{
Willy Tarreau56123282010-08-06 19:06:56 +02002804 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002805 return 0;
2806
Willy Tarreau37406352012-04-23 16:16:37 +02002807 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002808}
2809
Willy Tarreaua5e37562011-12-16 17:06:15 +01002810/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002811 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002812 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002813 */
2814static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002815acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002816 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002817{
2818 struct stktable_key *key;
2819
David du Colombier4f92d322011-03-24 11:09:31 +01002820 key = tcp_src_to_stktable_key(l4);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002821 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002822 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002823
Willy Tarreau24e32d82012-04-23 23:55:44 +02002824 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002825 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002826}
2827
Willy Tarreaua5e37562011-12-16 17:06:15 +01002828/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002829static int
Willy Tarreau37406352012-04-23 16:16:37 +02002830acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002831{
Willy Tarreau37406352012-04-23 16:16:37 +02002832 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002833 smp->type = SMP_T_UINT;
2834 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002835 if (ts != NULL) {
2836 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
2837 if (!ptr)
2838 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002839 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002840 }
2841 return 1;
2842}
2843
Willy Tarreaua5e37562011-12-16 17:06:15 +01002844/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002845static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002846acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002847 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002848{
Willy Tarreau56123282010-08-06 19:06:56 +02002849 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002850 return 0;
2851
Willy Tarreau37406352012-04-23 16:16:37 +02002852 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002853}
2854
Willy Tarreaua5e37562011-12-16 17:06:15 +01002855/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002856static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002857acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002858 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002859{
Willy Tarreau56123282010-08-06 19:06:56 +02002860 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002861 return 0;
2862
Willy Tarreau37406352012-04-23 16:16:37 +02002863 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002864}
2865
Willy Tarreaua5e37562011-12-16 17:06:15 +01002866/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002867 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002868 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002869 */
2870static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002871acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002872 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002873{
2874 struct stktable_key *key;
2875
David du Colombier4f92d322011-03-24 11:09:31 +01002876 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002877 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002878 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002879
Willy Tarreau24e32d82012-04-23 23:55:44 +02002880 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002881 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002882}
2883
Willy Tarreaua5e37562011-12-16 17:06:15 +01002884/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002885static int
Willy Tarreau37406352012-04-23 16:16:37 +02002886acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002887{
Willy Tarreau37406352012-04-23 16:16:37 +02002888 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002889 smp->type = SMP_T_UINT;
2890 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002891 if (ts != NULL) {
2892 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
2893 if (!ptr)
2894 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002895 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02002896 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
2897 }
2898 return 1;
2899}
2900
Willy Tarreaua5e37562011-12-16 17:06:15 +01002901/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02002902 * the configured period.
2903 */
2904static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002905acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002906 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002907{
Willy Tarreau56123282010-08-06 19:06:56 +02002908 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002909 return 0;
2910
Willy Tarreau37406352012-04-23 16:16:37 +02002911 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002912}
2913
Willy Tarreaua5e37562011-12-16 17:06:15 +01002914/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002915 * the configured period.
2916 */
2917static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002918acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002919 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002920{
Willy Tarreau56123282010-08-06 19:06:56 +02002921 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002922 return 0;
2923
Willy Tarreau37406352012-04-23 16:16:37 +02002924 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002925}
2926
Willy Tarreaua5e37562011-12-16 17:06:15 +01002927/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02002928 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002929 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002930 */
2931static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002932acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002933 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002934{
2935 struct stktable_key *key;
2936
David du Colombier4f92d322011-03-24 11:09:31 +01002937 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002938 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002939 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002940
Willy Tarreau24e32d82012-04-23 23:55:44 +02002941 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002942 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002943}
2944
Willy Tarreaua5e37562011-12-16 17:06:15 +01002945/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002946static int
Willy Tarreau37406352012-04-23 16:16:37 +02002947acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002948{
Willy Tarreau37406352012-04-23 16:16:37 +02002949 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002950 smp->type = SMP_T_UINT;
2951 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002952 if (ts != NULL) {
2953 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
2954 if (!ptr)
2955 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002956 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002957 }
2958 return 1;
2959}
2960
Willy Tarreaua5e37562011-12-16 17:06:15 +01002961/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002962static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002963acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002964 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002965{
Willy Tarreau56123282010-08-06 19:06:56 +02002966 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002967 return 0;
2968
Willy Tarreau37406352012-04-23 16:16:37 +02002969 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002970}
2971
Willy Tarreaua5e37562011-12-16 17:06:15 +01002972/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002973static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002974acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002975 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002976{
Willy Tarreau56123282010-08-06 19:06:56 +02002977 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002978 return 0;
2979
Willy Tarreau37406352012-04-23 16:16:37 +02002980 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002981}
2982
Willy Tarreaua5e37562011-12-16 17:06:15 +01002983/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02002984 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002985 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002986 */
2987static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002988acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002989 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002990{
2991 struct stktable_key *key;
2992
David du Colombier4f92d322011-03-24 11:09:31 +01002993 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002994 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002995 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02002996
Willy Tarreau24e32d82012-04-23 23:55:44 +02002997 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002998 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02002999}
3000
Willy Tarreaua5e37562011-12-16 17:06:15 +01003001/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003002static int
Willy Tarreau37406352012-04-23 16:16:37 +02003003acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003004{
Willy Tarreau37406352012-04-23 16:16:37 +02003005 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003006 smp->type = SMP_T_UINT;
3007 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003008 if (ts != NULL) {
3009 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3010 if (!ptr)
3011 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003012 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003013 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3014 }
3015 return 1;
3016}
3017
Willy Tarreaua5e37562011-12-16 17:06:15 +01003018/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003019 * the configured period.
3020 */
3021static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003022acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003023 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003024{
Willy Tarreau56123282010-08-06 19:06:56 +02003025 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003026 return 0;
3027
Willy Tarreau37406352012-04-23 16:16:37 +02003028 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003029}
3030
Willy Tarreaua5e37562011-12-16 17:06:15 +01003031/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003032 * the configured period.
3033 */
3034static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003035acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003036 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003037{
Willy Tarreau56123282010-08-06 19:06:56 +02003038 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003039 return 0;
3040
Willy Tarreau37406352012-04-23 16:16:37 +02003041 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003042}
3043
Willy Tarreaua5e37562011-12-16 17:06:15 +01003044/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003045 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003046 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003047 */
3048static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003049acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003050 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003051{
3052 struct stktable_key *key;
3053
David du Colombier4f92d322011-03-24 11:09:31 +01003054 key = tcp_src_to_stktable_key(l4);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003055 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003056 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003057
Willy Tarreau24e32d82012-04-23 23:55:44 +02003058 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003059 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003060}
3061
Willy Tarreaua5e37562011-12-16 17:06:15 +01003062/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003063static int
Willy Tarreau37406352012-04-23 16:16:37 +02003064acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003065{
Willy Tarreau37406352012-04-23 16:16:37 +02003066 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003067 smp->type = SMP_T_UINT;
3068 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003069
3070 if (ts != NULL) {
3071 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3072 if (!ptr)
3073 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003074 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003075 }
3076 return 1;
3077}
3078
Willy Tarreaua5e37562011-12-16 17:06:15 +01003079/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003080 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003081 */
3082static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003083acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003084 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003085{
Willy Tarreau56123282010-08-06 19:06:56 +02003086 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003087 return 0;
3088
Willy Tarreau37406352012-04-23 16:16:37 +02003089 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003090}
3091
Willy Tarreaua5e37562011-12-16 17:06:15 +01003092/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003093 * session's tracked BE counters.
3094 */
3095static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003096acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003097 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003098{
Willy Tarreau56123282010-08-06 19:06:56 +02003099 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003100 return 0;
3101
Willy Tarreau37406352012-04-23 16:16:37 +02003102 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003103}
3104
Willy Tarreaua5e37562011-12-16 17:06:15 +01003105/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003106 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003107 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003108 */
3109static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003110acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003111 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003112{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003113 struct stktable_key *key;
3114
David du Colombier4f92d322011-03-24 11:09:31 +01003115 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003116 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003117 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003118
Willy Tarreau24e32d82012-04-23 23:55:44 +02003119 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003120 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003121}
3122
Willy Tarreaua5e37562011-12-16 17:06:15 +01003123/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003124 * configured period.
3125 */
3126static int
Willy Tarreau37406352012-04-23 16:16:37 +02003127acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003128{
Willy Tarreau37406352012-04-23 16:16:37 +02003129 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003130 smp->type = SMP_T_UINT;
3131 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003132 if (ts != NULL) {
3133 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3134 if (!ptr)
3135 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003136 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003137 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3138 }
3139 return 1;
3140}
3141
Willy Tarreaua5e37562011-12-16 17:06:15 +01003142/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003143 * counters over the configured period.
3144 */
3145static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003146acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003147 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003148{
Willy Tarreau56123282010-08-06 19:06:56 +02003149 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003150 return 0;
3151
Willy Tarreau37406352012-04-23 16:16:37 +02003152 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003153}
3154
Willy Tarreaua5e37562011-12-16 17:06:15 +01003155/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003156 * counters over the configured period.
3157 */
3158static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003159acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003160 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003161{
Willy Tarreau56123282010-08-06 19:06:56 +02003162 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003163 return 0;
3164
Willy Tarreau37406352012-04-23 16:16:37 +02003165 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003166}
3167
Willy Tarreaua5e37562011-12-16 17:06:15 +01003168/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003169 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003170 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003171 */
3172static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003173acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003174 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003175{
3176 struct stktable_key *key;
3177
David du Colombier4f92d322011-03-24 11:09:31 +01003178 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003179 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003180 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003181
Willy Tarreau24e32d82012-04-23 23:55:44 +02003182 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003183 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003184}
3185
Willy Tarreaua5e37562011-12-16 17:06:15 +01003186/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003187static int
Willy Tarreau37406352012-04-23 16:16:37 +02003188acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003189{
Willy Tarreau37406352012-04-23 16:16:37 +02003190 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003191 smp->type = SMP_T_UINT;
3192 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003193
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003194 if (ts != NULL) {
3195 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003196 if (!ptr)
3197 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003198 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003199 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003200 return 1;
3201}
3202
Willy Tarreaua5e37562011-12-16 17:06:15 +01003203/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003204 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003205 */
3206static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003207acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003208 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003209{
Willy Tarreau56123282010-08-06 19:06:56 +02003210 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003211 return 0;
3212
Willy Tarreau37406352012-04-23 16:16:37 +02003213 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003214}
3215
Willy Tarreaua5e37562011-12-16 17:06:15 +01003216/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003217 * tracked BE counters.
3218 */
3219static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003220acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003221 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003222{
Willy Tarreau56123282010-08-06 19:06:56 +02003223 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003224 return 0;
3225
Willy Tarreau37406352012-04-23 16:16:37 +02003226 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003227}
3228
Willy Tarreaua5e37562011-12-16 17:06:15 +01003229/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003230 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003231 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003232 */
3233static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003234acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003235 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003236{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003237 struct stktable_key *key;
3238
David du Colombier4f92d322011-03-24 11:09:31 +01003239 key = tcp_src_to_stktable_key(l4);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003240 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003241 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003242
Willy Tarreau24e32d82012-04-23 23:55:44 +02003243 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003244 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003245}
3246
Willy Tarreaua5e37562011-12-16 17:06:15 +01003247/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003248 * configured period.
3249 */
3250static int
Willy Tarreau37406352012-04-23 16:16:37 +02003251acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003252{
Willy Tarreau37406352012-04-23 16:16:37 +02003253 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003254 smp->type = SMP_T_UINT;
3255 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003256 if (ts != NULL) {
3257 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3258 if (!ptr)
3259 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003260 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003261 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3262 }
3263 return 1;
3264}
3265
Willy Tarreaua5e37562011-12-16 17:06:15 +01003266/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003267 * over the configured period.
3268 */
3269static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003270acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003271 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003272{
Willy Tarreau56123282010-08-06 19:06:56 +02003273 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003274 return 0;
3275
Willy Tarreau37406352012-04-23 16:16:37 +02003276 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003277}
3278
Willy Tarreaua5e37562011-12-16 17:06:15 +01003279/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003280 * over the configured period.
3281 */
3282static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003283acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003284 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003285{
Willy Tarreau56123282010-08-06 19:06:56 +02003286 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003287 return 0;
3288
Willy Tarreau37406352012-04-23 16:16:37 +02003289 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003290}
3291
Willy Tarreaua5e37562011-12-16 17:06:15 +01003292/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003293 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003294 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003295 */
3296static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003297acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003298 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003299{
3300 struct stktable_key *key;
3301
David du Colombier4f92d322011-03-24 11:09:31 +01003302 key = tcp_src_to_stktable_key(l4);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003303 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003304 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003305
Willy Tarreau24e32d82012-04-23 23:55:44 +02003306 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003307 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003308}
3309
Willy Tarreau34db1082012-04-19 17:16:54 +02003310/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003311 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003312 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003313static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003314acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003315 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003316{
Willy Tarreau37406352012-04-23 16:16:37 +02003317 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003318 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003319 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003320 return 1;
3321}
3322
Willy Tarreau34db1082012-04-19 17:16:54 +02003323/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003324 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003325 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003326static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003327acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003328 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003329{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003330 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003331 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003332 smp->type = SMP_T_UINT;
3333 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003334 return 1;
3335}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003336
Willy Tarreau61612d42012-04-19 18:42:05 +02003337/* Note: must not be declared <const> as its list will be overwritten.
3338 * Please take care of keeping this list alphabetically sorted.
3339 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003340static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003341 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3342 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3343 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3344 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3345 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3346 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3347 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3348 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3349 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3350 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3351 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3352 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3353 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3354 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3355 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3356 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3357 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3358 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3359 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3360 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3361 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3362 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3363 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3364 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3365 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3366 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3367 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3368 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3369 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3370 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3371 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3372 { "sc2_sess_rate", acl_parse_int, acl_fetch_sc2_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02003373 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3374 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3375 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3376 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3377 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3378 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3379 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3380 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3381 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3382 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3383 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3384 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3385 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3386 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3387 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3388 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3389 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3390 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3391 { "table_cnt", acl_parse_int, acl_fetch_table_cnt, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003392 { NULL, NULL, NULL, NULL },
3393}};
3394
3395
Willy Tarreau56123282010-08-06 19:06:56 +02003396/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003397 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3398 * <prm> struct is fed with the table name if any. If unspecified, the caller
3399 * will assume that the current proxy's table is used.
3400 */
3401int parse_track_counters(char **args, int *arg,
3402 int section_type, struct proxy *curpx,
3403 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003404 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003405{
Willy Tarreau12785782012-04-27 21:37:17 +02003406 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003407
Willy Tarreau56123282010-08-06 19:06:56 +02003408 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003409 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003410 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003411 */
3412 while (args[*arg]) {
3413 if (strcmp(args[*arg], "src") == 0) {
3414 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003415 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003416 }
3417 else if (strcmp(args[*arg], "table") == 0) {
3418 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003419 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003420 return -1;
3421 }
3422 /* we copy the table name for now, it will be resolved later */
3423 prm->table.n = strdup(args[*arg + 1]);
3424 (*arg)++;
3425 }
3426 else {
3427 /* unhandled keywords are handled by the caller */
3428 break;
3429 }
3430 (*arg)++;
3431 }
3432
Willy Tarreau12785782012-04-27 21:37:17 +02003433 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003434 memprintf(err,
3435 "tracking key not specified (found %s, only 'src' is supported)",
3436 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003437 return -1;
3438 }
3439
3440 return 0;
3441}
3442
Willy Tarreau8b22a712010-06-18 17:46:06 +02003443__attribute__((constructor))
3444static void __session_init(void)
3445{
3446 acl_register_keywords(&acl_kws);
3447}
3448
Willy Tarreaubaaee002006-06-26 02:48:02 +02003449/*
3450 * Local variables:
3451 * c-indent-level: 8
3452 * c-basic-offset: 8
3453 * End:
3454 */