blob: 772adf6b5c565744d3ff717614f19def48a26e87 [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;
113 set_target_client(&s->si[0].conn->target, l);
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 Tarreauf2943dc2012-10-26 20:10:28 +0200418 clear_target(&s->si[1].conn->target);
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 Tarreau9e000c62011-03-10 14:03:36 +0100427 clear_target(&s->target);
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 Tarreau827aee92011-03-10 16:55:02 +0100551 if (target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100554 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100555 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100556 if (may_dequeue_tasks(target_srv(&s->target), s->be))
557 process_srv_queue(target_srv(&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
William Lallemand82fe75c2012-10-23 10:25:10 +0200568 if (s->comp_algo) {
William Lallemand1c2d6222012-10-30 15:52:53 +0100569 s->comp_algo->end(&s->comp_ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +0200570 s->comp_algo = NULL;
571 }
572
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 Tarreau827aee92011-03-10 16:55:02 +0100656 if (target_srv(&s->target))
657 target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100706 if (target_srv(&s->target))
707 target_srv(&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;
776 si->err_loc = target_srv(&s->target);
777 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 Tarreau827aee92011-03-10 16:55:02 +0100790 si->err_loc = target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100806 si->err_loc = target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100839 if (target_srv(&s->target)) {
840 health_adjust(target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100844 target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100853 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100854 }
855
Willy Tarreau827aee92011-03-10 16:55:02 +0100856 if (target_srv(&s->target))
857 target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100860 if (may_dequeue_tasks(target_srv(&s->target), s->be))
861 process_srv_queue(target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100880 if (target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100883 if (may_dequeue_tasks(target_srv(&s->target), s->be))
884 process_srv_queue(target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100889 if (target_srv(&s->target))
890 target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100922 if (target_srv(&s->target))
923 health_adjust(target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +0100958 struct server *srv = target_srv(&s->target);
959
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 Tarreau827aee92011-03-10 16:55:02 +0100973 srv = target_srv(&s->target);
974
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;
1317 set_target_server(&s->target, srv);
1318 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 Tarreau9e000c62011-03-10 14:03:36 +01001395 set_target_server(&s->target, srv);
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
Simon Hormanfa461682011-06-25 09:39:49 +09001491 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1492 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 Tarreau827aee92011-03-10 16:55:02 +01001508 stktable_data_cast(ptr, server_id) = target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +01001624 srv = target_srv(&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 Tarreau827aee92011-03-10 16:55:02 +01001709 srv = target_srv(&s->target);
1710 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 Tarreau03cdb7c2012-08-27 23:14:58 +02001886 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001887 /* In inject mode, we wake up everytime something has
1888 * happened on the write side of the buffer.
1889 */
1890 unsigned int flags = s->rep->flags;
1891
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001892 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001893 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001894 s->rep->hijacker(s, s->rep);
1895 }
1896
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001897 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001898 rpf_last = s->rep->flags;
1899 goto resync_response;
1900 }
1901 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001902 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1903 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001904 s->si[0].state != rp_cons_last ||
1905 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001906 unsigned int flags = s->rep->flags;
1907
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001908 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001909 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1910 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1911 * for some free space in the response buffer, so we might need to call
1912 * it when something changes in the response buffer, but still we pass
1913 * it the request buffer. Note that the SI state might very well still
1914 * be zero due to us returning a flow of redirects!
1915 */
1916 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001917 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001918 }
1919
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001920 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001921 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001922 unsigned int ana_list;
1923 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001924
Willy Tarreau90deb182010-01-07 00:20:41 +01001925 /* it's up to the analysers to stop disable reading or
1926 * closing. Note: if an analyser disables any of these
1927 * bits, it is responsible for enabling them again when
1928 * it disables itself, so that other analysers are called
1929 * in similar conditions.
1930 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001931 channel_auto_read(s->rep);
1932 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001933
1934 /* We will call all analysers for which a bit is set in
1935 * s->rep->analysers, following the bit order from LSB
1936 * to MSB. The analysers must remove themselves from
1937 * the list when not needed. Any analyser may return 0
1938 * to break out of the loop, either because of missing
1939 * data to take a decision, or because it decides to
1940 * kill the session. We loop at least once through each
1941 * analyser, and we may loop again if other analysers
1942 * are added in the middle.
1943 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001944
1945 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001946 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001947 /* Warning! ensure that analysers are always placed in ascending order! */
1948
Emeric Brun97679e72010-09-23 17:56:44 +02001949 if (ana_list & AN_RES_INSPECT) {
1950 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1951 break;
1952 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1953 }
1954
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001955 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001956 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1957 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001958 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001959 }
1960
Emeric Brun1d33b292010-01-04 15:47:17 +01001961 if (ana_list & AN_RES_STORE_RULES) {
1962 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1963 break;
1964 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1965 }
1966
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001967 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001968 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1969 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001970 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001971 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001972
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001973 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001974 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1975 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001976 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001977 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001978 break;
1979 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001980 }
1981
Willy Tarreau815a9b22010-07-27 17:15:12 +02001982 rp_cons_last = s->si[0].state;
1983 rp_prod_last = s->si[1].state;
1984 rpf_last = s->rep->flags;
1985
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001986 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001987 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001988 }
1989
Willy Tarreau576507f2010-01-07 00:09:04 +01001990 /* maybe someone has added some request analysers, so we must check and loop */
1991 if (s->req->analysers & ~req_ana_back)
1992 goto resync_request;
1993
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001994 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001995 goto resync_request;
1996
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001997 /* FIXME: here we should call protocol handlers which rely on
1998 * both buffers.
1999 */
2000
2001
2002 /*
Willy Tarreauae526782010-03-04 20:34:23 +01002003 * Now we propagate unhandled errors to the session. Normally
2004 * we're just in a data phase here since it means we have not
2005 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002006 */
Willy Tarreau827aee92011-03-10 16:55:02 +01002007 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01002008 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002009 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002010 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01002011 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002012 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002013 s->be->be_counters.cli_aborts++;
2014 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002015 if (srv)
2016 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002017 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002018 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002019 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002020 s->be->be_counters.cli_aborts++;
2021 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002022 if (srv)
2023 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002024 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002025 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002026 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002027 s->be->be_counters.srv_aborts++;
2028 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002029 if (srv)
2030 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002031 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002032 }
2033 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002034 s->be->be_counters.srv_aborts++;
2035 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002036 if (srv)
2037 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002038 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002039 }
Willy Tarreau84455332009-03-15 22:34:05 +01002040 sess_set_term_flags(s);
2041 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002042 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002043 /* Report it if the server got an error or a read timeout expired */
2044 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002045 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002046 s->be->be_counters.srv_aborts++;
2047 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002048 if (srv)
2049 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002050 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002051 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002052 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002053 s->be->be_counters.srv_aborts++;
2054 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002055 if (srv)
2056 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002057 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002058 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002059 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002060 s->be->be_counters.cli_aborts++;
2061 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002062 if (srv)
2063 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002064 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002065 }
2066 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002067 s->be->be_counters.cli_aborts++;
2068 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002069 if (srv)
2070 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002071 s->flags |= SN_ERR_CLITO;
2072 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002073 sess_set_term_flags(s);
2074 }
Willy Tarreau84455332009-03-15 22:34:05 +01002075 }
2076
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002077 /*
2078 * Here we take care of forwarding unhandled data. This also includes
2079 * connection establishments and shutdown requests.
2080 */
2081
2082
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002083 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002084 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002085 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002086 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002087 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002088 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002089 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002090 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002091 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002092 /* This buffer is freewheeling, there's no analyser nor hijacker
2093 * attached to it. If any data are left in, we'll permit them to
2094 * move.
2095 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002096 channel_auto_read(s->req);
2097 channel_auto_connect(s->req);
2098 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002099 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002100
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002101 /* We'll let data flow between the producer (if still connected)
2102 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002103 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002104 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002105 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002106 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002107
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002108 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002109 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002110 s->req->to_forward &&
2111 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002112 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2113 (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 +01002114 (pipes_used < global.maxpipes) &&
2115 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2116 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002117 (s->req->flags & CF_STREAMER_FAST)))) {
2118 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002119 }
2120
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002121 /* reflect what the L7 analysers have seen last */
2122 rqf_last = s->req->flags;
2123
2124 /*
2125 * Now forward all shutdown requests between both sides of the buffer
2126 */
2127
Willy Tarreau520d95e2009-09-19 21:04:57 +02002128 /* first, let's check if the request buffer needs to shutdown(write), which may
2129 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002130 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002131 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002132 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2133 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002134 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002135
2136 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002137 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002138 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002139 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002140
2141 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002142 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002143 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002144 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002145
2146 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002147 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002148 if (s->req->prod->flags & SI_FL_NOHALF)
2149 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002150 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002151 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002152
Willy Tarreau520d95e2009-09-19 21:04:57 +02002153 /* it's possible that an upper layer has requested a connection setup or abort.
2154 * There are 2 situations where we decide to establish a new connection :
2155 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002156 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002157 */
2158 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002159 if (!(s->req->flags & CF_SHUTW)) {
2160 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002161 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002162 * switch to the connected state, otherwise we perform a connection
2163 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002164 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002165 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002166 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002167 if (unlikely(s->req->cons->conn->target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002168 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002169 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002170 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002171 s->req->wex = TICK_ETERNITY;
2172 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002173 }
Willy Tarreau73201222009-08-16 18:27:24 +02002174 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002175 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002176 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002177 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2178 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002179 }
Willy Tarreau92795622009-03-06 12:51:23 +01002180 }
2181
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002182
2183 /* we may have a pending connection request, or a connection waiting
2184 * for completion.
2185 */
2186 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2187 do {
2188 /* nb: step 1 might switch from QUE to ASS, but we first want
2189 * to give a chance to step 2 to perform a redirect if needed.
2190 */
2191 if (s->si[1].state != SI_ST_REQ)
2192 sess_update_stream_int(s, &s->si[1]);
2193 if (s->si[1].state == SI_ST_REQ)
2194 sess_prepare_conn_req(s, &s->si[1]);
2195
Willy Tarreau827aee92011-03-10 16:55:02 +01002196 srv = target_srv(&s->target);
2197 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002198 perform_http_redirect(s, &s->si[1]);
2199 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002200
2201 /* Now we can add the server name to a header (if requested) */
2202 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002203 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002204 (s->be->mode == PR_MODE_HTTP) &&
2205 (s->be->server_id_hdr_name != NULL)) {
2206 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002207 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002208 }
2209
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002210 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002211 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002212 goto resync_stream_interface;
2213
Willy Tarreau815a9b22010-07-27 17:15:12 +02002214 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002215 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002216 goto resync_request;
2217
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002218 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002219
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002220 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002221 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002222 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002223 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002224 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002225 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002226 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002227 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002228 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002229 /* This buffer is freewheeling, there's no analyser nor hijacker
2230 * attached to it. If any data are left in, we'll permit them to
2231 * move.
2232 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002233 channel_auto_read(s->rep);
2234 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002235 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002236
2237 /* We'll let data flow between the producer (if still connected)
2238 * to the consumer.
2239 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002240 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002241 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002242
2243 /* if we have no analyser anymore in any direction and have a
2244 * tunnel timeout set, use it now.
2245 */
2246 if (!s->req->analysers && s->be->timeout.tunnel) {
2247 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2248 s->be->timeout.tunnel;
2249 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2250 tick_add(now_ms, s->be->timeout.tunnel);
2251 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002252 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002253
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002254 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002255 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002256 s->rep->to_forward &&
2257 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002258 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2259 (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 +01002260 (pipes_used < global.maxpipes) &&
2261 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2262 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002263 (s->rep->flags & CF_STREAMER_FAST)))) {
2264 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002265 }
2266
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002267 /* reflect what the L7 analysers have seen last */
2268 rpf_last = s->rep->flags;
2269
2270 /*
2271 * Now forward all shutdown requests between both sides of the buffer
2272 */
2273
2274 /*
2275 * FIXME: this is probably where we should produce error responses.
2276 */
2277
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002278 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002279 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2280 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002281 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002282
2283 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002284 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002285 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002286 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002287
2288 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002289 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002290 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002291 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002292
2293 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002294 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002295 if (s->rep->prod->flags & SI_FL_NOHALF)
2296 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002297 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002298 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002299
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002300 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002301 goto resync_stream_interface;
2302
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002303 if (s->req->flags != rqf_last)
2304 goto resync_request;
2305
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002306 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002307 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002308
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002309 /* we're interested in getting wakeups again */
2310 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2311 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2312
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002313 /* This is needed only when debugging is enabled, to indicate
2314 * client-side or server-side close. Please note that in the unlikely
2315 * event where both sides would close at once, the sequence is reported
2316 * on the server side first.
2317 */
2318 if (unlikely((global.mode & MODE_DEBUG) &&
2319 (!(global.mode & MODE_QUIET) ||
2320 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002321 if (s->si[1].state == SI_ST_CLO &&
2322 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002323 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002324 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002325 (unsigned short)s->si[0].conn->t.sock.fd,
2326 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002327 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002328 }
2329
2330 if (s->si[0].state == SI_ST_CLO &&
2331 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002332 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002333 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002334 (unsigned short)s->si[0].conn->t.sock.fd,
2335 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002336 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002337 }
2338 }
2339
2340 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2341 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2342
2343 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2344 session_process_counters(s);
2345
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002346 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002347 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002348
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002349 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002350 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002351
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002352 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2353 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 +01002354 s->si[0].prev_state = s->si[0].state;
2355 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002356 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2357 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002358
2359 /* Trick: if a request is being waiting for the server to respond,
2360 * and if we know the server can timeout, we don't want the timeout
2361 * to expire on the client side first, but we're still interested
2362 * in passing data from the client to the server (eg: POST). Thus,
2363 * we can cancel the client's request timeout if the server's
2364 * request timeout is set and the server has not yet sent a response.
2365 */
2366
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002367 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002368 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002369 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002370 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002371 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002372
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002373 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002374 * Note that this one may wake the task up again.
2375 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002376 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET ||
2377 s->rep->cons->conn->target.type == TARG_TYPE_APPLET) {
2378 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET)
2379 s->req->cons->conn->target.ptr.a->fct(s->req->cons);
2380 if (s->rep->cons->conn->target.type == TARG_TYPE_APPLET)
2381 s->rep->cons->conn->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002382 if (task_in_rq(t)) {
2383 /* If we woke up, we don't want to requeue the
2384 * task to the wait queue, but rather requeue
2385 * it into the runqueue ASAP.
2386 */
2387 t->expire = TICK_ETERNITY;
2388 return t;
2389 }
2390 }
2391
Willy Tarreau798f4322012-11-08 14:49:17 +01002392 update_exp_and_leave:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002393 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2394 tick_first(s->rep->rex, s->rep->wex));
2395 if (s->req->analysers)
2396 t->expire = tick_first(t->expire, s->req->analyse_exp);
2397
2398 if (s->si[0].exp)
2399 t->expire = tick_first(t->expire, s->si[0].exp);
2400
2401 if (s->si[1].exp)
2402 t->expire = tick_first(t->expire, s->si[1].exp);
2403
2404#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002405 fprintf(stderr,
2406 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2407 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2408 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2409 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 +01002410#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002411
2412#ifdef DEBUG_DEV
2413 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002414 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002415 ABORT_NOW();
2416#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002417 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002418 }
2419
2420 s->fe->feconn--;
2421 if (s->flags & SN_BE_ASSIGNED)
2422 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002423 if (!(s->listener->options & LI_O_UNLIMITED))
2424 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002425 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002426 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002427 if (s->listener->state == LI_FULL)
2428 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002429
Willy Tarreau08ceb102011-07-24 22:58:00 +02002430 /* Dequeues all of the listeners waiting for a resource */
2431 if (!LIST_ISEMPTY(&global_listener_queue))
2432 dequeue_all_listeners(&global_listener_queue);
2433
Willy Tarreaub32907b2011-07-25 08:37:44 +02002434 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2435 (!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 +02002436 dequeue_all_listeners(&s->fe->listener_queue);
2437
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002438 if (unlikely((global.mode & MODE_DEBUG) &&
2439 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002440 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002441 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002442 (unsigned short)s->req->prod->conn->t.sock.fd,
2443 (unsigned short)s->req->cons->conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002444 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002445 }
2446
2447 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2448 session_process_counters(s);
2449
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002450 if (s->txn.status) {
2451 int n;
2452
2453 n = s->txn.status / 100;
2454 if (n < 1 || n > 5)
2455 n = 0;
2456
2457 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002458 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002459
Willy Tarreau24657792010-02-26 10:30:28 +01002460 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002461 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002462 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002463 }
2464
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002465 /* let's do a final log if we need it */
2466 if (s->logs.logwait &&
2467 !(s->flags & SN_MONITOR) &&
2468 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002469 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002470 }
2471
2472 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002473 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002474 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002475 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002476 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002477}
2478
Willy Tarreau7c669d72008-06-20 15:04:11 +02002479/*
2480 * This function adjusts sess->srv_conn and maintains the previous and new
2481 * server's served session counts. Setting newsrv to NULL is enough to release
2482 * current connection slot. This function also notifies any LB algo which might
2483 * expect to be informed about any change in the number of active sessions on a
2484 * server.
2485 */
2486void sess_change_server(struct session *sess, struct server *newsrv)
2487{
2488 if (sess->srv_conn == newsrv)
2489 return;
2490
2491 if (sess->srv_conn) {
2492 sess->srv_conn->served--;
2493 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2494 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002495 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002496 }
2497
2498 if (newsrv) {
2499 newsrv->served++;
2500 if (newsrv->proxy->lbprm.server_take_conn)
2501 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002502 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002503 }
2504}
2505
Willy Tarreau84455332009-03-15 22:34:05 +01002506/* Handle server-side errors for default protocols. It is called whenever a a
2507 * connection setup is aborted or a request is aborted in queue. It sets the
2508 * session termination flags so that the caller does not have to worry about
2509 * them. It's installed as ->srv_error for the server-side stream_interface.
2510 */
2511void default_srv_error(struct session *s, struct stream_interface *si)
2512{
2513 int err_type = si->err_type;
2514 int err = 0, fin = 0;
2515
2516 if (err_type & SI_ET_QUEUE_ABRT) {
2517 err = SN_ERR_CLICL;
2518 fin = SN_FINST_Q;
2519 }
2520 else if (err_type & SI_ET_CONN_ABRT) {
2521 err = SN_ERR_CLICL;
2522 fin = SN_FINST_C;
2523 }
2524 else if (err_type & SI_ET_QUEUE_TO) {
2525 err = SN_ERR_SRVTO;
2526 fin = SN_FINST_Q;
2527 }
2528 else if (err_type & SI_ET_QUEUE_ERR) {
2529 err = SN_ERR_SRVCL;
2530 fin = SN_FINST_Q;
2531 }
2532 else if (err_type & SI_ET_CONN_TO) {
2533 err = SN_ERR_SRVTO;
2534 fin = SN_FINST_C;
2535 }
2536 else if (err_type & SI_ET_CONN_ERR) {
2537 err = SN_ERR_SRVCL;
2538 fin = SN_FINST_C;
2539 }
2540 else /* SI_ET_CONN_OTHER and others */ {
2541 err = SN_ERR_INTERNAL;
2542 fin = SN_FINST_C;
2543 }
2544
2545 if (!(s->flags & SN_ERR_MASK))
2546 s->flags |= err;
2547 if (!(s->flags & SN_FINST_MASK))
2548 s->flags |= fin;
2549}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002550
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002551/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2552void session_shutdown(struct session *session, int why)
2553{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002554 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002555 return;
2556
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002557 channel_shutw_now(session->req);
2558 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002559 session->task->nice = 1024;
2560 if (!(session->flags & SN_ERR_MASK))
2561 session->flags |= why;
2562 task_wakeup(session->task, TASK_WOKEN_OTHER);
2563}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002564
Willy Tarreau8b22a712010-06-18 17:46:06 +02002565/************************************************************************/
2566/* All supported ACL keywords must be declared here. */
2567/************************************************************************/
2568
Willy Tarreaua5e37562011-12-16 17:06:15 +01002569/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002570static int
Willy Tarreau37406352012-04-23 16:16:37 +02002571acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002572{
Willy Tarreau37406352012-04-23 16:16:37 +02002573 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002574 smp->type = SMP_T_UINT;
2575 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002576 if (ts != NULL) {
2577 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2578 if (!ptr)
2579 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002580 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002581 }
2582 return 1;
2583}
2584
Willy Tarreaua5e37562011-12-16 17:06:15 +01002585/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002586 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002587 */
2588static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002589acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002590 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002591{
Willy Tarreau56123282010-08-06 19:06:56 +02002592 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002593 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002594 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002595}
2596
Willy Tarreaua5e37562011-12-16 17:06:15 +01002597/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002598 * backend counters.
2599 */
2600static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002601acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002602 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002603{
Willy Tarreau56123282010-08-06 19:06:56 +02002604 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002605 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002606 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002607}
2608
Willy Tarreaua5e37562011-12-16 17:06:15 +01002609/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002610 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002611 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002612 */
2613static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002614acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002615 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002616{
2617 struct stktable_key *key;
2618
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002619 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002620 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002621 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002622
Willy Tarreau24e32d82012-04-23 23:55:44 +02002623 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002624 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002625}
2626
2627/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002628 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002629 */
2630static int
Willy Tarreau37406352012-04-23 16:16:37 +02002631acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002632{
Willy Tarreau37406352012-04-23 16:16:37 +02002633 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002634 smp->type = SMP_T_UINT;
2635 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002636 if (ts != NULL) {
2637 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2638 if (!ptr)
2639 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002640 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002641 }
2642 return 1;
2643}
2644
2645/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002646 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002647 */
2648static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002649acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002650 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002651{
Willy Tarreau56123282010-08-06 19:06:56 +02002652 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002653 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002654 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002655}
2656
2657/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002658 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002659 */
2660static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002661acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002662 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002663{
Willy Tarreau56123282010-08-06 19:06:56 +02002664 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002665 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002666 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002667}
2668
2669/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002670 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002671 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002672 */
2673static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002674acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002675 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002676{
2677 struct stktable_key *key;
2678
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002679 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002680 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002681 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002682
Willy Tarreau24e32d82012-04-23 23:55:44 +02002683 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002684 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002685}
2686
Willy Tarreauf73cd112011-08-13 01:45:16 +02002687/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002688 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002689 */
2690static int
Willy Tarreau37406352012-04-23 16:16:37 +02002691acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002692{
Willy Tarreau37406352012-04-23 16:16:37 +02002693 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002694 smp->type = SMP_T_UINT;
2695 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002696 if (ts != NULL) {
2697 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2698 if (!ptr)
2699 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002700 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002701 stktable_data_cast(ptr, gpc0) = 0;
2702 }
2703 return 1;
2704}
2705
2706/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002707 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002708 */
2709static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002710acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002711 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002712{
2713 if (!l4->stkctr1_entry)
2714 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002715 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002716}
2717
2718/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002719 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002720 */
2721static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002722acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002723 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002724{
2725 if (!l4->stkctr2_entry)
2726 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002727 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002728}
2729
2730/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002731 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002732 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002733 */
2734static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002735acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002736 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002737{
2738 struct stktable_key *key;
2739
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002740 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002741 if (!key)
2742 return 0;
2743
Willy Tarreau24e32d82012-04-23 23:55:44 +02002744 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002745 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002746}
2747
Willy Tarreaua5e37562011-12-16 17:06:15 +01002748/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002749static int
Willy Tarreau37406352012-04-23 16:16:37 +02002750acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002751{
Willy Tarreau37406352012-04-23 16:16:37 +02002752 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002753 smp->type = SMP_T_UINT;
2754 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002755 if (ts != NULL) {
2756 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2757 if (!ptr)
2758 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002759 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002760 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002761 return 1;
2762}
2763
Willy Tarreaua5e37562011-12-16 17:06:15 +01002764/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002765static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002766acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002767 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002768{
Willy Tarreau56123282010-08-06 19:06:56 +02002769 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002770 return 0;
2771
Willy Tarreau37406352012-04-23 16:16:37 +02002772 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002773}
2774
Willy Tarreaua5e37562011-12-16 17:06:15 +01002775/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002776static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002777acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002778 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002779{
Willy Tarreau56123282010-08-06 19:06:56 +02002780 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002781 return 0;
2782
Willy Tarreau37406352012-04-23 16:16:37 +02002783 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002784}
2785
Willy Tarreaua5e37562011-12-16 17:06:15 +01002786/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002787 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002788 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002789 */
2790static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002791acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002792 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002793{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002794 struct stktable_key *key;
2795
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002796 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002797 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002798 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002799
Willy Tarreau24e32d82012-04-23 23:55:44 +02002800 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002801 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002802}
2803
Willy Tarreaua5e37562011-12-16 17:06:15 +01002804/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002805static int
Willy Tarreau37406352012-04-23 16:16:37 +02002806acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807{
Willy Tarreau37406352012-04-23 16:16:37 +02002808 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002809 smp->type = SMP_T_UINT;
2810 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002811 if (ts != NULL) {
2812 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2813 if (!ptr)
2814 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002815 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002816 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2817 }
2818 return 1;
2819}
2820
Willy Tarreaua5e37562011-12-16 17:06:15 +01002821/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002822 * the configured period.
2823 */
2824static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002825acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002826 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002827{
Willy Tarreau56123282010-08-06 19:06:56 +02002828 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002829 return 0;
2830
Willy Tarreau37406352012-04-23 16:16:37 +02002831 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002832}
2833
Willy Tarreaua5e37562011-12-16 17:06:15 +01002834/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002835 * the configured period.
2836 */
2837static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002838acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002839 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002840{
Willy Tarreau56123282010-08-06 19:06:56 +02002841 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002842 return 0;
2843
Willy Tarreau37406352012-04-23 16:16:37 +02002844 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002845}
2846
Willy Tarreaua5e37562011-12-16 17:06:15 +01002847/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002848 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002849 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002850 */
2851static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002852acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002853 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002854{
2855 struct stktable_key *key;
2856
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002857 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002858 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002859 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002860
Willy Tarreau24e32d82012-04-23 23:55:44 +02002861 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002862 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002863}
2864
Willy Tarreaua5e37562011-12-16 17:06:15 +01002865/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002866 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002867 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002868 */
2869static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002870acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002871 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002872{
2873 struct stksess *ts;
2874 struct stktable_key *key;
2875 void *ptr;
2876
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002877 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002878 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002879 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002880
Willy Tarreau24e32d82012-04-23 23:55:44 +02002881 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002882
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002883 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2884 /* entry does not exist and could not be created */
2885 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002886
2887 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2888 if (!ptr)
2889 return 0; /* parameter not stored in this table */
2890
Willy Tarreauf853c462012-04-23 18:53:56 +02002891 smp->type = SMP_T_UINT;
2892 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002893 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002894 return 1;
2895}
2896
Willy Tarreaua5e37562011-12-16 17:06:15 +01002897/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002898static int
Willy Tarreau37406352012-04-23 16:16:37 +02002899acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002900{
Willy Tarreau37406352012-04-23 16:16:37 +02002901 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002902 smp->type = SMP_T_UINT;
2903 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002904
2905 if (ts != NULL) {
2906 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2907 if (!ptr)
2908 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002909 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002910 }
2911 return 1;
2912}
2913
Willy Tarreaua5e37562011-12-16 17:06:15 +01002914/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002915static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002916acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002917 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002918{
Willy Tarreau56123282010-08-06 19:06:56 +02002919 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002920 return 0;
2921
Willy Tarreau37406352012-04-23 16:16:37 +02002922 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002923}
2924
Willy Tarreaua5e37562011-12-16 17:06:15 +01002925/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002926static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002927acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002928 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002929{
Willy Tarreau56123282010-08-06 19:06:56 +02002930 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002931 return 0;
2932
Willy Tarreau37406352012-04-23 16:16:37 +02002933 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002934}
2935
Willy Tarreaua5e37562011-12-16 17:06:15 +01002936/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002937 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002938 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002939 */
2940static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002941acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002942 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002943{
Willy Tarreau38285c12010-06-18 16:35:43 +02002944 struct stktable_key *key;
2945
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002946 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002947 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002948 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002949
Willy Tarreau24e32d82012-04-23 23:55:44 +02002950 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002951 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002952}
2953
Willy Tarreaua5e37562011-12-16 17:06:15 +01002954/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002955static int
Willy Tarreau37406352012-04-23 16:16:37 +02002956acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002957{
Willy Tarreau37406352012-04-23 16:16:37 +02002958 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002959 smp->type = SMP_T_UINT;
2960 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002961 if (ts != NULL) {
2962 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2963 if (!ptr)
2964 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002965 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002966 }
2967 return 1;
2968}
2969
Willy Tarreaua5e37562011-12-16 17:06:15 +01002970/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002971static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002972acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002973 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002974{
Willy Tarreau56123282010-08-06 19:06:56 +02002975 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002976 return 0;
2977
Willy Tarreau37406352012-04-23 16:16:37 +02002978 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002979}
2980
Willy Tarreaua5e37562011-12-16 17:06:15 +01002981/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002982static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002983acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002984 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002985{
Willy Tarreau56123282010-08-06 19:06:56 +02002986 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002987 return 0;
2988
Willy Tarreau37406352012-04-23 16:16:37 +02002989 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002990}
2991
Willy Tarreaua5e37562011-12-16 17:06:15 +01002992/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002993 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002994 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002995 */
2996static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002997acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002998 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002999{
3000 struct stktable_key *key;
3001
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003002 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003003 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003004 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003005
Willy Tarreau24e32d82012-04-23 23:55:44 +02003006 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003007 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003008}
3009
Willy Tarreaua5e37562011-12-16 17:06:15 +01003010/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02003011static int
Willy Tarreau37406352012-04-23 16:16:37 +02003012acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003013{
Willy Tarreau37406352012-04-23 16:16:37 +02003014 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003015 smp->type = SMP_T_UINT;
3016 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003017 if (ts != NULL) {
3018 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
3019 if (!ptr)
3020 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003021 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02003022 table->data_arg[STKTABLE_DT_SESS_RATE].u);
3023 }
3024 return 1;
3025}
3026
Willy Tarreaua5e37562011-12-16 17:06:15 +01003027/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003028 * the configured period.
3029 */
3030static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003031acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003032 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003033{
Willy Tarreau56123282010-08-06 19:06:56 +02003034 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003035 return 0;
3036
Willy Tarreau37406352012-04-23 16:16:37 +02003037 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003038}
3039
Willy Tarreaua5e37562011-12-16 17:06:15 +01003040/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02003041 * the configured period.
3042 */
3043static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003044acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003045 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003046{
Willy Tarreau56123282010-08-06 19:06:56 +02003047 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003048 return 0;
3049
Willy Tarreau37406352012-04-23 16:16:37 +02003050 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003051}
3052
Willy Tarreaua5e37562011-12-16 17:06:15 +01003053/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003054 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003055 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003056 */
3057static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003058acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003059 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003060{
3061 struct stktable_key *key;
3062
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003063 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003064 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003065 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003066
Willy Tarreau24e32d82012-04-23 23:55:44 +02003067 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003068 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003069}
3070
Willy Tarreaua5e37562011-12-16 17:06:15 +01003071/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003072static int
Willy Tarreau37406352012-04-23 16:16:37 +02003073acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003074{
Willy Tarreau37406352012-04-23 16:16:37 +02003075 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003076 smp->type = SMP_T_UINT;
3077 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003078 if (ts != NULL) {
3079 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3080 if (!ptr)
3081 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003082 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003083 }
3084 return 1;
3085}
3086
Willy Tarreaua5e37562011-12-16 17:06:15 +01003087/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003088static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003089acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003090 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003091{
Willy Tarreau56123282010-08-06 19:06:56 +02003092 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003093 return 0;
3094
Willy Tarreau37406352012-04-23 16:16:37 +02003095 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003096}
3097
Willy Tarreaua5e37562011-12-16 17:06:15 +01003098/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003099static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003100acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003101 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003102{
Willy Tarreau56123282010-08-06 19:06:56 +02003103 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003104 return 0;
3105
Willy Tarreau37406352012-04-23 16:16:37 +02003106 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003107}
3108
Willy Tarreaua5e37562011-12-16 17:06:15 +01003109/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003110 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003111 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003112 */
3113static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003114acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003115 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003116{
3117 struct stktable_key *key;
3118
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003119 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003120 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003121 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003122
Willy Tarreau24e32d82012-04-23 23:55:44 +02003123 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003124 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003125}
3126
Willy Tarreaua5e37562011-12-16 17:06:15 +01003127/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003128static int
Willy Tarreau37406352012-04-23 16:16:37 +02003129acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003130{
Willy Tarreau37406352012-04-23 16:16:37 +02003131 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003132 smp->type = SMP_T_UINT;
3133 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003134 if (ts != NULL) {
3135 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
3136 if (!ptr)
3137 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003138 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003139 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3140 }
3141 return 1;
3142}
3143
Willy Tarreaua5e37562011-12-16 17:06:15 +01003144/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003145 * the configured period.
3146 */
3147static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003148acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003149 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003150{
Willy Tarreau56123282010-08-06 19:06:56 +02003151 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003152 return 0;
3153
Willy Tarreau37406352012-04-23 16:16:37 +02003154 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003155}
3156
Willy Tarreaua5e37562011-12-16 17:06:15 +01003157/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003158 * the configured period.
3159 */
3160static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003161acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003162 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003163{
Willy Tarreau56123282010-08-06 19:06:56 +02003164 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003165 return 0;
3166
Willy Tarreau37406352012-04-23 16:16:37 +02003167 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003168}
3169
Willy Tarreaua5e37562011-12-16 17:06:15 +01003170/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003171 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003172 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003173 */
3174static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003175acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003176 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003177{
3178 struct stktable_key *key;
3179
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003180 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003181 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003182 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003183
Willy Tarreau24e32d82012-04-23 23:55:44 +02003184 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003185 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003186}
3187
Willy Tarreaua5e37562011-12-16 17:06:15 +01003188/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003189static int
Willy Tarreau37406352012-04-23 16:16:37 +02003190acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003191{
Willy Tarreau37406352012-04-23 16:16:37 +02003192 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003193 smp->type = SMP_T_UINT;
3194 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003195 if (ts != NULL) {
3196 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3197 if (!ptr)
3198 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003199 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003200 }
3201 return 1;
3202}
3203
Willy Tarreaua5e37562011-12-16 17:06:15 +01003204/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003205static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003206acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003207 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003208{
Willy Tarreau56123282010-08-06 19:06:56 +02003209 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003210 return 0;
3211
Willy Tarreau37406352012-04-23 16:16:37 +02003212 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003213}
3214
Willy Tarreaua5e37562011-12-16 17:06:15 +01003215/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003216static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003217acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003218 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003219{
Willy Tarreau56123282010-08-06 19:06:56 +02003220 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003221 return 0;
3222
Willy Tarreau37406352012-04-23 16:16:37 +02003223 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003224}
3225
Willy Tarreaua5e37562011-12-16 17:06:15 +01003226/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003227 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003228 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003229 */
3230static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003231acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003232 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003233{
3234 struct stktable_key *key;
3235
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003236 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003237 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003238 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003239
Willy Tarreau24e32d82012-04-23 23:55:44 +02003240 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003241 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003242}
3243
Willy Tarreaua5e37562011-12-16 17:06:15 +01003244/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003245static int
Willy Tarreau37406352012-04-23 16:16:37 +02003246acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003247{
Willy Tarreau37406352012-04-23 16:16:37 +02003248 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003249 smp->type = SMP_T_UINT;
3250 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003251 if (ts != NULL) {
3252 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3253 if (!ptr)
3254 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003255 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003256 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3257 }
3258 return 1;
3259}
3260
Willy Tarreaua5e37562011-12-16 17:06:15 +01003261/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003262 * the configured period.
3263 */
3264static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003265acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003266 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003267{
Willy Tarreau56123282010-08-06 19:06:56 +02003268 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003269 return 0;
3270
Willy Tarreau37406352012-04-23 16:16:37 +02003271 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003272}
3273
Willy Tarreaua5e37562011-12-16 17:06:15 +01003274/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003275 * the configured period.
3276 */
3277static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003278acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003279 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003280{
Willy Tarreau56123282010-08-06 19:06:56 +02003281 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003282 return 0;
3283
Willy Tarreau37406352012-04-23 16:16:37 +02003284 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003285}
3286
Willy Tarreaua5e37562011-12-16 17:06:15 +01003287/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003288 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003289 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003290 */
3291static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003292acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003293 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003294{
3295 struct stktable_key *key;
3296
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003297 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003298 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003299 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003300
Willy Tarreau24e32d82012-04-23 23:55:44 +02003301 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003302 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003303}
3304
Willy Tarreaua5e37562011-12-16 17:06:15 +01003305/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003306static int
Willy Tarreau37406352012-04-23 16:16:37 +02003307acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003308{
Willy Tarreau37406352012-04-23 16:16:37 +02003309 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003310 smp->type = SMP_T_UINT;
3311 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003312
3313 if (ts != NULL) {
3314 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3315 if (!ptr)
3316 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003317 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003318 }
3319 return 1;
3320}
3321
Willy Tarreaua5e37562011-12-16 17:06:15 +01003322/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003323 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003324 */
3325static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003326acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003327 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003328{
Willy Tarreau56123282010-08-06 19:06:56 +02003329 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003330 return 0;
3331
Willy Tarreau37406352012-04-23 16:16:37 +02003332 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003333}
3334
Willy Tarreaua5e37562011-12-16 17:06:15 +01003335/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003336 * session's tracked BE counters.
3337 */
3338static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003339acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003340 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003341{
Willy Tarreau56123282010-08-06 19:06:56 +02003342 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003343 return 0;
3344
Willy Tarreau37406352012-04-23 16:16:37 +02003345 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003346}
3347
Willy Tarreaua5e37562011-12-16 17:06:15 +01003348/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003349 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003350 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003351 */
3352static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003353acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003354 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003355{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003356 struct stktable_key *key;
3357
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003358 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003359 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003360 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003361
Willy Tarreau24e32d82012-04-23 23:55:44 +02003362 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003363 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003364}
3365
Willy Tarreaua5e37562011-12-16 17:06:15 +01003366/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003367 * configured period.
3368 */
3369static int
Willy Tarreau37406352012-04-23 16:16:37 +02003370acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003371{
Willy Tarreau37406352012-04-23 16:16:37 +02003372 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003373 smp->type = SMP_T_UINT;
3374 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003375 if (ts != NULL) {
3376 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3377 if (!ptr)
3378 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003379 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003380 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3381 }
3382 return 1;
3383}
3384
Willy Tarreaua5e37562011-12-16 17:06:15 +01003385/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003386 * counters over the configured period.
3387 */
3388static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003389acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003390 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003391{
Willy Tarreau56123282010-08-06 19:06:56 +02003392 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003393 return 0;
3394
Willy Tarreau37406352012-04-23 16:16:37 +02003395 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003396}
3397
Willy Tarreaua5e37562011-12-16 17:06:15 +01003398/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003399 * counters over the configured period.
3400 */
3401static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003402acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003403 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003404{
Willy Tarreau56123282010-08-06 19:06:56 +02003405 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003406 return 0;
3407
Willy Tarreau37406352012-04-23 16:16:37 +02003408 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003409}
3410
Willy Tarreaua5e37562011-12-16 17:06:15 +01003411/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003412 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003413 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003414 */
3415static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003416acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003417 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003418{
3419 struct stktable_key *key;
3420
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003421 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003422 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003423 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003424
Willy Tarreau24e32d82012-04-23 23:55:44 +02003425 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003426 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003427}
3428
Willy Tarreaua5e37562011-12-16 17:06:15 +01003429/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003430static int
Willy Tarreau37406352012-04-23 16:16:37 +02003431acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003432{
Willy Tarreau37406352012-04-23 16:16:37 +02003433 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003434 smp->type = SMP_T_UINT;
3435 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003436
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003437 if (ts != NULL) {
3438 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003439 if (!ptr)
3440 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003441 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003442 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003443 return 1;
3444}
3445
Willy Tarreaua5e37562011-12-16 17:06:15 +01003446/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003447 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003448 */
3449static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003450acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003451 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003452{
Willy Tarreau56123282010-08-06 19:06:56 +02003453 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003454 return 0;
3455
Willy Tarreau37406352012-04-23 16:16:37 +02003456 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003457}
3458
Willy Tarreaua5e37562011-12-16 17:06:15 +01003459/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003460 * tracked BE counters.
3461 */
3462static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003463acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003464 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003465{
Willy Tarreau56123282010-08-06 19:06:56 +02003466 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003467 return 0;
3468
Willy Tarreau37406352012-04-23 16:16:37 +02003469 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003470}
3471
Willy Tarreaua5e37562011-12-16 17:06:15 +01003472/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003473 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003474 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003475 */
3476static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003477acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003478 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003479{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003480 struct stktable_key *key;
3481
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003482 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003483 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003484 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003485
Willy Tarreau24e32d82012-04-23 23:55:44 +02003486 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003487 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003488}
3489
Willy Tarreaua5e37562011-12-16 17:06:15 +01003490/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003491 * configured period.
3492 */
3493static int
Willy Tarreau37406352012-04-23 16:16:37 +02003494acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003495{
Willy Tarreau37406352012-04-23 16:16:37 +02003496 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003497 smp->type = SMP_T_UINT;
3498 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003499 if (ts != NULL) {
3500 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3501 if (!ptr)
3502 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003503 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003504 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3505 }
3506 return 1;
3507}
3508
Willy Tarreaua5e37562011-12-16 17:06:15 +01003509/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003510 * over the configured period.
3511 */
3512static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003513acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003514 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003515{
Willy Tarreau56123282010-08-06 19:06:56 +02003516 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003517 return 0;
3518
Willy Tarreau37406352012-04-23 16:16:37 +02003519 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003520}
3521
Willy Tarreaua5e37562011-12-16 17:06:15 +01003522/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003523 * over the configured period.
3524 */
3525static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003526acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003527 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003528{
Willy Tarreau56123282010-08-06 19:06:56 +02003529 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003530 return 0;
3531
Willy Tarreau37406352012-04-23 16:16:37 +02003532 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003533}
3534
Willy Tarreaua5e37562011-12-16 17:06:15 +01003535/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003536 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003537 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003538 */
3539static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003540acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003541 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003542{
3543 struct stktable_key *key;
3544
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003545 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003546 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003547 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003548
Willy Tarreau24e32d82012-04-23 23:55:44 +02003549 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003550 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003551}
3552
Willy Tarreau34db1082012-04-19 17:16:54 +02003553/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003554 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003555 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003556static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003557acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003558 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003559{
Willy Tarreau37406352012-04-23 16:16:37 +02003560 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003561 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003562 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003563 return 1;
3564}
3565
Willy Tarreau34db1082012-04-19 17:16:54 +02003566/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003567 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003568 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003569static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003570acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003571 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003572{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003573 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003574 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003575 smp->type = SMP_T_UINT;
3576 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003577 return 1;
3578}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003579
Willy Tarreau61612d42012-04-19 18:42:05 +02003580/* Note: must not be declared <const> as its list will be overwritten.
3581 * Please take care of keeping this list alphabetically sorted.
3582 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003583static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003584 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3585 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3586 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3587 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3588 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3589 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3590 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3591 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3592 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3593 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3594 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3595 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3596 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3597 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3598 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3599 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3600 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3601 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3602 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3603 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3604 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3605 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3606 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3607 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3608 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3609 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3610 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3611 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3612 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3613 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3614 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3615 { "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 +02003616 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3617 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3618 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3619 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3620 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3621 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3622 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3623 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3624 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3625 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3626 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3627 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3628 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3629 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3630 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3631 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3632 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3633 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3634 { "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 +02003635 { NULL, NULL, NULL, NULL },
3636}};
3637
3638
Willy Tarreau56123282010-08-06 19:06:56 +02003639/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003640 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3641 * <prm> struct is fed with the table name if any. If unspecified, the caller
3642 * will assume that the current proxy's table is used.
3643 */
3644int parse_track_counters(char **args, int *arg,
3645 int section_type, struct proxy *curpx,
3646 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003647 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003648{
Willy Tarreau12785782012-04-27 21:37:17 +02003649 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003650
Willy Tarreau56123282010-08-06 19:06:56 +02003651 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003652 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003653 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003654 */
3655 while (args[*arg]) {
3656 if (strcmp(args[*arg], "src") == 0) {
3657 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003658 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003659 }
3660 else if (strcmp(args[*arg], "table") == 0) {
3661 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003662 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003663 return -1;
3664 }
3665 /* we copy the table name for now, it will be resolved later */
3666 prm->table.n = strdup(args[*arg + 1]);
3667 (*arg)++;
3668 }
3669 else {
3670 /* unhandled keywords are handled by the caller */
3671 break;
3672 }
3673 (*arg)++;
3674 }
3675
Willy Tarreau12785782012-04-27 21:37:17 +02003676 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003677 memprintf(err,
3678 "tracking key not specified (found %s, only 'src' is supported)",
3679 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003680 return -1;
3681 }
3682
3683 return 0;
3684}
3685
Willy Tarreau8b22a712010-06-18 17:46:06 +02003686__attribute__((constructor))
3687static void __session_init(void)
3688{
3689 acl_register_keywords(&acl_kws);
3690}
3691
Willy Tarreaubaaee002006-06-26 02:48:02 +02003692/*
3693 * Local variables:
3694 * c-indent-level: 8
3695 * c-basic-offset: 8
3696 * End:
3697 */