blob: 77a214de875cf7279683331d8c69e3fbc51abfdf [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 Tarreau9b28e032012-10-12 23:49:43 +020018#include <common/buffer.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020019#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010023#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020025#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020026#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010027#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020028#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010029#include <proto/checks.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020030#include <proto/connection.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020031#include <proto/dumpstats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020032#include <proto/fd.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020033#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020034#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010035#include <proto/hdr_idx.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020036#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020037#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020038#include <proto/raw_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010040#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010041#include <proto/proto_http.h>
42#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020043#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010045#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020046#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010047#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010048#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010049#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020051struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010052struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
Willy Tarreau071e1372012-10-03 01:39:48 +020054static int conn_session_complete(struct connection *conn);
Willy Tarreau9683e9a2012-10-03 21:17:23 +020055static int conn_session_update(struct connection *conn);
Willy Tarreau2542b532012-08-31 16:01:23 +020056static struct task *expire_mini_session(struct task *t);
57int session_complete(struct session *s);
58
Willy Tarreau5e75e272012-10-02 21:21:20 +020059/* data layer callbacks for an embryonic session */
60struct data_cb sess_conn_cb = {
61 .recv = NULL,
62 .send = NULL,
Willy Tarreau9683e9a2012-10-03 21:17:23 +020063 .wake = conn_session_update,
Willy Tarreau071e1372012-10-03 01:39:48 +020064 .init = conn_session_complete,
Willy Tarreau5e75e272012-10-02 21:21:20 +020065};
66
Willy Tarreau2542b532012-08-31 16:01:23 +020067/* This function is called from the protocol layer accept() in order to
68 * instanciate a new embryonic session on behalf of a given listener and
69 * frontend. It returns a positive value upon success, 0 if the connection
70 * can be ignored, or a negative value upon critical failure. The accepted
71 * file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020072 */
73int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
74{
75 struct proxy *p = l->frontend;
76 struct session *s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020077 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010078 int ret;
79
80
81 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020082
Willy Tarreaufffe1322010-11-11 09:48:16 +010083 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020084 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020085
Willy Tarreau2542b532012-08-31 16:01:23 +020086 /* minimum session initialization required for an embryonic session is
87 * fairly low. We need very little to execute L4 ACLs, then we need a
88 * task to make the client-side connection live on its own.
89 * - flags
90 * - stick-entry tracking
91 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020092 s->flags = 0;
93 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020094 s->stkctr1_entry = NULL;
95 s->stkctr2_entry = NULL;
96 s->stkctr1_table = NULL;
97 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020098
Willy Tarreau2542b532012-08-31 16:01:23 +020099 s->listener = l;
100 s->fe = p;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100101
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200102 /* OK, we're keeping the session, so let's properly initialize the session */
Willy Tarreau96596ae2012-06-08 22:57:36 +0200103 s->si[0].conn.t.sock.fd = cfd;
104 s->si[0].conn.ctrl = l->proto;
Willy Tarreau2542b532012-08-31 16:01:23 +0200105 s->si[0].conn.flags = CO_FL_NONE;
Willy Tarreau986a9d22012-08-30 21:11:38 +0200106 s->si[0].conn.addr.from = *addr;
Willy Tarreau2542b532012-08-31 16:01:23 +0200107 set_target_client(&s->si[0].conn.target, l);
108
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200109 s->logs.accept_date = date; /* user-visible date for logging */
110 s->logs.tv_accept = now; /* corrected date for internal use */
111 s->uniq_id = totalconn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200112 p->feconn++;
113 /* This session was accepted, count it now */
114 if (p->feconn > p->fe_counters.conn_max)
115 p->fe_counters.conn_max = p->feconn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200116
Willy Tarreau2542b532012-08-31 16:01:23 +0200117 proxy_inc_fe_conn_ctr(l, p);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200118
119 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
120 * to abort right here as soon as possible, we check the rules before
121 * even initializing the stream interfaces.
122 */
123 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200124 /* let's do a no-linger now to close with a single RST. */
125 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100126 ret = 0; /* successful termination */
Willy Tarreau2542b532012-08-31 16:01:23 +0200127 goto out_free_session;
128 }
129
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200130#ifndef USE_ACCEPT4
131 /* Adjust some socket options if the connection was accepted by a plain
132 * accept() syscall.
133 */
Willy Tarreau82569f92012-09-27 23:48:56 +0200134 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
135 goto out_free_session;
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200136#endif
Willy Tarreau82569f92012-09-27 23:48:56 +0200137
138 /* monitor-net and health mode are processed immediately after TCP
139 * connection rules. This way it's possible to block them, but they
140 * never use the lower data layers, they send directly over the socket,
141 * as they were designed for. We first flush the socket receive buffer
142 * in order to avoid emission of an RST by the system. We ignore any
143 * error.
144 */
145 if (unlikely((p->mode == PR_MODE_HEALTH) ||
146 ((l->options & LI_O_CHK_MONNET) &&
147 addr->ss_family == AF_INET &&
148 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
149 /* we have 4 possibilities here :
150 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
151 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
152 * - HEALTH mode without HTTP check => just send "OK"
153 * - TCP mode from monitoring address => just close
154 */
Willy Tarreaue9909f42012-10-12 17:36:40 +0200155 recv(cfd, trash, trashlen, MSG_DONTWAIT);
Willy Tarreau82569f92012-09-27 23:48:56 +0200156 if (p->mode == PR_MODE_HTTP ||
157 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
158 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
159 else if (p->mode == PR_MODE_HEALTH)
160 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
161 ret = 0;
162 goto out_free_session;
163 }
164
165
Willy Tarreau22cda212012-08-31 17:43:29 +0200166 /* wait for a PROXY protocol header */
167 if (l->options & LI_O_ACC_PROXY) {
168 s->si[0].conn.flags |= CO_FL_ACCEPT_PROXY;
169 conn_sock_want_recv(&s->si[0].conn);
170 }
171
Willy Tarreau2542b532012-08-31 16:01:23 +0200172 if (unlikely((t = task_new()) == NULL))
173 goto out_free_session;
174
175 t->context = s;
176 t->nice = l->nice;
177 s->task = t;
178
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200179 /* Add the various callbacks. Right now the transport layer is present
180 * but not initialized. Also note we need to be careful as the stream
181 * int is not initialized yet.
Willy Tarreau2542b532012-08-31 16:01:23 +0200182 */
Willy Tarreau5e75e272012-10-02 21:21:20 +0200183 conn_prepare(&s->si[0].conn, &sess_conn_cb, l->proto, l->xprt, s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200184
185 /* finish initialization of the accepted file descriptor */
186 fd_insert(cfd);
187 fdtab[cfd].owner = &s->si[0].conn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200188 fdtab[cfd].iocb = conn_fd_handler;
189 conn_data_want_recv(&s->si[0].conn);
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200190 if (conn_xprt_init(&s->si[0].conn) < 0)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100191 goto out_free_task;
Willy Tarreau2542b532012-08-31 16:01:23 +0200192
193 /* OK, now either we have a pending handshake to execute with and
194 * then we must return to the I/O layer, or we can proceed with the
195 * end of the session initialization. In case of handshake, we also
196 * set the I/O timeout to the frontend's client timeout.
197 */
198
199 if (s->si[0].conn.flags & CO_FL_HANDSHAKE) {
200 t->process = expire_mini_session;
201 t->expire = tick_add_ifset(now_ms, p->timeout.client);
202 task_queue(t);
Willy Tarreau91083f52012-10-12 17:42:13 +0200203 s->si[0].conn.flags |= CO_FL_INIT_DATA | CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200204 return 1;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200205 }
206
Willy Tarreau2542b532012-08-31 16:01:23 +0200207 /* OK let's complete session initialization */
208 ret = session_complete(s);
209 if (ret > 0)
210 return ret;
211
212 /* Error unrolling */
213 out_free_task:
214 task_free(t);
215 out_free_session:
216 p->feconn--;
217 if (s->stkctr1_entry || s->stkctr2_entry)
218 session_store_counters(s);
219 pool_free2(pool2_session, s);
220 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200221 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200222 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau783f2582012-09-04 12:19:04 +0200223 struct chunk *err_msg = http_error_message(s, HTTP_ERR_500);
Willy Tarreau2542b532012-08-31 16:01:23 +0200224 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
225 }
226
227 if (fdtab[cfd].owner)
228 fd_delete(cfd);
229 else
230 close(cfd);
231 return ret;
232}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100233
Willy Tarreau2542b532012-08-31 16:01:23 +0200234/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200235 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreau2542b532012-08-31 16:01:23 +0200236 * disabled and finally kills the file descriptor.
237 */
238static void kill_mini_session(struct session *s)
239{
240 /* kill the connection now */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200241 conn_xprt_close(&s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200242
243 s->fe->feconn--;
244 if (s->stkctr1_entry || s->stkctr2_entry)
245 session_store_counters(s);
246
247 if (!(s->listener->options & LI_O_UNLIMITED))
248 actconn--;
249 jobs--;
250 s->listener->nbconn--;
251 if (s->listener->state == LI_FULL)
252 resume_listener(s->listener);
253
254 /* Dequeues all of the listeners waiting for a resource */
255 if (!LIST_ISEMPTY(&global_listener_queue))
256 dequeue_all_listeners(&global_listener_queue);
257
258 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
259 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
260 dequeue_all_listeners(&s->fe->listener_queue);
261
262 task_delete(s->task);
263 task_free(s->task);
264
265 if (fdtab[s->si[0].conn.t.sock.fd].owner)
266 fd_delete(s->si[0].conn.t.sock.fd);
267 else
268 close(s->si[0].conn.t.sock.fd);
269
270 pool_free2(pool2_session, s);
271}
272
Willy Tarreau22cda212012-08-31 17:43:29 +0200273/* Finish initializing a session from a connection, or kills it if the
274 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200275 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200276static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200277{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200278 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200279
Willy Tarreau22cda212012-08-31 17:43:29 +0200280 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200281 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200282 return 0;
283 }
284
285 /* kill the connection now */
286 kill_mini_session(s);
287 return -1;
288}
289
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200290/* Update an embryonic session status. The connection is killed in case of
291 * error, and <0 will be returned. Otherwise it does nothing.
292 */
293static int conn_session_update(struct connection *conn)
294{
295 if (conn->flags & CO_FL_ERROR) {
296 kill_mini_session(conn->owner);
297 return -1;
298 }
299 return 0;
300}
301
Willy Tarreau2542b532012-08-31 16:01:23 +0200302/* Manages embryonic sessions timeout. It is only called when the timeout
303 * strikes and performs the required cleanup.
304 */
305static struct task *expire_mini_session(struct task *t)
306{
307 struct session *s = t->context;
308
309 if (!(t->state & TASK_WOKEN_TIMER))
310 return t;
311
312 kill_mini_session(s);
313 return NULL;
314}
315
316/* This function is called from the I/O handler which detects the end of
317 * handshake, in order to complete initialization of a valid session. It must
318 * be called with an embryonic session. It returns a positive value upon
319 * success, 0 if the connection can be ignored, or a negative value upon
320 * critical failure. The accepted file descriptor is closed if we return <= 0.
321 */
322int session_complete(struct session *s)
323{
324 struct listener *l = s->listener;
325 struct proxy *p = s->fe;
326 struct http_txn *txn;
327 struct task *t = s->task;
328 int ret;
329
330 ret = -1; /* assume unrecoverable error by default */
331
332 /* OK, we're keeping the session, so let's properly initialize the session */
333 LIST_ADDQ(&sessions, &s->list);
334 LIST_INIT(&s->back_refs);
Willy Tarreau5e75e272012-10-02 21:21:20 +0200335 si_takeover_conn(&s->si[0], l->proto, l->xprt);
Willy Tarreau2542b532012-08-31 16:01:23 +0200336 s->flags |= SN_INITIALIZED;
337
338 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200339
340 t->process = l->handler;
341 t->context = s;
342 t->expire = TICK_ETERNITY;
343
344 /* Note: initially, the session's backend points to the frontend.
345 * This changes later when switching rules are executed or
346 * when the default backend is assigned.
347 */
348 s->be = s->fe;
349 s->req = s->rep = NULL; /* will be allocated later */
350
351 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200352 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200353 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200354 void *ptr;
355
Willy Tarreau56123282010-08-06 19:06:56 +0200356 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200357 if (ptr)
358 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200359
Willy Tarreau56123282010-08-06 19:06:56 +0200360 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200361 if (ptr)
362 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200363 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200364 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200365
Willy Tarreau56123282010-08-06 19:06:56 +0200366 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200367 void *ptr;
368
Willy Tarreau56123282010-08-06 19:06:56 +0200369 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200370 if (ptr)
371 stktable_data_cast(ptr, sess_cnt)++;
372
Willy Tarreau56123282010-08-06 19:06:56 +0200373 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200374 if (ptr)
375 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200376 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200377 }
378
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200379 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200380 s->si[0].owner = t;
381 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
382 s->si[0].err_type = SI_ET_NONE;
383 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200384 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200385 s->si[0].send_proxy_ofs = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200386 s->si[0].exp = TICK_ETERNITY;
387 s->si[0].flags = SI_FL_NONE;
388
389 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
390 s->si[0].flags |= SI_FL_INDEP_STR;
391
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200392 /* pre-initialize the other side's stream interface to an INIT state. The
393 * callbacks will be initialized before attempting to connect.
394 */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200395 s->si[1].conn.t.sock.fd = -1; /* just to help with debugging */
Willy Tarreau505e34a2012-07-06 10:17:53 +0200396 s->si[1].conn.flags = CO_FL_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200397 s->si[1].owner = t;
398 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
399 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200400 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200401 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200402 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200403 s->si[1].send_proxy_ofs = 0;
Willy Tarreau3cefd522012-08-30 15:49:18 +0200404 clear_target(&s->si[1].conn.target);
Willy Tarreauc5788912012-08-24 18:12:41 +0200405 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200406 s->si[1].exp = TICK_ETERNITY;
407 s->si[1].flags = SI_FL_NONE;
408
409 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
410 s->si[1].flags |= SI_FL_INDEP_STR;
411
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200412 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100413 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200414 s->pend_pos = NULL;
415
416 /* init store persistence */
417 s->store_count = 0;
418
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200419 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200420 goto out_free_task; /* no memory */
421
Willy Tarreau9b28e032012-10-12 23:49:43 +0200422 if (unlikely((s->req->buf = pool_alloc2(pool2_buffer)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200423 goto out_free_req; /* no memory */
424
Willy Tarreau9b28e032012-10-12 23:49:43 +0200425 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
426 goto out_free_req_buf; /* no memory */
427
428 if (unlikely((s->rep->buf = pool_alloc2(pool2_buffer)) == NULL))
429 goto out_free_rep; /* no memory */
430
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200431 /* initialize the request buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200432 s->req->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200433 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200434 s->req->prod = &s->si[0];
435 s->req->cons = &s->si[1];
436 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200437 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200438
439 /* activate default analysers enabled for this listener */
440 s->req->analysers = l->analysers;
441
442 s->req->wto = TICK_ETERNITY;
443 s->req->rto = TICK_ETERNITY;
444 s->req->rex = TICK_ETERNITY;
445 s->req->wex = TICK_ETERNITY;
446 s->req->analyse_exp = TICK_ETERNITY;
447
448 /* initialize response buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200449 s->rep->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200450 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200451 s->rep->prod = &s->si[1];
452 s->rep->cons = &s->si[0];
453 s->si[0].ob = s->si[1].ib = s->rep;
454 s->rep->analysers = 0;
455
Willy Tarreau96e31212011-05-30 18:10:30 +0200456 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200457 s->req->flags |= CF_NEVER_WAIT;
458 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200459 }
460
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200461 s->rep->rto = TICK_ETERNITY;
462 s->rep->wto = TICK_ETERNITY;
463 s->rep->rex = TICK_ETERNITY;
464 s->rep->wex = TICK_ETERNITY;
465 s->rep->analyse_exp = TICK_ETERNITY;
466
Willy Tarreau62f791e2012-03-09 11:32:30 +0100467 txn = &s->txn;
468 /* Those variables will be checked and freed if non-NULL in
469 * session.c:session_free(). It is important that they are
470 * properly initialized.
471 */
472 txn->sessid = NULL;
473 txn->srv_cookie = NULL;
474 txn->cli_cookie = NULL;
475 txn->uri = NULL;
476 txn->req.cap = NULL;
477 txn->rsp.cap = NULL;
478 txn->hdr_idx.v = NULL;
479 txn->hdr_idx.size = txn->hdr_idx.used = 0;
480 txn->req.flags = 0;
481 txn->rsp.flags = 0;
482 /* the HTTP messages need to know what buffer they're associated with */
Willy Tarreau394db372012-10-12 22:40:39 +0200483 txn->req.chn = s->req;
484 txn->rsp.chn = s->rep;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100485
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200486 /* finish initialization of the accepted file descriptor */
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200487 conn_data_want_recv(&s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200488
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100489 if (p->accept && (ret = p->accept(s)) <= 0) {
490 /* Either we had an unrecoverable error (<0) or work is
491 * finished (=0, eg: monitoring), in both situations,
492 * we can release everything and close.
493 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200494 goto out_free_rep_buf;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200495 }
496
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200497 /* if logs require transport layer information, note it on the connection */
498 if (s->logs.logwait & LW_XPRT)
499 s->si[0].conn.flags |= CO_FL_XPRT_TRACKED;
500
Willy Tarreau2542b532012-08-31 16:01:23 +0200501 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200502 s->si[0].conn.flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200503
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200504 /* it is important not to call the wakeup function directly but to
505 * pass through task_wakeup(), because this one knows how to apply
506 * priorities to tasks.
507 */
508 task_wakeup(t, TASK_WOKEN_INIT);
509 return 1;
510
511 /* Error unrolling */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200512 out_free_rep_buf:
513 pool_free2(pool2_buffer, s->rep->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200514 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200515 pool_free2(pool2_channel, s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200516 out_free_req_buf:
517 pool_free2(pool2_buffer, s->req->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200518 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200519 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200520 out_free_task:
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100521 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200522}
523
Willy Tarreaubaaee002006-06-26 02:48:02 +0200524/*
525 * frees the context associated to a session. It must have been removed first.
526 */
Simon Hormandec5be42011-06-08 09:19:07 +0900527static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200528{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100529 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200530 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100531 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200532 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100533
Willy Tarreaubaaee002006-06-26 02:48:02 +0200534 if (s->pend_pos)
535 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100536
Willy Tarreau827aee92011-03-10 16:55:02 +0100537 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100538 if (s->flags & SN_CURR_SESS) {
539 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100540 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100541 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100542 if (may_dequeue_tasks(target_srv(&s->target), s->be))
543 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100544 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100545
Willy Tarreau7c669d72008-06-20 15:04:11 +0200546 if (unlikely(s->srv_conn)) {
547 /* the session still has a reserved slot on a server, but
548 * it should normally be only the same as the one above,
549 * so this should not happen in fact.
550 */
551 sess_change_server(s, NULL);
552 }
553
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100554 if (s->req->pipe)
555 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100556
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100557 if (s->rep->pipe)
558 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100559
Willy Tarreau9b28e032012-10-12 23:49:43 +0200560 pool_free2(pool2_buffer, s->req->buf);
561 pool_free2(pool2_buffer, s->rep->buf);
562
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200563 pool_free2(pool2_channel, s->req);
564 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200565
Willy Tarreau46023632010-01-07 22:51:47 +0100566 http_end_txn(s);
567
Willy Tarreau1e954912012-10-12 17:50:05 +0200568 /* ensure the client-side transport layer is destroyed */
569 s->si[0].conn.flags &= ~CO_FL_XPRT_TRACKED;
570 conn_xprt_close(&s->si[0].conn);
571
Willy Tarreaua4cda672010-06-06 18:28:49 +0200572 for (i = 0; i < s->store_count; i++) {
573 if (!s->store[i].ts)
574 continue;
575 stksess_free(s->store[i].table, s->store[i].ts);
576 s->store[i].ts = NULL;
577 }
578
Willy Tarreau34eb6712011-10-24 18:15:04 +0200579 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200580 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100581 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
582 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100584
Willy Tarreau56123282010-08-06 19:06:56 +0200585 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200586 session_store_counters(s);
587
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100588 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100589 /* we have to unlink all watchers. We must not relink them if
590 * this session was the last one in the list.
591 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100592 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100593 LIST_INIT(&bref->users);
594 if (s->list.n != &sessions)
595 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100596 bref->ref = s->list.n;
597 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100598 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200599 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200600
601 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200602 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200603 pool_flush2(pool2_buffer);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200604 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200605 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200606 pool_flush2(pool2_requri);
607 pool_flush2(pool2_capture);
608 pool_flush2(pool2_session);
609 pool_flush2(fe->req_cap_pool);
610 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200611 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200612}
613
614
615/* perform minimal intializations, report 0 in case of error, 1 if OK. */
616int init_session()
617{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100618 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200619 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
620 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200621}
622
Willy Tarreau30e71012007-11-26 20:15:35 +0100623void session_process_counters(struct session *s)
624{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100625 unsigned long long bytes;
626
Willy Tarreau30e71012007-11-26 20:15:35 +0100627 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100628 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100629 s->logs.bytes_in = s->req->total;
630 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100631 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100632
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100633 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100634
Willy Tarreau827aee92011-03-10 16:55:02 +0100635 if (target_srv(&s->target))
636 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200637
638 if (s->listener->counters)
639 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200640
Willy Tarreau56123282010-08-06 19:06:56 +0200641 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200642 void *ptr;
643
Willy Tarreau56123282010-08-06 19:06:56 +0200644 ptr = stktable_data_ptr(s->stkctr2_table,
645 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200646 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200647 if (ptr)
648 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200649
Willy Tarreau56123282010-08-06 19:06:56 +0200650 ptr = stktable_data_ptr(s->stkctr2_table,
651 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200652 STKTABLE_DT_BYTES_IN_RATE);
653 if (ptr)
654 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200655 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200656 }
657
Willy Tarreau56123282010-08-06 19:06:56 +0200658 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200659 void *ptr;
660
Willy Tarreau56123282010-08-06 19:06:56 +0200661 ptr = stktable_data_ptr(s->stkctr1_table,
662 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200663 STKTABLE_DT_BYTES_IN_CNT);
664 if (ptr)
665 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
666
Willy Tarreau56123282010-08-06 19:06:56 +0200667 ptr = stktable_data_ptr(s->stkctr1_table,
668 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200669 STKTABLE_DT_BYTES_IN_RATE);
670 if (ptr)
671 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200672 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200673 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100674 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100675 }
676
Willy Tarreau30e71012007-11-26 20:15:35 +0100677 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100678 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100679 s->logs.bytes_out = s->rep->total;
680 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100681 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100682
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100683 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100684
Willy Tarreau827aee92011-03-10 16:55:02 +0100685 if (target_srv(&s->target))
686 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200687
688 if (s->listener->counters)
689 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200690
Willy Tarreau56123282010-08-06 19:06:56 +0200691 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200692 void *ptr;
693
Willy Tarreau56123282010-08-06 19:06:56 +0200694 ptr = stktable_data_ptr(s->stkctr2_table,
695 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200696 STKTABLE_DT_BYTES_OUT_CNT);
697 if (ptr)
698 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
699
Willy Tarreau56123282010-08-06 19:06:56 +0200700 ptr = stktable_data_ptr(s->stkctr2_table,
701 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200702 STKTABLE_DT_BYTES_OUT_RATE);
703 if (ptr)
704 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200705 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200706 }
707
Willy Tarreau56123282010-08-06 19:06:56 +0200708 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200709 void *ptr;
710
Willy Tarreau56123282010-08-06 19:06:56 +0200711 ptr = stktable_data_ptr(s->stkctr1_table,
712 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200713 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200714 if (ptr)
715 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200716
Willy Tarreau56123282010-08-06 19:06:56 +0200717 ptr = stktable_data_ptr(s->stkctr1_table,
718 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200719 STKTABLE_DT_BYTES_OUT_RATE);
720 if (ptr)
721 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200722 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200723 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100724 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100725 }
726}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200727
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100728/* This function is called with (si->state == SI_ST_CON) meaning that a
729 * connection was attempted and that the file descriptor is already allocated.
730 * We must check for establishment, error and abort. Possible output states
731 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
732 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
733 * otherwise 1.
734 */
Simon Hormandec5be42011-06-08 09:19:07 +0900735static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100736{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200737 struct channel *req = si->ob;
738 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100739
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100740 /* If we got an error, or if nothing happened and the connection timed
741 * out, we must give up. The CER state handler will take care of retry
742 * attempts and error reports.
743 */
744 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100745 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100746 si->state = SI_ST_CER;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200747 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100748
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200749 conn_xprt_close(&si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200750 if (si->release)
751 si->release(si);
752
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100753 if (si->err_type)
754 return 0;
755
Willy Tarreau827aee92011-03-10 16:55:02 +0100756 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100757 if (si->flags & SI_FL_ERR)
758 si->err_type = SI_ET_CONN_ERR;
759 else
760 si->err_type = SI_ET_CONN_TO;
761 return 0;
762 }
763
764 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200765 if (unlikely((rep->flags & CF_SHUTW) ||
766 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
767 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100768 s->be->options & PR_O_ABRT_CLOSE)))) {
769 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200770 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100771 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100772 si->err_loc = target_srv(&s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100773 if (s->srv_error)
774 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100775 return 1;
776 }
777
778 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200779 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100780 return 1;
781
782 /* OK, this means that a connection succeeded. The caller will be
783 * responsible for handling the transition from CON to EST.
784 */
785 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100786 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100787 si->state = SI_ST_EST;
788 si->err_type = SI_ET_NONE;
789 si->err_loc = NULL;
790 return 1;
791}
792
793/* This function is called with (si->state == SI_ST_CER) meaning that a
794 * previous connection attempt has failed and that the file descriptor
795 * has already been released. Possible causes include asynchronous error
796 * notification and time out. Possible output states are SI_ST_CLO when
797 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
798 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
799 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
800 * marked as in error state. It returns 0.
801 */
Simon Hormandec5be42011-06-08 09:19:07 +0900802static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100803{
804 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100805 if (target_srv(&s->target)) {
806 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100807
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100808 if (s->flags & SN_CURR_SESS) {
809 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100810 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100811 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100812 }
813
814 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200815 si->conn_retries--;
816 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100817 if (!si->err_type) {
818 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100819 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100820 }
821
Willy Tarreau827aee92011-03-10 16:55:02 +0100822 if (target_srv(&s->target))
823 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100824 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100825 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100826 if (may_dequeue_tasks(target_srv(&s->target), s->be))
827 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100828
829 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200830 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200831 si->ob->flags |= CF_WRITE_ERROR;
832 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100833
834 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100835 if (s->srv_error)
836 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100837 return 0;
838 }
839
840 /* If the "redispatch" option is set on the backend, we are allowed to
841 * retry on another server for the last retry. In order to achieve this,
842 * we must mark the session unassigned, and eventually clear the DIRECT
843 * bit to ignore any persistence cookie. We won't count a retry nor a
844 * redispatch yet, because this will depend on what server is selected.
845 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100846 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100847 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100848 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100849 if (may_dequeue_tasks(target_srv(&s->target), s->be))
850 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100851
852 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100853 si->state = SI_ST_REQ;
854 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100855 if (target_srv(&s->target))
856 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100857 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858 si->state = SI_ST_ASS;
859 }
860
861 if (si->flags & SI_FL_ERR) {
862 /* The error was an asynchronous connection error, and we will
863 * likely have to retry connecting to the same server, most
864 * likely leading to the same result. To avoid this, we wait
865 * one second before retrying.
866 */
867
868 if (!si->err_type)
869 si->err_type = SI_ET_CONN_ERR;
870
871 si->state = SI_ST_TAR;
872 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
873 return 0;
874 }
875 return 0;
876}
877
878/*
879 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200880 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200881 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100882 */
Simon Hormandec5be42011-06-08 09:19:07 +0900883static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100884{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200885 struct channel *req = si->ob;
886 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100887
Willy Tarreau827aee92011-03-10 16:55:02 +0100888 if (target_srv(&s->target))
889 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100890
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100891 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100892 /* if the user wants to log as soon as possible, without counting
893 * bytes from the server, then this is the right moment. */
894 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
895 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100896 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100897 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100898 }
899 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100900 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
901 /* reset hdr_idx which was already initialized by the request.
902 * right now, the http parser does it.
903 * hdr_idx_init(&s->txn.hdr_idx);
904 */
905 }
906
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200907 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200908 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200909 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200910 /* real connections have timeouts */
911 req->wto = s->be->timeout.server;
912 rep->rto = s->be->timeout.server;
913 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100914 req->wex = TICK_ETERNITY;
915}
916
917/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
918 * Other input states are simply ignored.
919 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
920 * Flags must have previously been updated for timeouts and other conditions.
921 */
Simon Hormandec5be42011-06-08 09:19:07 +0900922static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100923{
Willy Tarreau827aee92011-03-10 16:55:02 +0100924 struct server *srv = target_srv(&s->target);
925
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100926 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 +0100927 now_ms, __FUNCTION__,
928 s,
929 s->req, s->rep,
930 s->req->rex, s->rep->wex,
931 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200932 s->req->buf->i, s->req->buf->o, s->rep->buf->i, s->rep->buf->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100933
934 if (si->state == SI_ST_ASS) {
935 /* Server assigned to connection request, we have to try to connect now */
936 int conn_err;
937
938 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100939 srv = target_srv(&s->target);
940
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100941 if (conn_err == SN_ERR_NONE) {
942 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100943 if (srv)
944 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100945 return;
946 }
947
948 /* We have received a synchronous error. We might have to
949 * abort, retry immediately or redispatch.
950 */
951 if (conn_err == SN_ERR_INTERNAL) {
952 if (!si->err_type) {
953 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100954 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100955 }
956
Willy Tarreau827aee92011-03-10 16:55:02 +0100957 if (srv)
958 srv_inc_sess_ctr(srv);
959 if (srv)
960 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100961 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100962
963 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100964 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100965 if (may_dequeue_tasks(srv, s->be))
966 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100967
968 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200969 si_shutr(si);
970 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200971 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100972
973 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
974
975 /* no session was ever accounted for this server */
976 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100977 if (s->srv_error)
978 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100979 return;
980 }
981
982 /* We are facing a retryable error, but we don't want to run a
983 * turn-around now, as the problem is likely a source port
984 * allocation problem, so we want to retry now.
985 */
986 si->state = SI_ST_CER;
987 si->flags &= ~SI_FL_ERR;
988 sess_update_st_cer(s, si);
989 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
990 return;
991 }
992 else if (si->state == SI_ST_QUE) {
993 /* connection request was queued, check for any update */
994 if (!s->pend_pos) {
995 /* The connection is not in the queue anymore. Either
996 * we have a server connection slot available and we
997 * go directly to the assigned state, or we need to
998 * load-balance first and go to the INI state.
999 */
1000 si->exp = TICK_ETERNITY;
1001 if (unlikely(!(s->flags & SN_ASSIGNED)))
1002 si->state = SI_ST_REQ;
1003 else {
1004 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1005 si->state = SI_ST_ASS;
1006 }
1007 return;
1008 }
1009
1010 /* Connection request still in queue... */
1011 if (si->flags & SI_FL_EXP) {
1012 /* ... and timeout expired */
1013 si->exp = TICK_ETERNITY;
1014 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001015 if (srv)
1016 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001017 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001018 si_shutr(si);
1019 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001020 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001021 if (!si->err_type)
1022 si->err_type = SI_ET_QUEUE_TO;
1023 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001024 if (s->srv_error)
1025 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001026 return;
1027 }
1028
1029 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001030 if ((si->ob->flags & (CF_READ_ERROR)) ||
1031 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001032 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001033 /* give up */
1034 si->exp = TICK_ETERNITY;
1035 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001036 si_shutr(si);
1037 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001038 si->err_type |= SI_ET_QUEUE_ABRT;
1039 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001040 if (s->srv_error)
1041 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001042 return;
1043 }
1044
1045 /* Nothing changed */
1046 return;
1047 }
1048 else if (si->state == SI_ST_TAR) {
1049 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001050 if ((si->ob->flags & (CF_READ_ERROR)) ||
1051 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001052 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001053 /* give up */
1054 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001055 si_shutr(si);
1056 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001057 si->err_type |= SI_ET_CONN_ABRT;
1058 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001059 if (s->srv_error)
1060 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001061 return;
1062 }
1063
1064 if (!(si->flags & SI_FL_EXP))
1065 return; /* still in turn-around */
1066
1067 si->exp = TICK_ETERNITY;
1068
1069 /* we keep trying on the same server as long as the session is
1070 * marked "assigned".
1071 * FIXME: Should we force a redispatch attempt when the server is down ?
1072 */
1073 if (s->flags & SN_ASSIGNED)
1074 si->state = SI_ST_ASS;
1075 else
1076 si->state = SI_ST_REQ;
1077 return;
1078 }
1079}
1080
Simon Hormandec5be42011-06-08 09:19:07 +09001081/* Set correct session termination flags in case no analyser has done it. It
1082 * also counts a failed request if the server state has not reached the request
1083 * stage.
1084 */
1085static void sess_set_term_flags(struct session *s)
1086{
1087 if (!(s->flags & SN_FINST_MASK)) {
1088 if (s->si[1].state < SI_ST_REQ) {
1089
1090 s->fe->fe_counters.failed_req++;
1091 if (s->listener->counters)
1092 s->listener->counters->failed_req++;
1093
1094 s->flags |= SN_FINST_R;
1095 }
1096 else if (s->si[1].state == SI_ST_QUE)
1097 s->flags |= SN_FINST_Q;
1098 else if (s->si[1].state < SI_ST_EST)
1099 s->flags |= SN_FINST_C;
1100 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1101 s->flags |= SN_FINST_D;
1102 else
1103 s->flags |= SN_FINST_L;
1104 }
1105}
1106
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001107/* This function initiates a server connection request on a stream interface
1108 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1109 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1110 * or SI_ST_CLO upon error.
1111 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001112static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1113{
1114 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 +01001115 now_ms, __FUNCTION__,
1116 s,
1117 s->req, s->rep,
1118 s->req->rex, s->rep->wex,
1119 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001120 s->req->buf->i, s->req->buf->o, s->rep->buf->i, s->rep->buf->o, s->rep->cons->state, s->req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001121
1122 if (si->state != SI_ST_REQ)
1123 return;
1124
1125 /* Try to assign a server */
1126 if (srv_redispatch_connect(s) != 0) {
1127 /* We did not get a server. Either we queued the
1128 * connection request, or we encountered an error.
1129 */
1130 if (si->state == SI_ST_QUE)
1131 return;
1132
1133 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001134 si_shutr(si);
1135 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001136 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001137 if (!si->err_type)
1138 si->err_type = SI_ET_CONN_OTHER;
1139 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001140 if (s->srv_error)
1141 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001142 return;
1143 }
1144
1145 /* The server is assigned */
1146 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1147 si->state = SI_ST_ASS;
1148}
1149
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001150/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001151 * if appropriate. The default_backend rule is also considered, then the
1152 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001153 * It returns 1 if the processing can continue on next analysers, or zero if it
1154 * either needs more data or wants to immediately abort the request.
1155 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001156static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001157{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001158 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001159
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001160 req->analysers &= ~an_bit;
1161 req->analyse_exp = TICK_ETERNITY;
1162
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001163 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 +02001164 now_ms, __FUNCTION__,
1165 s,
1166 req,
1167 req->rex, req->wex,
1168 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001169 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001170 req->analysers);
1171
1172 /* now check whether we have some switching rules for this request */
1173 if (!(s->flags & SN_BE_ASSIGNED)) {
1174 struct switching_rule *rule;
1175
1176 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1177 int ret;
1178
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001179 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 +02001180 ret = acl_pass(ret);
1181 if (rule->cond->pol == ACL_COND_UNLESS)
1182 ret = !ret;
1183
1184 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001185 if (!session_set_backend(s, rule->be.backend))
1186 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001187 break;
1188 }
1189 }
1190
1191 /* To ensure correct connection accounting on the backend, we
1192 * have to assign one if it was not set (eg: a listen). This
1193 * measure also takes care of correctly setting the default
1194 * backend if any.
1195 */
1196 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001197 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1198 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001199 }
1200
Willy Tarreaufb356202010-08-03 14:02:05 +02001201 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1202 if (s->fe == s->be) {
1203 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001204 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001205 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001206
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001207 /* 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 +01001208 * persistence rule, and report that in the session.
1209 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001210 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001211 int ret = 1;
1212
1213 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001214 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 +01001215 ret = acl_pass(ret);
1216 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1217 ret = !ret;
1218 }
1219
1220 if (ret) {
1221 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001222 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1223 s->flags |= SN_FORCE_PRST;
1224 } else {
1225 s->flags |= SN_IGNORE_PRST;
1226 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001227 break;
1228 }
1229 }
1230
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001231 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001232
1233 sw_failed:
1234 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001235 channel_abort(s->req);
1236 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001237
1238 if (!(s->flags & SN_ERR_MASK))
1239 s->flags |= SN_ERR_RESOURCE;
1240 if (!(s->flags & SN_FINST_MASK))
1241 s->flags |= SN_FINST_R;
1242
1243 s->txn.status = 500;
1244 s->req->analysers = 0;
1245 s->req->analyse_exp = TICK_ETERNITY;
1246 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001247}
1248
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001249/* This stream analyser works on a request. It applies all use-server rules on
1250 * it then returns 1. The data must already be present in the buffer otherwise
1251 * they won't match. It always returns 1.
1252 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001253static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001254{
1255 struct proxy *px = s->be;
1256 struct server_rule *rule;
1257
1258 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1259 now_ms, __FUNCTION__,
1260 s,
1261 req,
1262 req->rex, req->wex,
1263 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001264 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001265 req->analysers);
1266
1267 if (!(s->flags & SN_ASSIGNED)) {
1268 list_for_each_entry(rule, &px->server_rules, list) {
1269 int ret;
1270
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001271 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 +02001272 ret = acl_pass(ret);
1273 if (rule->cond->pol == ACL_COND_UNLESS)
1274 ret = !ret;
1275
1276 if (ret) {
1277 struct server *srv = rule->srv.ptr;
1278
1279 if ((srv->state & SRV_RUNNING) ||
1280 (px->options & PR_O_PERSIST) ||
1281 (s->flags & SN_FORCE_PRST)) {
1282 s->flags |= SN_DIRECT | SN_ASSIGNED;
1283 set_target_server(&s->target, srv);
1284 break;
1285 }
1286 /* if the server is not UP, let's go on with next rules
1287 * just in case another one is suited.
1288 */
1289 }
1290 }
1291 }
1292
1293 req->analysers &= ~an_bit;
1294 req->analyse_exp = TICK_ETERNITY;
1295 return 1;
1296}
1297
Emeric Brun1d33b292010-01-04 15:47:17 +01001298/* This stream analyser works on a request. It applies all sticking rules on
1299 * it then returns 1. The data must already be present in the buffer otherwise
1300 * they won't match. It always returns 1.
1301 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001302static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001303{
1304 struct proxy *px = s->be;
1305 struct sticking_rule *rule;
1306
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001307 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 +01001308 now_ms, __FUNCTION__,
1309 s,
1310 req,
1311 req->rex, req->wex,
1312 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001313 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001314 req->analysers);
1315
1316 list_for_each_entry(rule, &px->sticking_rules, list) {
1317 int ret = 1 ;
1318 int i;
1319
1320 for (i = 0; i < s->store_count; i++) {
1321 if (rule->table.t == s->store[i].table)
1322 break;
1323 }
1324
1325 if (i != s->store_count)
1326 continue;
1327
1328 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001329 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001330 ret = acl_pass(ret);
1331 if (rule->cond->pol == ACL_COND_UNLESS)
1332 ret = !ret;
1333 }
1334
1335 if (ret) {
1336 struct stktable_key *key;
1337
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001338 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 +01001339 if (!key)
1340 continue;
1341
1342 if (rule->flags & STK_IS_MATCH) {
1343 struct stksess *ts;
1344
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001345 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001346 if (!(s->flags & SN_ASSIGNED)) {
1347 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001348 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001349
1350 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001351 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1352 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001353 if (node) {
1354 struct server *srv;
1355
1356 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001357 if ((srv->state & SRV_RUNNING) ||
1358 (px->options & PR_O_PERSIST) ||
1359 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001360 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001361 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001362 }
1363 }
1364 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001365 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001366 }
1367 }
1368 if (rule->flags & STK_IS_STORE) {
1369 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1370 struct stksess *ts;
1371
1372 ts = stksess_new(rule->table.t, key);
1373 if (ts) {
1374 s->store[s->store_count].table = rule->table.t;
1375 s->store[s->store_count++].ts = ts;
1376 }
1377 }
1378 }
1379 }
1380 }
1381
1382 req->analysers &= ~an_bit;
1383 req->analyse_exp = TICK_ETERNITY;
1384 return 1;
1385}
1386
1387/* This stream analyser works on a response. It applies all store rules on it
1388 * then returns 1. The data must already be present in the buffer otherwise
1389 * they won't match. It always returns 1.
1390 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001391static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001392{
1393 struct proxy *px = s->be;
1394 struct sticking_rule *rule;
1395 int i;
1396
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001397 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 +01001398 now_ms, __FUNCTION__,
1399 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001400 rep,
1401 rep->rex, rep->wex,
1402 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001403 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001404 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001405
1406 list_for_each_entry(rule, &px->storersp_rules, list) {
1407 int ret = 1 ;
1408 int storereqidx = -1;
1409
1410 for (i = 0; i < s->store_count; i++) {
1411 if (rule->table.t == s->store[i].table) {
1412 if (!(s->store[i].flags))
1413 storereqidx = i;
1414 break;
1415 }
1416 }
1417
1418 if ((i != s->store_count) && (storereqidx == -1))
1419 continue;
1420
1421 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001422 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001423 ret = acl_pass(ret);
1424 if (rule->cond->pol == ACL_COND_UNLESS)
1425 ret = !ret;
1426 }
1427
1428 if (ret) {
1429 struct stktable_key *key;
1430
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001431 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 +01001432 if (!key)
1433 continue;
1434
1435 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001436 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001437 s->store[storereqidx].flags = 1;
1438 }
1439 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1440 struct stksess *ts;
1441
1442 ts = stksess_new(rule->table.t, key);
1443 if (ts) {
1444 s->store[s->store_count].table = rule->table.t;
1445 s->store[s->store_count].flags = 1;
1446 s->store[s->store_count++].ts = ts;
1447 }
1448 }
1449 }
1450 }
1451
1452 /* process store request and store response */
1453 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001454 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001455 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001456
Simon Hormanfa461682011-06-25 09:39:49 +09001457 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1458 stksess_free(s->store[i].table, s->store[i].ts);
1459 s->store[i].ts = NULL;
1460 continue;
1461 }
1462
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001463 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1464 if (ts) {
1465 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001466 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001467 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001468 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001469 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001470 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001471
1472 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001473 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001474 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001475 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001476 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001477
1478 rep->analysers &= ~an_bit;
1479 rep->analyse_exp = TICK_ETERNITY;
1480 return 1;
1481}
1482
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001483/* This macro is very specific to the function below. See the comments in
1484 * process_session() below to understand the logic and the tests.
1485 */
1486#define UPDATE_ANALYSERS(real, list, back, flag) { \
1487 list = (((list) & ~(flag)) | ~(back)) & (real); \
1488 back = real; \
1489 if (!(list)) \
1490 break; \
1491 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1492 continue; \
1493}
1494
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001495/* Processes the client, server, request and response jobs of a session task,
1496 * then puts it back to the wait queue in a clean state, or cleans up its
1497 * resources if it must be deleted. Returns in <next> the date the task wants
1498 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1499 * nothing too many times, the request and response buffers flags are monitored
1500 * and each function is called only if at least another function has changed at
1501 * least one flag it is interested in.
1502 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001503struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001504{
Willy Tarreau827aee92011-03-10 16:55:02 +01001505 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001506 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001507 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001508 unsigned int rq_prod_last, rq_cons_last;
1509 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001510 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001511
1512 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1513 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1514
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001515 /* this data may be no longer valid, clear it */
1516 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1517
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001518 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001519 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001520
1521 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001522 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1523 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001524
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001525 /* we don't want the stream interface functions to recursively wake us up */
1526 if (s->req->prod->owner == t)
1527 s->req->prod->flags |= SI_FL_DONT_WAKE;
1528 if (s->req->cons->owner == t)
1529 s->req->cons->flags |= SI_FL_DONT_WAKE;
1530
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001531 /* 1a: Check for low level timeouts if needed. We just set a flag on
1532 * stream interfaces when their timeouts have expired.
1533 */
1534 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1535 stream_int_check_timeouts(&s->si[0]);
1536 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001537
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001538 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001539 * for future reads or writes. Note: this will also concern upper layers
1540 * but we do not touch any other flag. We must be careful and correctly
1541 * detect state changes when calling them.
1542 */
1543
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001544 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001545
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001546 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001547 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001548 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001549 }
1550
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001551 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001552 if (s->req->prod->flags & SI_FL_NOHALF)
1553 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001554 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001555 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001556
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001557 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001558
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001559 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001560 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001561 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001562 }
1563
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001564 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001565 if (s->rep->prod->flags & SI_FL_NOHALF)
1566 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001567 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001568 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001569 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001570
1571 /* 1b: check for low-level errors reported at the stream interface.
1572 * First we check if it's a retryable error (in which case we don't
1573 * want to tell the buffer). Otherwise we report the error one level
1574 * upper by setting flags into the buffers. Note that the side towards
1575 * the client cannot have connect (hence retryable) errors. Also, the
1576 * connection setup code must be able to deal with any type of abort.
1577 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001578 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001579 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1580 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001581 si_shutr(&s->si[0]);
1582 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001583 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001584 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001585 s->be->be_counters.cli_aborts++;
1586 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001587 if (srv)
1588 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001589 if (!(s->flags & SN_ERR_MASK))
1590 s->flags |= SN_ERR_CLICL;
1591 if (!(s->flags & SN_FINST_MASK))
1592 s->flags |= SN_FINST_D;
1593 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001594 }
1595 }
1596
1597 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1598 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001599 si_shutr(&s->si[1]);
1600 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001601 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001602 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001603 if (srv)
1604 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001605 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001606 s->be->be_counters.srv_aborts++;
1607 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001608 if (srv)
1609 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001610 if (!(s->flags & SN_ERR_MASK))
1611 s->flags |= SN_ERR_SRVCL;
1612 if (!(s->flags & SN_FINST_MASK))
1613 s->flags |= SN_FINST_D;
1614 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001615 }
1616 /* note: maybe we should process connection errors here ? */
1617 }
1618
1619 if (s->si[1].state == SI_ST_CON) {
1620 /* we were trying to establish a connection on the server side,
1621 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1622 */
1623 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1624 sess_update_st_cer(s, &s->si[1]);
1625 else if (s->si[1].state == SI_ST_EST)
1626 sess_establish(s, &s->si[1]);
1627
1628 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1629 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1630 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1631 */
1632 }
1633
Willy Tarreau815a9b22010-07-27 17:15:12 +02001634 rq_prod_last = s->si[0].state;
1635 rq_cons_last = s->si[1].state;
1636 rp_cons_last = s->si[0].state;
1637 rp_prod_last = s->si[1].state;
1638
1639 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001640 /* Check for connection closure */
1641
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001642 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001643 "[%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 +01001644 now_ms, __FUNCTION__, __LINE__,
1645 t,
1646 s, s->flags,
1647 s->req, s->rep,
1648 s->req->rex, s->rep->wex,
1649 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001650 s->req->buf->i, s->req->buf->o, s->rep->buf->i, s->rep->buf->o, s->rep->cons->state, s->req->cons->state,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001651 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001652 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001653
1654 /* nothing special to be done on client side */
1655 if (unlikely(s->req->prod->state == SI_ST_DIS))
1656 s->req->prod->state = SI_ST_CLO;
1657
1658 /* When a server-side connection is released, we have to count it and
1659 * check for pending connections on this server.
1660 */
1661 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1662 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001663 srv = target_srv(&s->target);
1664 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001665 if (s->flags & SN_CURR_SESS) {
1666 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001667 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001668 }
1669 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001670 if (may_dequeue_tasks(srv, s->be))
1671 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001672 }
1673 }
1674
1675 /*
1676 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1677 * at this point.
1678 */
1679
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001680 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001681 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001682 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1683 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001684 s->si[0].state != rq_prod_last ||
1685 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001686 unsigned int flags = s->req->flags;
1687
1688 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001689 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001690 unsigned int ana_list;
1691 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001692
Willy Tarreau90deb182010-01-07 00:20:41 +01001693 /* it's up to the analysers to stop new connections,
1694 * disable reading or closing. Note: if an analyser
1695 * disables any of these bits, it is responsible for
1696 * enabling them again when it disables itself, so
1697 * that other analysers are called in similar conditions.
1698 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001699 channel_auto_read(s->req);
1700 channel_auto_connect(s->req);
1701 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001702
1703 /* We will call all analysers for which a bit is set in
1704 * s->req->analysers, following the bit order from LSB
1705 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001706 * the list when not needed. Any analyser may return 0
1707 * to break out of the loop, either because of missing
1708 * data to take a decision, or because it decides to
1709 * kill the session. We loop at least once through each
1710 * analyser, and we may loop again if other analysers
1711 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001712 *
1713 * We build a list of analysers to run. We evaluate all
1714 * of these analysers in the order of the lower bit to
1715 * the higher bit. This ordering is very important.
1716 * An analyser will often add/remove other analysers,
1717 * including itself. Any changes to itself have no effect
1718 * on the loop. If it removes any other analysers, we
1719 * want those analysers not to be called anymore during
1720 * this loop. If it adds an analyser that is located
1721 * after itself, we want it to be scheduled for being
1722 * processed during the loop. If it adds an analyser
1723 * which is located before it, we want it to switch to
1724 * it immediately, even if it has already been called
1725 * once but removed since.
1726 *
1727 * In order to achieve this, we compare the analyser
1728 * list after the call with a copy of it before the
1729 * call. The work list is fed with analyser bits that
1730 * appeared during the call. Then we compare previous
1731 * work list with the new one, and check the bits that
1732 * appeared. If the lowest of these bits is lower than
1733 * the current bit, it means we have enabled a previous
1734 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001735 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001736
1737 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001738 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001739 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001740
Willy Tarreaufb356202010-08-03 14:02:05 +02001741 if (ana_list & AN_REQ_INSPECT_FE) {
1742 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001743 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001744 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001745 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001746
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001747 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001748 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001749 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001750 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001751 }
1752
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001753 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001754 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1755 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001756 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001757 }
1758
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001759 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001760 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1761 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001762 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001763 }
1764
Willy Tarreaufb356202010-08-03 14:02:05 +02001765 if (ana_list & AN_REQ_INSPECT_BE) {
1766 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1767 break;
1768 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1769 }
1770
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001771 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001772 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1773 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001774 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001775 }
1776
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001777 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001778 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001779 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001780 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001781 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001782
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001783 if (ana_list & AN_REQ_SRV_RULES) {
1784 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1785 break;
1786 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1787 }
1788
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001789 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001790 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1791 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001792 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001793 }
1794
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001795 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001796 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001797 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001798 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001799 }
Emeric Brun647caf12009-06-30 17:57:00 +02001800
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001801 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001802 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1803 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001804 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001805 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001806
Emeric Brun1d33b292010-01-04 15:47:17 +01001807 if (ana_list & AN_REQ_STICKING_RULES) {
1808 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1809 break;
1810 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1811 }
1812
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001813 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001814 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1815 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001816 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001817 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001818 break;
1819 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001820 }
Willy Tarreau84455332009-03-15 22:34:05 +01001821
Willy Tarreau815a9b22010-07-27 17:15:12 +02001822 rq_prod_last = s->si[0].state;
1823 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001824 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001825 rqf_last = s->req->flags;
1826
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001827 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001828 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001829 }
1830
Willy Tarreau576507f2010-01-07 00:09:04 +01001831 /* we'll monitor the request analysers while parsing the response,
1832 * because some response analysers may indirectly enable new request
1833 * analysers (eg: HTTP keep-alive).
1834 */
1835 req_ana_back = s->req->analysers;
1836
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001837 resync_response:
1838 /* Analyse response */
1839
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001840 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001841 /* In inject mode, we wake up everytime something has
1842 * happened on the write side of the buffer.
1843 */
1844 unsigned int flags = s->rep->flags;
1845
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001846 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001847 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001848 s->rep->hijacker(s, s->rep);
1849 }
1850
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001851 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001852 rpf_last = s->rep->flags;
1853 goto resync_response;
1854 }
1855 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001856 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1857 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001858 s->si[0].state != rp_cons_last ||
1859 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001860 unsigned int flags = s->rep->flags;
1861
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001862 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001863 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1864 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1865 * for some free space in the response buffer, so we might need to call
1866 * it when something changes in the response buffer, but still we pass
1867 * it the request buffer. Note that the SI state might very well still
1868 * be zero due to us returning a flow of redirects!
1869 */
1870 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001871 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001872 }
1873
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001874 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001875 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001876 unsigned int ana_list;
1877 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001878
Willy Tarreau90deb182010-01-07 00:20:41 +01001879 /* it's up to the analysers to stop disable reading or
1880 * closing. Note: if an analyser disables any of these
1881 * bits, it is responsible for enabling them again when
1882 * it disables itself, so that other analysers are called
1883 * in similar conditions.
1884 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001885 channel_auto_read(s->rep);
1886 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001887
1888 /* We will call all analysers for which a bit is set in
1889 * s->rep->analysers, following the bit order from LSB
1890 * to MSB. The analysers must remove themselves from
1891 * the list when not needed. Any analyser may return 0
1892 * to break out of the loop, either because of missing
1893 * data to take a decision, or because it decides to
1894 * kill the session. We loop at least once through each
1895 * analyser, and we may loop again if other analysers
1896 * are added in the middle.
1897 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001898
1899 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001900 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001901 /* Warning! ensure that analysers are always placed in ascending order! */
1902
Emeric Brun97679e72010-09-23 17:56:44 +02001903 if (ana_list & AN_RES_INSPECT) {
1904 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1905 break;
1906 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1907 }
1908
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001909 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001910 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1911 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001912 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001913 }
1914
Emeric Brun1d33b292010-01-04 15:47:17 +01001915 if (ana_list & AN_RES_STORE_RULES) {
1916 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1917 break;
1918 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1919 }
1920
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001921 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001922 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1923 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001924 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001925 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001926
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001927 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001928 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1929 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001930 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001931 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001932 break;
1933 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001934 }
1935
Willy Tarreau815a9b22010-07-27 17:15:12 +02001936 rp_cons_last = s->si[0].state;
1937 rp_prod_last = s->si[1].state;
1938 rpf_last = s->rep->flags;
1939
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001940 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001941 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001942 }
1943
Willy Tarreau576507f2010-01-07 00:09:04 +01001944 /* maybe someone has added some request analysers, so we must check and loop */
1945 if (s->req->analysers & ~req_ana_back)
1946 goto resync_request;
1947
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001948 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001949 goto resync_request;
1950
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001951 /* FIXME: here we should call protocol handlers which rely on
1952 * both buffers.
1953 */
1954
1955
1956 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001957 * Now we propagate unhandled errors to the session. Normally
1958 * we're just in a data phase here since it means we have not
1959 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001960 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001961 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001962 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001963 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001964 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001965 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001966 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001967 s->be->be_counters.cli_aborts++;
1968 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001969 if (srv)
1970 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001971 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001972 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001973 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001974 s->be->be_counters.cli_aborts++;
1975 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001976 if (srv)
1977 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001978 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001979 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001980 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001981 s->be->be_counters.srv_aborts++;
1982 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001983 if (srv)
1984 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001985 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001986 }
1987 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001988 s->be->be_counters.srv_aborts++;
1989 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001990 if (srv)
1991 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001992 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001993 }
Willy Tarreau84455332009-03-15 22:34:05 +01001994 sess_set_term_flags(s);
1995 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001996 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001997 /* Report it if the server got an error or a read timeout expired */
1998 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001999 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002000 s->be->be_counters.srv_aborts++;
2001 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002002 if (srv)
2003 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002004 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002005 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002006 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002007 s->be->be_counters.srv_aborts++;
2008 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002009 if (srv)
2010 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002011 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002012 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002013 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002014 s->be->be_counters.cli_aborts++;
2015 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002016 if (srv)
2017 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002018 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002019 }
2020 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002021 s->be->be_counters.cli_aborts++;
2022 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002023 if (srv)
2024 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002025 s->flags |= SN_ERR_CLITO;
2026 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002027 sess_set_term_flags(s);
2028 }
Willy Tarreau84455332009-03-15 22:34:05 +01002029 }
2030
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002031 /*
2032 * Here we take care of forwarding unhandled data. This also includes
2033 * connection establishments and shutdown requests.
2034 */
2035
2036
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002037 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002038 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002039 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002040 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002041 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002042 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002043 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002044 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002045 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002046 /* This buffer is freewheeling, there's no analyser nor hijacker
2047 * attached to it. If any data are left in, we'll permit them to
2048 * move.
2049 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002050 channel_auto_read(s->req);
2051 channel_auto_connect(s->req);
2052 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002053 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002054
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002055 /* We'll let data flow between the producer (if still connected)
2056 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002057 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002058 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002059 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002060 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002061
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002062 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002063 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002064 s->req->to_forward &&
2065 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02002066 (s->si[0].conn.xprt && s->si[0].conn.xprt->rcv_pipe && s->si[0].conn.xprt->snd_pipe) &&
2067 (s->si[1].conn.xprt && s->si[1].conn.xprt->rcv_pipe && s->si[1].conn.xprt->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002068 (pipes_used < global.maxpipes) &&
2069 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2070 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002071 (s->req->flags & CF_STREAMER_FAST)))) {
2072 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002073 }
2074
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002075 /* reflect what the L7 analysers have seen last */
2076 rqf_last = s->req->flags;
2077
2078 /*
2079 * Now forward all shutdown requests between both sides of the buffer
2080 */
2081
Willy Tarreau520d95e2009-09-19 21:04:57 +02002082 /* first, let's check if the request buffer needs to shutdown(write), which may
2083 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002084 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002085 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002086 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2087 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002088 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002089
2090 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002091 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002092 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002093 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002094
2095 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002096 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002097 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002098 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002099
2100 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002101 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002102 if (s->req->prod->flags & SI_FL_NOHALF)
2103 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002104 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002105 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002106
Willy Tarreau520d95e2009-09-19 21:04:57 +02002107 /* it's possible that an upper layer has requested a connection setup or abort.
2108 * There are 2 situations where we decide to establish a new connection :
2109 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002110 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002111 */
2112 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002113 if (!(s->req->flags & CF_SHUTW)) {
2114 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002115 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002116 * switch to the connected state, otherwise we perform a connection
2117 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002118 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002119 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002120 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau3cefd522012-08-30 15:49:18 +02002121 if (unlikely(s->req->cons->conn.target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002122 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002123 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002124 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002125 s->req->wex = TICK_ETERNITY;
2126 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002127 }
Willy Tarreau73201222009-08-16 18:27:24 +02002128 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002129 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002130 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002131 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2132 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002133 }
Willy Tarreau92795622009-03-06 12:51:23 +01002134 }
2135
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002136
2137 /* we may have a pending connection request, or a connection waiting
2138 * for completion.
2139 */
2140 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2141 do {
2142 /* nb: step 1 might switch from QUE to ASS, but we first want
2143 * to give a chance to step 2 to perform a redirect if needed.
2144 */
2145 if (s->si[1].state != SI_ST_REQ)
2146 sess_update_stream_int(s, &s->si[1]);
2147 if (s->si[1].state == SI_ST_REQ)
2148 sess_prepare_conn_req(s, &s->si[1]);
2149
Willy Tarreau827aee92011-03-10 16:55:02 +01002150 srv = target_srv(&s->target);
2151 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002152 perform_http_redirect(s, &s->si[1]);
2153 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002154
2155 /* Now we can add the server name to a header (if requested) */
2156 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002157 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002158 (s->be->mode == PR_MODE_HTTP) &&
2159 (s->be->server_id_hdr_name != NULL)) {
2160 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002161 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002162 }
2163
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002164 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002165 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002166 goto resync_stream_interface;
2167
Willy Tarreau815a9b22010-07-27 17:15:12 +02002168 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002169 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002170 goto resync_request;
2171
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002172 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002173
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002174 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002175 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002176 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002177 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002178 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002179 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002180 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002181 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002182 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002183 /* This buffer is freewheeling, there's no analyser nor hijacker
2184 * attached to it. If any data are left in, we'll permit them to
2185 * move.
2186 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002187 channel_auto_read(s->rep);
2188 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002189 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002190
2191 /* We'll let data flow between the producer (if still connected)
2192 * to the consumer.
2193 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002194 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002195 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002196
2197 /* if we have no analyser anymore in any direction and have a
2198 * tunnel timeout set, use it now.
2199 */
2200 if (!s->req->analysers && s->be->timeout.tunnel) {
2201 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2202 s->be->timeout.tunnel;
2203 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2204 tick_add(now_ms, s->be->timeout.tunnel);
2205 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002206 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002207
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002208 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002209 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002210 s->rep->to_forward &&
2211 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02002212 (s->si[0].conn.xprt && s->si[0].conn.xprt->rcv_pipe && s->si[0].conn.xprt->snd_pipe) &&
2213 (s->si[1].conn.xprt && s->si[1].conn.xprt->rcv_pipe && s->si[1].conn.xprt->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002214 (pipes_used < global.maxpipes) &&
2215 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2216 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002217 (s->rep->flags & CF_STREAMER_FAST)))) {
2218 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002219 }
2220
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002221 /* reflect what the L7 analysers have seen last */
2222 rpf_last = s->rep->flags;
2223
2224 /*
2225 * Now forward all shutdown requests between both sides of the buffer
2226 */
2227
2228 /*
2229 * FIXME: this is probably where we should produce error responses.
2230 */
2231
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002232 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002233 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2234 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002235 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002236
2237 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002238 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002239 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002240 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002241
2242 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002243 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002244 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002245 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002246
2247 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002248 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002249 if (s->rep->prod->flags & SI_FL_NOHALF)
2250 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002251 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002252 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002253
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002254 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002255 goto resync_stream_interface;
2256
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002257 if (s->req->flags != rqf_last)
2258 goto resync_request;
2259
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002260 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002261 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002262
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002263 /* we're interested in getting wakeups again */
2264 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2265 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2266
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002267 /* This is needed only when debugging is enabled, to indicate
2268 * client-side or server-side close. Please note that in the unlikely
2269 * event where both sides would close at once, the sequence is reported
2270 * on the server side first.
2271 */
2272 if (unlikely((global.mode & MODE_DEBUG) &&
2273 (!(global.mode & MODE_QUIET) ||
2274 (global.mode & MODE_VERBOSE)))) {
2275 int len;
2276
2277 if (s->si[1].state == SI_ST_CLO &&
2278 s->si[1].prev_state == SI_ST_EST) {
2279 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2280 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002281 (unsigned short)si_fd(&s->si[0]),
2282 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002283 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002284 }
2285
2286 if (s->si[0].state == SI_ST_CLO &&
2287 s->si[0].prev_state == SI_ST_EST) {
2288 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2289 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002290 (unsigned short)si_fd(&s->si[0]),
2291 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002292 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002293 }
2294 }
2295
2296 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2297 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2298
2299 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2300 session_process_counters(s);
2301
Willy Tarreau3cefd522012-08-30 15:49:18 +02002302 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002303 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002304
Willy Tarreau3cefd522012-08-30 15:49:18 +02002305 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002306 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002307
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002308 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2309 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 +01002310 s->si[0].prev_state = s->si[0].state;
2311 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002312 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2313 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002314
2315 /* Trick: if a request is being waiting for the server to respond,
2316 * and if we know the server can timeout, we don't want the timeout
2317 * to expire on the client side first, but we're still interested
2318 * in passing data from the client to the server (eg: POST). Thus,
2319 * we can cancel the client's request timeout if the server's
2320 * request timeout is set and the server has not yet sent a response.
2321 */
2322
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002323 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002324 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002325 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002326 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002327 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002328
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002329 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002330 * Note that this one may wake the task up again.
2331 */
Willy Tarreau3cefd522012-08-30 15:49:18 +02002332 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET ||
2333 s->rep->cons->conn.target.type == TARG_TYPE_APPLET) {
2334 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET)
2335 s->req->cons->conn.target.ptr.a->fct(s->req->cons);
2336 if (s->rep->cons->conn.target.type == TARG_TYPE_APPLET)
2337 s->rep->cons->conn.target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002338 if (task_in_rq(t)) {
2339 /* If we woke up, we don't want to requeue the
2340 * task to the wait queue, but rather requeue
2341 * it into the runqueue ASAP.
2342 */
2343 t->expire = TICK_ETERNITY;
2344 return t;
2345 }
2346 }
2347
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002348 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2349 tick_first(s->rep->rex, s->rep->wex));
2350 if (s->req->analysers)
2351 t->expire = tick_first(t->expire, s->req->analyse_exp);
2352
2353 if (s->si[0].exp)
2354 t->expire = tick_first(t->expire, s->si[0].exp);
2355
2356 if (s->si[1].exp)
2357 t->expire = tick_first(t->expire, s->si[1].exp);
2358
2359#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002360 fprintf(stderr,
2361 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2362 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2363 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2364 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 +01002365#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002366
2367#ifdef DEBUG_DEV
2368 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002369 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002370 ABORT_NOW();
2371#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002372 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002373 }
2374
2375 s->fe->feconn--;
2376 if (s->flags & SN_BE_ASSIGNED)
2377 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002378 if (!(s->listener->options & LI_O_UNLIMITED))
2379 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002380 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002381 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002382 if (s->listener->state == LI_FULL)
2383 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002384
Willy Tarreau08ceb102011-07-24 22:58:00 +02002385 /* Dequeues all of the listeners waiting for a resource */
2386 if (!LIST_ISEMPTY(&global_listener_queue))
2387 dequeue_all_listeners(&global_listener_queue);
2388
Willy Tarreaub32907b2011-07-25 08:37:44 +02002389 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2390 (!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 +02002391 dequeue_all_listeners(&s->fe->listener_queue);
2392
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002393 if (unlikely((global.mode & MODE_DEBUG) &&
2394 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2395 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002396 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002397 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002398 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau21337822012-04-29 14:11:38 +02002399 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002400 }
2401
2402 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2403 session_process_counters(s);
2404
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002405 if (s->txn.status) {
2406 int n;
2407
2408 n = s->txn.status / 100;
2409 if (n < 1 || n > 5)
2410 n = 0;
2411
2412 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002413 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002414
Willy Tarreau24657792010-02-26 10:30:28 +01002415 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002416 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002417 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002418 }
2419
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002420 /* let's do a final log if we need it */
2421 if (s->logs.logwait &&
2422 !(s->flags & SN_MONITOR) &&
2423 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002424 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002425 }
2426
2427 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002428 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002429 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002430 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002431 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002432}
2433
Willy Tarreau7c669d72008-06-20 15:04:11 +02002434/*
2435 * This function adjusts sess->srv_conn and maintains the previous and new
2436 * server's served session counts. Setting newsrv to NULL is enough to release
2437 * current connection slot. This function also notifies any LB algo which might
2438 * expect to be informed about any change in the number of active sessions on a
2439 * server.
2440 */
2441void sess_change_server(struct session *sess, struct server *newsrv)
2442{
2443 if (sess->srv_conn == newsrv)
2444 return;
2445
2446 if (sess->srv_conn) {
2447 sess->srv_conn->served--;
2448 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2449 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002450 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002451 }
2452
2453 if (newsrv) {
2454 newsrv->served++;
2455 if (newsrv->proxy->lbprm.server_take_conn)
2456 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002457 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002458 }
2459}
2460
Willy Tarreau84455332009-03-15 22:34:05 +01002461/* Handle server-side errors for default protocols. It is called whenever a a
2462 * connection setup is aborted or a request is aborted in queue. It sets the
2463 * session termination flags so that the caller does not have to worry about
2464 * them. It's installed as ->srv_error for the server-side stream_interface.
2465 */
2466void default_srv_error(struct session *s, struct stream_interface *si)
2467{
2468 int err_type = si->err_type;
2469 int err = 0, fin = 0;
2470
2471 if (err_type & SI_ET_QUEUE_ABRT) {
2472 err = SN_ERR_CLICL;
2473 fin = SN_FINST_Q;
2474 }
2475 else if (err_type & SI_ET_CONN_ABRT) {
2476 err = SN_ERR_CLICL;
2477 fin = SN_FINST_C;
2478 }
2479 else if (err_type & SI_ET_QUEUE_TO) {
2480 err = SN_ERR_SRVTO;
2481 fin = SN_FINST_Q;
2482 }
2483 else if (err_type & SI_ET_QUEUE_ERR) {
2484 err = SN_ERR_SRVCL;
2485 fin = SN_FINST_Q;
2486 }
2487 else if (err_type & SI_ET_CONN_TO) {
2488 err = SN_ERR_SRVTO;
2489 fin = SN_FINST_C;
2490 }
2491 else if (err_type & SI_ET_CONN_ERR) {
2492 err = SN_ERR_SRVCL;
2493 fin = SN_FINST_C;
2494 }
2495 else /* SI_ET_CONN_OTHER and others */ {
2496 err = SN_ERR_INTERNAL;
2497 fin = SN_FINST_C;
2498 }
2499
2500 if (!(s->flags & SN_ERR_MASK))
2501 s->flags |= err;
2502 if (!(s->flags & SN_FINST_MASK))
2503 s->flags |= fin;
2504}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002505
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002506/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2507void session_shutdown(struct session *session, int why)
2508{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002509 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002510 return;
2511
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002512 channel_shutw_now(session->req);
2513 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002514 session->task->nice = 1024;
2515 if (!(session->flags & SN_ERR_MASK))
2516 session->flags |= why;
2517 task_wakeup(session->task, TASK_WOKEN_OTHER);
2518}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002519
Willy Tarreau8b22a712010-06-18 17:46:06 +02002520/************************************************************************/
2521/* All supported ACL keywords must be declared here. */
2522/************************************************************************/
2523
Willy Tarreaua5e37562011-12-16 17:06:15 +01002524/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002525static int
Willy Tarreau37406352012-04-23 16:16:37 +02002526acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002527{
Willy Tarreau37406352012-04-23 16:16:37 +02002528 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002529 smp->type = SMP_T_UINT;
2530 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002531 if (ts != NULL) {
2532 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2533 if (!ptr)
2534 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002535 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002536 }
2537 return 1;
2538}
2539
Willy Tarreaua5e37562011-12-16 17:06:15 +01002540/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002541 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002542 */
2543static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002544acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002545 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002546{
Willy Tarreau56123282010-08-06 19:06:56 +02002547 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002548 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002549 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002550}
2551
Willy Tarreaua5e37562011-12-16 17:06:15 +01002552/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002553 * backend counters.
2554 */
2555static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002556acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002557 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002558{
Willy Tarreau56123282010-08-06 19:06:56 +02002559 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002560 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002561 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002562}
2563
Willy Tarreaua5e37562011-12-16 17:06:15 +01002564/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002565 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002566 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002567 */
2568static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002569acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002570 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002571{
2572 struct stktable_key *key;
2573
Willy Tarreau64ee4912012-08-30 22:59:48 +02002574 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002575 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002576 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002577
Willy Tarreau24e32d82012-04-23 23:55:44 +02002578 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002579 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002580}
2581
2582/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002583 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002584 */
2585static int
Willy Tarreau37406352012-04-23 16:16:37 +02002586acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002587{
Willy Tarreau37406352012-04-23 16:16:37 +02002588 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002589 smp->type = SMP_T_UINT;
2590 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002591 if (ts != NULL) {
2592 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2593 if (!ptr)
2594 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002595 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002596 }
2597 return 1;
2598}
2599
2600/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002601 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002602 */
2603static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002604acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002605 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002606{
Willy Tarreau56123282010-08-06 19:06:56 +02002607 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002608 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002609 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002610}
2611
2612/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002613 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002614 */
2615static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002616acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002617 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002618{
Willy Tarreau56123282010-08-06 19:06:56 +02002619 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002620 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002621 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002622}
2623
2624/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002625 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002626 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002627 */
2628static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002629acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002630 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002631{
2632 struct stktable_key *key;
2633
Willy Tarreau64ee4912012-08-30 22:59:48 +02002634 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002635 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002636 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002637
Willy Tarreau24e32d82012-04-23 23:55:44 +02002638 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002639 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002640}
2641
Willy Tarreauf73cd112011-08-13 01:45:16 +02002642/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002643 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002644 */
2645static int
Willy Tarreau37406352012-04-23 16:16:37 +02002646acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002647{
Willy Tarreau37406352012-04-23 16:16:37 +02002648 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002649 smp->type = SMP_T_UINT;
2650 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002651 if (ts != NULL) {
2652 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2653 if (!ptr)
2654 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002655 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002656 stktable_data_cast(ptr, gpc0) = 0;
2657 }
2658 return 1;
2659}
2660
2661/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002662 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002663 */
2664static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002665acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002666 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002667{
2668 if (!l4->stkctr1_entry)
2669 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002670 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002671}
2672
2673/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002674 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002675 */
2676static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002677acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002678 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002679{
2680 if (!l4->stkctr2_entry)
2681 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002682 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002683}
2684
2685/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002686 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002687 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002688 */
2689static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002690acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002691 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002692{
2693 struct stktable_key *key;
2694
Willy Tarreau64ee4912012-08-30 22:59:48 +02002695 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002696 if (!key)
2697 return 0;
2698
Willy Tarreau24e32d82012-04-23 23:55:44 +02002699 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002700 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002701}
2702
Willy Tarreaua5e37562011-12-16 17:06:15 +01002703/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002704static int
Willy Tarreau37406352012-04-23 16:16:37 +02002705acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002706{
Willy Tarreau37406352012-04-23 16:16:37 +02002707 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002708 smp->type = SMP_T_UINT;
2709 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002710 if (ts != NULL) {
2711 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2712 if (!ptr)
2713 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002714 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002715 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002716 return 1;
2717}
2718
Willy Tarreaua5e37562011-12-16 17:06:15 +01002719/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002720static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002721acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002722 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002723{
Willy Tarreau56123282010-08-06 19:06:56 +02002724 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002725 return 0;
2726
Willy Tarreau37406352012-04-23 16:16:37 +02002727 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002728}
2729
Willy Tarreaua5e37562011-12-16 17:06:15 +01002730/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002731static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002732acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002733 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002734{
Willy Tarreau56123282010-08-06 19:06:56 +02002735 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002736 return 0;
2737
Willy Tarreau37406352012-04-23 16:16:37 +02002738 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002739}
2740
Willy Tarreaua5e37562011-12-16 17:06:15 +01002741/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002742 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002743 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002744 */
2745static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002746acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002747 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002748{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002749 struct stktable_key *key;
2750
Willy Tarreau64ee4912012-08-30 22:59:48 +02002751 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002752 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002753 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002754
Willy Tarreau24e32d82012-04-23 23:55:44 +02002755 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002756 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002757}
2758
Willy Tarreaua5e37562011-12-16 17:06:15 +01002759/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002760static int
Willy Tarreau37406352012-04-23 16:16:37 +02002761acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002762{
Willy Tarreau37406352012-04-23 16:16:37 +02002763 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002764 smp->type = SMP_T_UINT;
2765 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002766 if (ts != NULL) {
2767 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2768 if (!ptr)
2769 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002770 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002771 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2772 }
2773 return 1;
2774}
2775
Willy Tarreaua5e37562011-12-16 17:06:15 +01002776/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002777 * the configured period.
2778 */
2779static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002780acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002781 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002782{
Willy Tarreau56123282010-08-06 19:06:56 +02002783 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002784 return 0;
2785
Willy Tarreau37406352012-04-23 16:16:37 +02002786 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002787}
2788
Willy Tarreaua5e37562011-12-16 17:06:15 +01002789/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002790 * the configured period.
2791 */
2792static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002793acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002794 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002795{
Willy Tarreau56123282010-08-06 19:06:56 +02002796 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797 return 0;
2798
Willy Tarreau37406352012-04-23 16:16:37 +02002799 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002800}
2801
Willy Tarreaua5e37562011-12-16 17:06:15 +01002802/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002803 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002804 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002805 */
2806static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002807acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002808 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002809{
2810 struct stktable_key *key;
2811
Willy Tarreau64ee4912012-08-30 22:59:48 +02002812 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002813 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002814 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002815
Willy Tarreau24e32d82012-04-23 23:55:44 +02002816 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002817 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002818}
2819
Willy Tarreaua5e37562011-12-16 17:06:15 +01002820/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002821 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002822 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002823 */
2824static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002825acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002826 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002827{
2828 struct stksess *ts;
2829 struct stktable_key *key;
2830 void *ptr;
2831
Willy Tarreau64ee4912012-08-30 22:59:48 +02002832 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002833 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002834 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002835
Willy Tarreau24e32d82012-04-23 23:55:44 +02002836 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002837
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002838 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2839 /* entry does not exist and could not be created */
2840 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002841
2842 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2843 if (!ptr)
2844 return 0; /* parameter not stored in this table */
2845
Willy Tarreauf853c462012-04-23 18:53:56 +02002846 smp->type = SMP_T_UINT;
2847 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002848 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002849 return 1;
2850}
2851
Willy Tarreaua5e37562011-12-16 17:06:15 +01002852/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002853static int
Willy Tarreau37406352012-04-23 16:16:37 +02002854acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002855{
Willy Tarreau37406352012-04-23 16:16:37 +02002856 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002857 smp->type = SMP_T_UINT;
2858 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002859
2860 if (ts != NULL) {
2861 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2862 if (!ptr)
2863 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002864 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002865 }
2866 return 1;
2867}
2868
Willy Tarreaua5e37562011-12-16 17:06:15 +01002869/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002870static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002871acl_fetch_sc1_conn_cur(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 Tarreau9b0ddcf2010-06-18 21:14:36 +02002873{
Willy Tarreau56123282010-08-06 19:06:56 +02002874 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002875 return 0;
2876
Willy Tarreau37406352012-04-23 16:16:37 +02002877 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002878}
2879
Willy Tarreaua5e37562011-12-16 17:06:15 +01002880/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002881static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002882acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002883 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002884{
Willy Tarreau56123282010-08-06 19:06:56 +02002885 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002886 return 0;
2887
Willy Tarreau37406352012-04-23 16:16:37 +02002888 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002889}
2890
Willy Tarreaua5e37562011-12-16 17:06:15 +01002891/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002892 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002893 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002894 */
2895static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002896acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002897 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002898{
Willy Tarreau38285c12010-06-18 16:35:43 +02002899 struct stktable_key *key;
2900
Willy Tarreau64ee4912012-08-30 22:59:48 +02002901 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002902 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002903 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002904
Willy Tarreau24e32d82012-04-23 23:55:44 +02002905 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002906 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002907}
2908
Willy Tarreaua5e37562011-12-16 17:06:15 +01002909/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002910static int
Willy Tarreau37406352012-04-23 16:16:37 +02002911acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002912{
Willy Tarreau37406352012-04-23 16:16:37 +02002913 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002914 smp->type = SMP_T_UINT;
2915 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002916 if (ts != NULL) {
2917 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2918 if (!ptr)
2919 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002920 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002921 }
2922 return 1;
2923}
2924
Willy Tarreaua5e37562011-12-16 17:06:15 +01002925/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002926static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002927acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002928 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002929{
Willy Tarreau56123282010-08-06 19:06:56 +02002930 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002931 return 0;
2932
Willy Tarreau37406352012-04-23 16:16:37 +02002933 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002934}
2935
Willy Tarreaua5e37562011-12-16 17:06:15 +01002936/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002937static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002938acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002939 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002940{
Willy Tarreau56123282010-08-06 19:06:56 +02002941 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002942 return 0;
2943
Willy Tarreau37406352012-04-23 16:16:37 +02002944 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002945}
2946
Willy Tarreaua5e37562011-12-16 17:06:15 +01002947/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002948 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002949 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002950 */
2951static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002952acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002953 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002954{
2955 struct stktable_key *key;
2956
Willy Tarreau64ee4912012-08-30 22:59:48 +02002957 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002958 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002959 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002960
Willy Tarreau24e32d82012-04-23 23:55:44 +02002961 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002962 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002963}
2964
Willy Tarreaua5e37562011-12-16 17:06:15 +01002965/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002966static int
Willy Tarreau37406352012-04-23 16:16:37 +02002967acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002968{
Willy Tarreau37406352012-04-23 16:16:37 +02002969 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002970 smp->type = SMP_T_UINT;
2971 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002972 if (ts != NULL) {
2973 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2974 if (!ptr)
2975 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002976 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002977 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2978 }
2979 return 1;
2980}
2981
Willy Tarreaua5e37562011-12-16 17:06:15 +01002982/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002983 * the configured period.
2984 */
2985static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002986acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002987 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002988{
Willy Tarreau56123282010-08-06 19:06:56 +02002989 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002990 return 0;
2991
Willy Tarreau37406352012-04-23 16:16:37 +02002992 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002993}
2994
Willy Tarreaua5e37562011-12-16 17:06:15 +01002995/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002996 * the configured period.
2997 */
2998static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002999acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003000 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003001{
Willy Tarreau56123282010-08-06 19:06:56 +02003002 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003003 return 0;
3004
Willy Tarreau37406352012-04-23 16:16:37 +02003005 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003006}
3007
Willy Tarreaua5e37562011-12-16 17:06:15 +01003008/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003009 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003010 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003011 */
3012static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003013acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003014 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003015{
3016 struct stktable_key *key;
3017
Willy Tarreau64ee4912012-08-30 22:59:48 +02003018 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003019 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003020 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003021
Willy Tarreau24e32d82012-04-23 23:55:44 +02003022 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003023 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003024}
3025
Willy Tarreaua5e37562011-12-16 17:06:15 +01003026/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003027static int
Willy Tarreau37406352012-04-23 16:16:37 +02003028acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003029{
Willy Tarreau37406352012-04-23 16:16:37 +02003030 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003031 smp->type = SMP_T_UINT;
3032 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003033 if (ts != NULL) {
3034 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3035 if (!ptr)
3036 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003037 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003038 }
3039 return 1;
3040}
3041
Willy Tarreaua5e37562011-12-16 17:06:15 +01003042/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003043static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003044acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003045 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003046{
Willy Tarreau56123282010-08-06 19:06:56 +02003047 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003048 return 0;
3049
Willy Tarreau37406352012-04-23 16:16:37 +02003050 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003051}
3052
Willy Tarreaua5e37562011-12-16 17:06:15 +01003053/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003054static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003055acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003056 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003057{
Willy Tarreau56123282010-08-06 19:06:56 +02003058 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059 return 0;
3060
Willy Tarreau37406352012-04-23 16:16:37 +02003061 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003062}
3063
Willy Tarreaua5e37562011-12-16 17:06:15 +01003064/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003065 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003066 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003067 */
3068static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003069acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003070 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003071{
3072 struct stktable_key *key;
3073
Willy Tarreau64ee4912012-08-30 22:59:48 +02003074 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003075 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003076 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003077
Willy Tarreau24e32d82012-04-23 23:55:44 +02003078 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003079 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003080}
3081
Willy Tarreaua5e37562011-12-16 17:06:15 +01003082/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003083static int
Willy Tarreau37406352012-04-23 16:16:37 +02003084acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003085{
Willy Tarreau37406352012-04-23 16:16:37 +02003086 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003087 smp->type = SMP_T_UINT;
3088 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003089 if (ts != NULL) {
3090 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
3091 if (!ptr)
3092 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003093 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003094 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3095 }
3096 return 1;
3097}
3098
Willy Tarreaua5e37562011-12-16 17:06:15 +01003099/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003100 * the configured period.
3101 */
3102static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003103acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003104 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003105{
Willy Tarreau56123282010-08-06 19:06:56 +02003106 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003107 return 0;
3108
Willy Tarreau37406352012-04-23 16:16:37 +02003109 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003110}
3111
Willy Tarreaua5e37562011-12-16 17:06:15 +01003112/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003113 * the configured period.
3114 */
3115static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003116acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003117 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003118{
Willy Tarreau56123282010-08-06 19:06:56 +02003119 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003120 return 0;
3121
Willy Tarreau37406352012-04-23 16:16:37 +02003122 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003123}
3124
Willy Tarreaua5e37562011-12-16 17:06:15 +01003125/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003126 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003127 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003128 */
3129static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003130acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003131 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003132{
3133 struct stktable_key *key;
3134
Willy Tarreau64ee4912012-08-30 22:59:48 +02003135 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003136 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003137 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003138
Willy Tarreau24e32d82012-04-23 23:55:44 +02003139 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003140 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003141}
3142
Willy Tarreaua5e37562011-12-16 17:06:15 +01003143/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003144static int
Willy Tarreau37406352012-04-23 16:16:37 +02003145acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003146{
Willy Tarreau37406352012-04-23 16:16:37 +02003147 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003148 smp->type = SMP_T_UINT;
3149 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003150 if (ts != NULL) {
3151 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3152 if (!ptr)
3153 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003154 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003155 }
3156 return 1;
3157}
3158
Willy Tarreaua5e37562011-12-16 17:06:15 +01003159/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003160static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003161acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003162 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003163{
Willy Tarreau56123282010-08-06 19:06:56 +02003164 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003165 return 0;
3166
Willy Tarreau37406352012-04-23 16:16:37 +02003167 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003168}
3169
Willy Tarreaua5e37562011-12-16 17:06:15 +01003170/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003171static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003172acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003173 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003174{
Willy Tarreau56123282010-08-06 19:06:56 +02003175 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003176 return 0;
3177
Willy Tarreau37406352012-04-23 16:16:37 +02003178 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003179}
3180
Willy Tarreaua5e37562011-12-16 17:06:15 +01003181/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003182 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003183 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003184 */
3185static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003186acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003187 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003188{
3189 struct stktable_key *key;
3190
Willy Tarreau64ee4912012-08-30 22:59:48 +02003191 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003192 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003193 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003194
Willy Tarreau24e32d82012-04-23 23:55:44 +02003195 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003196 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003197}
3198
Willy Tarreaua5e37562011-12-16 17:06:15 +01003199/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003200static int
Willy Tarreau37406352012-04-23 16:16:37 +02003201acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003202{
Willy Tarreau37406352012-04-23 16:16:37 +02003203 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003204 smp->type = SMP_T_UINT;
3205 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003206 if (ts != NULL) {
3207 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3208 if (!ptr)
3209 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003210 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003211 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3212 }
3213 return 1;
3214}
3215
Willy Tarreaua5e37562011-12-16 17:06:15 +01003216/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003217 * the configured period.
3218 */
3219static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003220acl_fetch_sc1_http_err_rate(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 Tarreauf059a0f2010-08-03 16:29:52 +02003222{
Willy Tarreau56123282010-08-06 19:06:56 +02003223 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003224 return 0;
3225
Willy Tarreau37406352012-04-23 16:16:37 +02003226 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003227}
3228
Willy Tarreaua5e37562011-12-16 17:06:15 +01003229/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003230 * the configured period.
3231 */
3232static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003233acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003234 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003235{
Willy Tarreau56123282010-08-06 19:06:56 +02003236 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003237 return 0;
3238
Willy Tarreau37406352012-04-23 16:16:37 +02003239 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003240}
3241
Willy Tarreaua5e37562011-12-16 17:06:15 +01003242/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003243 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003244 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003245 */
3246static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003247acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003248 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003249{
3250 struct stktable_key *key;
3251
Willy Tarreau64ee4912012-08-30 22:59:48 +02003252 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003253 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003254 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003255
Willy Tarreau24e32d82012-04-23 23:55:44 +02003256 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003257 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003258}
3259
Willy Tarreaua5e37562011-12-16 17:06:15 +01003260/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003261static int
Willy Tarreau37406352012-04-23 16:16:37 +02003262acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003263{
Willy Tarreau37406352012-04-23 16:16:37 +02003264 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003265 smp->type = SMP_T_UINT;
3266 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003267
3268 if (ts != NULL) {
3269 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3270 if (!ptr)
3271 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003272 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003273 }
3274 return 1;
3275}
3276
Willy Tarreaua5e37562011-12-16 17:06:15 +01003277/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003278 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003279 */
3280static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003281acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003282 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003283{
Willy Tarreau56123282010-08-06 19:06:56 +02003284 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003285 return 0;
3286
Willy Tarreau37406352012-04-23 16:16:37 +02003287 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003288}
3289
Willy Tarreaua5e37562011-12-16 17:06:15 +01003290/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003291 * session's tracked BE counters.
3292 */
3293static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003294acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003295 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003296{
Willy Tarreau56123282010-08-06 19:06:56 +02003297 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003298 return 0;
3299
Willy Tarreau37406352012-04-23 16:16:37 +02003300 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003301}
3302
Willy Tarreaua5e37562011-12-16 17:06:15 +01003303/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003304 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003305 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003306 */
3307static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003308acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003309 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003310{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003311 struct stktable_key *key;
3312
Willy Tarreau64ee4912012-08-30 22:59:48 +02003313 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003314 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003315 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003316
Willy Tarreau24e32d82012-04-23 23:55:44 +02003317 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003318 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003319}
3320
Willy Tarreaua5e37562011-12-16 17:06:15 +01003321/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003322 * configured period.
3323 */
3324static int
Willy Tarreau37406352012-04-23 16:16:37 +02003325acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003326{
Willy Tarreau37406352012-04-23 16:16:37 +02003327 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003328 smp->type = SMP_T_UINT;
3329 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003330 if (ts != NULL) {
3331 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3332 if (!ptr)
3333 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003334 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003335 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3336 }
3337 return 1;
3338}
3339
Willy Tarreaua5e37562011-12-16 17:06:15 +01003340/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003341 * counters over the configured period.
3342 */
3343static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003344acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003345 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003346{
Willy Tarreau56123282010-08-06 19:06:56 +02003347 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003348 return 0;
3349
Willy Tarreau37406352012-04-23 16:16:37 +02003350 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003351}
3352
Willy Tarreaua5e37562011-12-16 17:06:15 +01003353/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003354 * counters over the configured period.
3355 */
3356static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003357acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003358 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003359{
Willy Tarreau56123282010-08-06 19:06:56 +02003360 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003361 return 0;
3362
Willy Tarreau37406352012-04-23 16:16:37 +02003363 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003364}
3365
Willy Tarreaua5e37562011-12-16 17:06:15 +01003366/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003367 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003368 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003369 */
3370static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003371acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003372 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003373{
3374 struct stktable_key *key;
3375
Willy Tarreau64ee4912012-08-30 22:59:48 +02003376 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003377 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003378 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003379
Willy Tarreau24e32d82012-04-23 23:55:44 +02003380 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003381 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003382}
3383
Willy Tarreaua5e37562011-12-16 17:06:15 +01003384/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003385static int
Willy Tarreau37406352012-04-23 16:16:37 +02003386acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003387{
Willy Tarreau37406352012-04-23 16:16:37 +02003388 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003389 smp->type = SMP_T_UINT;
3390 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003391
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003392 if (ts != NULL) {
3393 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003394 if (!ptr)
3395 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003396 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003397 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003398 return 1;
3399}
3400
Willy Tarreaua5e37562011-12-16 17:06:15 +01003401/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003402 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003403 */
3404static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003405acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003406 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003407{
Willy Tarreau56123282010-08-06 19:06:56 +02003408 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003409 return 0;
3410
Willy Tarreau37406352012-04-23 16:16:37 +02003411 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003412}
3413
Willy Tarreaua5e37562011-12-16 17:06:15 +01003414/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003415 * tracked BE counters.
3416 */
3417static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003418acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003419 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003420{
Willy Tarreau56123282010-08-06 19:06:56 +02003421 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003422 return 0;
3423
Willy Tarreau37406352012-04-23 16:16:37 +02003424 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003425}
3426
Willy Tarreaua5e37562011-12-16 17:06:15 +01003427/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003428 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003429 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003430 */
3431static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003432acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003433 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003434{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003435 struct stktable_key *key;
3436
Willy Tarreau64ee4912012-08-30 22:59:48 +02003437 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003438 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003439 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003440
Willy Tarreau24e32d82012-04-23 23:55:44 +02003441 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003442 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003443}
3444
Willy Tarreaua5e37562011-12-16 17:06:15 +01003445/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003446 * configured period.
3447 */
3448static int
Willy Tarreau37406352012-04-23 16:16:37 +02003449acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003450{
Willy Tarreau37406352012-04-23 16:16:37 +02003451 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003452 smp->type = SMP_T_UINT;
3453 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003454 if (ts != NULL) {
3455 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3456 if (!ptr)
3457 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003458 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003459 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3460 }
3461 return 1;
3462}
3463
Willy Tarreaua5e37562011-12-16 17:06:15 +01003464/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003465 * over the configured period.
3466 */
3467static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003468acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003469 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003470{
Willy Tarreau56123282010-08-06 19:06:56 +02003471 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003472 return 0;
3473
Willy Tarreau37406352012-04-23 16:16:37 +02003474 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003475}
3476
Willy Tarreaua5e37562011-12-16 17:06:15 +01003477/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003478 * over the configured period.
3479 */
3480static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003481acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003482 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003483{
Willy Tarreau56123282010-08-06 19:06:56 +02003484 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003485 return 0;
3486
Willy Tarreau37406352012-04-23 16:16:37 +02003487 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003488}
3489
Willy Tarreaua5e37562011-12-16 17:06:15 +01003490/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003491 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003492 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003493 */
3494static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003495acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003496 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003497{
3498 struct stktable_key *key;
3499
Willy Tarreau64ee4912012-08-30 22:59:48 +02003500 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003501 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003502 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003503
Willy Tarreau24e32d82012-04-23 23:55:44 +02003504 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003505 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003506}
3507
Willy Tarreau34db1082012-04-19 17:16:54 +02003508/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003509 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003510 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003511static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003512acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003513 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003514{
Willy Tarreau37406352012-04-23 16:16:37 +02003515 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003516 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003517 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003518 return 1;
3519}
3520
Willy Tarreau34db1082012-04-19 17:16:54 +02003521/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003522 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003523 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003524static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003525acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003526 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003527{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003528 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003529 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003530 smp->type = SMP_T_UINT;
3531 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003532 return 1;
3533}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003534
Willy Tarreau61612d42012-04-19 18:42:05 +02003535/* Note: must not be declared <const> as its list will be overwritten.
3536 * Please take care of keeping this list alphabetically sorted.
3537 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003538static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003539 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3540 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3541 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3542 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3543 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3544 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3545 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3546 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3547 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3548 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3549 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3550 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3551 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3552 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3553 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3554 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3555 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3556 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3557 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3558 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3559 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3560 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3561 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3562 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3563 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3564 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3565 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3566 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3567 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3568 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3569 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3570 { "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 +02003571 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3572 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3573 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3574 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3575 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3576 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3577 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3578 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3579 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3580 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3581 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3582 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3583 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3584 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3585 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3586 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3587 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3588 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3589 { "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 +02003590 { NULL, NULL, NULL, NULL },
3591}};
3592
3593
Willy Tarreau56123282010-08-06 19:06:56 +02003594/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003595 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3596 * <prm> struct is fed with the table name if any. If unspecified, the caller
3597 * will assume that the current proxy's table is used.
3598 */
3599int parse_track_counters(char **args, int *arg,
3600 int section_type, struct proxy *curpx,
3601 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003602 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003603{
Willy Tarreau12785782012-04-27 21:37:17 +02003604 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003605
Willy Tarreau56123282010-08-06 19:06:56 +02003606 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003607 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003608 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003609 */
3610 while (args[*arg]) {
3611 if (strcmp(args[*arg], "src") == 0) {
3612 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003613 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003614 }
3615 else if (strcmp(args[*arg], "table") == 0) {
3616 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003617 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003618 return -1;
3619 }
3620 /* we copy the table name for now, it will be resolved later */
3621 prm->table.n = strdup(args[*arg + 1]);
3622 (*arg)++;
3623 }
3624 else {
3625 /* unhandled keywords are handled by the caller */
3626 break;
3627 }
3628 (*arg)++;
3629 }
3630
Willy Tarreau12785782012-04-27 21:37:17 +02003631 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003632 memprintf(err,
3633 "tracking key not specified (found %s, only 'src' is supported)",
3634 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003635 return -1;
3636 }
3637
3638 return 0;
3639}
3640
Willy Tarreau8b22a712010-06-18 17:46:06 +02003641__attribute__((constructor))
3642static void __session_init(void)
3643{
3644 acl_register_keywords(&acl_kws);
3645}
3646
Willy Tarreaubaaee002006-06-26 02:48:02 +02003647/*
3648 * Local variables:
3649 * c-indent-level: 8
3650 * c-basic-offset: 8
3651 * End:
3652 */