blob: 840ad29d98a23a49e3d905a227fa3d4ed524a7e2 [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 Tarreau2542b532012-08-31 16:01:23 +0200213 /* OK let's complete session initialization */
214 ret = session_complete(s);
215 if (ret > 0)
216 return ret;
217
218 /* Error unrolling */
219 out_free_task:
220 task_free(t);
221 out_free_session:
222 p->feconn--;
223 if (s->stkctr1_entry || s->stkctr2_entry)
224 session_store_counters(s);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200225 pool_free2(pool2_connection, s->si[1].conn);
226 out_fail_conn1:
227 pool_free2(pool2_connection, s->si[0].conn);
228 out_fail_conn0:
Willy Tarreau2542b532012-08-31 16:01:23 +0200229 pool_free2(pool2_session, s);
230 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200231 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200232 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau783f2582012-09-04 12:19:04 +0200233 struct chunk *err_msg = http_error_message(s, HTTP_ERR_500);
Willy Tarreau2542b532012-08-31 16:01:23 +0200234 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
235 }
236
237 if (fdtab[cfd].owner)
238 fd_delete(cfd);
239 else
240 close(cfd);
241 return ret;
242}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100243
Willy Tarreau2542b532012-08-31 16:01:23 +0200244/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200245 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreau2542b532012-08-31 16:01:23 +0200246 * disabled and finally kills the file descriptor.
247 */
248static void kill_mini_session(struct session *s)
249{
250 /* kill the connection now */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200251 conn_xprt_close(s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200252
253 s->fe->feconn--;
254 if (s->stkctr1_entry || s->stkctr2_entry)
255 session_store_counters(s);
256
257 if (!(s->listener->options & LI_O_UNLIMITED))
258 actconn--;
259 jobs--;
260 s->listener->nbconn--;
261 if (s->listener->state == LI_FULL)
262 resume_listener(s->listener);
263
264 /* Dequeues all of the listeners waiting for a resource */
265 if (!LIST_ISEMPTY(&global_listener_queue))
266 dequeue_all_listeners(&global_listener_queue);
267
268 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
269 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
270 dequeue_all_listeners(&s->fe->listener_queue);
271
272 task_delete(s->task);
273 task_free(s->task);
274
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200275 if (fdtab[s->si[0].conn->t.sock.fd].owner)
276 fd_delete(s->si[0].conn->t.sock.fd);
Willy Tarreau2542b532012-08-31 16:01:23 +0200277 else
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200278 close(s->si[0].conn->t.sock.fd);
Willy Tarreau2542b532012-08-31 16:01:23 +0200279
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200280 pool_free2(pool2_connection, s->si[1].conn);
281 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200282 pool_free2(pool2_session, s);
283}
284
Willy Tarreau22cda212012-08-31 17:43:29 +0200285/* Finish initializing a session from a connection, or kills it if the
286 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200287 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200288static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200289{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200290 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200291
Willy Tarreau22cda212012-08-31 17:43:29 +0200292 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200293 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200294 return 0;
295 }
296
297 /* kill the connection now */
298 kill_mini_session(s);
299 return -1;
300}
301
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200302/* Update an embryonic session status. The connection is killed in case of
303 * error, and <0 will be returned. Otherwise it does nothing.
304 */
305static int conn_session_update(struct connection *conn)
306{
307 if (conn->flags & CO_FL_ERROR) {
308 kill_mini_session(conn->owner);
309 return -1;
310 }
311 return 0;
312}
313
Willy Tarreau2542b532012-08-31 16:01:23 +0200314/* Manages embryonic sessions timeout. It is only called when the timeout
315 * strikes and performs the required cleanup.
316 */
317static struct task *expire_mini_session(struct task *t)
318{
319 struct session *s = t->context;
320
321 if (!(t->state & TASK_WOKEN_TIMER))
322 return t;
323
324 kill_mini_session(s);
325 return NULL;
326}
327
328/* This function is called from the I/O handler which detects the end of
329 * handshake, in order to complete initialization of a valid session. It must
330 * be called with an embryonic session. It returns a positive value upon
331 * success, 0 if the connection can be ignored, or a negative value upon
332 * critical failure. The accepted file descriptor is closed if we return <= 0.
333 */
334int session_complete(struct session *s)
335{
336 struct listener *l = s->listener;
337 struct proxy *p = s->fe;
338 struct http_txn *txn;
339 struct task *t = s->task;
340 int ret;
341
342 ret = -1; /* assume unrecoverable error by default */
343
344 /* OK, we're keeping the session, so let's properly initialize the session */
345 LIST_ADDQ(&sessions, &s->list);
346 LIST_INIT(&s->back_refs);
Willy Tarreau5e75e272012-10-02 21:21:20 +0200347 si_takeover_conn(&s->si[0], l->proto, l->xprt);
Willy Tarreau2542b532012-08-31 16:01:23 +0200348 s->flags |= SN_INITIALIZED;
349
350 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200351
352 t->process = l->handler;
353 t->context = s;
354 t->expire = TICK_ETERNITY;
355
356 /* Note: initially, the session's backend points to the frontend.
357 * This changes later when switching rules are executed or
358 * when the default backend is assigned.
359 */
360 s->be = s->fe;
361 s->req = s->rep = NULL; /* will be allocated later */
William Lallemand82fe75c2012-10-23 10:25:10 +0200362 s->comp_algo = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200363
364 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200365 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200366 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200367 void *ptr;
368
Willy Tarreau56123282010-08-06 19:06:56 +0200369 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200370 if (ptr)
371 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200372
Willy Tarreau56123282010-08-06 19:06:56 +0200373 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200374 if (ptr)
375 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200376 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200377 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200378
Willy Tarreau56123282010-08-06 19:06:56 +0200379 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200380 void *ptr;
381
Willy Tarreau56123282010-08-06 19:06:56 +0200382 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200383 if (ptr)
384 stktable_data_cast(ptr, sess_cnt)++;
385
Willy Tarreau56123282010-08-06 19:06:56 +0200386 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200387 if (ptr)
388 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200389 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200390 }
391
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200392 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200393 s->si[0].owner = t;
394 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
395 s->si[0].err_type = SI_ET_NONE;
396 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200397 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200398 s->si[0].send_proxy_ofs = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200399 s->si[0].exp = TICK_ETERNITY;
400 s->si[0].flags = SI_FL_NONE;
401
402 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
403 s->si[0].flags |= SI_FL_INDEP_STR;
404
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200405 /* pre-initialize the other side's stream interface to an INIT state. The
406 * callbacks will be initialized before attempting to connect.
407 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200408 s->si[1].conn->t.sock.fd = -1; /* just to help with debugging */
409 s->si[1].conn->flags = CO_FL_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200410 s->si[1].owner = t;
411 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
412 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200413 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200414 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200415 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200416 s->si[1].send_proxy_ofs = 0;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200417 clear_target(&s->si[1].conn->target);
Willy Tarreauc5788912012-08-24 18:12:41 +0200418 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200419 s->si[1].exp = TICK_ETERNITY;
420 s->si[1].flags = SI_FL_NONE;
421
422 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
423 s->si[1].flags |= SI_FL_INDEP_STR;
424
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200425 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100426 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200427 s->pend_pos = NULL;
428
429 /* init store persistence */
430 s->store_count = 0;
431
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200432 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200433 goto out_free_task; /* no memory */
434
Willy Tarreau9b28e032012-10-12 23:49:43 +0200435 if (unlikely((s->req->buf = pool_alloc2(pool2_buffer)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200436 goto out_free_req; /* no memory */
437
Willy Tarreau9b28e032012-10-12 23:49:43 +0200438 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
439 goto out_free_req_buf; /* no memory */
440
441 if (unlikely((s->rep->buf = pool_alloc2(pool2_buffer)) == NULL))
442 goto out_free_rep; /* no memory */
443
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200444 /* initialize the request buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200445 s->req->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200446 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200447 s->req->prod = &s->si[0];
448 s->req->cons = &s->si[1];
449 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200450 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200451
452 /* activate default analysers enabled for this listener */
453 s->req->analysers = l->analysers;
454
455 s->req->wto = TICK_ETERNITY;
456 s->req->rto = TICK_ETERNITY;
457 s->req->rex = TICK_ETERNITY;
458 s->req->wex = TICK_ETERNITY;
459 s->req->analyse_exp = TICK_ETERNITY;
460
461 /* initialize response buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200462 s->rep->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200463 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200464 s->rep->prod = &s->si[1];
465 s->rep->cons = &s->si[0];
466 s->si[0].ob = s->si[1].ib = s->rep;
467 s->rep->analysers = 0;
468
Willy Tarreau96e31212011-05-30 18:10:30 +0200469 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200470 s->req->flags |= CF_NEVER_WAIT;
471 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200472 }
473
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200474 s->rep->rto = TICK_ETERNITY;
475 s->rep->wto = TICK_ETERNITY;
476 s->rep->rex = TICK_ETERNITY;
477 s->rep->wex = TICK_ETERNITY;
478 s->rep->analyse_exp = TICK_ETERNITY;
479
Willy Tarreau62f791e2012-03-09 11:32:30 +0100480 txn = &s->txn;
481 /* Those variables will be checked and freed if non-NULL in
482 * session.c:session_free(). It is important that they are
483 * properly initialized.
484 */
485 txn->sessid = NULL;
486 txn->srv_cookie = NULL;
487 txn->cli_cookie = NULL;
488 txn->uri = NULL;
489 txn->req.cap = NULL;
490 txn->rsp.cap = NULL;
491 txn->hdr_idx.v = NULL;
492 txn->hdr_idx.size = txn->hdr_idx.used = 0;
493 txn->req.flags = 0;
494 txn->rsp.flags = 0;
495 /* the HTTP messages need to know what buffer they're associated with */
Willy Tarreau394db372012-10-12 22:40:39 +0200496 txn->req.chn = s->req;
497 txn->rsp.chn = s->rep;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100498
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200499 /* finish initialization of the accepted file descriptor */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200500 conn_data_want_recv(s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200501
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100502 if (p->accept && (ret = p->accept(s)) <= 0) {
503 /* Either we had an unrecoverable error (<0) or work is
504 * finished (=0, eg: monitoring), in both situations,
505 * we can release everything and close.
506 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200507 goto out_free_rep_buf;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200508 }
509
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200510 /* if logs require transport layer information, note it on the connection */
511 if (s->logs.logwait & LW_XPRT)
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200512 s->si[0].conn->flags |= CO_FL_XPRT_TRACKED;
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200513
Willy Tarreau2542b532012-08-31 16:01:23 +0200514 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200515 s->si[0].conn->flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200516
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200517 /* it is important not to call the wakeup function directly but to
518 * pass through task_wakeup(), because this one knows how to apply
519 * priorities to tasks.
520 */
521 task_wakeup(t, TASK_WOKEN_INIT);
522 return 1;
523
524 /* Error unrolling */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200525 out_free_rep_buf:
526 pool_free2(pool2_buffer, s->rep->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200527 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200528 pool_free2(pool2_channel, s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200529 out_free_req_buf:
530 pool_free2(pool2_buffer, s->req->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200531 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200532 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200533 out_free_task:
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100534 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200535}
536
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537/*
538 * frees the context associated to a session. It must have been removed first.
539 */
Simon Hormandec5be42011-06-08 09:19:07 +0900540static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100542 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200543 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100544 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200545 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100546
Willy Tarreaubaaee002006-06-26 02:48:02 +0200547 if (s->pend_pos)
548 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100549
Willy Tarreau827aee92011-03-10 16:55:02 +0100550 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100551 if (s->flags & SN_CURR_SESS) {
552 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100553 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100554 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100555 if (may_dequeue_tasks(target_srv(&s->target), s->be))
556 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100557 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100558
Willy Tarreau7c669d72008-06-20 15:04:11 +0200559 if (unlikely(s->srv_conn)) {
560 /* the session still has a reserved slot on a server, but
561 * it should normally be only the same as the one above,
562 * so this should not happen in fact.
563 */
564 sess_change_server(s, NULL);
565 }
566
William Lallemand82fe75c2012-10-23 10:25:10 +0200567 if (s->comp_algo) {
568 s->comp_algo->end(&s->comp_ctx.strm);
569 s->comp_algo = NULL;
570 }
571
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100572 if (s->req->pipe)
573 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100574
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100575 if (s->rep->pipe)
576 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100577
Willy Tarreau9b28e032012-10-12 23:49:43 +0200578 pool_free2(pool2_buffer, s->req->buf);
579 pool_free2(pool2_buffer, s->rep->buf);
580
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200581 pool_free2(pool2_channel, s->req);
582 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583
Willy Tarreau46023632010-01-07 22:51:47 +0100584 http_end_txn(s);
585
Willy Tarreau1e954912012-10-12 17:50:05 +0200586 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200587 s->si[0].conn->flags &= ~CO_FL_XPRT_TRACKED;
588 conn_xprt_close(s->si[0].conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200589
Willy Tarreaua4cda672010-06-06 18:28:49 +0200590 for (i = 0; i < s->store_count; i++) {
591 if (!s->store[i].ts)
592 continue;
593 stksess_free(s->store[i].table, s->store[i].ts);
594 s->store[i].ts = NULL;
595 }
596
Willy Tarreau34eb6712011-10-24 18:15:04 +0200597 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200598 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100599 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
600 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200601 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100602
Willy Tarreau56123282010-08-06 19:06:56 +0200603 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200604 session_store_counters(s);
605
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100606 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100607 /* we have to unlink all watchers. We must not relink them if
608 * this session was the last one in the list.
609 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100610 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100611 LIST_INIT(&bref->users);
612 if (s->list.n != &sessions)
613 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100614 bref->ref = s->list.n;
615 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100616 LIST_DEL(&s->list);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200617 pool_free2(pool2_connection, s->si[1].conn);
618 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200619 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200620
621 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200622 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200623 pool_flush2(pool2_buffer);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200624 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200625 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200626 pool_flush2(pool2_requri);
627 pool_flush2(pool2_capture);
628 pool_flush2(pool2_session);
629 pool_flush2(fe->req_cap_pool);
630 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200631 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200632}
633
634
635/* perform minimal intializations, report 0 in case of error, 1 if OK. */
636int init_session()
637{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100638 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200639 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
640 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200641}
642
Willy Tarreau30e71012007-11-26 20:15:35 +0100643void session_process_counters(struct session *s)
644{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100645 unsigned long long bytes;
646
Willy Tarreau30e71012007-11-26 20:15:35 +0100647 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100648 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100649 s->logs.bytes_in = s->req->total;
650 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100651 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100652
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100653 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100654
Willy Tarreau827aee92011-03-10 16:55:02 +0100655 if (target_srv(&s->target))
656 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200657
658 if (s->listener->counters)
659 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200660
Willy Tarreau56123282010-08-06 19:06:56 +0200661 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200662 void *ptr;
663
Willy Tarreau56123282010-08-06 19:06:56 +0200664 ptr = stktable_data_ptr(s->stkctr2_table,
665 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200666 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200667 if (ptr)
668 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200669
Willy Tarreau56123282010-08-06 19:06:56 +0200670 ptr = stktable_data_ptr(s->stkctr2_table,
671 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200672 STKTABLE_DT_BYTES_IN_RATE);
673 if (ptr)
674 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200675 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200676 }
677
Willy Tarreau56123282010-08-06 19:06:56 +0200678 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200679 void *ptr;
680
Willy Tarreau56123282010-08-06 19:06:56 +0200681 ptr = stktable_data_ptr(s->stkctr1_table,
682 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200683 STKTABLE_DT_BYTES_IN_CNT);
684 if (ptr)
685 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
686
Willy Tarreau56123282010-08-06 19:06:56 +0200687 ptr = stktable_data_ptr(s->stkctr1_table,
688 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200689 STKTABLE_DT_BYTES_IN_RATE);
690 if (ptr)
691 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200692 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200693 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100694 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100695 }
696
Willy Tarreau30e71012007-11-26 20:15:35 +0100697 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100698 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100699 s->logs.bytes_out = s->rep->total;
700 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100701 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100702
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100703 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100704
Willy Tarreau827aee92011-03-10 16:55:02 +0100705 if (target_srv(&s->target))
706 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200707
708 if (s->listener->counters)
709 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200710
Willy Tarreau56123282010-08-06 19:06:56 +0200711 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200712 void *ptr;
713
Willy Tarreau56123282010-08-06 19:06:56 +0200714 ptr = stktable_data_ptr(s->stkctr2_table,
715 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200716 STKTABLE_DT_BYTES_OUT_CNT);
717 if (ptr)
718 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
719
Willy Tarreau56123282010-08-06 19:06:56 +0200720 ptr = stktable_data_ptr(s->stkctr2_table,
721 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200722 STKTABLE_DT_BYTES_OUT_RATE);
723 if (ptr)
724 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200725 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200726 }
727
Willy Tarreau56123282010-08-06 19:06:56 +0200728 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200729 void *ptr;
730
Willy Tarreau56123282010-08-06 19:06:56 +0200731 ptr = stktable_data_ptr(s->stkctr1_table,
732 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200733 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200734 if (ptr)
735 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200736
Willy Tarreau56123282010-08-06 19:06:56 +0200737 ptr = stktable_data_ptr(s->stkctr1_table,
738 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200739 STKTABLE_DT_BYTES_OUT_RATE);
740 if (ptr)
741 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200742 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200743 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100744 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100745 }
746}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200747
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100748/* This function is called with (si->state == SI_ST_CON) meaning that a
749 * connection was attempted and that the file descriptor is already allocated.
750 * We must check for establishment, error and abort. Possible output states
751 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
752 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
753 * otherwise 1.
754 */
Simon Hormandec5be42011-06-08 09:19:07 +0900755static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100756{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200757 struct channel *req = si->ob;
758 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100759
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100760 /* If we got an error, or if nothing happened and the connection timed
761 * out, we must give up. The CER state handler will take care of retry
762 * attempts and error reports.
763 */
764 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100765 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100766 si->state = SI_ST_CER;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200767 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100768
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200769 conn_xprt_close(si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200770 if (si->release)
771 si->release(si);
772
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100773 if (si->err_type)
774 return 0;
775
Willy Tarreau827aee92011-03-10 16:55:02 +0100776 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100777 if (si->flags & SI_FL_ERR)
778 si->err_type = SI_ET_CONN_ERR;
779 else
780 si->err_type = SI_ET_CONN_TO;
781 return 0;
782 }
783
784 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200785 if (unlikely((rep->flags & CF_SHUTW) ||
786 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
787 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100788 s->be->options & PR_O_ABRT_CLOSE)))) {
789 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200790 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100791 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100792 si->err_loc = target_srv(&s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100793 if (s->srv_error)
794 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100795 return 1;
796 }
797
798 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200799 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100800 return 1;
801
802 /* OK, this means that a connection succeeded. The caller will be
803 * responsible for handling the transition from CON to EST.
804 */
805 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100806 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100807 si->state = SI_ST_EST;
808 si->err_type = SI_ET_NONE;
809 si->err_loc = NULL;
810 return 1;
811}
812
813/* This function is called with (si->state == SI_ST_CER) meaning that a
814 * previous connection attempt has failed and that the file descriptor
815 * has already been released. Possible causes include asynchronous error
816 * notification and time out. Possible output states are SI_ST_CLO when
817 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
818 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
819 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
820 * marked as in error state. It returns 0.
821 */
Simon Hormandec5be42011-06-08 09:19:07 +0900822static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100823{
824 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100825 if (target_srv(&s->target)) {
826 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100827
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100828 if (s->flags & SN_CURR_SESS) {
829 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100830 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100831 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100832 }
833
834 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200835 si->conn_retries--;
836 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100837 if (!si->err_type) {
838 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100839 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100840 }
841
Willy Tarreau827aee92011-03-10 16:55:02 +0100842 if (target_srv(&s->target))
843 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100844 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100845 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100846 if (may_dequeue_tasks(target_srv(&s->target), s->be))
847 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100848
849 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200850 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200851 si->ob->flags |= CF_WRITE_ERROR;
852 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100853
854 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100855 if (s->srv_error)
856 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100857 return 0;
858 }
859
860 /* If the "redispatch" option is set on the backend, we are allowed to
861 * retry on another server for the last retry. In order to achieve this,
862 * we must mark the session unassigned, and eventually clear the DIRECT
863 * bit to ignore any persistence cookie. We won't count a retry nor a
864 * redispatch yet, because this will depend on what server is selected.
865 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100866 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100867 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100868 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100869 if (may_dequeue_tasks(target_srv(&s->target), s->be))
870 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100871
872 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100873 si->state = SI_ST_REQ;
874 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100875 if (target_srv(&s->target))
876 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100877 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100878 si->state = SI_ST_ASS;
879 }
880
881 if (si->flags & SI_FL_ERR) {
882 /* The error was an asynchronous connection error, and we will
883 * likely have to retry connecting to the same server, most
884 * likely leading to the same result. To avoid this, we wait
885 * one second before retrying.
886 */
887
888 if (!si->err_type)
889 si->err_type = SI_ET_CONN_ERR;
890
891 si->state = SI_ST_TAR;
892 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
893 return 0;
894 }
895 return 0;
896}
897
898/*
899 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200900 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200901 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100902 */
Simon Hormandec5be42011-06-08 09:19:07 +0900903static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100904{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200905 struct channel *req = si->ob;
906 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100907
Willy Tarreau827aee92011-03-10 16:55:02 +0100908 if (target_srv(&s->target))
909 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100910
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100911 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100912 /* if the user wants to log as soon as possible, without counting
913 * bytes from the server, then this is the right moment. */
914 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
915 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100916 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100917 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100918 }
919 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
921 /* reset hdr_idx which was already initialized by the request.
922 * right now, the http parser does it.
923 * hdr_idx_init(&s->txn.hdr_idx);
924 */
925 }
926
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200927 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200928 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200929 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200930 /* real connections have timeouts */
931 req->wto = s->be->timeout.server;
932 rep->rto = s->be->timeout.server;
933 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100934 req->wex = TICK_ETERNITY;
935}
936
937/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
938 * Other input states are simply ignored.
939 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
940 * Flags must have previously been updated for timeouts and other conditions.
941 */
Simon Hormandec5be42011-06-08 09:19:07 +0900942static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100943{
Willy Tarreau827aee92011-03-10 16:55:02 +0100944 struct server *srv = target_srv(&s->target);
945
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100946 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 +0100947 now_ms, __FUNCTION__,
948 s,
949 s->req, s->rep,
950 s->req->rex, s->rep->wex,
951 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200952 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 +0100953
954 if (si->state == SI_ST_ASS) {
955 /* Server assigned to connection request, we have to try to connect now */
956 int conn_err;
957
958 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100959 srv = target_srv(&s->target);
960
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100961 if (conn_err == SN_ERR_NONE) {
962 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100963 if (srv)
964 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100965 return;
966 }
967
968 /* We have received a synchronous error. We might have to
969 * abort, retry immediately or redispatch.
970 */
971 if (conn_err == SN_ERR_INTERNAL) {
972 if (!si->err_type) {
973 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100974 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100975 }
976
Willy Tarreau827aee92011-03-10 16:55:02 +0100977 if (srv)
978 srv_inc_sess_ctr(srv);
979 if (srv)
980 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100981 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100982
983 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100984 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100985 if (may_dequeue_tasks(srv, s->be))
986 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100987
988 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200989 si_shutr(si);
990 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200991 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100992
993 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
994
995 /* no session was ever accounted for this server */
996 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100997 if (s->srv_error)
998 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100999 return;
1000 }
1001
1002 /* We are facing a retryable error, but we don't want to run a
1003 * turn-around now, as the problem is likely a source port
1004 * allocation problem, so we want to retry now.
1005 */
1006 si->state = SI_ST_CER;
1007 si->flags &= ~SI_FL_ERR;
1008 sess_update_st_cer(s, si);
1009 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1010 return;
1011 }
1012 else if (si->state == SI_ST_QUE) {
1013 /* connection request was queued, check for any update */
1014 if (!s->pend_pos) {
1015 /* The connection is not in the queue anymore. Either
1016 * we have a server connection slot available and we
1017 * go directly to the assigned state, or we need to
1018 * load-balance first and go to the INI state.
1019 */
1020 si->exp = TICK_ETERNITY;
1021 if (unlikely(!(s->flags & SN_ASSIGNED)))
1022 si->state = SI_ST_REQ;
1023 else {
1024 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1025 si->state = SI_ST_ASS;
1026 }
1027 return;
1028 }
1029
1030 /* Connection request still in queue... */
1031 if (si->flags & SI_FL_EXP) {
1032 /* ... and timeout expired */
1033 si->exp = TICK_ETERNITY;
1034 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001035 if (srv)
1036 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001037 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001038 si_shutr(si);
1039 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001040 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001041 if (!si->err_type)
1042 si->err_type = SI_ET_QUEUE_TO;
1043 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001044 if (s->srv_error)
1045 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001046 return;
1047 }
1048
1049 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001050 if ((si->ob->flags & (CF_READ_ERROR)) ||
1051 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001052 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001053 /* give up */
1054 si->exp = TICK_ETERNITY;
1055 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001056 si_shutr(si);
1057 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001058 si->err_type |= SI_ET_QUEUE_ABRT;
1059 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001060 if (s->srv_error)
1061 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001062 return;
1063 }
1064
1065 /* Nothing changed */
1066 return;
1067 }
1068 else if (si->state == SI_ST_TAR) {
1069 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001070 if ((si->ob->flags & (CF_READ_ERROR)) ||
1071 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001072 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001073 /* give up */
1074 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001075 si_shutr(si);
1076 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001077 si->err_type |= SI_ET_CONN_ABRT;
1078 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001079 if (s->srv_error)
1080 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001081 return;
1082 }
1083
1084 if (!(si->flags & SI_FL_EXP))
1085 return; /* still in turn-around */
1086
1087 si->exp = TICK_ETERNITY;
1088
1089 /* we keep trying on the same server as long as the session is
1090 * marked "assigned".
1091 * FIXME: Should we force a redispatch attempt when the server is down ?
1092 */
1093 if (s->flags & SN_ASSIGNED)
1094 si->state = SI_ST_ASS;
1095 else
1096 si->state = SI_ST_REQ;
1097 return;
1098 }
1099}
1100
Simon Hormandec5be42011-06-08 09:19:07 +09001101/* Set correct session termination flags in case no analyser has done it. It
1102 * also counts a failed request if the server state has not reached the request
1103 * stage.
1104 */
1105static void sess_set_term_flags(struct session *s)
1106{
1107 if (!(s->flags & SN_FINST_MASK)) {
1108 if (s->si[1].state < SI_ST_REQ) {
1109
1110 s->fe->fe_counters.failed_req++;
1111 if (s->listener->counters)
1112 s->listener->counters->failed_req++;
1113
1114 s->flags |= SN_FINST_R;
1115 }
1116 else if (s->si[1].state == SI_ST_QUE)
1117 s->flags |= SN_FINST_Q;
1118 else if (s->si[1].state < SI_ST_EST)
1119 s->flags |= SN_FINST_C;
1120 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1121 s->flags |= SN_FINST_D;
1122 else
1123 s->flags |= SN_FINST_L;
1124 }
1125}
1126
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001127/* This function initiates a server connection request on a stream interface
1128 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1129 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1130 * or SI_ST_CLO upon error.
1131 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001132static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1133{
1134 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 +01001135 now_ms, __FUNCTION__,
1136 s,
1137 s->req, s->rep,
1138 s->req->rex, s->rep->wex,
1139 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001140 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 +01001141
1142 if (si->state != SI_ST_REQ)
1143 return;
1144
1145 /* Try to assign a server */
1146 if (srv_redispatch_connect(s) != 0) {
1147 /* We did not get a server. Either we queued the
1148 * connection request, or we encountered an error.
1149 */
1150 if (si->state == SI_ST_QUE)
1151 return;
1152
1153 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001154 si_shutr(si);
1155 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001156 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001157 if (!si->err_type)
1158 si->err_type = SI_ET_CONN_OTHER;
1159 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001160 if (s->srv_error)
1161 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001162 return;
1163 }
1164
1165 /* The server is assigned */
1166 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1167 si->state = SI_ST_ASS;
1168}
1169
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001170/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001171 * if appropriate. The default_backend rule is also considered, then the
1172 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001173 * It returns 1 if the processing can continue on next analysers, or zero if it
1174 * either needs more data or wants to immediately abort the request.
1175 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001176static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001177{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001178 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001179
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001180 req->analysers &= ~an_bit;
1181 req->analyse_exp = TICK_ETERNITY;
1182
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001183 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 +02001184 now_ms, __FUNCTION__,
1185 s,
1186 req,
1187 req->rex, req->wex,
1188 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001189 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001190 req->analysers);
1191
1192 /* now check whether we have some switching rules for this request */
1193 if (!(s->flags & SN_BE_ASSIGNED)) {
1194 struct switching_rule *rule;
1195
1196 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1197 int ret;
1198
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001199 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 +02001200 ret = acl_pass(ret);
1201 if (rule->cond->pol == ACL_COND_UNLESS)
1202 ret = !ret;
1203
1204 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001205 if (!session_set_backend(s, rule->be.backend))
1206 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001207 break;
1208 }
1209 }
1210
1211 /* To ensure correct connection accounting on the backend, we
1212 * have to assign one if it was not set (eg: a listen). This
1213 * measure also takes care of correctly setting the default
1214 * backend if any.
1215 */
1216 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001217 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1218 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001219 }
1220
Willy Tarreaufb356202010-08-03 14:02:05 +02001221 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1222 if (s->fe == s->be) {
1223 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001224 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001225 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001226
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001227 /* 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 +01001228 * persistence rule, and report that in the session.
1229 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001230 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001231 int ret = 1;
1232
1233 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001234 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 +01001235 ret = acl_pass(ret);
1236 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1237 ret = !ret;
1238 }
1239
1240 if (ret) {
1241 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001242 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1243 s->flags |= SN_FORCE_PRST;
1244 } else {
1245 s->flags |= SN_IGNORE_PRST;
1246 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001247 break;
1248 }
1249 }
1250
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001251 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001252
1253 sw_failed:
1254 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001255 channel_abort(s->req);
1256 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001257
1258 if (!(s->flags & SN_ERR_MASK))
1259 s->flags |= SN_ERR_RESOURCE;
1260 if (!(s->flags & SN_FINST_MASK))
1261 s->flags |= SN_FINST_R;
1262
1263 s->txn.status = 500;
1264 s->req->analysers = 0;
1265 s->req->analyse_exp = TICK_ETERNITY;
1266 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001267}
1268
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001269/* This stream analyser works on a request. It applies all use-server rules on
1270 * it then returns 1. The data must already be present in the buffer otherwise
1271 * they won't match. It always returns 1.
1272 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001273static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001274{
1275 struct proxy *px = s->be;
1276 struct server_rule *rule;
1277
1278 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1279 now_ms, __FUNCTION__,
1280 s,
1281 req,
1282 req->rex, req->wex,
1283 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001284 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001285 req->analysers);
1286
1287 if (!(s->flags & SN_ASSIGNED)) {
1288 list_for_each_entry(rule, &px->server_rules, list) {
1289 int ret;
1290
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001291 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 +02001292 ret = acl_pass(ret);
1293 if (rule->cond->pol == ACL_COND_UNLESS)
1294 ret = !ret;
1295
1296 if (ret) {
1297 struct server *srv = rule->srv.ptr;
1298
1299 if ((srv->state & SRV_RUNNING) ||
1300 (px->options & PR_O_PERSIST) ||
1301 (s->flags & SN_FORCE_PRST)) {
1302 s->flags |= SN_DIRECT | SN_ASSIGNED;
1303 set_target_server(&s->target, srv);
1304 break;
1305 }
1306 /* if the server is not UP, let's go on with next rules
1307 * just in case another one is suited.
1308 */
1309 }
1310 }
1311 }
1312
1313 req->analysers &= ~an_bit;
1314 req->analyse_exp = TICK_ETERNITY;
1315 return 1;
1316}
1317
Emeric Brun1d33b292010-01-04 15:47:17 +01001318/* This stream analyser works on a request. It applies all sticking rules on
1319 * it then returns 1. The data must already be present in the buffer otherwise
1320 * they won't match. It always returns 1.
1321 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001322static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001323{
1324 struct proxy *px = s->be;
1325 struct sticking_rule *rule;
1326
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001327 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 +01001328 now_ms, __FUNCTION__,
1329 s,
1330 req,
1331 req->rex, req->wex,
1332 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001333 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001334 req->analysers);
1335
1336 list_for_each_entry(rule, &px->sticking_rules, list) {
1337 int ret = 1 ;
1338 int i;
1339
1340 for (i = 0; i < s->store_count; i++) {
1341 if (rule->table.t == s->store[i].table)
1342 break;
1343 }
1344
1345 if (i != s->store_count)
1346 continue;
1347
1348 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001349 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001350 ret = acl_pass(ret);
1351 if (rule->cond->pol == ACL_COND_UNLESS)
1352 ret = !ret;
1353 }
1354
1355 if (ret) {
1356 struct stktable_key *key;
1357
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001358 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 +01001359 if (!key)
1360 continue;
1361
1362 if (rule->flags & STK_IS_MATCH) {
1363 struct stksess *ts;
1364
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001365 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001366 if (!(s->flags & SN_ASSIGNED)) {
1367 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001368 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001369
1370 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001371 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1372 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001373 if (node) {
1374 struct server *srv;
1375
1376 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001377 if ((srv->state & SRV_RUNNING) ||
1378 (px->options & PR_O_PERSIST) ||
1379 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001380 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001381 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001382 }
1383 }
1384 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001385 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001386 }
1387 }
1388 if (rule->flags & STK_IS_STORE) {
1389 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1390 struct stksess *ts;
1391
1392 ts = stksess_new(rule->table.t, key);
1393 if (ts) {
1394 s->store[s->store_count].table = rule->table.t;
1395 s->store[s->store_count++].ts = ts;
1396 }
1397 }
1398 }
1399 }
1400 }
1401
1402 req->analysers &= ~an_bit;
1403 req->analyse_exp = TICK_ETERNITY;
1404 return 1;
1405}
1406
1407/* This stream analyser works on a response. It applies all store rules on it
1408 * then returns 1. The data must already be present in the buffer otherwise
1409 * they won't match. It always returns 1.
1410 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001411static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001412{
1413 struct proxy *px = s->be;
1414 struct sticking_rule *rule;
1415 int i;
1416
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001417 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 +01001418 now_ms, __FUNCTION__,
1419 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001420 rep,
1421 rep->rex, rep->wex,
1422 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001423 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001424 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001425
1426 list_for_each_entry(rule, &px->storersp_rules, list) {
1427 int ret = 1 ;
1428 int storereqidx = -1;
1429
1430 for (i = 0; i < s->store_count; i++) {
1431 if (rule->table.t == s->store[i].table) {
1432 if (!(s->store[i].flags))
1433 storereqidx = i;
1434 break;
1435 }
1436 }
1437
1438 if ((i != s->store_count) && (storereqidx == -1))
1439 continue;
1440
1441 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001442 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001443 ret = acl_pass(ret);
1444 if (rule->cond->pol == ACL_COND_UNLESS)
1445 ret = !ret;
1446 }
1447
1448 if (ret) {
1449 struct stktable_key *key;
1450
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001451 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 +01001452 if (!key)
1453 continue;
1454
1455 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001456 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001457 s->store[storereqidx].flags = 1;
1458 }
1459 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1460 struct stksess *ts;
1461
1462 ts = stksess_new(rule->table.t, key);
1463 if (ts) {
1464 s->store[s->store_count].table = rule->table.t;
1465 s->store[s->store_count].flags = 1;
1466 s->store[s->store_count++].ts = ts;
1467 }
1468 }
1469 }
1470 }
1471
1472 /* process store request and store response */
1473 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001474 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001475 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001476
Simon Hormanfa461682011-06-25 09:39:49 +09001477 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1478 stksess_free(s->store[i].table, s->store[i].ts);
1479 s->store[i].ts = NULL;
1480 continue;
1481 }
1482
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001483 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1484 if (ts) {
1485 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001486 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001487 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001488 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001489 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001490 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001491
1492 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001493 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001494 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001495 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001496 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001497
1498 rep->analysers &= ~an_bit;
1499 rep->analyse_exp = TICK_ETERNITY;
1500 return 1;
1501}
1502
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001503/* This macro is very specific to the function below. See the comments in
1504 * process_session() below to understand the logic and the tests.
1505 */
1506#define UPDATE_ANALYSERS(real, list, back, flag) { \
1507 list = (((list) & ~(flag)) | ~(back)) & (real); \
1508 back = real; \
1509 if (!(list)) \
1510 break; \
1511 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1512 continue; \
1513}
1514
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001515/* Processes the client, server, request and response jobs of a session task,
1516 * then puts it back to the wait queue in a clean state, or cleans up its
1517 * resources if it must be deleted. Returns in <next> the date the task wants
1518 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1519 * nothing too many times, the request and response buffers flags are monitored
1520 * and each function is called only if at least another function has changed at
1521 * least one flag it is interested in.
1522 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001523struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001524{
Willy Tarreau827aee92011-03-10 16:55:02 +01001525 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001526 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001527 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001528 unsigned int rq_prod_last, rq_cons_last;
1529 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001530 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001531
1532 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1533 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1534
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001535 /* this data may be no longer valid, clear it */
1536 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1537
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001538 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001539 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001540
1541 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001542 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1543 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001544
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001545 /* we don't want the stream interface functions to recursively wake us up */
1546 if (s->req->prod->owner == t)
1547 s->req->prod->flags |= SI_FL_DONT_WAKE;
1548 if (s->req->cons->owner == t)
1549 s->req->cons->flags |= SI_FL_DONT_WAKE;
1550
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001551 /* 1a: Check for low level timeouts if needed. We just set a flag on
1552 * stream interfaces when their timeouts have expired.
1553 */
1554 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1555 stream_int_check_timeouts(&s->si[0]);
1556 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001557
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001558 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001559 * for future reads or writes. Note: this will also concern upper layers
1560 * but we do not touch any other flag. We must be careful and correctly
1561 * detect state changes when calling them.
1562 */
1563
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001564 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001565
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001566 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001567 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001568 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001569 }
1570
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001571 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001572 if (s->req->prod->flags & SI_FL_NOHALF)
1573 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001574 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001575 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001576
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001577 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001578
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001579 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001580 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001581 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001582 }
1583
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001584 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001585 if (s->rep->prod->flags & SI_FL_NOHALF)
1586 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001587 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001588 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001589 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001590
1591 /* 1b: check for low-level errors reported at the stream interface.
1592 * First we check if it's a retryable error (in which case we don't
1593 * want to tell the buffer). Otherwise we report the error one level
1594 * upper by setting flags into the buffers. Note that the side towards
1595 * the client cannot have connect (hence retryable) errors. Also, the
1596 * connection setup code must be able to deal with any type of abort.
1597 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001598 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001599 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1600 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001601 si_shutr(&s->si[0]);
1602 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001603 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001604 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001605 s->be->be_counters.cli_aborts++;
1606 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001607 if (srv)
1608 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001609 if (!(s->flags & SN_ERR_MASK))
1610 s->flags |= SN_ERR_CLICL;
1611 if (!(s->flags & SN_FINST_MASK))
1612 s->flags |= SN_FINST_D;
1613 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001614 }
1615 }
1616
1617 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1618 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001619 si_shutr(&s->si[1]);
1620 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001621 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001622 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001623 if (srv)
1624 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001625 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001626 s->be->be_counters.srv_aborts++;
1627 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001628 if (srv)
1629 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001630 if (!(s->flags & SN_ERR_MASK))
1631 s->flags |= SN_ERR_SRVCL;
1632 if (!(s->flags & SN_FINST_MASK))
1633 s->flags |= SN_FINST_D;
1634 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001635 }
1636 /* note: maybe we should process connection errors here ? */
1637 }
1638
1639 if (s->si[1].state == SI_ST_CON) {
1640 /* we were trying to establish a connection on the server side,
1641 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1642 */
1643 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1644 sess_update_st_cer(s, &s->si[1]);
1645 else if (s->si[1].state == SI_ST_EST)
1646 sess_establish(s, &s->si[1]);
1647
1648 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1649 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1650 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1651 */
1652 }
1653
Willy Tarreau815a9b22010-07-27 17:15:12 +02001654 rq_prod_last = s->si[0].state;
1655 rq_cons_last = s->si[1].state;
1656 rp_cons_last = s->si[0].state;
1657 rp_prod_last = s->si[1].state;
1658
1659 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001660 /* Check for connection closure */
1661
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001662 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001663 "[%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 +01001664 now_ms, __FUNCTION__, __LINE__,
1665 t,
1666 s, s->flags,
1667 s->req, s->rep,
1668 s->req->rex, s->rep->wex,
1669 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001670 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 +01001671 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001672 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001673
1674 /* nothing special to be done on client side */
1675 if (unlikely(s->req->prod->state == SI_ST_DIS))
1676 s->req->prod->state = SI_ST_CLO;
1677
1678 /* When a server-side connection is released, we have to count it and
1679 * check for pending connections on this server.
1680 */
1681 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1682 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001683 srv = target_srv(&s->target);
1684 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001685 if (s->flags & SN_CURR_SESS) {
1686 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001687 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001688 }
1689 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001690 if (may_dequeue_tasks(srv, s->be))
1691 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001692 }
1693 }
1694
1695 /*
1696 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1697 * at this point.
1698 */
1699
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001700 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001701 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001702 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1703 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001704 s->si[0].state != rq_prod_last ||
1705 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001706 unsigned int flags = s->req->flags;
1707
1708 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001709 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001710 unsigned int ana_list;
1711 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001712
Willy Tarreau90deb182010-01-07 00:20:41 +01001713 /* it's up to the analysers to stop new connections,
1714 * disable reading or closing. Note: if an analyser
1715 * disables any of these bits, it is responsible for
1716 * enabling them again when it disables itself, so
1717 * that other analysers are called in similar conditions.
1718 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001719 channel_auto_read(s->req);
1720 channel_auto_connect(s->req);
1721 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001722
1723 /* We will call all analysers for which a bit is set in
1724 * s->req->analysers, following the bit order from LSB
1725 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001726 * the list when not needed. Any analyser may return 0
1727 * to break out of the loop, either because of missing
1728 * data to take a decision, or because it decides to
1729 * kill the session. We loop at least once through each
1730 * analyser, and we may loop again if other analysers
1731 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001732 *
1733 * We build a list of analysers to run. We evaluate all
1734 * of these analysers in the order of the lower bit to
1735 * the higher bit. This ordering is very important.
1736 * An analyser will often add/remove other analysers,
1737 * including itself. Any changes to itself have no effect
1738 * on the loop. If it removes any other analysers, we
1739 * want those analysers not to be called anymore during
1740 * this loop. If it adds an analyser that is located
1741 * after itself, we want it to be scheduled for being
1742 * processed during the loop. If it adds an analyser
1743 * which is located before it, we want it to switch to
1744 * it immediately, even if it has already been called
1745 * once but removed since.
1746 *
1747 * In order to achieve this, we compare the analyser
1748 * list after the call with a copy of it before the
1749 * call. The work list is fed with analyser bits that
1750 * appeared during the call. Then we compare previous
1751 * work list with the new one, and check the bits that
1752 * appeared. If the lowest of these bits is lower than
1753 * the current bit, it means we have enabled a previous
1754 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001755 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001756
1757 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001758 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001759 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001760
Willy Tarreaufb356202010-08-03 14:02:05 +02001761 if (ana_list & AN_REQ_INSPECT_FE) {
1762 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001763 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001764 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001765 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001766
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001767 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001768 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001769 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001770 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001771 }
1772
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001773 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001774 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1775 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001776 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001777 }
1778
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001779 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001780 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1781 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001782 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001783 }
1784
Willy Tarreaufb356202010-08-03 14:02:05 +02001785 if (ana_list & AN_REQ_INSPECT_BE) {
1786 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1787 break;
1788 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1789 }
1790
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001791 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001792 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1793 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001794 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001795 }
1796
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001797 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001798 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001799 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001800 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001801 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001802
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001803 if (ana_list & AN_REQ_SRV_RULES) {
1804 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1805 break;
1806 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1807 }
1808
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001809 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001810 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1811 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001812 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001813 }
1814
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001815 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001816 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001817 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001818 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001819 }
Emeric Brun647caf12009-06-30 17:57:00 +02001820
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001821 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001822 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1823 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001824 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001825 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001826
Emeric Brun1d33b292010-01-04 15:47:17 +01001827 if (ana_list & AN_REQ_STICKING_RULES) {
1828 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1829 break;
1830 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1831 }
1832
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001833 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001834 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1835 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001836 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001837 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001838 break;
1839 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001840 }
Willy Tarreau84455332009-03-15 22:34:05 +01001841
Willy Tarreau815a9b22010-07-27 17:15:12 +02001842 rq_prod_last = s->si[0].state;
1843 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001844 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001845 rqf_last = s->req->flags;
1846
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001847 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001848 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001849 }
1850
Willy Tarreau576507f2010-01-07 00:09:04 +01001851 /* we'll monitor the request analysers while parsing the response,
1852 * because some response analysers may indirectly enable new request
1853 * analysers (eg: HTTP keep-alive).
1854 */
1855 req_ana_back = s->req->analysers;
1856
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001857 resync_response:
1858 /* Analyse response */
1859
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001860 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001861 /* In inject mode, we wake up everytime something has
1862 * happened on the write side of the buffer.
1863 */
1864 unsigned int flags = s->rep->flags;
1865
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001866 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001867 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001868 s->rep->hijacker(s, s->rep);
1869 }
1870
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001871 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001872 rpf_last = s->rep->flags;
1873 goto resync_response;
1874 }
1875 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001876 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1877 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001878 s->si[0].state != rp_cons_last ||
1879 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001880 unsigned int flags = s->rep->flags;
1881
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001882 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001883 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1884 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1885 * for some free space in the response buffer, so we might need to call
1886 * it when something changes in the response buffer, but still we pass
1887 * it the request buffer. Note that the SI state might very well still
1888 * be zero due to us returning a flow of redirects!
1889 */
1890 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001891 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001892 }
1893
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001894 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001895 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001896 unsigned int ana_list;
1897 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001898
Willy Tarreau90deb182010-01-07 00:20:41 +01001899 /* it's up to the analysers to stop disable reading or
1900 * closing. Note: if an analyser disables any of these
1901 * bits, it is responsible for enabling them again when
1902 * it disables itself, so that other analysers are called
1903 * in similar conditions.
1904 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001905 channel_auto_read(s->rep);
1906 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001907
1908 /* We will call all analysers for which a bit is set in
1909 * s->rep->analysers, following the bit order from LSB
1910 * to MSB. The analysers must remove themselves from
1911 * the list when not needed. Any analyser may return 0
1912 * to break out of the loop, either because of missing
1913 * data to take a decision, or because it decides to
1914 * kill the session. We loop at least once through each
1915 * analyser, and we may loop again if other analysers
1916 * are added in the middle.
1917 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001918
1919 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001920 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001921 /* Warning! ensure that analysers are always placed in ascending order! */
1922
Emeric Brun97679e72010-09-23 17:56:44 +02001923 if (ana_list & AN_RES_INSPECT) {
1924 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1925 break;
1926 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1927 }
1928
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001929 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001930 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1931 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001932 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001933 }
1934
Emeric Brun1d33b292010-01-04 15:47:17 +01001935 if (ana_list & AN_RES_STORE_RULES) {
1936 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1937 break;
1938 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1939 }
1940
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001941 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001942 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1943 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001944 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001945 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001946
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001947 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001948 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1949 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001950 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001951 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001952 break;
1953 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001954 }
1955
Willy Tarreau815a9b22010-07-27 17:15:12 +02001956 rp_cons_last = s->si[0].state;
1957 rp_prod_last = s->si[1].state;
1958 rpf_last = s->rep->flags;
1959
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001960 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001961 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001962 }
1963
Willy Tarreau576507f2010-01-07 00:09:04 +01001964 /* maybe someone has added some request analysers, so we must check and loop */
1965 if (s->req->analysers & ~req_ana_back)
1966 goto resync_request;
1967
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001968 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001969 goto resync_request;
1970
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001971 /* FIXME: here we should call protocol handlers which rely on
1972 * both buffers.
1973 */
1974
1975
1976 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001977 * Now we propagate unhandled errors to the session. Normally
1978 * we're just in a data phase here since it means we have not
1979 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001980 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001981 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001982 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001983 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001984 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001985 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001986 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001987 s->be->be_counters.cli_aborts++;
1988 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001989 if (srv)
1990 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001991 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001992 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001993 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001994 s->be->be_counters.cli_aborts++;
1995 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001996 if (srv)
1997 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001998 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001999 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002000 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002001 s->be->be_counters.srv_aborts++;
2002 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002003 if (srv)
2004 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002005 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002006 }
2007 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002008 s->be->be_counters.srv_aborts++;
2009 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002010 if (srv)
2011 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002012 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002013 }
Willy Tarreau84455332009-03-15 22:34:05 +01002014 sess_set_term_flags(s);
2015 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002016 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002017 /* Report it if the server got an error or a read timeout expired */
2018 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002019 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002020 s->be->be_counters.srv_aborts++;
2021 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002022 if (srv)
2023 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002024 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002025 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002026 else if (s->rep->flags & CF_READ_TIMEOUT) {
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 Tarreau3deb3d02009-06-21 22:43:05 +02002031 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002032 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002033 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002034 s->be->be_counters.cli_aborts++;
2035 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002036 if (srv)
2037 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002038 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002039 }
2040 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002041 s->be->be_counters.cli_aborts++;
2042 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002043 if (srv)
2044 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002045 s->flags |= SN_ERR_CLITO;
2046 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002047 sess_set_term_flags(s);
2048 }
Willy Tarreau84455332009-03-15 22:34:05 +01002049 }
2050
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002051 /*
2052 * Here we take care of forwarding unhandled data. This also includes
2053 * connection establishments and shutdown requests.
2054 */
2055
2056
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002057 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002058 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002059 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002060 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002061 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002062 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002063 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002064 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002065 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002066 /* This buffer is freewheeling, there's no analyser nor hijacker
2067 * attached to it. If any data are left in, we'll permit them to
2068 * move.
2069 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002070 channel_auto_read(s->req);
2071 channel_auto_connect(s->req);
2072 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002073 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002074
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002075 /* We'll let data flow between the producer (if still connected)
2076 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002077 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002078 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002079 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002080 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002081
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002082 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002083 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002084 s->req->to_forward &&
2085 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002086 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2087 (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 +01002088 (pipes_used < global.maxpipes) &&
2089 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2090 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002091 (s->req->flags & CF_STREAMER_FAST)))) {
2092 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002093 }
2094
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002095 /* reflect what the L7 analysers have seen last */
2096 rqf_last = s->req->flags;
2097
2098 /*
2099 * Now forward all shutdown requests between both sides of the buffer
2100 */
2101
Willy Tarreau520d95e2009-09-19 21:04:57 +02002102 /* first, let's check if the request buffer needs to shutdown(write), which may
2103 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002104 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002105 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002106 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2107 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002108 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002109
2110 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002111 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002112 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002113 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002114
2115 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002116 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002117 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002118 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002119
2120 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002121 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002122 if (s->req->prod->flags & SI_FL_NOHALF)
2123 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002124 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002125 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002126
Willy Tarreau520d95e2009-09-19 21:04:57 +02002127 /* it's possible that an upper layer has requested a connection setup or abort.
2128 * There are 2 situations where we decide to establish a new connection :
2129 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002130 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002131 */
2132 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002133 if (!(s->req->flags & CF_SHUTW)) {
2134 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002135 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002136 * switch to the connected state, otherwise we perform a connection
2137 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002138 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002139 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002140 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002141 if (unlikely(s->req->cons->conn->target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002142 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002143 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002144 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002145 s->req->wex = TICK_ETERNITY;
2146 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002147 }
Willy Tarreau73201222009-08-16 18:27:24 +02002148 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002149 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002150 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002151 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2152 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002153 }
Willy Tarreau92795622009-03-06 12:51:23 +01002154 }
2155
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002156
2157 /* we may have a pending connection request, or a connection waiting
2158 * for completion.
2159 */
2160 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2161 do {
2162 /* nb: step 1 might switch from QUE to ASS, but we first want
2163 * to give a chance to step 2 to perform a redirect if needed.
2164 */
2165 if (s->si[1].state != SI_ST_REQ)
2166 sess_update_stream_int(s, &s->si[1]);
2167 if (s->si[1].state == SI_ST_REQ)
2168 sess_prepare_conn_req(s, &s->si[1]);
2169
Willy Tarreau827aee92011-03-10 16:55:02 +01002170 srv = target_srv(&s->target);
2171 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002172 perform_http_redirect(s, &s->si[1]);
2173 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002174
2175 /* Now we can add the server name to a header (if requested) */
2176 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002177 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002178 (s->be->mode == PR_MODE_HTTP) &&
2179 (s->be->server_id_hdr_name != NULL)) {
2180 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002181 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002182 }
2183
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002184 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002185 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186 goto resync_stream_interface;
2187
Willy Tarreau815a9b22010-07-27 17:15:12 +02002188 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002189 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002190 goto resync_request;
2191
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002192 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002193
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002194 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002195 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002196 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002197 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002198 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002199 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002200 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002201 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002202 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002203 /* This buffer is freewheeling, there's no analyser nor hijacker
2204 * attached to it. If any data are left in, we'll permit them to
2205 * move.
2206 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002207 channel_auto_read(s->rep);
2208 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002209 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002210
2211 /* We'll let data flow between the producer (if still connected)
2212 * to the consumer.
2213 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002214 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002215 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002216
2217 /* if we have no analyser anymore in any direction and have a
2218 * tunnel timeout set, use it now.
2219 */
2220 if (!s->req->analysers && s->be->timeout.tunnel) {
2221 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2222 s->be->timeout.tunnel;
2223 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2224 tick_add(now_ms, s->be->timeout.tunnel);
2225 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002226 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002227
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002228 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002229 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002230 s->rep->to_forward &&
2231 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002232 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2233 (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 +01002234 (pipes_used < global.maxpipes) &&
2235 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2236 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002237 (s->rep->flags & CF_STREAMER_FAST)))) {
2238 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002239 }
2240
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002241 /* reflect what the L7 analysers have seen last */
2242 rpf_last = s->rep->flags;
2243
2244 /*
2245 * Now forward all shutdown requests between both sides of the buffer
2246 */
2247
2248 /*
2249 * FIXME: this is probably where we should produce error responses.
2250 */
2251
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002252 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002253 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2254 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002255 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002256
2257 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002258 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002259 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002260 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002261
2262 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002263 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002264 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002265 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002266
2267 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002268 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002269 if (s->rep->prod->flags & SI_FL_NOHALF)
2270 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002271 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002272 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002273
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002274 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002275 goto resync_stream_interface;
2276
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002277 if (s->req->flags != rqf_last)
2278 goto resync_request;
2279
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002280 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002281 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002282
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002283 /* we're interested in getting wakeups again */
2284 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2285 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2286
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002287 /* This is needed only when debugging is enabled, to indicate
2288 * client-side or server-side close. Please note that in the unlikely
2289 * event where both sides would close at once, the sequence is reported
2290 * on the server side first.
2291 */
2292 if (unlikely((global.mode & MODE_DEBUG) &&
2293 (!(global.mode & MODE_QUIET) ||
2294 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002295 if (s->si[1].state == SI_ST_CLO &&
2296 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002297 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002298 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002299 (unsigned short)si_fd(&s->si[0]),
2300 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002301 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002302 }
2303
2304 if (s->si[0].state == SI_ST_CLO &&
2305 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002306 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002307 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002308 (unsigned short)si_fd(&s->si[0]),
2309 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002310 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002311 }
2312 }
2313
2314 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2315 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2316
2317 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2318 session_process_counters(s);
2319
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002320 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002321 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002322
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002323 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002324 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002325
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002326 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2327 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 +01002328 s->si[0].prev_state = s->si[0].state;
2329 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002330 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2331 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002332
2333 /* Trick: if a request is being waiting for the server to respond,
2334 * and if we know the server can timeout, we don't want the timeout
2335 * to expire on the client side first, but we're still interested
2336 * in passing data from the client to the server (eg: POST). Thus,
2337 * we can cancel the client's request timeout if the server's
2338 * request timeout is set and the server has not yet sent a response.
2339 */
2340
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002341 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002342 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002343 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002344 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002345 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002346
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002347 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002348 * Note that this one may wake the task up again.
2349 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002350 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET ||
2351 s->rep->cons->conn->target.type == TARG_TYPE_APPLET) {
2352 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET)
2353 s->req->cons->conn->target.ptr.a->fct(s->req->cons);
2354 if (s->rep->cons->conn->target.type == TARG_TYPE_APPLET)
2355 s->rep->cons->conn->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002356 if (task_in_rq(t)) {
2357 /* If we woke up, we don't want to requeue the
2358 * task to the wait queue, but rather requeue
2359 * it into the runqueue ASAP.
2360 */
2361 t->expire = TICK_ETERNITY;
2362 return t;
2363 }
2364 }
2365
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002366 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2367 tick_first(s->rep->rex, s->rep->wex));
2368 if (s->req->analysers)
2369 t->expire = tick_first(t->expire, s->req->analyse_exp);
2370
2371 if (s->si[0].exp)
2372 t->expire = tick_first(t->expire, s->si[0].exp);
2373
2374 if (s->si[1].exp)
2375 t->expire = tick_first(t->expire, s->si[1].exp);
2376
2377#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002378 fprintf(stderr,
2379 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2380 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2381 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2382 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 +01002383#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002384
2385#ifdef DEBUG_DEV
2386 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002387 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002388 ABORT_NOW();
2389#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002390 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002391 }
2392
2393 s->fe->feconn--;
2394 if (s->flags & SN_BE_ASSIGNED)
2395 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002396 if (!(s->listener->options & LI_O_UNLIMITED))
2397 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002398 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002399 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002400 if (s->listener->state == LI_FULL)
2401 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002402
Willy Tarreau08ceb102011-07-24 22:58:00 +02002403 /* Dequeues all of the listeners waiting for a resource */
2404 if (!LIST_ISEMPTY(&global_listener_queue))
2405 dequeue_all_listeners(&global_listener_queue);
2406
Willy Tarreaub32907b2011-07-25 08:37:44 +02002407 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2408 (!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 +02002409 dequeue_all_listeners(&s->fe->listener_queue);
2410
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002411 if (unlikely((global.mode & MODE_DEBUG) &&
2412 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002413 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002414 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002415 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002416 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002417 }
2418
2419 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2420 session_process_counters(s);
2421
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002422 if (s->txn.status) {
2423 int n;
2424
2425 n = s->txn.status / 100;
2426 if (n < 1 || n > 5)
2427 n = 0;
2428
2429 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002430 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002431
Willy Tarreau24657792010-02-26 10:30:28 +01002432 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002433 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002434 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002435 }
2436
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002437 /* let's do a final log if we need it */
2438 if (s->logs.logwait &&
2439 !(s->flags & SN_MONITOR) &&
2440 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002441 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002442 }
2443
2444 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002445 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002446 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002447 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002448 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002449}
2450
Willy Tarreau7c669d72008-06-20 15:04:11 +02002451/*
2452 * This function adjusts sess->srv_conn and maintains the previous and new
2453 * server's served session counts. Setting newsrv to NULL is enough to release
2454 * current connection slot. This function also notifies any LB algo which might
2455 * expect to be informed about any change in the number of active sessions on a
2456 * server.
2457 */
2458void sess_change_server(struct session *sess, struct server *newsrv)
2459{
2460 if (sess->srv_conn == newsrv)
2461 return;
2462
2463 if (sess->srv_conn) {
2464 sess->srv_conn->served--;
2465 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2466 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002467 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002468 }
2469
2470 if (newsrv) {
2471 newsrv->served++;
2472 if (newsrv->proxy->lbprm.server_take_conn)
2473 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002474 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002475 }
2476}
2477
Willy Tarreau84455332009-03-15 22:34:05 +01002478/* Handle server-side errors for default protocols. It is called whenever a a
2479 * connection setup is aborted or a request is aborted in queue. It sets the
2480 * session termination flags so that the caller does not have to worry about
2481 * them. It's installed as ->srv_error for the server-side stream_interface.
2482 */
2483void default_srv_error(struct session *s, struct stream_interface *si)
2484{
2485 int err_type = si->err_type;
2486 int err = 0, fin = 0;
2487
2488 if (err_type & SI_ET_QUEUE_ABRT) {
2489 err = SN_ERR_CLICL;
2490 fin = SN_FINST_Q;
2491 }
2492 else if (err_type & SI_ET_CONN_ABRT) {
2493 err = SN_ERR_CLICL;
2494 fin = SN_FINST_C;
2495 }
2496 else if (err_type & SI_ET_QUEUE_TO) {
2497 err = SN_ERR_SRVTO;
2498 fin = SN_FINST_Q;
2499 }
2500 else if (err_type & SI_ET_QUEUE_ERR) {
2501 err = SN_ERR_SRVCL;
2502 fin = SN_FINST_Q;
2503 }
2504 else if (err_type & SI_ET_CONN_TO) {
2505 err = SN_ERR_SRVTO;
2506 fin = SN_FINST_C;
2507 }
2508 else if (err_type & SI_ET_CONN_ERR) {
2509 err = SN_ERR_SRVCL;
2510 fin = SN_FINST_C;
2511 }
2512 else /* SI_ET_CONN_OTHER and others */ {
2513 err = SN_ERR_INTERNAL;
2514 fin = SN_FINST_C;
2515 }
2516
2517 if (!(s->flags & SN_ERR_MASK))
2518 s->flags |= err;
2519 if (!(s->flags & SN_FINST_MASK))
2520 s->flags |= fin;
2521}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002522
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002523/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2524void session_shutdown(struct session *session, int why)
2525{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002526 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002527 return;
2528
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002529 channel_shutw_now(session->req);
2530 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002531 session->task->nice = 1024;
2532 if (!(session->flags & SN_ERR_MASK))
2533 session->flags |= why;
2534 task_wakeup(session->task, TASK_WOKEN_OTHER);
2535}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002536
Willy Tarreau8b22a712010-06-18 17:46:06 +02002537/************************************************************************/
2538/* All supported ACL keywords must be declared here. */
2539/************************************************************************/
2540
Willy Tarreaua5e37562011-12-16 17:06:15 +01002541/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002542static int
Willy Tarreau37406352012-04-23 16:16:37 +02002543acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002544{
Willy Tarreau37406352012-04-23 16:16:37 +02002545 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002546 smp->type = SMP_T_UINT;
2547 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002548 if (ts != NULL) {
2549 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2550 if (!ptr)
2551 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002552 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002553 }
2554 return 1;
2555}
2556
Willy Tarreaua5e37562011-12-16 17:06:15 +01002557/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002558 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002559 */
2560static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002561acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002562 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002563{
Willy Tarreau56123282010-08-06 19:06:56 +02002564 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002565 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002566 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002567}
2568
Willy Tarreaua5e37562011-12-16 17:06:15 +01002569/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002570 * backend counters.
2571 */
2572static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002573acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002574 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002575{
Willy Tarreau56123282010-08-06 19:06:56 +02002576 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002577 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002578 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002579}
2580
Willy Tarreaua5e37562011-12-16 17:06:15 +01002581/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002582 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002583 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002584 */
2585static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002586acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002587 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002588{
2589 struct stktable_key *key;
2590
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002591 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002592 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002593 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002594
Willy Tarreau24e32d82012-04-23 23:55:44 +02002595 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002596 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002597}
2598
2599/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002600 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002601 */
2602static int
Willy Tarreau37406352012-04-23 16:16:37 +02002603acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002604{
Willy Tarreau37406352012-04-23 16:16:37 +02002605 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002606 smp->type = SMP_T_UINT;
2607 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002608 if (ts != NULL) {
2609 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2610 if (!ptr)
2611 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002612 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002613 }
2614 return 1;
2615}
2616
2617/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002618 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002619 */
2620static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002621acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002622 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002623{
Willy Tarreau56123282010-08-06 19:06:56 +02002624 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002625 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002626 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002627}
2628
2629/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002630 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002631 */
2632static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002633acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002634 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002635{
Willy Tarreau56123282010-08-06 19:06:56 +02002636 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002637 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002638 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002639}
2640
2641/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002642 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002643 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002644 */
2645static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002646acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002647 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002648{
2649 struct stktable_key *key;
2650
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002651 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002652 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002653 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002654
Willy Tarreau24e32d82012-04-23 23:55:44 +02002655 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002656 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002657}
2658
Willy Tarreauf73cd112011-08-13 01:45:16 +02002659/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002660 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002661 */
2662static int
Willy Tarreau37406352012-04-23 16:16:37 +02002663acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002664{
Willy Tarreau37406352012-04-23 16:16:37 +02002665 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002666 smp->type = SMP_T_UINT;
2667 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002668 if (ts != NULL) {
2669 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2670 if (!ptr)
2671 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002672 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002673 stktable_data_cast(ptr, gpc0) = 0;
2674 }
2675 return 1;
2676}
2677
2678/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002679 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002680 */
2681static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002682acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002683 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002684{
2685 if (!l4->stkctr1_entry)
2686 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002687 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002688}
2689
2690/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002691 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002692 */
2693static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002694acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002695 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002696{
2697 if (!l4->stkctr2_entry)
2698 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002699 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002700}
2701
2702/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002703 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002704 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002705 */
2706static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002707acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002708 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002709{
2710 struct stktable_key *key;
2711
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002712 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002713 if (!key)
2714 return 0;
2715
Willy Tarreau24e32d82012-04-23 23:55:44 +02002716 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002717 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002718}
2719
Willy Tarreaua5e37562011-12-16 17:06:15 +01002720/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002721static int
Willy Tarreau37406352012-04-23 16:16:37 +02002722acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002723{
Willy Tarreau37406352012-04-23 16:16:37 +02002724 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002725 smp->type = SMP_T_UINT;
2726 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002727 if (ts != NULL) {
2728 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2729 if (!ptr)
2730 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002731 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002732 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002733 return 1;
2734}
2735
Willy Tarreaua5e37562011-12-16 17:06:15 +01002736/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002737static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002738acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002739 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002740{
Willy Tarreau56123282010-08-06 19:06:56 +02002741 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002742 return 0;
2743
Willy Tarreau37406352012-04-23 16:16:37 +02002744 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002745}
2746
Willy Tarreaua5e37562011-12-16 17:06:15 +01002747/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002748static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002749acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002750 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002751{
Willy Tarreau56123282010-08-06 19:06:56 +02002752 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002753 return 0;
2754
Willy Tarreau37406352012-04-23 16:16:37 +02002755 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002756}
2757
Willy Tarreaua5e37562011-12-16 17:06:15 +01002758/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002759 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002760 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002761 */
2762static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002763acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002764 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002765{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002766 struct stktable_key *key;
2767
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002768 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002769 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002770 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002771
Willy Tarreau24e32d82012-04-23 23:55:44 +02002772 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002773 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002774}
2775
Willy Tarreaua5e37562011-12-16 17:06:15 +01002776/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002777static int
Willy Tarreau37406352012-04-23 16:16:37 +02002778acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002779{
Willy Tarreau37406352012-04-23 16:16:37 +02002780 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002781 smp->type = SMP_T_UINT;
2782 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002783 if (ts != NULL) {
2784 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2785 if (!ptr)
2786 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002787 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002788 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2789 }
2790 return 1;
2791}
2792
Willy Tarreaua5e37562011-12-16 17:06:15 +01002793/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002794 * the configured period.
2795 */
2796static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002797acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002798 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002799{
Willy Tarreau56123282010-08-06 19:06:56 +02002800 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002801 return 0;
2802
Willy Tarreau37406352012-04-23 16:16:37 +02002803 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002804}
2805
Willy Tarreaua5e37562011-12-16 17:06:15 +01002806/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002807 * the configured period.
2808 */
2809static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002810acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002811 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002812{
Willy Tarreau56123282010-08-06 19:06:56 +02002813 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002814 return 0;
2815
Willy Tarreau37406352012-04-23 16:16:37 +02002816 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002817}
2818
Willy Tarreaua5e37562011-12-16 17:06:15 +01002819/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002820 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002821 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002822 */
2823static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002824acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002825 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002826{
2827 struct stktable_key *key;
2828
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002829 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002830 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002831 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002832
Willy Tarreau24e32d82012-04-23 23:55:44 +02002833 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002834 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002835}
2836
Willy Tarreaua5e37562011-12-16 17:06:15 +01002837/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002838 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002839 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002840 */
2841static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002842acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002843 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002844{
2845 struct stksess *ts;
2846 struct stktable_key *key;
2847 void *ptr;
2848
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002849 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002850 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002851 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002852
Willy Tarreau24e32d82012-04-23 23:55:44 +02002853 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002854
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002855 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2856 /* entry does not exist and could not be created */
2857 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002858
2859 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2860 if (!ptr)
2861 return 0; /* parameter not stored in this table */
2862
Willy Tarreauf853c462012-04-23 18:53:56 +02002863 smp->type = SMP_T_UINT;
2864 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002865 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002866 return 1;
2867}
2868
Willy Tarreaua5e37562011-12-16 17:06:15 +01002869/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002870static int
Willy Tarreau37406352012-04-23 16:16:37 +02002871acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002872{
Willy Tarreau37406352012-04-23 16:16:37 +02002873 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002874 smp->type = SMP_T_UINT;
2875 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002876
2877 if (ts != NULL) {
2878 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2879 if (!ptr)
2880 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002881 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002882 }
2883 return 1;
2884}
2885
Willy Tarreaua5e37562011-12-16 17:06:15 +01002886/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002887static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002888acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002889 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002890{
Willy Tarreau56123282010-08-06 19:06:56 +02002891 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002892 return 0;
2893
Willy Tarreau37406352012-04-23 16:16:37 +02002894 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002895}
2896
Willy Tarreaua5e37562011-12-16 17:06:15 +01002897/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002898static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002899acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002900 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002901{
Willy Tarreau56123282010-08-06 19:06:56 +02002902 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002903 return 0;
2904
Willy Tarreau37406352012-04-23 16:16:37 +02002905 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002906}
2907
Willy Tarreaua5e37562011-12-16 17:06:15 +01002908/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002909 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002910 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002911 */
2912static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002913acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002914 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002915{
Willy Tarreau38285c12010-06-18 16:35:43 +02002916 struct stktable_key *key;
2917
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002918 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002919 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002920 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002921
Willy Tarreau24e32d82012-04-23 23:55:44 +02002922 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002923 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002924}
2925
Willy Tarreaua5e37562011-12-16 17:06:15 +01002926/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002927static int
Willy Tarreau37406352012-04-23 16:16:37 +02002928acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002929{
Willy Tarreau37406352012-04-23 16:16:37 +02002930 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002931 smp->type = SMP_T_UINT;
2932 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002933 if (ts != NULL) {
2934 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2935 if (!ptr)
2936 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002937 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002938 }
2939 return 1;
2940}
2941
Willy Tarreaua5e37562011-12-16 17:06:15 +01002942/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002943static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002944acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002945 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002946{
Willy Tarreau56123282010-08-06 19:06:56 +02002947 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002948 return 0;
2949
Willy Tarreau37406352012-04-23 16:16:37 +02002950 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002951}
2952
Willy Tarreaua5e37562011-12-16 17:06:15 +01002953/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002954static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002955acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002956 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002957{
Willy Tarreau56123282010-08-06 19:06:56 +02002958 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002959 return 0;
2960
Willy Tarreau37406352012-04-23 16:16:37 +02002961 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002962}
2963
Willy Tarreaua5e37562011-12-16 17:06:15 +01002964/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002965 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002966 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002967 */
2968static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002969acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002970 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002971{
2972 struct stktable_key *key;
2973
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002974 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002975 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002976 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002977
Willy Tarreau24e32d82012-04-23 23:55:44 +02002978 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002979 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002980}
2981
Willy Tarreaua5e37562011-12-16 17:06:15 +01002982/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002983static int
Willy Tarreau37406352012-04-23 16:16:37 +02002984acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002985{
Willy Tarreau37406352012-04-23 16:16:37 +02002986 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002987 smp->type = SMP_T_UINT;
2988 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002989 if (ts != NULL) {
2990 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2991 if (!ptr)
2992 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002993 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002994 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2995 }
2996 return 1;
2997}
2998
Willy Tarreaua5e37562011-12-16 17:06:15 +01002999/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003000 * the configured period.
3001 */
3002static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003003acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003004 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003005{
Willy Tarreau56123282010-08-06 19:06:56 +02003006 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003007 return 0;
3008
Willy Tarreau37406352012-04-23 16:16:37 +02003009 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003010}
3011
Willy Tarreaua5e37562011-12-16 17:06:15 +01003012/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02003013 * the configured period.
3014 */
3015static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003016acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003017 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003018{
Willy Tarreau56123282010-08-06 19:06:56 +02003019 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003020 return 0;
3021
Willy Tarreau37406352012-04-23 16:16:37 +02003022 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003023}
3024
Willy Tarreaua5e37562011-12-16 17:06:15 +01003025/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003026 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003027 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003028 */
3029static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003030acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003031 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003032{
3033 struct stktable_key *key;
3034
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003035 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003036 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003037 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003038
Willy Tarreau24e32d82012-04-23 23:55:44 +02003039 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003040 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003041}
3042
Willy Tarreaua5e37562011-12-16 17:06:15 +01003043/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003044static int
Willy Tarreau37406352012-04-23 16:16:37 +02003045acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003046{
Willy Tarreau37406352012-04-23 16:16:37 +02003047 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003048 smp->type = SMP_T_UINT;
3049 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003050 if (ts != NULL) {
3051 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3052 if (!ptr)
3053 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003054 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003055 }
3056 return 1;
3057}
3058
Willy Tarreaua5e37562011-12-16 17:06:15 +01003059/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003060static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003061acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003062 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003063{
Willy Tarreau56123282010-08-06 19:06:56 +02003064 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003065 return 0;
3066
Willy Tarreau37406352012-04-23 16:16:37 +02003067 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003068}
3069
Willy Tarreaua5e37562011-12-16 17:06:15 +01003070/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003071static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003072acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003073 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003074{
Willy Tarreau56123282010-08-06 19:06:56 +02003075 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003076 return 0;
3077
Willy Tarreau37406352012-04-23 16:16:37 +02003078 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003079}
3080
Willy Tarreaua5e37562011-12-16 17:06:15 +01003081/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003082 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003083 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003084 */
3085static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003086acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003087 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003088{
3089 struct stktable_key *key;
3090
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003091 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003092 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003093 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003094
Willy Tarreau24e32d82012-04-23 23:55:44 +02003095 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003096 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003097}
3098
Willy Tarreaua5e37562011-12-16 17:06:15 +01003099/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003100static int
Willy Tarreau37406352012-04-23 16:16:37 +02003101acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003102{
Willy Tarreau37406352012-04-23 16:16:37 +02003103 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003104 smp->type = SMP_T_UINT;
3105 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003106 if (ts != NULL) {
3107 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
3108 if (!ptr)
3109 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003110 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003111 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3112 }
3113 return 1;
3114}
3115
Willy Tarreaua5e37562011-12-16 17:06:15 +01003116/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003117 * the configured period.
3118 */
3119static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003120acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003121 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003122{
Willy Tarreau56123282010-08-06 19:06:56 +02003123 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003124 return 0;
3125
Willy Tarreau37406352012-04-23 16:16:37 +02003126 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003127}
3128
Willy Tarreaua5e37562011-12-16 17:06:15 +01003129/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003130 * the configured period.
3131 */
3132static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003133acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003134 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003135{
Willy Tarreau56123282010-08-06 19:06:56 +02003136 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003137 return 0;
3138
Willy Tarreau37406352012-04-23 16:16:37 +02003139 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003140}
3141
Willy Tarreaua5e37562011-12-16 17:06:15 +01003142/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003143 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003144 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003145 */
3146static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003147acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003148 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003149{
3150 struct stktable_key *key;
3151
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003152 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003153 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003154 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003155
Willy Tarreau24e32d82012-04-23 23:55:44 +02003156 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003157 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003158}
3159
Willy Tarreaua5e37562011-12-16 17:06:15 +01003160/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003161static int
Willy Tarreau37406352012-04-23 16:16:37 +02003162acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003163{
Willy Tarreau37406352012-04-23 16:16:37 +02003164 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003165 smp->type = SMP_T_UINT;
3166 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003167 if (ts != NULL) {
3168 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3169 if (!ptr)
3170 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003171 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003172 }
3173 return 1;
3174}
3175
Willy Tarreaua5e37562011-12-16 17:06:15 +01003176/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003177static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003178acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003179 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003180{
Willy Tarreau56123282010-08-06 19:06:56 +02003181 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003182 return 0;
3183
Willy Tarreau37406352012-04-23 16:16:37 +02003184 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003185}
3186
Willy Tarreaua5e37562011-12-16 17:06:15 +01003187/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003188static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003189acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003190 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003191{
Willy Tarreau56123282010-08-06 19:06:56 +02003192 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003193 return 0;
3194
Willy Tarreau37406352012-04-23 16:16:37 +02003195 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003196}
3197
Willy Tarreaua5e37562011-12-16 17:06:15 +01003198/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003199 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003200 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003201 */
3202static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003203acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003204 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003205{
3206 struct stktable_key *key;
3207
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003208 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003209 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003210 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003211
Willy Tarreau24e32d82012-04-23 23:55:44 +02003212 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003213 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003214}
3215
Willy Tarreaua5e37562011-12-16 17:06:15 +01003216/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003217static int
Willy Tarreau37406352012-04-23 16:16:37 +02003218acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003219{
Willy Tarreau37406352012-04-23 16:16:37 +02003220 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003221 smp->type = SMP_T_UINT;
3222 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003223 if (ts != NULL) {
3224 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3225 if (!ptr)
3226 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003227 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003228 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3229 }
3230 return 1;
3231}
3232
Willy Tarreaua5e37562011-12-16 17:06:15 +01003233/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003234 * the configured period.
3235 */
3236static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003237acl_fetch_sc1_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003238 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003239{
Willy Tarreau56123282010-08-06 19:06:56 +02003240 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003241 return 0;
3242
Willy Tarreau37406352012-04-23 16:16:37 +02003243 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003244}
3245
Willy Tarreaua5e37562011-12-16 17:06:15 +01003246/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003247 * the configured period.
3248 */
3249static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003250acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003251 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003252{
Willy Tarreau56123282010-08-06 19:06:56 +02003253 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003254 return 0;
3255
Willy Tarreau37406352012-04-23 16:16:37 +02003256 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003257}
3258
Willy Tarreaua5e37562011-12-16 17:06:15 +01003259/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003260 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003261 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003262 */
3263static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003264acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003265 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003266{
3267 struct stktable_key *key;
3268
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003269 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003270 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003271 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003272
Willy Tarreau24e32d82012-04-23 23:55:44 +02003273 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003274 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003275}
3276
Willy Tarreaua5e37562011-12-16 17:06:15 +01003277/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003278static int
Willy Tarreau37406352012-04-23 16:16:37 +02003279acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003280{
Willy Tarreau37406352012-04-23 16:16:37 +02003281 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003282 smp->type = SMP_T_UINT;
3283 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003284
3285 if (ts != NULL) {
3286 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3287 if (!ptr)
3288 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003289 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003290 }
3291 return 1;
3292}
3293
Willy Tarreaua5e37562011-12-16 17:06:15 +01003294/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003295 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003296 */
3297static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003298acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003299 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003300{
Willy Tarreau56123282010-08-06 19:06:56 +02003301 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003302 return 0;
3303
Willy Tarreau37406352012-04-23 16:16:37 +02003304 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003305}
3306
Willy Tarreaua5e37562011-12-16 17:06:15 +01003307/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003308 * session's tracked BE counters.
3309 */
3310static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003311acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003312 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003313{
Willy Tarreau56123282010-08-06 19:06:56 +02003314 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003315 return 0;
3316
Willy Tarreau37406352012-04-23 16:16:37 +02003317 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003318}
3319
Willy Tarreaua5e37562011-12-16 17:06:15 +01003320/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003321 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003322 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003323 */
3324static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003325acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003326 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003327{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003328 struct stktable_key *key;
3329
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003330 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003331 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003332 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003333
Willy Tarreau24e32d82012-04-23 23:55:44 +02003334 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003335 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003336}
3337
Willy Tarreaua5e37562011-12-16 17:06:15 +01003338/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003339 * configured period.
3340 */
3341static int
Willy Tarreau37406352012-04-23 16:16:37 +02003342acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003343{
Willy Tarreau37406352012-04-23 16:16:37 +02003344 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003345 smp->type = SMP_T_UINT;
3346 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003347 if (ts != NULL) {
3348 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3349 if (!ptr)
3350 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003351 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003352 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3353 }
3354 return 1;
3355}
3356
Willy Tarreaua5e37562011-12-16 17:06:15 +01003357/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003358 * counters over the configured period.
3359 */
3360static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003361acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003362 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003363{
Willy Tarreau56123282010-08-06 19:06:56 +02003364 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003365 return 0;
3366
Willy Tarreau37406352012-04-23 16:16:37 +02003367 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003368}
3369
Willy Tarreaua5e37562011-12-16 17:06:15 +01003370/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003371 * counters over the configured period.
3372 */
3373static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003374acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003375 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003376{
Willy Tarreau56123282010-08-06 19:06:56 +02003377 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003378 return 0;
3379
Willy Tarreau37406352012-04-23 16:16:37 +02003380 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003381}
3382
Willy Tarreaua5e37562011-12-16 17:06:15 +01003383/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003384 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003385 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003386 */
3387static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003388acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003389 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003390{
3391 struct stktable_key *key;
3392
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003393 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003394 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003395 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003396
Willy Tarreau24e32d82012-04-23 23:55:44 +02003397 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003398 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003399}
3400
Willy Tarreaua5e37562011-12-16 17:06:15 +01003401/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003402static int
Willy Tarreau37406352012-04-23 16:16:37 +02003403acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003404{
Willy Tarreau37406352012-04-23 16:16:37 +02003405 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003406 smp->type = SMP_T_UINT;
3407 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003408
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003409 if (ts != NULL) {
3410 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003411 if (!ptr)
3412 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003413 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003414 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003415 return 1;
3416}
3417
Willy Tarreaua5e37562011-12-16 17:06:15 +01003418/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003419 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003420 */
3421static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003422acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003423 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003424{
Willy Tarreau56123282010-08-06 19:06:56 +02003425 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003426 return 0;
3427
Willy Tarreau37406352012-04-23 16:16:37 +02003428 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003429}
3430
Willy Tarreaua5e37562011-12-16 17:06:15 +01003431/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003432 * tracked BE counters.
3433 */
3434static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003435acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003436 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003437{
Willy Tarreau56123282010-08-06 19:06:56 +02003438 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003439 return 0;
3440
Willy Tarreau37406352012-04-23 16:16:37 +02003441 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003442}
3443
Willy Tarreaua5e37562011-12-16 17:06:15 +01003444/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003445 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003446 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003447 */
3448static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003449acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003450 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003451{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003452 struct stktable_key *key;
3453
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003454 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003455 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003456 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003457
Willy Tarreau24e32d82012-04-23 23:55:44 +02003458 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003459 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003460}
3461
Willy Tarreaua5e37562011-12-16 17:06:15 +01003462/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003463 * configured period.
3464 */
3465static int
Willy Tarreau37406352012-04-23 16:16:37 +02003466acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003467{
Willy Tarreau37406352012-04-23 16:16:37 +02003468 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003469 smp->type = SMP_T_UINT;
3470 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003471 if (ts != NULL) {
3472 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3473 if (!ptr)
3474 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003475 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003476 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3477 }
3478 return 1;
3479}
3480
Willy Tarreaua5e37562011-12-16 17:06:15 +01003481/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003482 * over the configured period.
3483 */
3484static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003485acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003486 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003487{
Willy Tarreau56123282010-08-06 19:06:56 +02003488 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003489 return 0;
3490
Willy Tarreau37406352012-04-23 16:16:37 +02003491 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003492}
3493
Willy Tarreaua5e37562011-12-16 17:06:15 +01003494/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003495 * over the configured period.
3496 */
3497static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003498acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003499 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003500{
Willy Tarreau56123282010-08-06 19:06:56 +02003501 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003502 return 0;
3503
Willy Tarreau37406352012-04-23 16:16:37 +02003504 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003505}
3506
Willy Tarreaua5e37562011-12-16 17:06:15 +01003507/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003508 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003509 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003510 */
3511static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003512acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003513 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003514{
3515 struct stktable_key *key;
3516
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003517 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003518 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003519 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003520
Willy Tarreau24e32d82012-04-23 23:55:44 +02003521 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003522 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003523}
3524
Willy Tarreau34db1082012-04-19 17:16:54 +02003525/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003526 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003527 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003528static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003529acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003530 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003531{
Willy Tarreau37406352012-04-23 16:16:37 +02003532 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003533 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003534 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003535 return 1;
3536}
3537
Willy Tarreau34db1082012-04-19 17:16:54 +02003538/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003539 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003540 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003541static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003542acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003543 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003544{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003545 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003546 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003547 smp->type = SMP_T_UINT;
3548 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003549 return 1;
3550}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003551
Willy Tarreau61612d42012-04-19 18:42:05 +02003552/* Note: must not be declared <const> as its list will be overwritten.
3553 * Please take care of keeping this list alphabetically sorted.
3554 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003555static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003556 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3557 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3558 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3559 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3560 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3561 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3562 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3563 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3564 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3565 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3566 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3567 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3568 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3569 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3570 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3571 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3572 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3573 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3574 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3575 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3576 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3577 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3578 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3579 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3580 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3581 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3582 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3583 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3584 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3585 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3586 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3587 { "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 +02003588 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3589 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3590 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3591 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3592 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3593 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3594 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3595 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3596 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3597 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3598 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3599 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3600 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3601 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3602 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3603 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3604 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3605 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3606 { "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 +02003607 { NULL, NULL, NULL, NULL },
3608}};
3609
3610
Willy Tarreau56123282010-08-06 19:06:56 +02003611/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003612 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3613 * <prm> struct is fed with the table name if any. If unspecified, the caller
3614 * will assume that the current proxy's table is used.
3615 */
3616int parse_track_counters(char **args, int *arg,
3617 int section_type, struct proxy *curpx,
3618 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003619 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003620{
Willy Tarreau12785782012-04-27 21:37:17 +02003621 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003622
Willy Tarreau56123282010-08-06 19:06:56 +02003623 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003624 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003625 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003626 */
3627 while (args[*arg]) {
3628 if (strcmp(args[*arg], "src") == 0) {
3629 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003630 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003631 }
3632 else if (strcmp(args[*arg], "table") == 0) {
3633 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003634 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003635 return -1;
3636 }
3637 /* we copy the table name for now, it will be resolved later */
3638 prm->table.n = strdup(args[*arg + 1]);
3639 (*arg)++;
3640 }
3641 else {
3642 /* unhandled keywords are handled by the caller */
3643 break;
3644 }
3645 (*arg)++;
3646 }
3647
Willy Tarreau12785782012-04-27 21:37:17 +02003648 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003649 memprintf(err,
3650 "tracking key not specified (found %s, only 'src' is supported)",
3651 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003652 return -1;
3653 }
3654
3655 return 0;
3656}
3657
Willy Tarreau8b22a712010-06-18 17:46:06 +02003658__attribute__((constructor))
3659static void __session_init(void)
3660{
3661 acl_register_keywords(&acl_kws);
3662}
3663
Willy Tarreaubaaee002006-06-26 02:48:02 +02003664/*
3665 * Local variables:
3666 * c-indent-level: 8
3667 * c-basic-offset: 8
3668 * End:
3669 */