blob: 55f976ba1fca5b593463d1a36c584bcefcb04feb [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) {
William Lallemand1c2d6222012-10-30 15:52:53 +0100568 s->comp_algo->end(&s->comp_ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +0200569 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 Tarreaue3224e82012-10-29 22:41:31 +0100765 if (unlikely(si->ob->flags & CF_WRITE_PARTIAL)) {
766 /* Some data were sent past the connection establishment,
767 * so we need to pretend we're established to log correctly
768 * and let later states handle the failure.
769 */
770 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
771 si->exp = TICK_ETERNITY;
772 si->state = SI_ST_EST;
773 si->err_type = SI_ET_DATA_ERR;
774 si->ib->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
775 si->err_loc = target_srv(&s->target);
776 return 1;
777 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100778 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100779 si->state = SI_ST_CER;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200780 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100781
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200782 conn_xprt_close(si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200783 if (si->release)
784 si->release(si);
785
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100786 if (si->err_type)
787 return 0;
788
Willy Tarreau827aee92011-03-10 16:55:02 +0100789 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100790 if (si->flags & SI_FL_ERR)
791 si->err_type = SI_ET_CONN_ERR;
792 else
793 si->err_type = SI_ET_CONN_TO;
794 return 0;
795 }
796
797 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200798 if (unlikely((rep->flags & CF_SHUTW) ||
799 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
800 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100801 s->be->options & PR_O_ABRT_CLOSE)))) {
802 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200803 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100804 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100805 si->err_loc = target_srv(&s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100806 if (s->srv_error)
807 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100808 return 1;
809 }
810
811 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200812 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100813 return 1;
814
815 /* OK, this means that a connection succeeded. The caller will be
816 * responsible for handling the transition from CON to EST.
817 */
818 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100819 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100820 si->state = SI_ST_EST;
821 si->err_type = SI_ET_NONE;
822 si->err_loc = NULL;
823 return 1;
824}
825
826/* This function is called with (si->state == SI_ST_CER) meaning that a
827 * previous connection attempt has failed and that the file descriptor
828 * has already been released. Possible causes include asynchronous error
829 * notification and time out. Possible output states are SI_ST_CLO when
830 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
831 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
832 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
833 * marked as in error state. It returns 0.
834 */
Simon Hormandec5be42011-06-08 09:19:07 +0900835static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100836{
837 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100838 if (target_srv(&s->target)) {
839 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100840
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100841 if (s->flags & SN_CURR_SESS) {
842 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100843 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100844 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100845 }
846
847 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200848 si->conn_retries--;
849 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100850 if (!si->err_type) {
851 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100852 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100853 }
854
Willy Tarreau827aee92011-03-10 16:55:02 +0100855 if (target_srv(&s->target))
856 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100857 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100858 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100859 if (may_dequeue_tasks(target_srv(&s->target), s->be))
860 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100861
862 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200863 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200864 si->ob->flags |= CF_WRITE_ERROR;
865 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100866
867 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100868 if (s->srv_error)
869 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100870 return 0;
871 }
872
873 /* If the "redispatch" option is set on the backend, we are allowed to
874 * retry on another server for the last retry. In order to achieve this,
875 * we must mark the session unassigned, and eventually clear the DIRECT
876 * bit to ignore any persistence cookie. We won't count a retry nor a
877 * redispatch yet, because this will depend on what server is selected.
878 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100879 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100880 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100881 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100882 if (may_dequeue_tasks(target_srv(&s->target), s->be))
883 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100884
885 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100886 si->state = SI_ST_REQ;
887 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100888 if (target_srv(&s->target))
889 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100890 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100891 si->state = SI_ST_ASS;
892 }
893
894 if (si->flags & SI_FL_ERR) {
895 /* The error was an asynchronous connection error, and we will
896 * likely have to retry connecting to the same server, most
897 * likely leading to the same result. To avoid this, we wait
898 * one second before retrying.
899 */
900
901 if (!si->err_type)
902 si->err_type = SI_ET_CONN_ERR;
903
904 si->state = SI_ST_TAR;
905 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
906 return 0;
907 }
908 return 0;
909}
910
911/*
912 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200913 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200914 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100915 */
Simon Hormandec5be42011-06-08 09:19:07 +0900916static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100917{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200918 struct channel *req = si->ob;
919 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920
Willy Tarreau827aee92011-03-10 16:55:02 +0100921 if (target_srv(&s->target))
922 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100923
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100924 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100925 /* if the user wants to log as soon as possible, without counting
926 * bytes from the server, then this is the right moment. */
927 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
928 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100929 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100930 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100931 }
932 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100933 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
934 /* reset hdr_idx which was already initialized by the request.
935 * right now, the http parser does it.
936 * hdr_idx_init(&s->txn.hdr_idx);
937 */
938 }
939
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200940 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200941 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200942 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200943 /* real connections have timeouts */
944 req->wto = s->be->timeout.server;
945 rep->rto = s->be->timeout.server;
946 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100947 req->wex = TICK_ETERNITY;
948}
949
950/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
951 * Other input states are simply ignored.
952 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
953 * Flags must have previously been updated for timeouts and other conditions.
954 */
Simon Hormandec5be42011-06-08 09:19:07 +0900955static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100956{
Willy Tarreau827aee92011-03-10 16:55:02 +0100957 struct server *srv = target_srv(&s->target);
958
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100959 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 +0100960 now_ms, __FUNCTION__,
961 s,
962 s->req, s->rep,
963 s->req->rex, s->rep->wex,
964 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200965 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 +0100966
967 if (si->state == SI_ST_ASS) {
968 /* Server assigned to connection request, we have to try to connect now */
969 int conn_err;
970
971 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100972 srv = target_srv(&s->target);
973
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100974 if (conn_err == SN_ERR_NONE) {
975 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100976 if (srv)
977 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100978 return;
979 }
980
981 /* We have received a synchronous error. We might have to
982 * abort, retry immediately or redispatch.
983 */
984 if (conn_err == SN_ERR_INTERNAL) {
985 if (!si->err_type) {
986 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100987 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100988 }
989
Willy Tarreau827aee92011-03-10 16:55:02 +0100990 if (srv)
991 srv_inc_sess_ctr(srv);
992 if (srv)
993 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100994 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100995
996 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100997 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100998 if (may_dequeue_tasks(srv, s->be))
999 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001000
1001 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001002 si_shutr(si);
1003 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001004 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001005
1006 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1007
1008 /* no session was ever accounted for this server */
1009 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001010 if (s->srv_error)
1011 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001012 return;
1013 }
1014
1015 /* We are facing a retryable error, but we don't want to run a
1016 * turn-around now, as the problem is likely a source port
1017 * allocation problem, so we want to retry now.
1018 */
1019 si->state = SI_ST_CER;
1020 si->flags &= ~SI_FL_ERR;
1021 sess_update_st_cer(s, si);
1022 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1023 return;
1024 }
1025 else if (si->state == SI_ST_QUE) {
1026 /* connection request was queued, check for any update */
1027 if (!s->pend_pos) {
1028 /* The connection is not in the queue anymore. Either
1029 * we have a server connection slot available and we
1030 * go directly to the assigned state, or we need to
1031 * load-balance first and go to the INI state.
1032 */
1033 si->exp = TICK_ETERNITY;
1034 if (unlikely(!(s->flags & SN_ASSIGNED)))
1035 si->state = SI_ST_REQ;
1036 else {
1037 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1038 si->state = SI_ST_ASS;
1039 }
1040 return;
1041 }
1042
1043 /* Connection request still in queue... */
1044 if (si->flags & SI_FL_EXP) {
1045 /* ... and timeout expired */
1046 si->exp = TICK_ETERNITY;
1047 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001048 if (srv)
1049 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001050 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001051 si_shutr(si);
1052 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001053 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001054 if (!si->err_type)
1055 si->err_type = SI_ET_QUEUE_TO;
1056 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001057 if (s->srv_error)
1058 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001059 return;
1060 }
1061
1062 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001063 if ((si->ob->flags & (CF_READ_ERROR)) ||
1064 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001065 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001066 /* give up */
1067 si->exp = TICK_ETERNITY;
1068 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001069 si_shutr(si);
1070 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001071 si->err_type |= SI_ET_QUEUE_ABRT;
1072 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001073 if (s->srv_error)
1074 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001075 return;
1076 }
1077
1078 /* Nothing changed */
1079 return;
1080 }
1081 else if (si->state == SI_ST_TAR) {
1082 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001083 if ((si->ob->flags & (CF_READ_ERROR)) ||
1084 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001085 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001086 /* give up */
1087 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001088 si_shutr(si);
1089 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001090 si->err_type |= SI_ET_CONN_ABRT;
1091 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001092 if (s->srv_error)
1093 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001094 return;
1095 }
1096
1097 if (!(si->flags & SI_FL_EXP))
1098 return; /* still in turn-around */
1099
1100 si->exp = TICK_ETERNITY;
1101
1102 /* we keep trying on the same server as long as the session is
1103 * marked "assigned".
1104 * FIXME: Should we force a redispatch attempt when the server is down ?
1105 */
1106 if (s->flags & SN_ASSIGNED)
1107 si->state = SI_ST_ASS;
1108 else
1109 si->state = SI_ST_REQ;
1110 return;
1111 }
1112}
1113
Simon Hormandec5be42011-06-08 09:19:07 +09001114/* Set correct session termination flags in case no analyser has done it. It
1115 * also counts a failed request if the server state has not reached the request
1116 * stage.
1117 */
1118static void sess_set_term_flags(struct session *s)
1119{
1120 if (!(s->flags & SN_FINST_MASK)) {
1121 if (s->si[1].state < SI_ST_REQ) {
1122
1123 s->fe->fe_counters.failed_req++;
1124 if (s->listener->counters)
1125 s->listener->counters->failed_req++;
1126
1127 s->flags |= SN_FINST_R;
1128 }
1129 else if (s->si[1].state == SI_ST_QUE)
1130 s->flags |= SN_FINST_Q;
1131 else if (s->si[1].state < SI_ST_EST)
1132 s->flags |= SN_FINST_C;
1133 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1134 s->flags |= SN_FINST_D;
1135 else
1136 s->flags |= SN_FINST_L;
1137 }
1138}
1139
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001140/* This function initiates a server connection request on a stream interface
1141 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1142 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1143 * or SI_ST_CLO upon error.
1144 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001145static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1146{
1147 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 +01001148 now_ms, __FUNCTION__,
1149 s,
1150 s->req, s->rep,
1151 s->req->rex, s->rep->wex,
1152 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001153 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 +01001154
1155 if (si->state != SI_ST_REQ)
1156 return;
1157
1158 /* Try to assign a server */
1159 if (srv_redispatch_connect(s) != 0) {
1160 /* We did not get a server. Either we queued the
1161 * connection request, or we encountered an error.
1162 */
1163 if (si->state == SI_ST_QUE)
1164 return;
1165
1166 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001167 si_shutr(si);
1168 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001169 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001170 if (!si->err_type)
1171 si->err_type = SI_ET_CONN_OTHER;
1172 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001173 if (s->srv_error)
1174 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001175 return;
1176 }
1177
1178 /* The server is assigned */
1179 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1180 si->state = SI_ST_ASS;
1181}
1182
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001183/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001184 * if appropriate. The default_backend rule is also considered, then the
1185 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001186 * It returns 1 if the processing can continue on next analysers, or zero if it
1187 * either needs more data or wants to immediately abort the request.
1188 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001189static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001190{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001191 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001192
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001193 req->analysers &= ~an_bit;
1194 req->analyse_exp = TICK_ETERNITY;
1195
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001196 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 +02001197 now_ms, __FUNCTION__,
1198 s,
1199 req,
1200 req->rex, req->wex,
1201 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001202 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001203 req->analysers);
1204
1205 /* now check whether we have some switching rules for this request */
1206 if (!(s->flags & SN_BE_ASSIGNED)) {
1207 struct switching_rule *rule;
1208
1209 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1210 int ret;
1211
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001212 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 +02001213 ret = acl_pass(ret);
1214 if (rule->cond->pol == ACL_COND_UNLESS)
1215 ret = !ret;
1216
1217 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001218 if (!session_set_backend(s, rule->be.backend))
1219 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001220 break;
1221 }
1222 }
1223
1224 /* To ensure correct connection accounting on the backend, we
1225 * have to assign one if it was not set (eg: a listen). This
1226 * measure also takes care of correctly setting the default
1227 * backend if any.
1228 */
1229 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001230 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1231 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001232 }
1233
Willy Tarreaufb356202010-08-03 14:02:05 +02001234 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1235 if (s->fe == s->be) {
1236 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001237 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001238 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001239
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001240 /* 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 +01001241 * persistence rule, and report that in the session.
1242 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001243 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001244 int ret = 1;
1245
1246 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001247 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 +01001248 ret = acl_pass(ret);
1249 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1250 ret = !ret;
1251 }
1252
1253 if (ret) {
1254 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001255 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1256 s->flags |= SN_FORCE_PRST;
1257 } else {
1258 s->flags |= SN_IGNORE_PRST;
1259 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001260 break;
1261 }
1262 }
1263
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001264 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001265
1266 sw_failed:
1267 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001268 channel_abort(s->req);
1269 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001270
1271 if (!(s->flags & SN_ERR_MASK))
1272 s->flags |= SN_ERR_RESOURCE;
1273 if (!(s->flags & SN_FINST_MASK))
1274 s->flags |= SN_FINST_R;
1275
1276 s->txn.status = 500;
1277 s->req->analysers = 0;
1278 s->req->analyse_exp = TICK_ETERNITY;
1279 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001280}
1281
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001282/* This stream analyser works on a request. It applies all use-server rules on
1283 * it then returns 1. The data must already be present in the buffer otherwise
1284 * they won't match. It always returns 1.
1285 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001286static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001287{
1288 struct proxy *px = s->be;
1289 struct server_rule *rule;
1290
1291 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1292 now_ms, __FUNCTION__,
1293 s,
1294 req,
1295 req->rex, req->wex,
1296 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001297 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001298 req->analysers);
1299
1300 if (!(s->flags & SN_ASSIGNED)) {
1301 list_for_each_entry(rule, &px->server_rules, list) {
1302 int ret;
1303
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001304 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 +02001305 ret = acl_pass(ret);
1306 if (rule->cond->pol == ACL_COND_UNLESS)
1307 ret = !ret;
1308
1309 if (ret) {
1310 struct server *srv = rule->srv.ptr;
1311
1312 if ((srv->state & SRV_RUNNING) ||
1313 (px->options & PR_O_PERSIST) ||
1314 (s->flags & SN_FORCE_PRST)) {
1315 s->flags |= SN_DIRECT | SN_ASSIGNED;
1316 set_target_server(&s->target, srv);
1317 break;
1318 }
1319 /* if the server is not UP, let's go on with next rules
1320 * just in case another one is suited.
1321 */
1322 }
1323 }
1324 }
1325
1326 req->analysers &= ~an_bit;
1327 req->analyse_exp = TICK_ETERNITY;
1328 return 1;
1329}
1330
Emeric Brun1d33b292010-01-04 15:47:17 +01001331/* This stream analyser works on a request. It applies all sticking rules on
1332 * it then returns 1. The data must already be present in the buffer otherwise
1333 * they won't match. It always returns 1.
1334 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001335static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001336{
1337 struct proxy *px = s->be;
1338 struct sticking_rule *rule;
1339
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001340 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 +01001341 now_ms, __FUNCTION__,
1342 s,
1343 req,
1344 req->rex, req->wex,
1345 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001346 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001347 req->analysers);
1348
1349 list_for_each_entry(rule, &px->sticking_rules, list) {
1350 int ret = 1 ;
1351 int i;
1352
1353 for (i = 0; i < s->store_count; i++) {
1354 if (rule->table.t == s->store[i].table)
1355 break;
1356 }
1357
1358 if (i != s->store_count)
1359 continue;
1360
1361 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001362 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001363 ret = acl_pass(ret);
1364 if (rule->cond->pol == ACL_COND_UNLESS)
1365 ret = !ret;
1366 }
1367
1368 if (ret) {
1369 struct stktable_key *key;
1370
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001371 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 +01001372 if (!key)
1373 continue;
1374
1375 if (rule->flags & STK_IS_MATCH) {
1376 struct stksess *ts;
1377
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001378 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001379 if (!(s->flags & SN_ASSIGNED)) {
1380 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001381 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001382
1383 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001384 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1385 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001386 if (node) {
1387 struct server *srv;
1388
1389 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001390 if ((srv->state & SRV_RUNNING) ||
1391 (px->options & PR_O_PERSIST) ||
1392 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001393 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001394 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001395 }
1396 }
1397 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001398 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001399 }
1400 }
1401 if (rule->flags & STK_IS_STORE) {
1402 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1403 struct stksess *ts;
1404
1405 ts = stksess_new(rule->table.t, key);
1406 if (ts) {
1407 s->store[s->store_count].table = rule->table.t;
1408 s->store[s->store_count++].ts = ts;
1409 }
1410 }
1411 }
1412 }
1413 }
1414
1415 req->analysers &= ~an_bit;
1416 req->analyse_exp = TICK_ETERNITY;
1417 return 1;
1418}
1419
1420/* This stream analyser works on a response. It applies all store rules on it
1421 * then returns 1. The data must already be present in the buffer otherwise
1422 * they won't match. It always returns 1.
1423 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001424static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001425{
1426 struct proxy *px = s->be;
1427 struct sticking_rule *rule;
1428 int i;
1429
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001430 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 +01001431 now_ms, __FUNCTION__,
1432 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001433 rep,
1434 rep->rex, rep->wex,
1435 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001436 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001437 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001438
1439 list_for_each_entry(rule, &px->storersp_rules, list) {
1440 int ret = 1 ;
1441 int storereqidx = -1;
1442
1443 for (i = 0; i < s->store_count; i++) {
1444 if (rule->table.t == s->store[i].table) {
1445 if (!(s->store[i].flags))
1446 storereqidx = i;
1447 break;
1448 }
1449 }
1450
1451 if ((i != s->store_count) && (storereqidx == -1))
1452 continue;
1453
1454 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001455 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001456 ret = acl_pass(ret);
1457 if (rule->cond->pol == ACL_COND_UNLESS)
1458 ret = !ret;
1459 }
1460
1461 if (ret) {
1462 struct stktable_key *key;
1463
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001464 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 +01001465 if (!key)
1466 continue;
1467
1468 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001469 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001470 s->store[storereqidx].flags = 1;
1471 }
1472 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1473 struct stksess *ts;
1474
1475 ts = stksess_new(rule->table.t, key);
1476 if (ts) {
1477 s->store[s->store_count].table = rule->table.t;
1478 s->store[s->store_count].flags = 1;
1479 s->store[s->store_count++].ts = ts;
1480 }
1481 }
1482 }
1483 }
1484
1485 /* process store request and store response */
1486 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001487 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001488 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001489
Simon Hormanfa461682011-06-25 09:39:49 +09001490 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1491 stksess_free(s->store[i].table, s->store[i].ts);
1492 s->store[i].ts = NULL;
1493 continue;
1494 }
1495
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001496 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1497 if (ts) {
1498 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001499 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001500 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001501 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001502 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001503 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001504
1505 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001506 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001507 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001508 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001509 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001510
1511 rep->analysers &= ~an_bit;
1512 rep->analyse_exp = TICK_ETERNITY;
1513 return 1;
1514}
1515
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001516/* This macro is very specific to the function below. See the comments in
1517 * process_session() below to understand the logic and the tests.
1518 */
1519#define UPDATE_ANALYSERS(real, list, back, flag) { \
1520 list = (((list) & ~(flag)) | ~(back)) & (real); \
1521 back = real; \
1522 if (!(list)) \
1523 break; \
1524 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1525 continue; \
1526}
1527
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001528/* Processes the client, server, request and response jobs of a session task,
1529 * then puts it back to the wait queue in a clean state, or cleans up its
1530 * resources if it must be deleted. Returns in <next> the date the task wants
1531 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1532 * nothing too many times, the request and response buffers flags are monitored
1533 * and each function is called only if at least another function has changed at
1534 * least one flag it is interested in.
1535 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001536struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001537{
Willy Tarreau827aee92011-03-10 16:55:02 +01001538 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001539 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001540 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001541 unsigned int rq_prod_last, rq_cons_last;
1542 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001543 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001544
1545 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1546 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1547
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001548 /* this data may be no longer valid, clear it */
1549 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1550
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001551 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001552 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001553
1554 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001555 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1556 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001557
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001558 /* we don't want the stream interface functions to recursively wake us up */
1559 if (s->req->prod->owner == t)
1560 s->req->prod->flags |= SI_FL_DONT_WAKE;
1561 if (s->req->cons->owner == t)
1562 s->req->cons->flags |= SI_FL_DONT_WAKE;
1563
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001564 /* 1a: Check for low level timeouts if needed. We just set a flag on
1565 * stream interfaces when their timeouts have expired.
1566 */
1567 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1568 stream_int_check_timeouts(&s->si[0]);
1569 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001570
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001571 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001572 * for future reads or writes. Note: this will also concern upper layers
1573 * but we do not touch any other flag. We must be careful and correctly
1574 * detect state changes when calling them.
1575 */
1576
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001577 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001578
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001579 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001580 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001581 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001582 }
1583
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001584 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001585 if (s->req->prod->flags & SI_FL_NOHALF)
1586 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001587 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001588 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001589
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001590 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001591
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001592 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001593 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001594 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001595 }
1596
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001597 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001598 if (s->rep->prod->flags & SI_FL_NOHALF)
1599 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001600 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001601 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001602 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001603
1604 /* 1b: check for low-level errors reported at the stream interface.
1605 * First we check if it's a retryable error (in which case we don't
1606 * want to tell the buffer). Otherwise we report the error one level
1607 * upper by setting flags into the buffers. Note that the side towards
1608 * the client cannot have connect (hence retryable) errors. Also, the
1609 * connection setup code must be able to deal with any type of abort.
1610 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001611 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001612 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1613 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001614 si_shutr(&s->si[0]);
1615 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001616 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001617 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001618 s->be->be_counters.cli_aborts++;
1619 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001620 if (srv)
1621 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001622 if (!(s->flags & SN_ERR_MASK))
1623 s->flags |= SN_ERR_CLICL;
1624 if (!(s->flags & SN_FINST_MASK))
1625 s->flags |= SN_FINST_D;
1626 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001627 }
1628 }
1629
1630 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1631 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001632 si_shutr(&s->si[1]);
1633 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001634 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001635 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001636 if (srv)
1637 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001638 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001639 s->be->be_counters.srv_aborts++;
1640 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001641 if (srv)
1642 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001643 if (!(s->flags & SN_ERR_MASK))
1644 s->flags |= SN_ERR_SRVCL;
1645 if (!(s->flags & SN_FINST_MASK))
1646 s->flags |= SN_FINST_D;
1647 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001648 }
1649 /* note: maybe we should process connection errors here ? */
1650 }
1651
1652 if (s->si[1].state == SI_ST_CON) {
1653 /* we were trying to establish a connection on the server side,
1654 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1655 */
1656 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1657 sess_update_st_cer(s, &s->si[1]);
1658 else if (s->si[1].state == SI_ST_EST)
1659 sess_establish(s, &s->si[1]);
1660
1661 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1662 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1663 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1664 */
1665 }
1666
Willy Tarreau815a9b22010-07-27 17:15:12 +02001667 rq_prod_last = s->si[0].state;
1668 rq_cons_last = s->si[1].state;
1669 rp_cons_last = s->si[0].state;
1670 rp_prod_last = s->si[1].state;
1671
1672 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001673 /* Check for connection closure */
1674
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001675 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001676 "[%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 +01001677 now_ms, __FUNCTION__, __LINE__,
1678 t,
1679 s, s->flags,
1680 s->req, s->rep,
1681 s->req->rex, s->rep->wex,
1682 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001683 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 +01001684 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001685 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001686
1687 /* nothing special to be done on client side */
1688 if (unlikely(s->req->prod->state == SI_ST_DIS))
1689 s->req->prod->state = SI_ST_CLO;
1690
1691 /* When a server-side connection is released, we have to count it and
1692 * check for pending connections on this server.
1693 */
1694 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1695 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001696 srv = target_srv(&s->target);
1697 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001698 if (s->flags & SN_CURR_SESS) {
1699 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001700 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001701 }
1702 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001703 if (may_dequeue_tasks(srv, s->be))
1704 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001705 }
1706 }
1707
1708 /*
1709 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1710 * at this point.
1711 */
1712
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001713 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001714 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001715 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1716 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001717 s->si[0].state != rq_prod_last ||
1718 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001719 unsigned int flags = s->req->flags;
1720
1721 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001722 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001723 unsigned int ana_list;
1724 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001725
Willy Tarreau90deb182010-01-07 00:20:41 +01001726 /* it's up to the analysers to stop new connections,
1727 * disable reading or closing. Note: if an analyser
1728 * disables any of these bits, it is responsible for
1729 * enabling them again when it disables itself, so
1730 * that other analysers are called in similar conditions.
1731 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001732 channel_auto_read(s->req);
1733 channel_auto_connect(s->req);
1734 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001735
1736 /* We will call all analysers for which a bit is set in
1737 * s->req->analysers, following the bit order from LSB
1738 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001739 * the list when not needed. Any analyser may return 0
1740 * to break out of the loop, either because of missing
1741 * data to take a decision, or because it decides to
1742 * kill the session. We loop at least once through each
1743 * analyser, and we may loop again if other analysers
1744 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001745 *
1746 * We build a list of analysers to run. We evaluate all
1747 * of these analysers in the order of the lower bit to
1748 * the higher bit. This ordering is very important.
1749 * An analyser will often add/remove other analysers,
1750 * including itself. Any changes to itself have no effect
1751 * on the loop. If it removes any other analysers, we
1752 * want those analysers not to be called anymore during
1753 * this loop. If it adds an analyser that is located
1754 * after itself, we want it to be scheduled for being
1755 * processed during the loop. If it adds an analyser
1756 * which is located before it, we want it to switch to
1757 * it immediately, even if it has already been called
1758 * once but removed since.
1759 *
1760 * In order to achieve this, we compare the analyser
1761 * list after the call with a copy of it before the
1762 * call. The work list is fed with analyser bits that
1763 * appeared during the call. Then we compare previous
1764 * work list with the new one, and check the bits that
1765 * appeared. If the lowest of these bits is lower than
1766 * the current bit, it means we have enabled a previous
1767 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001768 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001769
1770 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001771 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001772 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001773
Willy Tarreaufb356202010-08-03 14:02:05 +02001774 if (ana_list & AN_REQ_INSPECT_FE) {
1775 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001776 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001777 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001778 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001779
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001780 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001781 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001782 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001783 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001784 }
1785
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001786 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001787 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1788 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001789 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001790 }
1791
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001792 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001793 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1794 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001795 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001796 }
1797
Willy Tarreaufb356202010-08-03 14:02:05 +02001798 if (ana_list & AN_REQ_INSPECT_BE) {
1799 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1800 break;
1801 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1802 }
1803
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001804 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001805 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1806 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001807 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001808 }
1809
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001810 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001811 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001812 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001813 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001814 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001815
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001816 if (ana_list & AN_REQ_SRV_RULES) {
1817 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1818 break;
1819 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1820 }
1821
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001822 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001823 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1824 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001825 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001826 }
1827
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001828 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001829 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001830 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001831 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001832 }
Emeric Brun647caf12009-06-30 17:57:00 +02001833
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001834 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001835 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1836 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001837 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001838 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001839
Emeric Brun1d33b292010-01-04 15:47:17 +01001840 if (ana_list & AN_REQ_STICKING_RULES) {
1841 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1842 break;
1843 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1844 }
1845
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001846 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001847 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1848 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001849 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001850 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001851 break;
1852 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001853 }
Willy Tarreau84455332009-03-15 22:34:05 +01001854
Willy Tarreau815a9b22010-07-27 17:15:12 +02001855 rq_prod_last = s->si[0].state;
1856 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001857 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001858 rqf_last = s->req->flags;
1859
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001860 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001861 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001862 }
1863
Willy Tarreau576507f2010-01-07 00:09:04 +01001864 /* we'll monitor the request analysers while parsing the response,
1865 * because some response analysers may indirectly enable new request
1866 * analysers (eg: HTTP keep-alive).
1867 */
1868 req_ana_back = s->req->analysers;
1869
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001870 resync_response:
1871 /* Analyse response */
1872
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001873 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001874 /* In inject mode, we wake up everytime something has
1875 * happened on the write side of the buffer.
1876 */
1877 unsigned int flags = s->rep->flags;
1878
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001879 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001880 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001881 s->rep->hijacker(s, s->rep);
1882 }
1883
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001884 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001885 rpf_last = s->rep->flags;
1886 goto resync_response;
1887 }
1888 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001889 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1890 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001891 s->si[0].state != rp_cons_last ||
1892 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001893 unsigned int flags = s->rep->flags;
1894
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001895 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001896 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1897 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1898 * for some free space in the response buffer, so we might need to call
1899 * it when something changes in the response buffer, but still we pass
1900 * it the request buffer. Note that the SI state might very well still
1901 * be zero due to us returning a flow of redirects!
1902 */
1903 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001904 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001905 }
1906
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001907 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001908 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001909 unsigned int ana_list;
1910 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001911
Willy Tarreau90deb182010-01-07 00:20:41 +01001912 /* it's up to the analysers to stop disable reading or
1913 * closing. Note: if an analyser disables any of these
1914 * bits, it is responsible for enabling them again when
1915 * it disables itself, so that other analysers are called
1916 * in similar conditions.
1917 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001918 channel_auto_read(s->rep);
1919 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001920
1921 /* We will call all analysers for which a bit is set in
1922 * s->rep->analysers, following the bit order from LSB
1923 * to MSB. The analysers must remove themselves from
1924 * the list when not needed. Any analyser may return 0
1925 * to break out of the loop, either because of missing
1926 * data to take a decision, or because it decides to
1927 * kill the session. We loop at least once through each
1928 * analyser, and we may loop again if other analysers
1929 * are added in the middle.
1930 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001931
1932 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001933 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001934 /* Warning! ensure that analysers are always placed in ascending order! */
1935
Emeric Brun97679e72010-09-23 17:56:44 +02001936 if (ana_list & AN_RES_INSPECT) {
1937 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1938 break;
1939 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1940 }
1941
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001942 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001943 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1944 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001945 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001946 }
1947
Emeric Brun1d33b292010-01-04 15:47:17 +01001948 if (ana_list & AN_RES_STORE_RULES) {
1949 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1950 break;
1951 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1952 }
1953
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001954 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001955 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1956 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001957 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001958 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001959
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001960 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001961 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1962 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001963 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001964 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001965 break;
1966 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001967 }
1968
Willy Tarreau815a9b22010-07-27 17:15:12 +02001969 rp_cons_last = s->si[0].state;
1970 rp_prod_last = s->si[1].state;
1971 rpf_last = s->rep->flags;
1972
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001973 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001974 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001975 }
1976
Willy Tarreau576507f2010-01-07 00:09:04 +01001977 /* maybe someone has added some request analysers, so we must check and loop */
1978 if (s->req->analysers & ~req_ana_back)
1979 goto resync_request;
1980
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001981 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001982 goto resync_request;
1983
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001984 /* FIXME: here we should call protocol handlers which rely on
1985 * both buffers.
1986 */
1987
1988
1989 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001990 * Now we propagate unhandled errors to the session. Normally
1991 * we're just in a data phase here since it means we have not
1992 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001993 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001994 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001995 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001996 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001997 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001998 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001999 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002000 s->be->be_counters.cli_aborts++;
2001 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002002 if (srv)
2003 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002004 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002005 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002006 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002007 s->be->be_counters.cli_aborts++;
2008 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002009 if (srv)
2010 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002011 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002012 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002013 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002014 s->be->be_counters.srv_aborts++;
2015 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002016 if (srv)
2017 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002018 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002019 }
2020 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002021 s->be->be_counters.srv_aborts++;
2022 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002023 if (srv)
2024 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002025 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002026 }
Willy Tarreau84455332009-03-15 22:34:05 +01002027 sess_set_term_flags(s);
2028 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002029 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002030 /* Report it if the server got an error or a read timeout expired */
2031 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002032 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002033 s->be->be_counters.srv_aborts++;
2034 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002035 if (srv)
2036 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002037 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002038 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002039 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002040 s->be->be_counters.srv_aborts++;
2041 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002042 if (srv)
2043 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002044 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002045 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002046 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002047 s->be->be_counters.cli_aborts++;
2048 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002049 if (srv)
2050 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002051 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002052 }
2053 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002054 s->be->be_counters.cli_aborts++;
2055 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002056 if (srv)
2057 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002058 s->flags |= SN_ERR_CLITO;
2059 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002060 sess_set_term_flags(s);
2061 }
Willy Tarreau84455332009-03-15 22:34:05 +01002062 }
2063
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002064 /*
2065 * Here we take care of forwarding unhandled data. This also includes
2066 * connection establishments and shutdown requests.
2067 */
2068
2069
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002070 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002071 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002072 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002073 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002074 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002075 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002076 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002077 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002078 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002079 /* This buffer is freewheeling, there's no analyser nor hijacker
2080 * attached to it. If any data are left in, we'll permit them to
2081 * move.
2082 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002083 channel_auto_read(s->req);
2084 channel_auto_connect(s->req);
2085 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002086 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002087
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002088 /* We'll let data flow between the producer (if still connected)
2089 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002090 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002091 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002092 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002093 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002094
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002095 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002096 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002097 s->req->to_forward &&
2098 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002099 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2100 (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 +01002101 (pipes_used < global.maxpipes) &&
2102 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2103 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002104 (s->req->flags & CF_STREAMER_FAST)))) {
2105 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002106 }
2107
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002108 /* reflect what the L7 analysers have seen last */
2109 rqf_last = s->req->flags;
2110
2111 /*
2112 * Now forward all shutdown requests between both sides of the buffer
2113 */
2114
Willy Tarreau520d95e2009-09-19 21:04:57 +02002115 /* first, let's check if the request buffer needs to shutdown(write), which may
2116 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002117 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002118 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002119 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2120 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002121 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002122
2123 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002124 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002125 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002126 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002127
2128 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002129 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002130 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002131 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002132
2133 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002134 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002135 if (s->req->prod->flags & SI_FL_NOHALF)
2136 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002137 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002138 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002139
Willy Tarreau520d95e2009-09-19 21:04:57 +02002140 /* it's possible that an upper layer has requested a connection setup or abort.
2141 * There are 2 situations where we decide to establish a new connection :
2142 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002143 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002144 */
2145 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002146 if (!(s->req->flags & CF_SHUTW)) {
2147 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002148 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002149 * switch to the connected state, otherwise we perform a connection
2150 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002151 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002152 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002153 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002154 if (unlikely(s->req->cons->conn->target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002155 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002156 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002157 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002158 s->req->wex = TICK_ETERNITY;
2159 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002160 }
Willy Tarreau73201222009-08-16 18:27:24 +02002161 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002162 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002163 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002164 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2165 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002166 }
Willy Tarreau92795622009-03-06 12:51:23 +01002167 }
2168
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002169
2170 /* we may have a pending connection request, or a connection waiting
2171 * for completion.
2172 */
2173 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2174 do {
2175 /* nb: step 1 might switch from QUE to ASS, but we first want
2176 * to give a chance to step 2 to perform a redirect if needed.
2177 */
2178 if (s->si[1].state != SI_ST_REQ)
2179 sess_update_stream_int(s, &s->si[1]);
2180 if (s->si[1].state == SI_ST_REQ)
2181 sess_prepare_conn_req(s, &s->si[1]);
2182
Willy Tarreau827aee92011-03-10 16:55:02 +01002183 srv = target_srv(&s->target);
2184 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002185 perform_http_redirect(s, &s->si[1]);
2186 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002187
2188 /* Now we can add the server name to a header (if requested) */
2189 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002190 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002191 (s->be->mode == PR_MODE_HTTP) &&
2192 (s->be->server_id_hdr_name != NULL)) {
2193 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002194 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002195 }
2196
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002197 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002198 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002199 goto resync_stream_interface;
2200
Willy Tarreau815a9b22010-07-27 17:15:12 +02002201 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002202 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002203 goto resync_request;
2204
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002205 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002206
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002207 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002208 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002209 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002210 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002211 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002212 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002213 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002214 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002215 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002216 /* This buffer is freewheeling, there's no analyser nor hijacker
2217 * attached to it. If any data are left in, we'll permit them to
2218 * move.
2219 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002220 channel_auto_read(s->rep);
2221 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002222 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002223
2224 /* We'll let data flow between the producer (if still connected)
2225 * to the consumer.
2226 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002227 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002228 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002229
2230 /* if we have no analyser anymore in any direction and have a
2231 * tunnel timeout set, use it now.
2232 */
2233 if (!s->req->analysers && s->be->timeout.tunnel) {
2234 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2235 s->be->timeout.tunnel;
2236 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2237 tick_add(now_ms, s->be->timeout.tunnel);
2238 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002239 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002240
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002241 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002242 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002243 s->rep->to_forward &&
2244 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002245 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2246 (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 +01002247 (pipes_used < global.maxpipes) &&
2248 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2249 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002250 (s->rep->flags & CF_STREAMER_FAST)))) {
2251 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002252 }
2253
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002254 /* reflect what the L7 analysers have seen last */
2255 rpf_last = s->rep->flags;
2256
2257 /*
2258 * Now forward all shutdown requests between both sides of the buffer
2259 */
2260
2261 /*
2262 * FIXME: this is probably where we should produce error responses.
2263 */
2264
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002265 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002266 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2267 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002268 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002269
2270 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002271 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002272 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002273 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002274
2275 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002276 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002277 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002278 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002279
2280 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002281 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002282 if (s->rep->prod->flags & SI_FL_NOHALF)
2283 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002284 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002285 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002286
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002287 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002288 goto resync_stream_interface;
2289
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002290 if (s->req->flags != rqf_last)
2291 goto resync_request;
2292
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002293 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002294 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002295
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002296 /* we're interested in getting wakeups again */
2297 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2298 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2299
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002300 /* This is needed only when debugging is enabled, to indicate
2301 * client-side or server-side close. Please note that in the unlikely
2302 * event where both sides would close at once, the sequence is reported
2303 * on the server side first.
2304 */
2305 if (unlikely((global.mode & MODE_DEBUG) &&
2306 (!(global.mode & MODE_QUIET) ||
2307 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002308 if (s->si[1].state == SI_ST_CLO &&
2309 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002310 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002311 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002312 (unsigned short)si_fd(&s->si[0]),
2313 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002314 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002315 }
2316
2317 if (s->si[0].state == SI_ST_CLO &&
2318 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002319 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002320 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002321 (unsigned short)si_fd(&s->si[0]),
2322 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002323 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002324 }
2325 }
2326
2327 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2328 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2329
2330 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2331 session_process_counters(s);
2332
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002333 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002334 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002335
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002336 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn->target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002337 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002338
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002339 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2340 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 +01002341 s->si[0].prev_state = s->si[0].state;
2342 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002343 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2344 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002345
2346 /* Trick: if a request is being waiting for the server to respond,
2347 * and if we know the server can timeout, we don't want the timeout
2348 * to expire on the client side first, but we're still interested
2349 * in passing data from the client to the server (eg: POST). Thus,
2350 * we can cancel the client's request timeout if the server's
2351 * request timeout is set and the server has not yet sent a response.
2352 */
2353
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002354 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002355 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002356 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002357 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002358 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002359
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002360 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002361 * Note that this one may wake the task up again.
2362 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002363 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET ||
2364 s->rep->cons->conn->target.type == TARG_TYPE_APPLET) {
2365 if (s->req->cons->conn->target.type == TARG_TYPE_APPLET)
2366 s->req->cons->conn->target.ptr.a->fct(s->req->cons);
2367 if (s->rep->cons->conn->target.type == TARG_TYPE_APPLET)
2368 s->rep->cons->conn->target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002369 if (task_in_rq(t)) {
2370 /* If we woke up, we don't want to requeue the
2371 * task to the wait queue, but rather requeue
2372 * it into the runqueue ASAP.
2373 */
2374 t->expire = TICK_ETERNITY;
2375 return t;
2376 }
2377 }
2378
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002379 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2380 tick_first(s->rep->rex, s->rep->wex));
2381 if (s->req->analysers)
2382 t->expire = tick_first(t->expire, s->req->analyse_exp);
2383
2384 if (s->si[0].exp)
2385 t->expire = tick_first(t->expire, s->si[0].exp);
2386
2387 if (s->si[1].exp)
2388 t->expire = tick_first(t->expire, s->si[1].exp);
2389
2390#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002391 fprintf(stderr,
2392 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2393 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2394 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2395 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 +01002396#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002397
2398#ifdef DEBUG_DEV
2399 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002400 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002401 ABORT_NOW();
2402#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002403 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002404 }
2405
2406 s->fe->feconn--;
2407 if (s->flags & SN_BE_ASSIGNED)
2408 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002409 if (!(s->listener->options & LI_O_UNLIMITED))
2410 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002411 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002412 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002413 if (s->listener->state == LI_FULL)
2414 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002415
Willy Tarreau08ceb102011-07-24 22:58:00 +02002416 /* Dequeues all of the listeners waiting for a resource */
2417 if (!LIST_ISEMPTY(&global_listener_queue))
2418 dequeue_all_listeners(&global_listener_queue);
2419
Willy Tarreaub32907b2011-07-25 08:37:44 +02002420 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2421 (!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 +02002422 dequeue_all_listeners(&s->fe->listener_queue);
2423
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002424 if (unlikely((global.mode & MODE_DEBUG) &&
2425 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002426 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002427 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002428 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002429 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002430 }
2431
2432 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2433 session_process_counters(s);
2434
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002435 if (s->txn.status) {
2436 int n;
2437
2438 n = s->txn.status / 100;
2439 if (n < 1 || n > 5)
2440 n = 0;
2441
2442 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002443 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002444
Willy Tarreau24657792010-02-26 10:30:28 +01002445 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002446 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002447 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002448 }
2449
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002450 /* let's do a final log if we need it */
2451 if (s->logs.logwait &&
2452 !(s->flags & SN_MONITOR) &&
2453 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002454 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002455 }
2456
2457 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002458 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002459 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002460 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002461 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002462}
2463
Willy Tarreau7c669d72008-06-20 15:04:11 +02002464/*
2465 * This function adjusts sess->srv_conn and maintains the previous and new
2466 * server's served session counts. Setting newsrv to NULL is enough to release
2467 * current connection slot. This function also notifies any LB algo which might
2468 * expect to be informed about any change in the number of active sessions on a
2469 * server.
2470 */
2471void sess_change_server(struct session *sess, struct server *newsrv)
2472{
2473 if (sess->srv_conn == newsrv)
2474 return;
2475
2476 if (sess->srv_conn) {
2477 sess->srv_conn->served--;
2478 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2479 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002480 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002481 }
2482
2483 if (newsrv) {
2484 newsrv->served++;
2485 if (newsrv->proxy->lbprm.server_take_conn)
2486 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002487 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002488 }
2489}
2490
Willy Tarreau84455332009-03-15 22:34:05 +01002491/* Handle server-side errors for default protocols. It is called whenever a a
2492 * connection setup is aborted or a request is aborted in queue. It sets the
2493 * session termination flags so that the caller does not have to worry about
2494 * them. It's installed as ->srv_error for the server-side stream_interface.
2495 */
2496void default_srv_error(struct session *s, struct stream_interface *si)
2497{
2498 int err_type = si->err_type;
2499 int err = 0, fin = 0;
2500
2501 if (err_type & SI_ET_QUEUE_ABRT) {
2502 err = SN_ERR_CLICL;
2503 fin = SN_FINST_Q;
2504 }
2505 else if (err_type & SI_ET_CONN_ABRT) {
2506 err = SN_ERR_CLICL;
2507 fin = SN_FINST_C;
2508 }
2509 else if (err_type & SI_ET_QUEUE_TO) {
2510 err = SN_ERR_SRVTO;
2511 fin = SN_FINST_Q;
2512 }
2513 else if (err_type & SI_ET_QUEUE_ERR) {
2514 err = SN_ERR_SRVCL;
2515 fin = SN_FINST_Q;
2516 }
2517 else if (err_type & SI_ET_CONN_TO) {
2518 err = SN_ERR_SRVTO;
2519 fin = SN_FINST_C;
2520 }
2521 else if (err_type & SI_ET_CONN_ERR) {
2522 err = SN_ERR_SRVCL;
2523 fin = SN_FINST_C;
2524 }
2525 else /* SI_ET_CONN_OTHER and others */ {
2526 err = SN_ERR_INTERNAL;
2527 fin = SN_FINST_C;
2528 }
2529
2530 if (!(s->flags & SN_ERR_MASK))
2531 s->flags |= err;
2532 if (!(s->flags & SN_FINST_MASK))
2533 s->flags |= fin;
2534}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002535
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002536/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2537void session_shutdown(struct session *session, int why)
2538{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002539 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002540 return;
2541
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002542 channel_shutw_now(session->req);
2543 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002544 session->task->nice = 1024;
2545 if (!(session->flags & SN_ERR_MASK))
2546 session->flags |= why;
2547 task_wakeup(session->task, TASK_WOKEN_OTHER);
2548}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002549
Willy Tarreau8b22a712010-06-18 17:46:06 +02002550/************************************************************************/
2551/* All supported ACL keywords must be declared here. */
2552/************************************************************************/
2553
Willy Tarreaua5e37562011-12-16 17:06:15 +01002554/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002555static int
Willy Tarreau37406352012-04-23 16:16:37 +02002556acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002557{
Willy Tarreau37406352012-04-23 16:16:37 +02002558 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002559 smp->type = SMP_T_UINT;
2560 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002561 if (ts != NULL) {
2562 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2563 if (!ptr)
2564 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002565 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002566 }
2567 return 1;
2568}
2569
Willy Tarreaua5e37562011-12-16 17:06:15 +01002570/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002571 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002572 */
2573static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002574acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002575 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002576{
Willy Tarreau56123282010-08-06 19:06:56 +02002577 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002578 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002579 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002580}
2581
Willy Tarreaua5e37562011-12-16 17:06:15 +01002582/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002583 * backend counters.
2584 */
2585static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002586acl_fetch_sc2_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{
Willy Tarreau56123282010-08-06 19:06:56 +02002589 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002590 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002591 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002592}
2593
Willy Tarreaua5e37562011-12-16 17:06:15 +01002594/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002595 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002596 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002597 */
2598static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002599acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002600 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002601{
2602 struct stktable_key *key;
2603
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002604 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002605 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002606 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002607
Willy Tarreau24e32d82012-04-23 23:55:44 +02002608 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002609 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002610}
2611
2612/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002613 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002614 */
2615static int
Willy Tarreau37406352012-04-23 16:16:37 +02002616acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002617{
Willy Tarreau37406352012-04-23 16:16:37 +02002618 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002619 smp->type = SMP_T_UINT;
2620 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002621 if (ts != NULL) {
2622 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2623 if (!ptr)
2624 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002625 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002626 }
2627 return 1;
2628}
2629
2630/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002631 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002632 */
2633static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002634acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002635 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002636{
Willy Tarreau56123282010-08-06 19:06:56 +02002637 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002638 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002639 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002640}
2641
2642/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002643 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002644 */
2645static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002646acl_fetch_sc2_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{
Willy Tarreau56123282010-08-06 19:06:56 +02002649 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002650 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002651 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002652}
2653
2654/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002655 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002656 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002657 */
2658static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002659acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002660 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002661{
2662 struct stktable_key *key;
2663
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002664 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002665 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002666 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002667
Willy Tarreau24e32d82012-04-23 23:55:44 +02002668 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002669 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002670}
2671
Willy Tarreauf73cd112011-08-13 01:45:16 +02002672/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002673 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002674 */
2675static int
Willy Tarreau37406352012-04-23 16:16:37 +02002676acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002677{
Willy Tarreau37406352012-04-23 16:16:37 +02002678 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002679 smp->type = SMP_T_UINT;
2680 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002681 if (ts != NULL) {
2682 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2683 if (!ptr)
2684 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002685 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002686 stktable_data_cast(ptr, gpc0) = 0;
2687 }
2688 return 1;
2689}
2690
2691/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002692 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002693 */
2694static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002695acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002696 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002697{
2698 if (!l4->stkctr1_entry)
2699 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002700 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002701}
2702
2703/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002704 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002705 */
2706static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002707acl_fetch_sc2_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 if (!l4->stkctr2_entry)
2711 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002712 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002713}
2714
2715/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002716 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002717 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002718 */
2719static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002720acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002721 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002722{
2723 struct stktable_key *key;
2724
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002725 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002726 if (!key)
2727 return 0;
2728
Willy Tarreau24e32d82012-04-23 23:55:44 +02002729 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002730 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002731}
2732
Willy Tarreaua5e37562011-12-16 17:06:15 +01002733/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002734static int
Willy Tarreau37406352012-04-23 16:16:37 +02002735acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002736{
Willy Tarreau37406352012-04-23 16:16:37 +02002737 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002738 smp->type = SMP_T_UINT;
2739 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002740 if (ts != NULL) {
2741 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2742 if (!ptr)
2743 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002744 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002745 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002746 return 1;
2747}
2748
Willy Tarreaua5e37562011-12-16 17:06:15 +01002749/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002750static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002751acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002752 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002753{
Willy Tarreau56123282010-08-06 19:06:56 +02002754 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002755 return 0;
2756
Willy Tarreau37406352012-04-23 16:16:37 +02002757 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002758}
2759
Willy Tarreaua5e37562011-12-16 17:06:15 +01002760/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002761static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002762acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002763 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002764{
Willy Tarreau56123282010-08-06 19:06:56 +02002765 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002766 return 0;
2767
Willy Tarreau37406352012-04-23 16:16:37 +02002768 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002769}
2770
Willy Tarreaua5e37562011-12-16 17:06:15 +01002771/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002772 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002773 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002774 */
2775static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002776acl_fetch_src_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002777 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002778{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002779 struct stktable_key *key;
2780
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002781 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002782 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002783 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002784
Willy Tarreau24e32d82012-04-23 23:55:44 +02002785 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002786 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002787}
2788
Willy Tarreaua5e37562011-12-16 17:06:15 +01002789/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002790static int
Willy Tarreau37406352012-04-23 16:16:37 +02002791acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002792{
Willy Tarreau37406352012-04-23 16:16:37 +02002793 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002794 smp->type = SMP_T_UINT;
2795 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002796 if (ts != NULL) {
2797 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2798 if (!ptr)
2799 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002800 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002801 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2802 }
2803 return 1;
2804}
2805
Willy Tarreaua5e37562011-12-16 17:06:15 +01002806/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807 * the configured period.
2808 */
2809static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002810acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02002812{
Willy Tarreau56123282010-08-06 19:06:56 +02002813 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002814 return 0;
2815
Willy Tarreau37406352012-04-23 16:16:37 +02002816 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002817}
2818
Willy Tarreaua5e37562011-12-16 17:06:15 +01002819/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002820 * the configured period.
2821 */
2822static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002823acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002824 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002825{
Willy Tarreau56123282010-08-06 19:06:56 +02002826 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002827 return 0;
2828
Willy Tarreau37406352012-04-23 16:16:37 +02002829 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002830}
2831
Willy Tarreaua5e37562011-12-16 17:06:15 +01002832/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002833 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002834 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002835 */
2836static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002837acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002838 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002839{
2840 struct stktable_key *key;
2841
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002842 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002843 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002844 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002845
Willy Tarreau24e32d82012-04-23 23:55:44 +02002846 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002847 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002848}
2849
Willy Tarreaua5e37562011-12-16 17:06:15 +01002850/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002851 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002852 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002853 */
2854static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002855acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002856 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002857{
2858 struct stksess *ts;
2859 struct stktable_key *key;
2860 void *ptr;
2861
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002862 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002863 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002864 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002865
Willy Tarreau24e32d82012-04-23 23:55:44 +02002866 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002867
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002868 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2869 /* entry does not exist and could not be created */
2870 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002871
2872 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2873 if (!ptr)
2874 return 0; /* parameter not stored in this table */
2875
Willy Tarreauf853c462012-04-23 18:53:56 +02002876 smp->type = SMP_T_UINT;
2877 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002878 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002879 return 1;
2880}
2881
Willy Tarreaua5e37562011-12-16 17:06:15 +01002882/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002883static int
Willy Tarreau37406352012-04-23 16:16:37 +02002884acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002885{
Willy Tarreau37406352012-04-23 16:16:37 +02002886 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002887 smp->type = SMP_T_UINT;
2888 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002889
2890 if (ts != NULL) {
2891 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2892 if (!ptr)
2893 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002894 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002895 }
2896 return 1;
2897}
2898
Willy Tarreaua5e37562011-12-16 17:06:15 +01002899/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002900static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002901acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002902 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002903{
Willy Tarreau56123282010-08-06 19:06:56 +02002904 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002905 return 0;
2906
Willy Tarreau37406352012-04-23 16:16:37 +02002907 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002908}
2909
Willy Tarreaua5e37562011-12-16 17:06:15 +01002910/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002911static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002912acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002913 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002914{
Willy Tarreau56123282010-08-06 19:06:56 +02002915 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002916 return 0;
2917
Willy Tarreau37406352012-04-23 16:16:37 +02002918 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002919}
2920
Willy Tarreaua5e37562011-12-16 17:06:15 +01002921/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002922 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002923 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002924 */
2925static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002926acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002927 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002928{
Willy Tarreau38285c12010-06-18 16:35:43 +02002929 struct stktable_key *key;
2930
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002931 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002932 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002933 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002934
Willy Tarreau24e32d82012-04-23 23:55:44 +02002935 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002936 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002937}
2938
Willy Tarreaua5e37562011-12-16 17:06:15 +01002939/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002940static int
Willy Tarreau37406352012-04-23 16:16:37 +02002941acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002942{
Willy Tarreau37406352012-04-23 16:16:37 +02002943 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002944 smp->type = SMP_T_UINT;
2945 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002946 if (ts != NULL) {
2947 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2948 if (!ptr)
2949 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002950 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002951 }
2952 return 1;
2953}
2954
Willy Tarreaua5e37562011-12-16 17:06:15 +01002955/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002956static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002957acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002958 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002959{
Willy Tarreau56123282010-08-06 19:06:56 +02002960 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002961 return 0;
2962
Willy Tarreau37406352012-04-23 16:16:37 +02002963 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002964}
2965
Willy Tarreaua5e37562011-12-16 17:06:15 +01002966/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002967static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002968acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002969 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002970{
Willy Tarreau56123282010-08-06 19:06:56 +02002971 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002972 return 0;
2973
Willy Tarreau37406352012-04-23 16:16:37 +02002974 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002975}
2976
Willy Tarreaua5e37562011-12-16 17:06:15 +01002977/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002978 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002979 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002980 */
2981static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002982acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002983 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002984{
2985 struct stktable_key *key;
2986
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002987 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002988 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002989 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002990
Willy Tarreau24e32d82012-04-23 23:55:44 +02002991 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002992 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002993}
2994
Willy Tarreaua5e37562011-12-16 17:06:15 +01002995/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002996static int
Willy Tarreau37406352012-04-23 16:16:37 +02002997acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002998{
Willy Tarreau37406352012-04-23 16:16:37 +02002999 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003000 smp->type = SMP_T_UINT;
3001 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003002 if (ts != NULL) {
3003 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
3004 if (!ptr)
3005 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003006 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02003007 table->data_arg[STKTABLE_DT_SESS_RATE].u);
3008 }
3009 return 1;
3010}
3011
Willy Tarreaua5e37562011-12-16 17:06:15 +01003012/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003013 * the configured period.
3014 */
3015static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003016acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003018{
Willy Tarreau56123282010-08-06 19:06:56 +02003019 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003020 return 0;
3021
Willy Tarreau37406352012-04-23 16:16:37 +02003022 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003023}
3024
Willy Tarreaua5e37562011-12-16 17:06:15 +01003025/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02003026 * the configured period.
3027 */
3028static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003029acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003030 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003031{
Willy Tarreau56123282010-08-06 19:06:56 +02003032 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003033 return 0;
3034
Willy Tarreau37406352012-04-23 16:16:37 +02003035 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003036}
3037
Willy Tarreaua5e37562011-12-16 17:06:15 +01003038/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003039 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003040 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003041 */
3042static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003043acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003044 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003045{
3046 struct stktable_key *key;
3047
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003048 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003049 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003050 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003051
Willy Tarreau24e32d82012-04-23 23:55:44 +02003052 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003053 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003054}
3055
Willy Tarreaua5e37562011-12-16 17:06:15 +01003056/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003057static int
Willy Tarreau37406352012-04-23 16:16:37 +02003058acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059{
Willy Tarreau37406352012-04-23 16:16:37 +02003060 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003061 smp->type = SMP_T_UINT;
3062 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003063 if (ts != NULL) {
3064 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3065 if (!ptr)
3066 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003067 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003068 }
3069 return 1;
3070}
3071
Willy Tarreaua5e37562011-12-16 17:06:15 +01003072/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003073static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003074acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003075 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003076{
Willy Tarreau56123282010-08-06 19:06:56 +02003077 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003078 return 0;
3079
Willy Tarreau37406352012-04-23 16:16:37 +02003080 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003081}
3082
Willy Tarreaua5e37562011-12-16 17:06:15 +01003083/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003084static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003085acl_fetch_sc2_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003086 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003087{
Willy Tarreau56123282010-08-06 19:06:56 +02003088 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003089 return 0;
3090
Willy Tarreau37406352012-04-23 16:16:37 +02003091 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003092}
3093
Willy Tarreaua5e37562011-12-16 17:06:15 +01003094/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003095 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003096 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003097 */
3098static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003099acl_fetch_src_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003100 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003101{
3102 struct stktable_key *key;
3103
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003104 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003105 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003106 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003107
Willy Tarreau24e32d82012-04-23 23:55:44 +02003108 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003109 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003110}
3111
Willy Tarreaua5e37562011-12-16 17:06:15 +01003112/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003113static int
Willy Tarreau37406352012-04-23 16:16:37 +02003114acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003115{
Willy Tarreau37406352012-04-23 16:16:37 +02003116 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003117 smp->type = SMP_T_UINT;
3118 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003119 if (ts != NULL) {
3120 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_RATE);
3121 if (!ptr)
3122 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003123 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003124 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3125 }
3126 return 1;
3127}
3128
Willy Tarreaua5e37562011-12-16 17:06:15 +01003129/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003130 * the configured period.
3131 */
3132static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003133acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003135{
Willy Tarreau56123282010-08-06 19:06:56 +02003136 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003137 return 0;
3138
Willy Tarreau37406352012-04-23 16:16:37 +02003139 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003140}
3141
Willy Tarreaua5e37562011-12-16 17:06:15 +01003142/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003143 * the configured period.
3144 */
3145static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003146acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003147 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003148{
Willy Tarreau56123282010-08-06 19:06:56 +02003149 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003150 return 0;
3151
Willy Tarreau37406352012-04-23 16:16:37 +02003152 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003153}
3154
Willy Tarreaua5e37562011-12-16 17:06:15 +01003155/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003156 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003157 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003158 */
3159static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003160acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003161 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003162{
3163 struct stktable_key *key;
3164
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003165 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003166 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003167 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003168
Willy Tarreau24e32d82012-04-23 23:55:44 +02003169 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003170 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003171}
3172
Willy Tarreaua5e37562011-12-16 17:06:15 +01003173/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003174static int
Willy Tarreau37406352012-04-23 16:16:37 +02003175acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003176{
Willy Tarreau37406352012-04-23 16:16:37 +02003177 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003178 smp->type = SMP_T_UINT;
3179 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003180 if (ts != NULL) {
3181 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3182 if (!ptr)
3183 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003184 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003185 }
3186 return 1;
3187}
3188
Willy Tarreaua5e37562011-12-16 17:06:15 +01003189/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003190static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003191acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003192 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003193{
Willy Tarreau56123282010-08-06 19:06:56 +02003194 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003195 return 0;
3196
Willy Tarreau37406352012-04-23 16:16:37 +02003197 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003198}
3199
Willy Tarreaua5e37562011-12-16 17:06:15 +01003200/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003201static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003202acl_fetch_sc2_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003203 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003204{
Willy Tarreau56123282010-08-06 19:06:56 +02003205 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003206 return 0;
3207
Willy Tarreau37406352012-04-23 16:16:37 +02003208 return acl_fetch_http_err_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003209}
3210
Willy Tarreaua5e37562011-12-16 17:06:15 +01003211/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003212 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003213 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003214 */
3215static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003216acl_fetch_src_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003217 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003218{
3219 struct stktable_key *key;
3220
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003221 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003222 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003223 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003224
Willy Tarreau24e32d82012-04-23 23:55:44 +02003225 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003226 return acl_fetch_http_err_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003227}
3228
Willy Tarreaua5e37562011-12-16 17:06:15 +01003229/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003230static int
Willy Tarreau37406352012-04-23 16:16:37 +02003231acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003232{
Willy Tarreau37406352012-04-23 16:16:37 +02003233 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003234 smp->type = SMP_T_UINT;
3235 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003236 if (ts != NULL) {
3237 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3238 if (!ptr)
3239 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003240 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003241 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3242 }
3243 return 1;
3244}
3245
Willy Tarreaua5e37562011-12-16 17:06:15 +01003246/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003247 * the configured period.
3248 */
3249static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003250acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003252{
Willy Tarreau56123282010-08-06 19:06:56 +02003253 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003254 return 0;
3255
Willy Tarreau37406352012-04-23 16:16:37 +02003256 return acl_fetch_http_err_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003257}
3258
Willy Tarreaua5e37562011-12-16 17:06:15 +01003259/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003260 * the configured period.
3261 */
3262static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003263acl_fetch_sc2_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003264 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003265{
Willy Tarreau56123282010-08-06 19:06:56 +02003266 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003267 return 0;
3268
Willy Tarreau37406352012-04-23 16:16:37 +02003269 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003270}
3271
Willy Tarreaua5e37562011-12-16 17:06:15 +01003272/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003273 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003274 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003275 */
3276static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003277acl_fetch_src_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003278 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003279{
3280 struct stktable_key *key;
3281
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003282 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003283 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003284 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003285
Willy Tarreau24e32d82012-04-23 23:55:44 +02003286 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003287 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003288}
3289
Willy Tarreaua5e37562011-12-16 17:06:15 +01003290/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003291static int
Willy Tarreau37406352012-04-23 16:16:37 +02003292acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003293{
Willy Tarreau37406352012-04-23 16:16:37 +02003294 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003295 smp->type = SMP_T_UINT;
3296 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003297
3298 if (ts != NULL) {
3299 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3300 if (!ptr)
3301 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003302 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003303 }
3304 return 1;
3305}
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 FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003309 */
3310static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003311acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003313{
Willy Tarreau56123282010-08-06 19:06:56 +02003314 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003315 return 0;
3316
Willy Tarreau37406352012-04-23 16:16:37 +02003317 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003318}
3319
Willy Tarreaua5e37562011-12-16 17:06:15 +01003320/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003321 * session's tracked BE counters.
3322 */
3323static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003324acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003325 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003326{
Willy Tarreau56123282010-08-06 19:06:56 +02003327 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003328 return 0;
3329
Willy Tarreau37406352012-04-23 16:16:37 +02003330 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003331}
3332
Willy Tarreaua5e37562011-12-16 17:06:15 +01003333/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003334 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003335 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003336 */
3337static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003338acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003339 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003340{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003341 struct stktable_key *key;
3342
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003343 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003344 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003345 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003346
Willy Tarreau24e32d82012-04-23 23:55:44 +02003347 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003348 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003349}
3350
Willy Tarreaua5e37562011-12-16 17:06:15 +01003351/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003352 * configured period.
3353 */
3354static int
Willy Tarreau37406352012-04-23 16:16:37 +02003355acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003356{
Willy Tarreau37406352012-04-23 16:16:37 +02003357 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003358 smp->type = SMP_T_UINT;
3359 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003360 if (ts != NULL) {
3361 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3362 if (!ptr)
3363 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003364 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003365 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3366 }
3367 return 1;
3368}
3369
Willy Tarreaua5e37562011-12-16 17:06:15 +01003370/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003371 * counters over the configured period.
3372 */
3373static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003374acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003376{
Willy Tarreau56123282010-08-06 19:06:56 +02003377 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003378 return 0;
3379
Willy Tarreau37406352012-04-23 16:16:37 +02003380 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003381}
3382
Willy Tarreaua5e37562011-12-16 17:06:15 +01003383/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003384 * counters over the configured period.
3385 */
3386static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003387acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003388 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003389{
Willy Tarreau56123282010-08-06 19:06:56 +02003390 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003391 return 0;
3392
Willy Tarreau37406352012-04-23 16:16:37 +02003393 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003394}
3395
Willy Tarreaua5e37562011-12-16 17:06:15 +01003396/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003397 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003398 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003399 */
3400static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003401acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003402 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003403{
3404 struct stktable_key *key;
3405
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003406 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003407 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003408 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003409
Willy Tarreau24e32d82012-04-23 23:55:44 +02003410 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003411 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003412}
3413
Willy Tarreaua5e37562011-12-16 17:06:15 +01003414/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003415static int
Willy Tarreau37406352012-04-23 16:16:37 +02003416acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003417{
Willy Tarreau37406352012-04-23 16:16:37 +02003418 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003419 smp->type = SMP_T_UINT;
3420 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003421
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003422 if (ts != NULL) {
3423 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003424 if (!ptr)
3425 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003426 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003427 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003428 return 1;
3429}
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 FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003433 */
3434static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003435acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003437{
Willy Tarreau56123282010-08-06 19:06:56 +02003438 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003439 return 0;
3440
Willy Tarreau37406352012-04-23 16:16:37 +02003441 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003442}
3443
Willy Tarreaua5e37562011-12-16 17:06:15 +01003444/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003445 * tracked BE counters.
3446 */
3447static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003448acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003449 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003450{
Willy Tarreau56123282010-08-06 19:06:56 +02003451 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003452 return 0;
3453
Willy Tarreau37406352012-04-23 16:16:37 +02003454 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003455}
3456
Willy Tarreaua5e37562011-12-16 17:06:15 +01003457/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003458 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003459 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003460 */
3461static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003462acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003463 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003464{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003465 struct stktable_key *key;
3466
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003467 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003468 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003469 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003470
Willy Tarreau24e32d82012-04-23 23:55:44 +02003471 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003472 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003473}
3474
Willy Tarreaua5e37562011-12-16 17:06:15 +01003475/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003476 * configured period.
3477 */
3478static int
Willy Tarreau37406352012-04-23 16:16:37 +02003479acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003480{
Willy Tarreau37406352012-04-23 16:16:37 +02003481 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003482 smp->type = SMP_T_UINT;
3483 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003484 if (ts != NULL) {
3485 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3486 if (!ptr)
3487 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003488 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003489 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3490 }
3491 return 1;
3492}
3493
Willy Tarreaua5e37562011-12-16 17:06:15 +01003494/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003495 * over the configured period.
3496 */
3497static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003498acl_fetch_sc1_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 Tarreauf059a0f2010-08-03 16:29:52 +02003500{
Willy Tarreau56123282010-08-06 19:06:56 +02003501 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003502 return 0;
3503
Willy Tarreau37406352012-04-23 16:16:37 +02003504 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003505}
3506
Willy Tarreaua5e37562011-12-16 17:06:15 +01003507/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003508 * over the configured period.
3509 */
3510static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003511acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003512 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003513{
Willy Tarreau56123282010-08-06 19:06:56 +02003514 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003515 return 0;
3516
Willy Tarreau37406352012-04-23 16:16:37 +02003517 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003518}
3519
Willy Tarreaua5e37562011-12-16 17:06:15 +01003520/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003521 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003522 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003523 */
3524static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003525acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003526 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003527{
3528 struct stktable_key *key;
3529
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003530 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003531 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003532 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003533
Willy Tarreau24e32d82012-04-23 23:55:44 +02003534 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003535 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003536}
3537
Willy Tarreau34db1082012-04-19 17:16:54 +02003538/* set temp integer to the number of used 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_cnt(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 Tarreau37406352012-04-23 16:16:37 +02003545 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003546 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003547 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003548 return 1;
3549}
3550
Willy Tarreau34db1082012-04-19 17:16:54 +02003551/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003552 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003553 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003554static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003555acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003556 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003557{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003558 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003559 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003560 smp->type = SMP_T_UINT;
3561 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003562 return 1;
3563}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003564
Willy Tarreau61612d42012-04-19 18:42:05 +02003565/* Note: must not be declared <const> as its list will be overwritten.
3566 * Please take care of keeping this list alphabetically sorted.
3567 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003568static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003569 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3570 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3571 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3572 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3573 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3574 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3575 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3576 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3577 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3578 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3579 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3580 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3581 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3582 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3583 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3584 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3585 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3586 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3587 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3588 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3589 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3590 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3591 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3592 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3593 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3594 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3595 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3596 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3597 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3598 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3599 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3600 { "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 +02003601 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3602 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3603 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3604 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3605 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3606 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3607 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3608 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3609 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3610 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3611 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3612 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3613 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3614 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3615 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3616 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3617 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3618 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3619 { "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 +02003620 { NULL, NULL, NULL, NULL },
3621}};
3622
3623
Willy Tarreau56123282010-08-06 19:06:56 +02003624/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003625 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3626 * <prm> struct is fed with the table name if any. If unspecified, the caller
3627 * will assume that the current proxy's table is used.
3628 */
3629int parse_track_counters(char **args, int *arg,
3630 int section_type, struct proxy *curpx,
3631 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003632 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003633{
Willy Tarreau12785782012-04-27 21:37:17 +02003634 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003635
Willy Tarreau56123282010-08-06 19:06:56 +02003636 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003637 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003638 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003639 */
3640 while (args[*arg]) {
3641 if (strcmp(args[*arg], "src") == 0) {
3642 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003643 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003644 }
3645 else if (strcmp(args[*arg], "table") == 0) {
3646 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003647 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003648 return -1;
3649 }
3650 /* we copy the table name for now, it will be resolved later */
3651 prm->table.n = strdup(args[*arg + 1]);
3652 (*arg)++;
3653 }
3654 else {
3655 /* unhandled keywords are handled by the caller */
3656 break;
3657 }
3658 (*arg)++;
3659 }
3660
Willy Tarreau12785782012-04-27 21:37:17 +02003661 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003662 memprintf(err,
3663 "tracking key not specified (found %s, only 'src' is supported)",
3664 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003665 return -1;
3666 }
3667
3668 return 0;
3669}
3670
Willy Tarreau8b22a712010-06-18 17:46:06 +02003671__attribute__((constructor))
3672static void __session_init(void)
3673{
3674 acl_register_keywords(&acl_kws);
3675}
3676
Willy Tarreaubaaee002006-06-26 02:48:02 +02003677/*
3678 * Local variables:
3679 * c-indent-level: 8
3680 * c-basic-offset: 8
3681 * End:
3682 */