blob: 9827eb82e6422640a13545273e133eaefdb36040 [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 Tarreauf2943dc2012-10-26 20:10:28 +020086 if (unlikely((s->si[0].conn = pool_alloc2(pool2_connection)) == NULL))
87 goto out_fail_conn0;
88
89 if (unlikely((s->si[1].conn = pool_alloc2(pool2_connection)) == NULL))
90 goto out_fail_conn1;
91
Willy Tarreau2542b532012-08-31 16:01:23 +020092 /* minimum session initialization required for an embryonic session is
93 * fairly low. We need very little to execute L4 ACLs, then we need a
94 * task to make the client-side connection live on its own.
95 * - flags
96 * - stick-entry tracking
97 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020098 s->flags = 0;
99 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +0200100 s->stkctr1_entry = NULL;
101 s->stkctr2_entry = NULL;
102 s->stkctr1_table = NULL;
103 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200104
Willy Tarreau2542b532012-08-31 16:01:23 +0200105 s->listener = l;
106 s->fe = p;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100107
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200108 /* OK, we're keeping the session, so let's properly initialize the session */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200109 s->si[0].conn->t.sock.fd = cfd;
110 s->si[0].conn->ctrl = l->proto;
111 s->si[0].conn->flags = CO_FL_NONE;
112 s->si[0].conn->addr.from = *addr;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100113 s->si[0].conn->target = &l->obj_type;
Willy Tarreau2542b532012-08-31 16:01:23 +0200114
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200115 s->logs.accept_date = date; /* user-visible date for logging */
116 s->logs.tv_accept = now; /* corrected date for internal use */
117 s->uniq_id = totalconn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200118 p->feconn++;
119 /* This session was accepted, count it now */
120 if (p->feconn > p->fe_counters.conn_max)
121 p->fe_counters.conn_max = p->feconn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200122
Willy Tarreau2542b532012-08-31 16:01:23 +0200123 proxy_inc_fe_conn_ctr(l, p);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200124
125 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
126 * to abort right here as soon as possible, we check the rules before
127 * even initializing the stream interfaces.
128 */
129 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200130 /* let's do a no-linger now to close with a single RST. */
131 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100132 ret = 0; /* successful termination */
Willy Tarreau2542b532012-08-31 16:01:23 +0200133 goto out_free_session;
134 }
135
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200136#ifndef USE_ACCEPT4
137 /* Adjust some socket options if the connection was accepted by a plain
138 * accept() syscall.
139 */
Willy Tarreau82569f92012-09-27 23:48:56 +0200140 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
141 goto out_free_session;
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200142#endif
Willy Tarreau82569f92012-09-27 23:48:56 +0200143
144 /* monitor-net and health mode are processed immediately after TCP
145 * connection rules. This way it's possible to block them, but they
146 * never use the lower data layers, they send directly over the socket,
147 * as they were designed for. We first flush the socket receive buffer
148 * in order to avoid emission of an RST by the system. We ignore any
149 * error.
150 */
151 if (unlikely((p->mode == PR_MODE_HEALTH) ||
152 ((l->options & LI_O_CHK_MONNET) &&
153 addr->ss_family == AF_INET &&
154 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
155 /* we have 4 possibilities here :
156 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
157 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
158 * - HEALTH mode without HTTP check => just send "OK"
159 * - TCP mode from monitoring address => just close
160 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100161 recv(cfd, trash.str, trash.size, MSG_DONTWAIT);
Willy Tarreau82569f92012-09-27 23:48:56 +0200162 if (p->mode == PR_MODE_HTTP ||
163 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
164 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
165 else if (p->mode == PR_MODE_HEALTH)
166 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
167 ret = 0;
168 goto out_free_session;
169 }
170
171
Willy Tarreau22cda212012-08-31 17:43:29 +0200172 /* wait for a PROXY protocol header */
173 if (l->options & LI_O_ACC_PROXY) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200174 s->si[0].conn->flags |= CO_FL_ACCEPT_PROXY;
175 conn_sock_want_recv(s->si[0].conn);
Willy Tarreau22cda212012-08-31 17:43:29 +0200176 }
177
Willy Tarreau2542b532012-08-31 16:01:23 +0200178 if (unlikely((t = task_new()) == NULL))
179 goto out_free_session;
180
181 t->context = s;
182 t->nice = l->nice;
183 s->task = t;
184
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200185 /* Add the various callbacks. Right now the transport layer is present
186 * but not initialized. Also note we need to be careful as the stream
187 * int is not initialized yet.
Willy Tarreau2542b532012-08-31 16:01:23 +0200188 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200189 conn_prepare(s->si[0].conn, &sess_conn_cb, l->proto, l->xprt, s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200190
191 /* finish initialization of the accepted file descriptor */
192 fd_insert(cfd);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200193 fdtab[cfd].owner = s->si[0].conn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200194 fdtab[cfd].iocb = conn_fd_handler;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200195 conn_data_want_recv(s->si[0].conn);
196 if (conn_xprt_init(s->si[0].conn) < 0)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100197 goto out_free_task;
Willy Tarreau2542b532012-08-31 16:01:23 +0200198
199 /* OK, now either we have a pending handshake to execute with and
200 * then we must return to the I/O layer, or we can proceed with the
201 * end of the session initialization. In case of handshake, we also
202 * set the I/O timeout to the frontend's client timeout.
203 */
204
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200205 if (s->si[0].conn->flags & CO_FL_HANDSHAKE) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200206 t->process = expire_mini_session;
207 t->expire = tick_add_ifset(now_ms, p->timeout.client);
208 task_queue(t);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200209 s->si[0].conn->flags |= CO_FL_INIT_DATA | CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200210 return 1;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200211 }
212
Willy Tarreau815f5ec2012-11-06 00:14:25 +0100213 /* OK let's complete session initialization since there is no handshake */
214 s->si[0].conn->flags |= CO_FL_CONNECTED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200215 ret = session_complete(s);
216 if (ret > 0)
217 return ret;
218
219 /* Error unrolling */
220 out_free_task:
221 task_free(t);
222 out_free_session:
223 p->feconn--;
224 if (s->stkctr1_entry || s->stkctr2_entry)
225 session_store_counters(s);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200226 pool_free2(pool2_connection, s->si[1].conn);
227 out_fail_conn1:
228 pool_free2(pool2_connection, s->si[0].conn);
229 out_fail_conn0:
Willy Tarreau2542b532012-08-31 16:01:23 +0200230 pool_free2(pool2_session, s);
231 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200232 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200233 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau783f2582012-09-04 12:19:04 +0200234 struct chunk *err_msg = http_error_message(s, HTTP_ERR_500);
Willy Tarreau2542b532012-08-31 16:01:23 +0200235 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
236 }
237
238 if (fdtab[cfd].owner)
239 fd_delete(cfd);
240 else
241 close(cfd);
242 return ret;
243}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100244
Willy Tarreau2542b532012-08-31 16:01:23 +0200245/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200246 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreau2542b532012-08-31 16:01:23 +0200247 * disabled and finally kills the file descriptor.
248 */
249static void kill_mini_session(struct session *s)
250{
251 /* kill the connection now */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200252 conn_xprt_close(s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200253
254 s->fe->feconn--;
255 if (s->stkctr1_entry || s->stkctr2_entry)
256 session_store_counters(s);
257
258 if (!(s->listener->options & LI_O_UNLIMITED))
259 actconn--;
260 jobs--;
261 s->listener->nbconn--;
262 if (s->listener->state == LI_FULL)
263 resume_listener(s->listener);
264
265 /* Dequeues all of the listeners waiting for a resource */
266 if (!LIST_ISEMPTY(&global_listener_queue))
267 dequeue_all_listeners(&global_listener_queue);
268
269 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
270 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
271 dequeue_all_listeners(&s->fe->listener_queue);
272
273 task_delete(s->task);
274 task_free(s->task);
275
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200276 if (fdtab[s->si[0].conn->t.sock.fd].owner)
277 fd_delete(s->si[0].conn->t.sock.fd);
Willy Tarreau2542b532012-08-31 16:01:23 +0200278 else
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200279 close(s->si[0].conn->t.sock.fd);
Willy Tarreau2542b532012-08-31 16:01:23 +0200280
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200281 pool_free2(pool2_connection, s->si[1].conn);
282 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200283 pool_free2(pool2_session, s);
284}
285
Willy Tarreau22cda212012-08-31 17:43:29 +0200286/* Finish initializing a session from a connection, or kills it if the
287 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200288 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200289static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200290{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200291 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200292
Willy Tarreau22cda212012-08-31 17:43:29 +0200293 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200294 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200295 return 0;
296 }
297
298 /* kill the connection now */
299 kill_mini_session(s);
300 return -1;
301}
302
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200303/* Update an embryonic session status. The connection is killed in case of
304 * error, and <0 will be returned. Otherwise it does nothing.
305 */
306static int conn_session_update(struct connection *conn)
307{
308 if (conn->flags & CO_FL_ERROR) {
309 kill_mini_session(conn->owner);
310 return -1;
311 }
312 return 0;
313}
314
Willy Tarreau2542b532012-08-31 16:01:23 +0200315/* Manages embryonic sessions timeout. It is only called when the timeout
316 * strikes and performs the required cleanup.
317 */
318static struct task *expire_mini_session(struct task *t)
319{
320 struct session *s = t->context;
321
322 if (!(t->state & TASK_WOKEN_TIMER))
323 return t;
324
325 kill_mini_session(s);
326 return NULL;
327}
328
329/* This function is called from the I/O handler which detects the end of
330 * handshake, in order to complete initialization of a valid session. It must
331 * be called with an embryonic session. It returns a positive value upon
332 * success, 0 if the connection can be ignored, or a negative value upon
333 * critical failure. The accepted file descriptor is closed if we return <= 0.
334 */
335int session_complete(struct session *s)
336{
337 struct listener *l = s->listener;
338 struct proxy *p = s->fe;
339 struct http_txn *txn;
340 struct task *t = s->task;
341 int ret;
342
343 ret = -1; /* assume unrecoverable error by default */
344
345 /* OK, we're keeping the session, so let's properly initialize the session */
346 LIST_ADDQ(&sessions, &s->list);
347 LIST_INIT(&s->back_refs);
Willy Tarreau5e75e272012-10-02 21:21:20 +0200348 si_takeover_conn(&s->si[0], l->proto, l->xprt);
Willy Tarreau2542b532012-08-31 16:01:23 +0200349 s->flags |= SN_INITIALIZED;
350
351 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200352
353 t->process = l->handler;
354 t->context = s;
355 t->expire = TICK_ETERNITY;
356
357 /* Note: initially, the session's backend points to the frontend.
358 * This changes later when switching rules are executed or
359 * when the default backend is assigned.
360 */
361 s->be = s->fe;
362 s->req = s->rep = NULL; /* will be allocated later */
William Lallemand82fe75c2012-10-23 10:25:10 +0200363 s->comp_algo = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200364
365 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200366 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200367 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200368 void *ptr;
369
Willy Tarreau56123282010-08-06 19:06:56 +0200370 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200371 if (ptr)
372 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200373
Willy Tarreau56123282010-08-06 19:06:56 +0200374 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200375 if (ptr)
376 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200377 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200378 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200379
Willy Tarreau56123282010-08-06 19:06:56 +0200380 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200381 void *ptr;
382
Willy Tarreau56123282010-08-06 19:06:56 +0200383 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200384 if (ptr)
385 stktable_data_cast(ptr, sess_cnt)++;
386
Willy Tarreau56123282010-08-06 19:06:56 +0200387 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200388 if (ptr)
389 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200390 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200391 }
392
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200393 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200394 s->si[0].owner = t;
395 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
396 s->si[0].err_type = SI_ET_NONE;
397 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200398 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200399 s->si[0].send_proxy_ofs = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200400 s->si[0].exp = TICK_ETERNITY;
401 s->si[0].flags = SI_FL_NONE;
402
403 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
404 s->si[0].flags |= SI_FL_INDEP_STR;
405
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200406 /* pre-initialize the other side's stream interface to an INIT state. The
407 * callbacks will be initialized before attempting to connect.
408 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200409 s->si[1].conn->t.sock.fd = -1; /* just to help with debugging */
410 s->si[1].conn->flags = CO_FL_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200411 s->si[1].owner = t;
412 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
413 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200414 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200415 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200416 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200417 s->si[1].send_proxy_ofs = 0;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100418 s->si[1].conn->target = NULL;
Willy Tarreauc5788912012-08-24 18:12:41 +0200419 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200420 s->si[1].exp = TICK_ETERNITY;
421 s->si[1].flags = SI_FL_NONE;
422
423 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
424 s->si[1].flags |= SI_FL_INDEP_STR;
425
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200426 session_init_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100427 s->target = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200428 s->pend_pos = NULL;
429
430 /* init store persistence */
431 s->store_count = 0;
432
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200433 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200434 goto out_free_task; /* no memory */
435
Willy Tarreau9b28e032012-10-12 23:49:43 +0200436 if (unlikely((s->req->buf = pool_alloc2(pool2_buffer)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200437 goto out_free_req; /* no memory */
438
Willy Tarreau9b28e032012-10-12 23:49:43 +0200439 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
440 goto out_free_req_buf; /* no memory */
441
442 if (unlikely((s->rep->buf = pool_alloc2(pool2_buffer)) == NULL))
443 goto out_free_rep; /* no memory */
444
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200445 /* initialize the request buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200446 s->req->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200447 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200448 s->req->prod = &s->si[0];
449 s->req->cons = &s->si[1];
450 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200451 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200452
453 /* activate default analysers enabled for this listener */
454 s->req->analysers = l->analysers;
455
456 s->req->wto = TICK_ETERNITY;
457 s->req->rto = TICK_ETERNITY;
458 s->req->rex = TICK_ETERNITY;
459 s->req->wex = TICK_ETERNITY;
460 s->req->analyse_exp = TICK_ETERNITY;
461
462 /* initialize response buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200463 s->rep->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200464 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200465 s->rep->prod = &s->si[1];
466 s->rep->cons = &s->si[0];
467 s->si[0].ob = s->si[1].ib = s->rep;
468 s->rep->analysers = 0;
469
Willy Tarreau96e31212011-05-30 18:10:30 +0200470 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200471 s->req->flags |= CF_NEVER_WAIT;
472 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200473 }
474
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200475 s->rep->rto = TICK_ETERNITY;
476 s->rep->wto = TICK_ETERNITY;
477 s->rep->rex = TICK_ETERNITY;
478 s->rep->wex = TICK_ETERNITY;
479 s->rep->analyse_exp = TICK_ETERNITY;
480
Willy Tarreau62f791e2012-03-09 11:32:30 +0100481 txn = &s->txn;
482 /* Those variables will be checked and freed if non-NULL in
483 * session.c:session_free(). It is important that they are
484 * properly initialized.
485 */
486 txn->sessid = NULL;
487 txn->srv_cookie = NULL;
488 txn->cli_cookie = NULL;
489 txn->uri = NULL;
490 txn->req.cap = NULL;
491 txn->rsp.cap = NULL;
492 txn->hdr_idx.v = NULL;
493 txn->hdr_idx.size = txn->hdr_idx.used = 0;
494 txn->req.flags = 0;
495 txn->rsp.flags = 0;
496 /* the HTTP messages need to know what buffer they're associated with */
Willy Tarreau394db372012-10-12 22:40:39 +0200497 txn->req.chn = s->req;
498 txn->rsp.chn = s->rep;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100499
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200500 /* finish initialization of the accepted file descriptor */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200501 conn_data_want_recv(s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200502
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100503 if (p->accept && (ret = p->accept(s)) <= 0) {
504 /* Either we had an unrecoverable error (<0) or work is
505 * finished (=0, eg: monitoring), in both situations,
506 * we can release everything and close.
507 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200508 goto out_free_rep_buf;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200509 }
510
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200511 /* if logs require transport layer information, note it on the connection */
512 if (s->logs.logwait & LW_XPRT)
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200513 s->si[0].conn->flags |= CO_FL_XPRT_TRACKED;
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200514
Willy Tarreau2542b532012-08-31 16:01:23 +0200515 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200516 s->si[0].conn->flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200517
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200518 /* it is important not to call the wakeup function directly but to
519 * pass through task_wakeup(), because this one knows how to apply
520 * priorities to tasks.
521 */
522 task_wakeup(t, TASK_WOKEN_INIT);
523 return 1;
524
525 /* Error unrolling */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200526 out_free_rep_buf:
527 pool_free2(pool2_buffer, s->rep->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200528 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200529 pool_free2(pool2_channel, s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200530 out_free_req_buf:
531 pool_free2(pool2_buffer, s->req->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200532 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200533 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200534 out_free_task:
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100535 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200536}
537
Willy Tarreaubaaee002006-06-26 02:48:02 +0200538/*
539 * frees the context associated to a session. It must have been removed first.
540 */
Simon Hormandec5be42011-06-08 09:19:07 +0900541static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200542{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100543 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200544 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100545 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200546 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100547
Willy Tarreaubaaee002006-06-26 02:48:02 +0200548 if (s->pend_pos)
549 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100550
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100551 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100552 if (s->flags & SN_CURR_SESS) {
553 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100554 objt_server(s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100555 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100556 if (may_dequeue_tasks(objt_server(s->target), s->be))
557 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100558 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100559
Willy Tarreau7c669d72008-06-20 15:04:11 +0200560 if (unlikely(s->srv_conn)) {
561 /* the session still has a reserved slot on a server, but
562 * it should normally be only the same as the one above,
563 * so this should not happen in fact.
564 */
565 sess_change_server(s, NULL);
566 }
567
Willy Tarreau543db622012-11-15 16:41:22 +0100568 if (s->flags & SN_COMP_READY)
William Lallemand1c2d6222012-10-30 15:52:53 +0100569 s->comp_algo->end(&s->comp_ctx);
Willy Tarreau543db622012-11-15 16:41:22 +0100570 s->comp_algo = NULL;
571 s->flags &= ~SN_COMP_READY;
William Lallemand82fe75c2012-10-23 10:25:10 +0200572
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100573 if (s->req->pipe)
574 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100575
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100576 if (s->rep->pipe)
577 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100578
Willy Tarreau9b28e032012-10-12 23:49:43 +0200579 pool_free2(pool2_buffer, s->req->buf);
580 pool_free2(pool2_buffer, s->rep->buf);
581
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200582 pool_free2(pool2_channel, s->req);
583 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200584
Willy Tarreau46023632010-01-07 22:51:47 +0100585 http_end_txn(s);
586
Willy Tarreau1e954912012-10-12 17:50:05 +0200587 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200588 s->si[0].conn->flags &= ~CO_FL_XPRT_TRACKED;
589 conn_xprt_close(s->si[0].conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200590
Willy Tarreaua4cda672010-06-06 18:28:49 +0200591 for (i = 0; i < s->store_count; i++) {
592 if (!s->store[i].ts)
593 continue;
594 stksess_free(s->store[i].table, s->store[i].ts);
595 s->store[i].ts = NULL;
596 }
597
Willy Tarreau34eb6712011-10-24 18:15:04 +0200598 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200599 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100600 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
601 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200602 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100603
Willy Tarreau56123282010-08-06 19:06:56 +0200604 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200605 session_store_counters(s);
606
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100607 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100608 /* we have to unlink all watchers. We must not relink them if
609 * this session was the last one in the list.
610 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100611 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100612 LIST_INIT(&bref->users);
613 if (s->list.n != &sessions)
614 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100615 bref->ref = s->list.n;
616 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100617 LIST_DEL(&s->list);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200618 pool_free2(pool2_connection, s->si[1].conn);
619 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200620 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200621
622 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200623 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200624 pool_flush2(pool2_buffer);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200625 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200626 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200627 pool_flush2(pool2_requri);
628 pool_flush2(pool2_capture);
629 pool_flush2(pool2_session);
630 pool_flush2(fe->req_cap_pool);
631 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200632 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200633}
634
635
636/* perform minimal intializations, report 0 in case of error, 1 if OK. */
637int init_session()
638{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100639 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200640 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
641 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200642}
643
Willy Tarreau30e71012007-11-26 20:15:35 +0100644void session_process_counters(struct session *s)
645{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100646 unsigned long long bytes;
647
Willy Tarreau30e71012007-11-26 20:15:35 +0100648 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100649 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100650 s->logs.bytes_in = s->req->total;
651 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100652 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100653
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100654 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100655
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100656 if (objt_server(s->target))
657 objt_server(s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200658
659 if (s->listener->counters)
660 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200661
Willy Tarreau56123282010-08-06 19:06:56 +0200662 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200663 void *ptr;
664
Willy Tarreau56123282010-08-06 19:06:56 +0200665 ptr = stktable_data_ptr(s->stkctr2_table,
666 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200667 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200668 if (ptr)
669 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200670
Willy Tarreau56123282010-08-06 19:06:56 +0200671 ptr = stktable_data_ptr(s->stkctr2_table,
672 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200673 STKTABLE_DT_BYTES_IN_RATE);
674 if (ptr)
675 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200676 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200677 }
678
Willy Tarreau56123282010-08-06 19:06:56 +0200679 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200680 void *ptr;
681
Willy Tarreau56123282010-08-06 19:06:56 +0200682 ptr = stktable_data_ptr(s->stkctr1_table,
683 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200684 STKTABLE_DT_BYTES_IN_CNT);
685 if (ptr)
686 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
687
Willy Tarreau56123282010-08-06 19:06:56 +0200688 ptr = stktable_data_ptr(s->stkctr1_table,
689 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200690 STKTABLE_DT_BYTES_IN_RATE);
691 if (ptr)
692 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200693 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200694 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100695 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100696 }
697
Willy Tarreau30e71012007-11-26 20:15:35 +0100698 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100699 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100700 s->logs.bytes_out = s->rep->total;
701 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100702 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100703
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100704 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100705
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100706 if (objt_server(s->target))
707 objt_server(s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200708
709 if (s->listener->counters)
710 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200711
Willy Tarreau56123282010-08-06 19:06:56 +0200712 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200713 void *ptr;
714
Willy Tarreau56123282010-08-06 19:06:56 +0200715 ptr = stktable_data_ptr(s->stkctr2_table,
716 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200717 STKTABLE_DT_BYTES_OUT_CNT);
718 if (ptr)
719 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
720
Willy Tarreau56123282010-08-06 19:06:56 +0200721 ptr = stktable_data_ptr(s->stkctr2_table,
722 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200723 STKTABLE_DT_BYTES_OUT_RATE);
724 if (ptr)
725 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200726 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200727 }
728
Willy Tarreau56123282010-08-06 19:06:56 +0200729 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200730 void *ptr;
731
Willy Tarreau56123282010-08-06 19:06:56 +0200732 ptr = stktable_data_ptr(s->stkctr1_table,
733 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200734 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200735 if (ptr)
736 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200737
Willy Tarreau56123282010-08-06 19:06:56 +0200738 ptr = stktable_data_ptr(s->stkctr1_table,
739 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200740 STKTABLE_DT_BYTES_OUT_RATE);
741 if (ptr)
742 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200743 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200744 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100745 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100746 }
747}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200748
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100749/* This function is called with (si->state == SI_ST_CON) meaning that a
750 * connection was attempted and that the file descriptor is already allocated.
751 * We must check for establishment, error and abort. Possible output states
752 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
753 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
754 * otherwise 1.
755 */
Simon Hormandec5be42011-06-08 09:19:07 +0900756static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100757{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200758 struct channel *req = si->ob;
759 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100760
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761 /* If we got an error, or if nothing happened and the connection timed
762 * out, we must give up. The CER state handler will take care of retry
763 * attempts and error reports.
764 */
765 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100766 if (unlikely(si->ob->flags & CF_WRITE_PARTIAL)) {
767 /* Some data were sent past the connection establishment,
768 * so we need to pretend we're established to log correctly
769 * and let later states handle the failure.
770 */
771 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
772 si->exp = TICK_ETERNITY;
773 si->state = SI_ST_EST;
774 si->err_type = SI_ET_DATA_ERR;
775 si->ib->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100776 si->err_loc = objt_server(s->target);
Willy Tarreaue3224e82012-10-29 22:41:31 +0100777 return 1;
778 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100779 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100780 si->state = SI_ST_CER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100781 fd_delete(si->conn->t.sock.fd);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100782
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200783 conn_xprt_close(si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200784 if (si->release)
785 si->release(si);
786
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100787 if (si->err_type)
788 return 0;
789
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100790 si->err_loc = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100791 if (si->flags & SI_FL_ERR)
792 si->err_type = SI_ET_CONN_ERR;
793 else
794 si->err_type = SI_ET_CONN_TO;
795 return 0;
796 }
797
798 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200799 if (unlikely((rep->flags & CF_SHUTW) ||
800 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
801 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100802 s->be->options & PR_O_ABRT_CLOSE)))) {
803 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200804 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100805 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100806 si->err_loc = objt_server(s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100807 if (s->srv_error)
808 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100809 return 1;
810 }
811
812 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200813 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100814 return 1;
815
816 /* OK, this means that a connection succeeded. The caller will be
817 * responsible for handling the transition from CON to EST.
818 */
819 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100820 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100821 si->state = SI_ST_EST;
822 si->err_type = SI_ET_NONE;
823 si->err_loc = NULL;
824 return 1;
825}
826
827/* This function is called with (si->state == SI_ST_CER) meaning that a
828 * previous connection attempt has failed and that the file descriptor
829 * has already been released. Possible causes include asynchronous error
830 * notification and time out. Possible output states are SI_ST_CLO when
831 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
832 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
833 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
834 * marked as in error state. It returns 0.
835 */
Simon Hormandec5be42011-06-08 09:19:07 +0900836static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100837{
838 /* we probably have to release last session from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100839 if (objt_server(s->target)) {
840 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100841
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100842 if (s->flags & SN_CURR_SESS) {
843 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100844 objt_server(s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100845 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100846 }
847
848 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200849 si->conn_retries--;
850 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100851 if (!si->err_type) {
852 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100853 si->err_loc = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100854 }
855
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100856 if (objt_server(s->target))
857 objt_server(s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100858 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100859 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100860 if (may_dequeue_tasks(objt_server(s->target), s->be))
861 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100862
863 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200864 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200865 si->ob->flags |= CF_WRITE_ERROR;
866 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100867
868 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100869 if (s->srv_error)
870 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100871 return 0;
872 }
873
874 /* If the "redispatch" option is set on the backend, we are allowed to
875 * retry on another server for the last retry. In order to achieve this,
876 * we must mark the session unassigned, and eventually clear the DIRECT
877 * bit to ignore any persistence cookie. We won't count a retry nor a
878 * redispatch yet, because this will depend on what server is selected.
879 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100880 if (objt_server(s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100881 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100882 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100883 if (may_dequeue_tasks(objt_server(s->target), s->be))
884 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100885
886 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100887 si->state = SI_ST_REQ;
888 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100889 if (objt_server(s->target))
890 objt_server(s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100891 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100892 si->state = SI_ST_ASS;
893 }
894
895 if (si->flags & SI_FL_ERR) {
896 /* The error was an asynchronous connection error, and we will
897 * likely have to retry connecting to the same server, most
898 * likely leading to the same result. To avoid this, we wait
899 * one second before retrying.
900 */
901
902 if (!si->err_type)
903 si->err_type = SI_ET_CONN_ERR;
904
905 si->state = SI_ST_TAR;
906 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
907 return 0;
908 }
909 return 0;
910}
911
912/*
913 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200914 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200915 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100916 */
Simon Hormandec5be42011-06-08 09:19:07 +0900917static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100918{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200919 struct channel *req = si->ob;
920 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100921
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100922 if (objt_server(s->target))
923 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100924
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100925 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100926 /* if the user wants to log as soon as possible, without counting
927 * bytes from the server, then this is the right moment. */
928 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
929 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100930 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100931 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100932 }
933 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100934 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
935 /* reset hdr_idx which was already initialized by the request.
936 * right now, the http parser does it.
937 * hdr_idx_init(&s->txn.hdr_idx);
938 */
939 }
940
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200941 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200942 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200943 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200944 /* real connections have timeouts */
945 req->wto = s->be->timeout.server;
946 rep->rto = s->be->timeout.server;
947 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 req->wex = TICK_ETERNITY;
949}
950
951/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
952 * Other input states are simply ignored.
953 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
954 * Flags must have previously been updated for timeouts and other conditions.
955 */
Simon Hormandec5be42011-06-08 09:19:07 +0900956static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100957{
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100958 struct server *srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100959
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100960 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 +0100961 now_ms, __FUNCTION__,
962 s,
963 s->req, s->rep,
964 s->req->rex, s->rep->wex,
965 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200966 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 +0100967
968 if (si->state == SI_ST_ASS) {
969 /* Server assigned to connection request, we have to try to connect now */
970 int conn_err;
971
972 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100973 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100974
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100975 if (conn_err == SN_ERR_NONE) {
976 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100977 if (srv)
978 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100979 return;
980 }
981
982 /* We have received a synchronous error. We might have to
983 * abort, retry immediately or redispatch.
984 */
985 if (conn_err == SN_ERR_INTERNAL) {
986 if (!si->err_type) {
987 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100988 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100989 }
990
Willy Tarreau827aee92011-03-10 16:55:02 +0100991 if (srv)
992 srv_inc_sess_ctr(srv);
993 if (srv)
994 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100995 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100996
997 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100998 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100999 if (may_dequeue_tasks(srv, s->be))
1000 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001001
1002 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001003 si_shutr(si);
1004 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001005 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001006
1007 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1008
1009 /* no session was ever accounted for this server */
1010 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001011 if (s->srv_error)
1012 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001013 return;
1014 }
1015
1016 /* We are facing a retryable error, but we don't want to run a
1017 * turn-around now, as the problem is likely a source port
1018 * allocation problem, so we want to retry now.
1019 */
1020 si->state = SI_ST_CER;
1021 si->flags &= ~SI_FL_ERR;
1022 sess_update_st_cer(s, si);
1023 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1024 return;
1025 }
1026 else if (si->state == SI_ST_QUE) {
1027 /* connection request was queued, check for any update */
1028 if (!s->pend_pos) {
1029 /* The connection is not in the queue anymore. Either
1030 * we have a server connection slot available and we
1031 * go directly to the assigned state, or we need to
1032 * load-balance first and go to the INI state.
1033 */
1034 si->exp = TICK_ETERNITY;
1035 if (unlikely(!(s->flags & SN_ASSIGNED)))
1036 si->state = SI_ST_REQ;
1037 else {
1038 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1039 si->state = SI_ST_ASS;
1040 }
1041 return;
1042 }
1043
1044 /* Connection request still in queue... */
1045 if (si->flags & SI_FL_EXP) {
1046 /* ... and timeout expired */
1047 si->exp = TICK_ETERNITY;
1048 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001049 if (srv)
1050 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001051 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001052 si_shutr(si);
1053 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001054 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001055 if (!si->err_type)
1056 si->err_type = SI_ET_QUEUE_TO;
1057 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001058 if (s->srv_error)
1059 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001060 return;
1061 }
1062
1063 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001064 if ((si->ob->flags & (CF_READ_ERROR)) ||
1065 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001066 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001067 /* give up */
1068 si->exp = TICK_ETERNITY;
1069 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001070 si_shutr(si);
1071 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001072 si->err_type |= SI_ET_QUEUE_ABRT;
1073 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001074 if (s->srv_error)
1075 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001076 return;
1077 }
1078
1079 /* Nothing changed */
1080 return;
1081 }
1082 else if (si->state == SI_ST_TAR) {
1083 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001084 if ((si->ob->flags & (CF_READ_ERROR)) ||
1085 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001086 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001087 /* give up */
1088 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001089 si_shutr(si);
1090 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001091 si->err_type |= SI_ET_CONN_ABRT;
1092 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001093 if (s->srv_error)
1094 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001095 return;
1096 }
1097
1098 if (!(si->flags & SI_FL_EXP))
1099 return; /* still in turn-around */
1100
1101 si->exp = TICK_ETERNITY;
1102
1103 /* we keep trying on the same server as long as the session is
1104 * marked "assigned".
1105 * FIXME: Should we force a redispatch attempt when the server is down ?
1106 */
1107 if (s->flags & SN_ASSIGNED)
1108 si->state = SI_ST_ASS;
1109 else
1110 si->state = SI_ST_REQ;
1111 return;
1112 }
1113}
1114
Simon Hormandec5be42011-06-08 09:19:07 +09001115/* Set correct session termination flags in case no analyser has done it. It
1116 * also counts a failed request if the server state has not reached the request
1117 * stage.
1118 */
1119static void sess_set_term_flags(struct session *s)
1120{
1121 if (!(s->flags & SN_FINST_MASK)) {
1122 if (s->si[1].state < SI_ST_REQ) {
1123
1124 s->fe->fe_counters.failed_req++;
1125 if (s->listener->counters)
1126 s->listener->counters->failed_req++;
1127
1128 s->flags |= SN_FINST_R;
1129 }
1130 else if (s->si[1].state == SI_ST_QUE)
1131 s->flags |= SN_FINST_Q;
1132 else if (s->si[1].state < SI_ST_EST)
1133 s->flags |= SN_FINST_C;
1134 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1135 s->flags |= SN_FINST_D;
1136 else
1137 s->flags |= SN_FINST_L;
1138 }
1139}
1140
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001141/* This function initiates a server connection request on a stream interface
1142 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1143 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1144 * or SI_ST_CLO upon error.
1145 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001146static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1147{
1148 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 +01001149 now_ms, __FUNCTION__,
1150 s,
1151 s->req, s->rep,
1152 s->req->rex, s->rep->wex,
1153 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001154 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 +01001155
1156 if (si->state != SI_ST_REQ)
1157 return;
1158
1159 /* Try to assign a server */
1160 if (srv_redispatch_connect(s) != 0) {
1161 /* We did not get a server. Either we queued the
1162 * connection request, or we encountered an error.
1163 */
1164 if (si->state == SI_ST_QUE)
1165 return;
1166
1167 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001168 si_shutr(si);
1169 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001170 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001171 if (!si->err_type)
1172 si->err_type = SI_ET_CONN_OTHER;
1173 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001174 if (s->srv_error)
1175 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001176 return;
1177 }
1178
1179 /* The server is assigned */
1180 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1181 si->state = SI_ST_ASS;
1182}
1183
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001184/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001185 * if appropriate. The default_backend rule is also considered, then the
1186 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001187 * It returns 1 if the processing can continue on next analysers, or zero if it
1188 * either needs more data or wants to immediately abort the request.
1189 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001190static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001191{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001192 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001193
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001194 req->analysers &= ~an_bit;
1195 req->analyse_exp = TICK_ETERNITY;
1196
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001197 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001198 now_ms, __FUNCTION__,
1199 s,
1200 req,
1201 req->rex, req->wex,
1202 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001203 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001204 req->analysers);
1205
1206 /* now check whether we have some switching rules for this request */
1207 if (!(s->flags & SN_BE_ASSIGNED)) {
1208 struct switching_rule *rule;
1209
1210 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1211 int ret;
1212
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001213 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 +02001214 ret = acl_pass(ret);
1215 if (rule->cond->pol == ACL_COND_UNLESS)
1216 ret = !ret;
1217
1218 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001219 if (!session_set_backend(s, rule->be.backend))
1220 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001221 break;
1222 }
1223 }
1224
1225 /* To ensure correct connection accounting on the backend, we
1226 * have to assign one if it was not set (eg: a listen). This
1227 * measure also takes care of correctly setting the default
1228 * backend if any.
1229 */
1230 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001231 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1232 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001233 }
1234
Willy Tarreaufb356202010-08-03 14:02:05 +02001235 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1236 if (s->fe == s->be) {
1237 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001238 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001239 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001240
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001241 /* 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 +01001242 * persistence rule, and report that in the session.
1243 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001244 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001245 int ret = 1;
1246
1247 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001248 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 +01001249 ret = acl_pass(ret);
1250 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1251 ret = !ret;
1252 }
1253
1254 if (ret) {
1255 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001256 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1257 s->flags |= SN_FORCE_PRST;
1258 } else {
1259 s->flags |= SN_IGNORE_PRST;
1260 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001261 break;
1262 }
1263 }
1264
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001265 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001266
1267 sw_failed:
1268 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001269 channel_abort(s->req);
1270 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001271
1272 if (!(s->flags & SN_ERR_MASK))
1273 s->flags |= SN_ERR_RESOURCE;
1274 if (!(s->flags & SN_FINST_MASK))
1275 s->flags |= SN_FINST_R;
1276
1277 s->txn.status = 500;
1278 s->req->analysers = 0;
1279 s->req->analyse_exp = TICK_ETERNITY;
1280 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001281}
1282
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001283/* This stream analyser works on a request. It applies all use-server rules on
1284 * it then returns 1. The data must already be present in the buffer otherwise
1285 * they won't match. It always returns 1.
1286 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001287static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001288{
1289 struct proxy *px = s->be;
1290 struct server_rule *rule;
1291
1292 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1293 now_ms, __FUNCTION__,
1294 s,
1295 req,
1296 req->rex, req->wex,
1297 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001298 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001299 req->analysers);
1300
1301 if (!(s->flags & SN_ASSIGNED)) {
1302 list_for_each_entry(rule, &px->server_rules, list) {
1303 int ret;
1304
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001305 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 +02001306 ret = acl_pass(ret);
1307 if (rule->cond->pol == ACL_COND_UNLESS)
1308 ret = !ret;
1309
1310 if (ret) {
1311 struct server *srv = rule->srv.ptr;
1312
1313 if ((srv->state & SRV_RUNNING) ||
1314 (px->options & PR_O_PERSIST) ||
1315 (s->flags & SN_FORCE_PRST)) {
1316 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001317 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001318 break;
1319 }
1320 /* if the server is not UP, let's go on with next rules
1321 * just in case another one is suited.
1322 */
1323 }
1324 }
1325 }
1326
1327 req->analysers &= ~an_bit;
1328 req->analyse_exp = TICK_ETERNITY;
1329 return 1;
1330}
1331
Emeric Brun1d33b292010-01-04 15:47:17 +01001332/* This stream analyser works on a request. It applies all sticking rules on
1333 * it then returns 1. The data must already be present in the buffer otherwise
1334 * they won't match. It always returns 1.
1335 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001336static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001337{
1338 struct proxy *px = s->be;
1339 struct sticking_rule *rule;
1340
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001341 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 +01001342 now_ms, __FUNCTION__,
1343 s,
1344 req,
1345 req->rex, req->wex,
1346 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001347 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001348 req->analysers);
1349
1350 list_for_each_entry(rule, &px->sticking_rules, list) {
1351 int ret = 1 ;
1352 int i;
1353
1354 for (i = 0; i < s->store_count; i++) {
1355 if (rule->table.t == s->store[i].table)
1356 break;
1357 }
1358
1359 if (i != s->store_count)
1360 continue;
1361
1362 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001363 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001364 ret = acl_pass(ret);
1365 if (rule->cond->pol == ACL_COND_UNLESS)
1366 ret = !ret;
1367 }
1368
1369 if (ret) {
1370 struct stktable_key *key;
1371
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001372 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 +01001373 if (!key)
1374 continue;
1375
1376 if (rule->flags & STK_IS_MATCH) {
1377 struct stksess *ts;
1378
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001379 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001380 if (!(s->flags & SN_ASSIGNED)) {
1381 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001382 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001383
1384 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001385 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1386 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001387 if (node) {
1388 struct server *srv;
1389
1390 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001391 if ((srv->state & SRV_RUNNING) ||
1392 (px->options & PR_O_PERSIST) ||
1393 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001394 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001395 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001396 }
1397 }
1398 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001399 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001400 }
1401 }
1402 if (rule->flags & STK_IS_STORE) {
1403 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1404 struct stksess *ts;
1405
1406 ts = stksess_new(rule->table.t, key);
1407 if (ts) {
1408 s->store[s->store_count].table = rule->table.t;
1409 s->store[s->store_count++].ts = ts;
1410 }
1411 }
1412 }
1413 }
1414 }
1415
1416 req->analysers &= ~an_bit;
1417 req->analyse_exp = TICK_ETERNITY;
1418 return 1;
1419}
1420
1421/* This stream analyser works on a response. It applies all store rules on it
1422 * then returns 1. The data must already be present in the buffer otherwise
1423 * they won't match. It always returns 1.
1424 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001425static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001426{
1427 struct proxy *px = s->be;
1428 struct sticking_rule *rule;
1429 int i;
1430
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001431 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 +01001432 now_ms, __FUNCTION__,
1433 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001434 rep,
1435 rep->rex, rep->wex,
1436 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001437 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001438 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001439
1440 list_for_each_entry(rule, &px->storersp_rules, list) {
1441 int ret = 1 ;
1442 int storereqidx = -1;
1443
1444 for (i = 0; i < s->store_count; i++) {
1445 if (rule->table.t == s->store[i].table) {
1446 if (!(s->store[i].flags))
1447 storereqidx = i;
1448 break;
1449 }
1450 }
1451
1452 if ((i != s->store_count) && (storereqidx == -1))
1453 continue;
1454
1455 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001456 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001457 ret = acl_pass(ret);
1458 if (rule->cond->pol == ACL_COND_UNLESS)
1459 ret = !ret;
1460 }
1461
1462 if (ret) {
1463 struct stktable_key *key;
1464
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001465 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 +01001466 if (!key)
1467 continue;
1468
1469 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001470 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001471 s->store[storereqidx].flags = 1;
1472 }
1473 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1474 struct stksess *ts;
1475
1476 ts = stksess_new(rule->table.t, key);
1477 if (ts) {
1478 s->store[s->store_count].table = rule->table.t;
1479 s->store[s->store_count].flags = 1;
1480 s->store[s->store_count++].ts = ts;
1481 }
1482 }
1483 }
1484 }
1485
1486 /* process store request and store response */
1487 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001488 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001489 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001490
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001491 if (objt_server(s->target) && objt_server(s->target)->state & SRV_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001492 stksess_free(s->store[i].table, s->store[i].ts);
1493 s->store[i].ts = NULL;
1494 continue;
1495 }
1496
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001497 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1498 if (ts) {
1499 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001500 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001501 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001502 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001503 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001504 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001505
1506 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001507 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001508 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001509 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001510 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001511
1512 rep->analysers &= ~an_bit;
1513 rep->analyse_exp = TICK_ETERNITY;
1514 return 1;
1515}
1516
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001517/* This macro is very specific to the function below. See the comments in
1518 * process_session() below to understand the logic and the tests.
1519 */
1520#define UPDATE_ANALYSERS(real, list, back, flag) { \
1521 list = (((list) & ~(flag)) | ~(back)) & (real); \
1522 back = real; \
1523 if (!(list)) \
1524 break; \
1525 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1526 continue; \
1527}
1528
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001529/* Processes the client, server, request and response jobs of a session task,
1530 * then puts it back to the wait queue in a clean state, or cleans up its
1531 * resources if it must be deleted. Returns in <next> the date the task wants
1532 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1533 * nothing too many times, the request and response buffers flags are monitored
1534 * and each function is called only if at least another function has changed at
1535 * least one flag it is interested in.
1536 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001537struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001538{
Willy Tarreau827aee92011-03-10 16:55:02 +01001539 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001540 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001541 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001542 unsigned int rq_prod_last, rq_cons_last;
1543 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001544 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001545
1546 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1547 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1548
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001549 /* this data may be no longer valid, clear it */
1550 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1551
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001552 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001553 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001554
1555 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001556 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1557 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001558
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001559 /* we don't want the stream interface functions to recursively wake us up */
1560 if (s->req->prod->owner == t)
1561 s->req->prod->flags |= SI_FL_DONT_WAKE;
1562 if (s->req->cons->owner == t)
1563 s->req->cons->flags |= SI_FL_DONT_WAKE;
1564
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001565 /* 1a: Check for low level timeouts if needed. We just set a flag on
1566 * stream interfaces when their timeouts have expired.
1567 */
1568 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1569 stream_int_check_timeouts(&s->si[0]);
1570 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001571
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001572 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001573 * for future reads or writes. Note: this will also concern upper layers
1574 * but we do not touch any other flag. We must be careful and correctly
1575 * detect state changes when calling them.
1576 */
1577
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001578 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001579
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001580 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001581 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001582 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001583 }
1584
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001585 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001586 if (s->req->prod->flags & SI_FL_NOHALF)
1587 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001588 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001589 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001590
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001591 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001592
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001593 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001594 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001595 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001596 }
1597
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001598 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001599 if (s->rep->prod->flags & SI_FL_NOHALF)
1600 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001601 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001602 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001603
1604 /* Once in a while we're woken up because the task expires. But
1605 * this does not necessarily mean that a timeout has been reached.
1606 * So let's not run a whole session processing if only an expiration
1607 * timeout needs to be refreshed.
1608 */
1609 if (!((s->req->flags | s->rep->flags) &
1610 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
1611 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
1612 !((s->si[0].flags | s->si[1].flags) & (SI_FL_EXP|SI_FL_ERR)) &&
1613 ((t->state & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER))
1614 goto update_exp_and_leave;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001615 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001616
1617 /* 1b: check for low-level errors reported at the stream interface.
1618 * First we check if it's a retryable error (in which case we don't
1619 * want to tell the buffer). Otherwise we report the error one level
1620 * upper by setting flags into the buffers. Note that the side towards
1621 * the client cannot have connect (hence retryable) errors. Also, the
1622 * connection setup code must be able to deal with any type of abort.
1623 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001624 srv = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001625 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1626 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001627 si_shutr(&s->si[0]);
1628 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001629 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001630 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001631 s->be->be_counters.cli_aborts++;
1632 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001633 if (srv)
1634 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001635 if (!(s->flags & SN_ERR_MASK))
1636 s->flags |= SN_ERR_CLICL;
1637 if (!(s->flags & SN_FINST_MASK))
1638 s->flags |= SN_FINST_D;
1639 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001640 }
1641 }
1642
1643 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1644 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001645 si_shutr(&s->si[1]);
1646 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001647 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001648 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001649 if (srv)
1650 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001651 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001652 s->be->be_counters.srv_aborts++;
1653 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001654 if (srv)
1655 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001656 if (!(s->flags & SN_ERR_MASK))
1657 s->flags |= SN_ERR_SRVCL;
1658 if (!(s->flags & SN_FINST_MASK))
1659 s->flags |= SN_FINST_D;
1660 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001661 }
1662 /* note: maybe we should process connection errors here ? */
1663 }
1664
1665 if (s->si[1].state == SI_ST_CON) {
1666 /* we were trying to establish a connection on the server side,
1667 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1668 */
1669 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1670 sess_update_st_cer(s, &s->si[1]);
1671 else if (s->si[1].state == SI_ST_EST)
1672 sess_establish(s, &s->si[1]);
1673
1674 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1675 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1676 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1677 */
1678 }
1679
Willy Tarreau815a9b22010-07-27 17:15:12 +02001680 rq_prod_last = s->si[0].state;
1681 rq_cons_last = s->si[1].state;
1682 rp_cons_last = s->si[0].state;
1683 rp_prod_last = s->si[1].state;
1684
1685 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001686 /* Check for connection closure */
1687
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001688 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001689 "[%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 +01001690 now_ms, __FUNCTION__, __LINE__,
1691 t,
1692 s, s->flags,
1693 s->req, s->rep,
1694 s->req->rex, s->rep->wex,
1695 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001696 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 +01001697 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001698 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001699
1700 /* nothing special to be done on client side */
1701 if (unlikely(s->req->prod->state == SI_ST_DIS))
1702 s->req->prod->state = SI_ST_CLO;
1703
1704 /* When a server-side connection is released, we have to count it and
1705 * check for pending connections on this server.
1706 */
1707 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1708 s->req->cons->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001709 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001710 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001711 if (s->flags & SN_CURR_SESS) {
1712 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001713 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001714 }
1715 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001716 if (may_dequeue_tasks(srv, s->be))
1717 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001718 }
1719 }
1720
1721 /*
1722 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1723 * at this point.
1724 */
1725
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001726 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001727 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001728 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1729 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001730 s->si[0].state != rq_prod_last ||
1731 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001732 unsigned int flags = s->req->flags;
1733
1734 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001735 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001736 unsigned int ana_list;
1737 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001738
Willy Tarreau90deb182010-01-07 00:20:41 +01001739 /* it's up to the analysers to stop new connections,
1740 * disable reading or closing. Note: if an analyser
1741 * disables any of these bits, it is responsible for
1742 * enabling them again when it disables itself, so
1743 * that other analysers are called in similar conditions.
1744 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001745 channel_auto_read(s->req);
1746 channel_auto_connect(s->req);
1747 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001748
1749 /* We will call all analysers for which a bit is set in
1750 * s->req->analysers, following the bit order from LSB
1751 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001752 * the list when not needed. Any analyser may return 0
1753 * to break out of the loop, either because of missing
1754 * data to take a decision, or because it decides to
1755 * kill the session. We loop at least once through each
1756 * analyser, and we may loop again if other analysers
1757 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001758 *
1759 * We build a list of analysers to run. We evaluate all
1760 * of these analysers in the order of the lower bit to
1761 * the higher bit. This ordering is very important.
1762 * An analyser will often add/remove other analysers,
1763 * including itself. Any changes to itself have no effect
1764 * on the loop. If it removes any other analysers, we
1765 * want those analysers not to be called anymore during
1766 * this loop. If it adds an analyser that is located
1767 * after itself, we want it to be scheduled for being
1768 * processed during the loop. If it adds an analyser
1769 * which is located before it, we want it to switch to
1770 * it immediately, even if it has already been called
1771 * once but removed since.
1772 *
1773 * In order to achieve this, we compare the analyser
1774 * list after the call with a copy of it before the
1775 * call. The work list is fed with analyser bits that
1776 * appeared during the call. Then we compare previous
1777 * work list with the new one, and check the bits that
1778 * appeared. If the lowest of these bits is lower than
1779 * the current bit, it means we have enabled a previous
1780 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001781 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001782
1783 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001784 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001785 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001786
Willy Tarreaufb356202010-08-03 14:02:05 +02001787 if (ana_list & AN_REQ_INSPECT_FE) {
1788 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001789 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001790 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001791 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001792
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001793 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001794 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001795 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001796 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001797 }
1798
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001799 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001800 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1801 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001802 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001803 }
1804
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001805 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001806 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1807 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001808 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001809 }
1810
Willy Tarreaufb356202010-08-03 14:02:05 +02001811 if (ana_list & AN_REQ_INSPECT_BE) {
1812 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1813 break;
1814 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1815 }
1816
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001817 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001818 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1819 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001820 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001821 }
1822
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001823 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001824 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001825 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001826 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001827 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001828
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001829 if (ana_list & AN_REQ_SRV_RULES) {
1830 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1831 break;
1832 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1833 }
1834
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001835 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001836 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1837 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001838 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001839 }
1840
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001841 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001842 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001843 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001844 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001845 }
Emeric Brun647caf12009-06-30 17:57:00 +02001846
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001847 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001848 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1849 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001850 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001851 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001852
Emeric Brun1d33b292010-01-04 15:47:17 +01001853 if (ana_list & AN_REQ_STICKING_RULES) {
1854 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1855 break;
1856 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1857 }
1858
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001859 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001860 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1861 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001862 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001863 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001864 break;
1865 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001866 }
Willy Tarreau84455332009-03-15 22:34:05 +01001867
Willy Tarreau815a9b22010-07-27 17:15:12 +02001868 rq_prod_last = s->si[0].state;
1869 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001870 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001871 rqf_last = s->req->flags;
1872
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001873 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001874 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001875 }
1876
Willy Tarreau576507f2010-01-07 00:09:04 +01001877 /* we'll monitor the request analysers while parsing the response,
1878 * because some response analysers may indirectly enable new request
1879 * analysers (eg: HTTP keep-alive).
1880 */
1881 req_ana_back = s->req->analysers;
1882
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001883 resync_response:
1884 /* Analyse response */
1885
Willy Tarreaub31c9712012-11-11 23:05:39 +01001886 if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001887 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001888 s->si[0].state != rp_cons_last ||
1889 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001890 unsigned int flags = s->rep->flags;
1891
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001892 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001893 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1894 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1895 * for some free space in the response buffer, so we might need to call
1896 * it when something changes in the response buffer, but still we pass
1897 * it the request buffer. Note that the SI state might very well still
1898 * be zero due to us returning a flow of redirects!
1899 */
1900 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001901 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001902 }
1903
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001904 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001905 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001906 unsigned int ana_list;
1907 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001908
Willy Tarreau90deb182010-01-07 00:20:41 +01001909 /* it's up to the analysers to stop disable reading or
1910 * closing. Note: if an analyser disables any of these
1911 * bits, it is responsible for enabling them again when
1912 * it disables itself, so that other analysers are called
1913 * in similar conditions.
1914 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001915 channel_auto_read(s->rep);
1916 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001917
1918 /* We will call all analysers for which a bit is set in
1919 * s->rep->analysers, following the bit order from LSB
1920 * to MSB. The analysers must remove themselves from
1921 * the list when not needed. Any analyser may return 0
1922 * to break out of the loop, either because of missing
1923 * data to take a decision, or because it decides to
1924 * kill the session. We loop at least once through each
1925 * analyser, and we may loop again if other analysers
1926 * are added in the middle.
1927 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001928
1929 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001930 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001931 /* Warning! ensure that analysers are always placed in ascending order! */
1932
Emeric Brun97679e72010-09-23 17:56:44 +02001933 if (ana_list & AN_RES_INSPECT) {
1934 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1935 break;
1936 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1937 }
1938
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001939 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001940 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1941 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001942 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001943 }
1944
Emeric Brun1d33b292010-01-04 15:47:17 +01001945 if (ana_list & AN_RES_STORE_RULES) {
1946 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1947 break;
1948 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1949 }
1950
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001951 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001952 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1953 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001954 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001955 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001956
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001957 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001958 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1959 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001960 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001961 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001962 break;
1963 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001964 }
1965
Willy Tarreau815a9b22010-07-27 17:15:12 +02001966 rp_cons_last = s->si[0].state;
1967 rp_prod_last = s->si[1].state;
1968 rpf_last = s->rep->flags;
1969
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001970 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001971 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001972 }
1973
Willy Tarreau576507f2010-01-07 00:09:04 +01001974 /* maybe someone has added some request analysers, so we must check and loop */
1975 if (s->req->analysers & ~req_ana_back)
1976 goto resync_request;
1977
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001978 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001979 goto resync_request;
1980
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001981 /* FIXME: here we should call protocol handlers which rely on
1982 * both buffers.
1983 */
1984
1985
1986 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001987 * Now we propagate unhandled errors to the session. Normally
1988 * we're just in a data phase here since it means we have not
1989 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001990 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001991 srv = objt_server(s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001992 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001993 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001994 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001995 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001996 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001997 s->be->be_counters.cli_aborts++;
1998 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001999 if (srv)
2000 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002001 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002002 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002003 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002004 s->be->be_counters.cli_aborts++;
2005 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002006 if (srv)
2007 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002008 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002009 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002010 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002011 s->be->be_counters.srv_aborts++;
2012 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002013 if (srv)
2014 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002015 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002016 }
2017 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002018 s->be->be_counters.srv_aborts++;
2019 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002020 if (srv)
2021 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002022 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002023 }
Willy Tarreau84455332009-03-15 22:34:05 +01002024 sess_set_term_flags(s);
2025 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002026 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002027 /* Report it if the server got an error or a read timeout expired */
2028 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002029 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002030 s->be->be_counters.srv_aborts++;
2031 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002032 if (srv)
2033 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002034 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002035 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002036 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002037 s->be->be_counters.srv_aborts++;
2038 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002039 if (srv)
2040 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002041 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002042 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002043 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002044 s->be->be_counters.cli_aborts++;
2045 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002046 if (srv)
2047 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002048 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002049 }
2050 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002051 s->be->be_counters.cli_aborts++;
2052 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002053 if (srv)
2054 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002055 s->flags |= SN_ERR_CLITO;
2056 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002057 sess_set_term_flags(s);
2058 }
Willy Tarreau84455332009-03-15 22:34:05 +01002059 }
2060
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002061 /*
2062 * Here we take care of forwarding unhandled data. This also includes
2063 * connection establishments and shutdown requests.
2064 */
2065
2066
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002067 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002068 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002069 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002070 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002071 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002072 if (!s->req->analysers &&
Willy Tarreaub31c9712012-11-11 23:05:39 +01002073 !(s->req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002074 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002075 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002076 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002077 * attached to it. If any data are left in, we'll permit them to
2078 * move.
2079 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002080 channel_auto_read(s->req);
2081 channel_auto_connect(s->req);
2082 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002083 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002084
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002085 /* We'll let data flow between the producer (if still connected)
2086 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002087 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002088 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002089 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002090 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002091
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002092 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002093 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002094 s->req->to_forward &&
2095 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002096 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2097 (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 +01002098 (pipes_used < global.maxpipes) &&
2099 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2100 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002101 (s->req->flags & CF_STREAMER_FAST)))) {
2102 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002103 }
2104
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002105 /* reflect what the L7 analysers have seen last */
2106 rqf_last = s->req->flags;
2107
2108 /*
2109 * Now forward all shutdown requests between both sides of the buffer
2110 */
2111
Willy Tarreau520d95e2009-09-19 21:04:57 +02002112 /* first, let's check if the request buffer needs to shutdown(write), which may
2113 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002114 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002115 */
Willy Tarreaub31c9712012-11-11 23:05:39 +01002116 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002117 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002118 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002119
2120 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002121 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002122 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002123 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002124
2125 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002126 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002127 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002128 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002129
2130 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002131 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002132 if (s->req->prod->flags & SI_FL_NOHALF)
2133 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002134 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002135 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002136
Willy Tarreau520d95e2009-09-19 21:04:57 +02002137 /* it's possible that an upper layer has requested a connection setup or abort.
2138 * There are 2 situations where we decide to establish a new connection :
2139 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002140 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002141 */
2142 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002143 if (!(s->req->flags & CF_SHUTW)) {
2144 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002145 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002146 * switch to the connected state, otherwise we perform a connection
2147 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002148 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002149 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002150 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002151 if (unlikely(obj_type(s->req->cons->conn->target) == OBJ_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002152 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002153 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002154 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002155 s->req->wex = TICK_ETERNITY;
2156 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002157 }
Willy Tarreau73201222009-08-16 18:27:24 +02002158 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002159 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002160 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002161 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2162 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002163 }
Willy Tarreau92795622009-03-06 12:51:23 +01002164 }
2165
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002166
2167 /* we may have a pending connection request, or a connection waiting
2168 * for completion.
2169 */
2170 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2171 do {
2172 /* nb: step 1 might switch from QUE to ASS, but we first want
2173 * to give a chance to step 2 to perform a redirect if needed.
2174 */
2175 if (s->si[1].state != SI_ST_REQ)
2176 sess_update_stream_int(s, &s->si[1]);
2177 if (s->si[1].state == SI_ST_REQ)
2178 sess_prepare_conn_req(s, &s->si[1]);
2179
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002180 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01002181 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002182 perform_http_redirect(s, &s->si[1]);
2183 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002184
2185 /* Now we can add the server name to a header (if requested) */
2186 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002187 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002188 (s->be->mode == PR_MODE_HTTP) &&
2189 (s->be->server_id_hdr_name != NULL)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002190 http_send_name_header(&s->txn, s->be, objt_server(s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002191 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002192 }
2193
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002194 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002195 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002196 goto resync_stream_interface;
2197
Willy Tarreau815a9b22010-07-27 17:15:12 +02002198 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002199 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002200 goto resync_request;
2201
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002202 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002203
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002204 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002205 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002206 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002207 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002208 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002209 if (!s->rep->analysers &&
Willy Tarreaub31c9712012-11-11 23:05:39 +01002210 !(s->rep->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002211 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002212 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002213 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002214 * attached to it. If any data are left in, we'll permit them to
2215 * move.
2216 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002217 channel_auto_read(s->rep);
2218 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002219 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002220
2221 /* We'll let data flow between the producer (if still connected)
2222 * to the consumer.
2223 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002224 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002225 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002226
2227 /* if we have no analyser anymore in any direction and have a
2228 * tunnel timeout set, use it now.
2229 */
2230 if (!s->req->analysers && s->be->timeout.tunnel) {
2231 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2232 s->be->timeout.tunnel;
2233 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2234 tick_add(now_ms, s->be->timeout.tunnel);
2235 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002236 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002237
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002238 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002239 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002240 s->rep->to_forward &&
2241 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002242 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2243 (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 +01002244 (pipes_used < global.maxpipes) &&
2245 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2246 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002247 (s->rep->flags & CF_STREAMER_FAST)))) {
2248 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002249 }
2250
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002251 /* reflect what the L7 analysers have seen last */
2252 rpf_last = s->rep->flags;
2253
2254 /*
2255 * Now forward all shutdown requests between both sides of the buffer
2256 */
2257
2258 /*
2259 * FIXME: this is probably where we should produce error responses.
2260 */
2261
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002262 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreaub31c9712012-11-11 23:05:39 +01002263 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002264 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002265 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002266
2267 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002268 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002269 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002270 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002271
2272 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002273 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002274 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002275 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002276
2277 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002278 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002279 if (s->rep->prod->flags & SI_FL_NOHALF)
2280 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002281 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002282 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002283
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002284 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002285 goto resync_stream_interface;
2286
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002287 if (s->req->flags != rqf_last)
2288 goto resync_request;
2289
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002290 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002291 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002292
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002293 /* we're interested in getting wakeups again */
2294 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2295 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2296
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002297 /* This is needed only when debugging is enabled, to indicate
2298 * client-side or server-side close. Please note that in the unlikely
2299 * event where both sides would close at once, the sequence is reported
2300 * on the server side first.
2301 */
2302 if (unlikely((global.mode & MODE_DEBUG) &&
2303 (!(global.mode & MODE_QUIET) ||
2304 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002305 if (s->si[1].state == SI_ST_CLO &&
2306 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002307 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002308 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002309 (unsigned short)s->si[0].conn->t.sock.fd,
2310 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002311 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002312 }
2313
2314 if (s->si[0].state == SI_ST_CLO &&
2315 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002316 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002317 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002318 (unsigned short)s->si[0].conn->t.sock.fd,
2319 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002320 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002321 }
2322 }
2323
2324 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2325 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2326
2327 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2328 session_process_counters(s);
2329
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002330 if (s->rep->cons->state == SI_ST_EST && obj_type(s->rep->cons->conn->target) != OBJ_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002331 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002332
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002333 if (s->req->cons->state == SI_ST_EST && obj_type(s->req->cons->conn->target) != OBJ_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002334 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002335
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002336 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2337 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 +01002338 s->si[0].prev_state = s->si[0].state;
2339 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002340 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2341 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002342
2343 /* Trick: if a request is being waiting for the server to respond,
2344 * and if we know the server can timeout, we don't want the timeout
2345 * to expire on the client side first, but we're still interested
2346 * in passing data from the client to the server (eg: POST). Thus,
2347 * we can cancel the client's request timeout if the server's
2348 * request timeout is set and the server has not yet sent a response.
2349 */
2350
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002351 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002352 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002353 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002354 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002355 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002356
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002357 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002358 * Note that this one may wake the task up again.
2359 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002360 if (obj_type(s->req->cons->conn->target) == OBJ_TYPE_APPLET ||
2361 obj_type(s->rep->cons->conn->target) == OBJ_TYPE_APPLET) {
2362 if (objt_applet(s->req->cons->conn->target))
2363 objt_applet(s->req->cons->conn->target)->fct(s->req->cons);
2364 if (objt_applet(s->rep->cons->conn->target))
2365 objt_applet(s->rep->cons->conn->target)->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002366 if (task_in_rq(t)) {
2367 /* If we woke up, we don't want to requeue the
2368 * task to the wait queue, but rather requeue
2369 * it into the runqueue ASAP.
2370 */
2371 t->expire = TICK_ETERNITY;
2372 return t;
2373 }
2374 }
2375
Willy Tarreau798f4322012-11-08 14:49:17 +01002376 update_exp_and_leave:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002377 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2378 tick_first(s->rep->rex, s->rep->wex));
2379 if (s->req->analysers)
2380 t->expire = tick_first(t->expire, s->req->analyse_exp);
2381
2382 if (s->si[0].exp)
2383 t->expire = tick_first(t->expire, s->si[0].exp);
2384
2385 if (s->si[1].exp)
2386 t->expire = tick_first(t->expire, s->si[1].exp);
2387
2388#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002389 fprintf(stderr,
2390 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2391 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2392 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2393 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 +01002394#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002395
2396#ifdef DEBUG_DEV
2397 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002398 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002399 ABORT_NOW();
2400#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002401 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002402 }
2403
2404 s->fe->feconn--;
2405 if (s->flags & SN_BE_ASSIGNED)
2406 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002407 if (!(s->listener->options & LI_O_UNLIMITED))
2408 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002409 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002410 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002411 if (s->listener->state == LI_FULL)
2412 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002413
Willy Tarreau08ceb102011-07-24 22:58:00 +02002414 /* Dequeues all of the listeners waiting for a resource */
2415 if (!LIST_ISEMPTY(&global_listener_queue))
2416 dequeue_all_listeners(&global_listener_queue);
2417
Willy Tarreaub32907b2011-07-25 08:37:44 +02002418 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2419 (!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 +02002420 dequeue_all_listeners(&s->fe->listener_queue);
2421
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002422 if (unlikely((global.mode & MODE_DEBUG) &&
2423 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002424 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002425 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002426 (unsigned short)s->req->prod->conn->t.sock.fd,
2427 (unsigned short)s->req->cons->conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002428 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002429 }
2430
2431 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2432 session_process_counters(s);
2433
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002434 if (s->txn.status) {
2435 int n;
2436
2437 n = s->txn.status / 100;
2438 if (n < 1 || n > 5)
2439 n = 0;
2440
2441 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002442 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002443
Willy Tarreau24657792010-02-26 10:30:28 +01002444 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002445 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002446 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002447 }
2448
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002449 /* let's do a final log if we need it */
2450 if (s->logs.logwait &&
2451 !(s->flags & SN_MONITOR) &&
2452 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002453 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002454 }
2455
2456 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002457 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002458 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002459 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002460 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002461}
2462
Willy Tarreau7c669d72008-06-20 15:04:11 +02002463/*
2464 * This function adjusts sess->srv_conn and maintains the previous and new
2465 * server's served session counts. Setting newsrv to NULL is enough to release
2466 * current connection slot. This function also notifies any LB algo which might
2467 * expect to be informed about any change in the number of active sessions on a
2468 * server.
2469 */
2470void sess_change_server(struct session *sess, struct server *newsrv)
2471{
2472 if (sess->srv_conn == newsrv)
2473 return;
2474
2475 if (sess->srv_conn) {
2476 sess->srv_conn->served--;
2477 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2478 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002479 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002480 }
2481
2482 if (newsrv) {
2483 newsrv->served++;
2484 if (newsrv->proxy->lbprm.server_take_conn)
2485 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002486 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002487 }
2488}
2489
Willy Tarreau84455332009-03-15 22:34:05 +01002490/* Handle server-side errors for default protocols. It is called whenever a a
2491 * connection setup is aborted or a request is aborted in queue. It sets the
2492 * session termination flags so that the caller does not have to worry about
2493 * them. It's installed as ->srv_error for the server-side stream_interface.
2494 */
2495void default_srv_error(struct session *s, struct stream_interface *si)
2496{
2497 int err_type = si->err_type;
2498 int err = 0, fin = 0;
2499
2500 if (err_type & SI_ET_QUEUE_ABRT) {
2501 err = SN_ERR_CLICL;
2502 fin = SN_FINST_Q;
2503 }
2504 else if (err_type & SI_ET_CONN_ABRT) {
2505 err = SN_ERR_CLICL;
2506 fin = SN_FINST_C;
2507 }
2508 else if (err_type & SI_ET_QUEUE_TO) {
2509 err = SN_ERR_SRVTO;
2510 fin = SN_FINST_Q;
2511 }
2512 else if (err_type & SI_ET_QUEUE_ERR) {
2513 err = SN_ERR_SRVCL;
2514 fin = SN_FINST_Q;
2515 }
2516 else if (err_type & SI_ET_CONN_TO) {
2517 err = SN_ERR_SRVTO;
2518 fin = SN_FINST_C;
2519 }
2520 else if (err_type & SI_ET_CONN_ERR) {
2521 err = SN_ERR_SRVCL;
2522 fin = SN_FINST_C;
2523 }
2524 else /* SI_ET_CONN_OTHER and others */ {
2525 err = SN_ERR_INTERNAL;
2526 fin = SN_FINST_C;
2527 }
2528
2529 if (!(s->flags & SN_ERR_MASK))
2530 s->flags |= err;
2531 if (!(s->flags & SN_FINST_MASK))
2532 s->flags |= fin;
2533}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002534
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002535/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2536void session_shutdown(struct session *session, int why)
2537{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002538 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002539 return;
2540
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002541 channel_shutw_now(session->req);
2542 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002543 session->task->nice = 1024;
2544 if (!(session->flags & SN_ERR_MASK))
2545 session->flags |= why;
2546 task_wakeup(session->task, TASK_WOKEN_OTHER);
2547}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002548
Willy Tarreau8b22a712010-06-18 17:46:06 +02002549/************************************************************************/
2550/* All supported ACL keywords must be declared here. */
2551/************************************************************************/
2552
Willy Tarreaua5e37562011-12-16 17:06:15 +01002553/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002554static int
Willy Tarreau37406352012-04-23 16:16:37 +02002555acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002556{
Willy Tarreau37406352012-04-23 16:16:37 +02002557 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002558 smp->type = SMP_T_UINT;
2559 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002560 if (ts != NULL) {
2561 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2562 if (!ptr)
2563 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002564 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002565 }
2566 return 1;
2567}
2568
Willy Tarreaua5e37562011-12-16 17:06:15 +01002569/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002570 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002571 */
2572static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002573acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002574 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002575{
Willy Tarreau56123282010-08-06 19:06:56 +02002576 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002577 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002578 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002579}
2580
Willy Tarreaua5e37562011-12-16 17:06:15 +01002581/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002582 * backend counters.
2583 */
2584static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002585acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002586 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002587{
Willy Tarreau56123282010-08-06 19:06:56 +02002588 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002589 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002590 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002591}
2592
Willy Tarreaua5e37562011-12-16 17:06:15 +01002593/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002594 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002595 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002596 */
2597static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002598acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002599 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002600{
2601 struct stktable_key *key;
2602
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002603 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002604 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002605 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002606
Willy Tarreau24e32d82012-04-23 23:55:44 +02002607 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002608 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002609}
2610
2611/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002612 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002613 */
2614static int
Willy Tarreau37406352012-04-23 16:16:37 +02002615acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002616{
Willy Tarreau37406352012-04-23 16:16:37 +02002617 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002618 smp->type = SMP_T_UINT;
2619 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002620 if (ts != NULL) {
2621 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2622 if (!ptr)
2623 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002624 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002625 }
2626 return 1;
2627}
2628
2629/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002630 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002631 */
2632static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002633acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002634 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002635{
Willy Tarreau56123282010-08-06 19:06:56 +02002636 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002637 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002638 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002639}
2640
2641/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002642 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002643 */
2644static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002645acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002646 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002647{
Willy Tarreau56123282010-08-06 19:06:56 +02002648 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002649 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002650 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002651}
2652
2653/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002654 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002655 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002656 */
2657static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002658acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002659 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002660{
2661 struct stktable_key *key;
2662
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002663 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002664 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002665 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002666
Willy Tarreau24e32d82012-04-23 23:55:44 +02002667 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002668 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002669}
2670
Willy Tarreauf73cd112011-08-13 01:45:16 +02002671/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002672 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002673 */
2674static int
Willy Tarreau37406352012-04-23 16:16:37 +02002675acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002676{
Willy Tarreau37406352012-04-23 16:16:37 +02002677 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002678 smp->type = SMP_T_UINT;
2679 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002680 if (ts != NULL) {
2681 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2682 if (!ptr)
2683 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002684 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002685 stktable_data_cast(ptr, gpc0) = 0;
2686 }
2687 return 1;
2688}
2689
2690/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002691 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002692 */
2693static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002694acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002695 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002696{
2697 if (!l4->stkctr1_entry)
2698 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002699 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002700}
2701
2702/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002703 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002704 */
2705static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002706acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002707 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002708{
2709 if (!l4->stkctr2_entry)
2710 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002711 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002712}
2713
2714/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002715 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002716 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002717 */
2718static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002719acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002720 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002721{
2722 struct stktable_key *key;
2723
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002724 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002725 if (!key)
2726 return 0;
2727
Willy Tarreau24e32d82012-04-23 23:55:44 +02002728 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002729 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002730}
2731
Willy Tarreaua5e37562011-12-16 17:06:15 +01002732/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002733static int
Willy Tarreau37406352012-04-23 16:16:37 +02002734acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002735{
Willy Tarreau37406352012-04-23 16:16:37 +02002736 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002737 smp->type = SMP_T_UINT;
2738 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002739 if (ts != NULL) {
2740 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2741 if (!ptr)
2742 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002743 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002744 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002745 return 1;
2746}
2747
Willy Tarreaua5e37562011-12-16 17:06:15 +01002748/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002749static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002750acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002751 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002752{
Willy Tarreau56123282010-08-06 19:06:56 +02002753 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002754 return 0;
2755
Willy Tarreau37406352012-04-23 16:16:37 +02002756 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002757}
2758
Willy Tarreaua5e37562011-12-16 17:06:15 +01002759/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002760static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002761acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002762 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002763{
Willy Tarreau56123282010-08-06 19:06:56 +02002764 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002765 return 0;
2766
Willy Tarreau37406352012-04-23 16:16:37 +02002767 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002768}
2769
Willy Tarreaua5e37562011-12-16 17:06:15 +01002770/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002771 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002772 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002773 */
2774static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002775acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002776 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002777{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002778 struct stktable_key *key;
2779
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002780 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002781 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002782 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002783
Willy Tarreau24e32d82012-04-23 23:55:44 +02002784 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002785 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002786}
2787
Willy Tarreaua5e37562011-12-16 17:06:15 +01002788/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002789static int
Willy Tarreau37406352012-04-23 16:16:37 +02002790acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002791{
Willy Tarreau37406352012-04-23 16:16:37 +02002792 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002793 smp->type = SMP_T_UINT;
2794 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002795 if (ts != NULL) {
2796 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2797 if (!ptr)
2798 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002799 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002800 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2801 }
2802 return 1;
2803}
2804
Willy Tarreaua5e37562011-12-16 17:06:15 +01002805/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002806 * the configured period.
2807 */
2808static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002809acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002810 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002811{
Willy Tarreau56123282010-08-06 19:06:56 +02002812 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002813 return 0;
2814
Willy Tarreau37406352012-04-23 16:16:37 +02002815 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002816}
2817
Willy Tarreaua5e37562011-12-16 17:06:15 +01002818/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002819 * the configured period.
2820 */
2821static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002822acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002823 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002824{
Willy Tarreau56123282010-08-06 19:06:56 +02002825 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002826 return 0;
2827
Willy Tarreau37406352012-04-23 16:16:37 +02002828 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002829}
2830
Willy Tarreaua5e37562011-12-16 17:06:15 +01002831/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002832 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002833 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002834 */
2835static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002836acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002837 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002838{
2839 struct stktable_key *key;
2840
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002841 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002842 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002843 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002844
Willy Tarreau24e32d82012-04-23 23:55:44 +02002845 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002846 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002847}
2848
Willy Tarreaua5e37562011-12-16 17:06:15 +01002849/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002850 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002851 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002852 */
2853static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002854acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002855 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002856{
2857 struct stksess *ts;
2858 struct stktable_key *key;
2859 void *ptr;
2860
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002861 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002862 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002863 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002864
Willy Tarreau24e32d82012-04-23 23:55:44 +02002865 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002866
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002867 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2868 /* entry does not exist and could not be created */
2869 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002870
2871 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2872 if (!ptr)
2873 return 0; /* parameter not stored in this table */
2874
Willy Tarreauf853c462012-04-23 18:53:56 +02002875 smp->type = SMP_T_UINT;
2876 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002877 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002878 return 1;
2879}
2880
Willy Tarreaua5e37562011-12-16 17:06:15 +01002881/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002882static int
Willy Tarreau37406352012-04-23 16:16:37 +02002883acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002884{
Willy Tarreau37406352012-04-23 16:16:37 +02002885 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002886 smp->type = SMP_T_UINT;
2887 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002888
2889 if (ts != NULL) {
2890 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2891 if (!ptr)
2892 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002893 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002894 }
2895 return 1;
2896}
2897
Willy Tarreaua5e37562011-12-16 17:06:15 +01002898/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002899static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002900acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002901 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002902{
Willy Tarreau56123282010-08-06 19:06:56 +02002903 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002904 return 0;
2905
Willy Tarreau37406352012-04-23 16:16:37 +02002906 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002907}
2908
Willy Tarreaua5e37562011-12-16 17:06:15 +01002909/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002910static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002911acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002912 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002913{
Willy Tarreau56123282010-08-06 19:06:56 +02002914 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002915 return 0;
2916
Willy Tarreau37406352012-04-23 16:16:37 +02002917 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002918}
2919
Willy Tarreaua5e37562011-12-16 17:06:15 +01002920/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002921 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002922 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002923 */
2924static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002925acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002926 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002927{
Willy Tarreau38285c12010-06-18 16:35:43 +02002928 struct stktable_key *key;
2929
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002930 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002931 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002932 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002933
Willy Tarreau24e32d82012-04-23 23:55:44 +02002934 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002935 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002936}
2937
Willy Tarreaua5e37562011-12-16 17:06:15 +01002938/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002939static int
Willy Tarreau37406352012-04-23 16:16:37 +02002940acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002941{
Willy Tarreau37406352012-04-23 16:16:37 +02002942 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002943 smp->type = SMP_T_UINT;
2944 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002945 if (ts != NULL) {
2946 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2947 if (!ptr)
2948 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002949 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002950 }
2951 return 1;
2952}
2953
Willy Tarreaua5e37562011-12-16 17:06:15 +01002954/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002955static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002956acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002957 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002958{
Willy Tarreau56123282010-08-06 19:06:56 +02002959 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002960 return 0;
2961
Willy Tarreau37406352012-04-23 16:16:37 +02002962 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002963}
2964
Willy Tarreaua5e37562011-12-16 17:06:15 +01002965/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002966static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002967acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002968 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002969{
Willy Tarreau56123282010-08-06 19:06:56 +02002970 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002971 return 0;
2972
Willy Tarreau37406352012-04-23 16:16:37 +02002973 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002974}
2975
Willy Tarreaua5e37562011-12-16 17:06:15 +01002976/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002977 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002978 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002979 */
2980static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002981acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002982 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002983{
2984 struct stktable_key *key;
2985
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002986 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002987 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002988 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002989
Willy Tarreau24e32d82012-04-23 23:55:44 +02002990 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002991 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002992}
2993
Willy Tarreaua5e37562011-12-16 17:06:15 +01002994/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002995static int
Willy Tarreau37406352012-04-23 16:16:37 +02002996acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002997{
Willy Tarreau37406352012-04-23 16:16:37 +02002998 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002999 smp->type = SMP_T_UINT;
3000 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003001 if (ts != NULL) {
3002 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
3003 if (!ptr)
3004 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003005 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02003006 table->data_arg[STKTABLE_DT_SESS_RATE].u);
3007 }
3008 return 1;
3009}
3010
Willy Tarreaua5e37562011-12-16 17:06:15 +01003011/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003012 * the configured period.
3013 */
3014static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003015acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003016 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003017{
Willy Tarreau56123282010-08-06 19:06:56 +02003018 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003019 return 0;
3020
Willy Tarreau37406352012-04-23 16:16:37 +02003021 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003022}
3023
Willy Tarreaua5e37562011-12-16 17:06:15 +01003024/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02003025 * the configured period.
3026 */
3027static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003028acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003029 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003030{
Willy Tarreau56123282010-08-06 19:06:56 +02003031 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003032 return 0;
3033
Willy Tarreau37406352012-04-23 16:16:37 +02003034 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003035}
3036
Willy Tarreaua5e37562011-12-16 17:06:15 +01003037/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003038 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003039 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003040 */
3041static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003042acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003043 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003044{
3045 struct stktable_key *key;
3046
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003047 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003048 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003049 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003050
Willy Tarreau24e32d82012-04-23 23:55:44 +02003051 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003052 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003053}
3054
Willy Tarreaua5e37562011-12-16 17:06:15 +01003055/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003056static int
Willy Tarreau37406352012-04-23 16:16:37 +02003057acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003058{
Willy Tarreau37406352012-04-23 16:16:37 +02003059 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003060 smp->type = SMP_T_UINT;
3061 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003062 if (ts != NULL) {
3063 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3064 if (!ptr)
3065 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003066 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003067 }
3068 return 1;
3069}
3070
Willy Tarreaua5e37562011-12-16 17:06:15 +01003071/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003072static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003073acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003074 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003075{
Willy Tarreau56123282010-08-06 19:06:56 +02003076 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003077 return 0;
3078
Willy Tarreau37406352012-04-23 16:16:37 +02003079 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003080}
3081
Willy Tarreaua5e37562011-12-16 17:06:15 +01003082/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003083static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003084acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003085 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003086{
Willy Tarreau56123282010-08-06 19:06:56 +02003087 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003088 return 0;
3089
Willy Tarreau37406352012-04-23 16:16:37 +02003090 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003091}
3092
Willy Tarreaua5e37562011-12-16 17:06:15 +01003093/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003094 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003095 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003096 */
3097static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003098acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003099 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003100{
3101 struct stktable_key *key;
3102
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003103 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003104 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003105 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003106
Willy Tarreau24e32d82012-04-23 23:55:44 +02003107 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003108 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003109}
3110
Willy Tarreaua5e37562011-12-16 17:06:15 +01003111/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003112static int
Willy Tarreau37406352012-04-23 16:16:37 +02003113acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003114{
Willy Tarreau37406352012-04-23 16:16:37 +02003115 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003116 smp->type = SMP_T_UINT;
3117 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003118 if (ts != NULL) {
3119 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
3120 if (!ptr)
3121 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003122 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003123 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3124 }
3125 return 1;
3126}
3127
Willy Tarreaua5e37562011-12-16 17:06:15 +01003128/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003129 * the configured period.
3130 */
3131static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003132acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003133 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003134{
Willy Tarreau56123282010-08-06 19:06:56 +02003135 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003136 return 0;
3137
Willy Tarreau37406352012-04-23 16:16:37 +02003138 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003139}
3140
Willy Tarreaua5e37562011-12-16 17:06:15 +01003141/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003142 * the configured period.
3143 */
3144static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003145acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003146 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003147{
Willy Tarreau56123282010-08-06 19:06:56 +02003148 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003149 return 0;
3150
Willy Tarreau37406352012-04-23 16:16:37 +02003151 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003152}
3153
Willy Tarreaua5e37562011-12-16 17:06:15 +01003154/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003155 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003156 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003157 */
3158static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003159acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003160 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003161{
3162 struct stktable_key *key;
3163
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003164 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003165 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003166 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003167
Willy Tarreau24e32d82012-04-23 23:55:44 +02003168 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003169 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003170}
3171
Willy Tarreaua5e37562011-12-16 17:06:15 +01003172/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003173static int
Willy Tarreau37406352012-04-23 16:16:37 +02003174acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003175{
Willy Tarreau37406352012-04-23 16:16:37 +02003176 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003177 smp->type = SMP_T_UINT;
3178 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003179 if (ts != NULL) {
3180 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3181 if (!ptr)
3182 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003183 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003184 }
3185 return 1;
3186}
3187
Willy Tarreaua5e37562011-12-16 17:06:15 +01003188/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003189static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003190acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003191 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003192{
Willy Tarreau56123282010-08-06 19:06:56 +02003193 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003194 return 0;
3195
Willy Tarreau37406352012-04-23 16:16:37 +02003196 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003197}
3198
Willy Tarreaua5e37562011-12-16 17:06:15 +01003199/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003200static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003201acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003202 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003203{
Willy Tarreau56123282010-08-06 19:06:56 +02003204 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003205 return 0;
3206
Willy Tarreau37406352012-04-23 16:16:37 +02003207 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003208}
3209
Willy Tarreaua5e37562011-12-16 17:06:15 +01003210/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003211 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003212 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003213 */
3214static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003215acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003216 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003217{
3218 struct stktable_key *key;
3219
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003220 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003221 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003222 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003223
Willy Tarreau24e32d82012-04-23 23:55:44 +02003224 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003225 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003226}
3227
Willy Tarreaua5e37562011-12-16 17:06:15 +01003228/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003229static int
Willy Tarreau37406352012-04-23 16:16:37 +02003230acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003231{
Willy Tarreau37406352012-04-23 16:16:37 +02003232 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003233 smp->type = SMP_T_UINT;
3234 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003235 if (ts != NULL) {
3236 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3237 if (!ptr)
3238 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003239 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003240 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3241 }
3242 return 1;
3243}
3244
Willy Tarreaua5e37562011-12-16 17:06:15 +01003245/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003246 * the configured period.
3247 */
3248static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003249acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003250 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003251{
Willy Tarreau56123282010-08-06 19:06:56 +02003252 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003253 return 0;
3254
Willy Tarreau37406352012-04-23 16:16:37 +02003255 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003256}
3257
Willy Tarreaua5e37562011-12-16 17:06:15 +01003258/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003259 * the configured period.
3260 */
3261static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003262acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003263 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003264{
Willy Tarreau56123282010-08-06 19:06:56 +02003265 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003266 return 0;
3267
Willy Tarreau37406352012-04-23 16:16:37 +02003268 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003269}
3270
Willy Tarreaua5e37562011-12-16 17:06:15 +01003271/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003272 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003273 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003274 */
3275static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003276acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003277 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003278{
3279 struct stktable_key *key;
3280
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003281 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003282 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003283 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003284
Willy Tarreau24e32d82012-04-23 23:55:44 +02003285 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003286 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003287}
3288
Willy Tarreaua5e37562011-12-16 17:06:15 +01003289/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003290static int
Willy Tarreau37406352012-04-23 16:16:37 +02003291acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003292{
Willy Tarreau37406352012-04-23 16:16:37 +02003293 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003294 smp->type = SMP_T_UINT;
3295 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003296
3297 if (ts != NULL) {
3298 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3299 if (!ptr)
3300 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003301 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003302 }
3303 return 1;
3304}
3305
Willy Tarreaua5e37562011-12-16 17:06:15 +01003306/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003307 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003308 */
3309static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003310acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003311 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003312{
Willy Tarreau56123282010-08-06 19:06:56 +02003313 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003314 return 0;
3315
Willy Tarreau37406352012-04-23 16:16:37 +02003316 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003317}
3318
Willy Tarreaua5e37562011-12-16 17:06:15 +01003319/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003320 * session's tracked BE counters.
3321 */
3322static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003323acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003324 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003325{
Willy Tarreau56123282010-08-06 19:06:56 +02003326 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003327 return 0;
3328
Willy Tarreau37406352012-04-23 16:16:37 +02003329 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003330}
3331
Willy Tarreaua5e37562011-12-16 17:06:15 +01003332/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003333 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003334 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003335 */
3336static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003337acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003338 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003339{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003340 struct stktable_key *key;
3341
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003342 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003343 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003344 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003345
Willy Tarreau24e32d82012-04-23 23:55:44 +02003346 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003347 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003348}
3349
Willy Tarreaua5e37562011-12-16 17:06:15 +01003350/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003351 * configured period.
3352 */
3353static int
Willy Tarreau37406352012-04-23 16:16:37 +02003354acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003355{
Willy Tarreau37406352012-04-23 16:16:37 +02003356 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003357 smp->type = SMP_T_UINT;
3358 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003359 if (ts != NULL) {
3360 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3361 if (!ptr)
3362 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003363 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003364 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3365 }
3366 return 1;
3367}
3368
Willy Tarreaua5e37562011-12-16 17:06:15 +01003369/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003370 * counters over the configured period.
3371 */
3372static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003373acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003374 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003375{
Willy Tarreau56123282010-08-06 19:06:56 +02003376 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003377 return 0;
3378
Willy Tarreau37406352012-04-23 16:16:37 +02003379 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003380}
3381
Willy Tarreaua5e37562011-12-16 17:06:15 +01003382/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003383 * counters over the configured period.
3384 */
3385static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003386acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003387 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003388{
Willy Tarreau56123282010-08-06 19:06:56 +02003389 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003390 return 0;
3391
Willy Tarreau37406352012-04-23 16:16:37 +02003392 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003393}
3394
Willy Tarreaua5e37562011-12-16 17:06:15 +01003395/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003396 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003397 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003398 */
3399static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003400acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003401 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003402{
3403 struct stktable_key *key;
3404
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003405 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003406 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003407 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003408
Willy Tarreau24e32d82012-04-23 23:55:44 +02003409 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003410 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003411}
3412
Willy Tarreaua5e37562011-12-16 17:06:15 +01003413/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003414static int
Willy Tarreau37406352012-04-23 16:16:37 +02003415acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003416{
Willy Tarreau37406352012-04-23 16:16:37 +02003417 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003418 smp->type = SMP_T_UINT;
3419 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003420
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003421 if (ts != NULL) {
3422 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003423 if (!ptr)
3424 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003425 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003426 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003427 return 1;
3428}
3429
Willy Tarreaua5e37562011-12-16 17:06:15 +01003430/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003431 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003432 */
3433static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003434acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003435 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003436{
Willy Tarreau56123282010-08-06 19:06:56 +02003437 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003438 return 0;
3439
Willy Tarreau37406352012-04-23 16:16:37 +02003440 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003441}
3442
Willy Tarreaua5e37562011-12-16 17:06:15 +01003443/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003444 * tracked BE counters.
3445 */
3446static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003447acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003448 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003449{
Willy Tarreau56123282010-08-06 19:06:56 +02003450 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003451 return 0;
3452
Willy Tarreau37406352012-04-23 16:16:37 +02003453 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003454}
3455
Willy Tarreaua5e37562011-12-16 17:06:15 +01003456/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003457 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003458 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003459 */
3460static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003461acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003462 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003463{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003464 struct stktable_key *key;
3465
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003466 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003467 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003468 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003469
Willy Tarreau24e32d82012-04-23 23:55:44 +02003470 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003471 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003472}
3473
Willy Tarreaua5e37562011-12-16 17:06:15 +01003474/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003475 * configured period.
3476 */
3477static int
Willy Tarreau37406352012-04-23 16:16:37 +02003478acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003479{
Willy Tarreau37406352012-04-23 16:16:37 +02003480 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003481 smp->type = SMP_T_UINT;
3482 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003483 if (ts != NULL) {
3484 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3485 if (!ptr)
3486 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003487 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003488 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3489 }
3490 return 1;
3491}
3492
Willy Tarreaua5e37562011-12-16 17:06:15 +01003493/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003494 * over the configured period.
3495 */
3496static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003497acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003498 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003499{
Willy Tarreau56123282010-08-06 19:06:56 +02003500 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003501 return 0;
3502
Willy Tarreau37406352012-04-23 16:16:37 +02003503 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003504}
3505
Willy Tarreaua5e37562011-12-16 17:06:15 +01003506/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003507 * over the configured period.
3508 */
3509static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003510acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003511 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003512{
Willy Tarreau56123282010-08-06 19:06:56 +02003513 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003514 return 0;
3515
Willy Tarreau37406352012-04-23 16:16:37 +02003516 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003517}
3518
Willy Tarreaua5e37562011-12-16 17:06:15 +01003519/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003520 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003521 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003522 */
3523static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003524acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003525 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003526{
3527 struct stktable_key *key;
3528
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003529 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003530 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003531 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003532
Willy Tarreau24e32d82012-04-23 23:55:44 +02003533 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003534 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003535}
3536
Willy Tarreau34db1082012-04-19 17:16:54 +02003537/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003538 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003539 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003540static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003541acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003542 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003543{
Willy Tarreau37406352012-04-23 16:16:37 +02003544 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003545 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003546 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003547 return 1;
3548}
3549
Willy Tarreau34db1082012-04-19 17:16:54 +02003550/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003551 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003552 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003553static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003554acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003555 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003556{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003557 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003558 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003559 smp->type = SMP_T_UINT;
3560 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003561 return 1;
3562}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003563
Willy Tarreau61612d42012-04-19 18:42:05 +02003564/* Note: must not be declared <const> as its list will be overwritten.
3565 * Please take care of keeping this list alphabetically sorted.
3566 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003567static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003568 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3569 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3570 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3571 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3572 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3573 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3574 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3575 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3576 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3577 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3578 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3579 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3580 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3581 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3582 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3583 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3584 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3585 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3586 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3587 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3588 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3589 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3590 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3591 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3592 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3593 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3594 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3595 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3596 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3597 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3598 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3599 { "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 +02003600 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3601 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3602 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3603 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3604 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3605 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3606 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3607 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3608 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3609 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3610 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3611 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3612 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3613 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3614 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3615 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3616 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3617 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3618 { "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 +02003619 { NULL, NULL, NULL, NULL },
3620}};
3621
3622
Willy Tarreau56123282010-08-06 19:06:56 +02003623/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003624 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3625 * <prm> struct is fed with the table name if any. If unspecified, the caller
3626 * will assume that the current proxy's table is used.
3627 */
3628int parse_track_counters(char **args, int *arg,
3629 int section_type, struct proxy *curpx,
3630 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003631 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003632{
Willy Tarreau12785782012-04-27 21:37:17 +02003633 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003634
Willy Tarreau56123282010-08-06 19:06:56 +02003635 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003636 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003637 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003638 */
3639 while (args[*arg]) {
3640 if (strcmp(args[*arg], "src") == 0) {
3641 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003642 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003643 }
3644 else if (strcmp(args[*arg], "table") == 0) {
3645 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003646 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003647 return -1;
3648 }
3649 /* we copy the table name for now, it will be resolved later */
3650 prm->table.n = strdup(args[*arg + 1]);
3651 (*arg)++;
3652 }
3653 else {
3654 /* unhandled keywords are handled by the caller */
3655 break;
3656 }
3657 (*arg)++;
3658 }
3659
Willy Tarreau12785782012-04-27 21:37:17 +02003660 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003661 memprintf(err,
3662 "tracking key not specified (found %s, only 'src' is supported)",
3663 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003664 return -1;
3665 }
3666
3667 return 0;
3668}
3669
Willy Tarreau8b22a712010-06-18 17:46:06 +02003670__attribute__((constructor))
3671static void __session_init(void)
3672{
3673 acl_register_keywords(&acl_kws);
3674}
3675
Willy Tarreaubaaee002006-06-26 02:48:02 +02003676/*
3677 * Local variables:
3678 * c-indent-level: 8
3679 * c-basic-offset: 8
3680 * End:
3681 */