blob: e5350350a02702c7058bfd242ae00bbc38d92150 [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;
Willy Tarreau14cba4b2012-11-30 17:33:05 +0100112 s->si[0].conn->err_code = CO_ER_NONE;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200113 s->si[0].conn->addr.from = *addr;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100114 s->si[0].conn->target = &l->obj_type;
Willy Tarreau2542b532012-08-31 16:01:23 +0200115
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200116 s->logs.accept_date = date; /* user-visible date for logging */
117 s->logs.tv_accept = now; /* corrected date for internal use */
118 s->uniq_id = totalconn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200119 p->feconn++;
120 /* This session was accepted, count it now */
121 if (p->feconn > p->fe_counters.conn_max)
122 p->fe_counters.conn_max = p->feconn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200123
Willy Tarreau2542b532012-08-31 16:01:23 +0200124 proxy_inc_fe_conn_ctr(l, p);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200125
126 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
127 * to abort right here as soon as possible, we check the rules before
128 * even initializing the stream interfaces.
129 */
130 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200131 /* let's do a no-linger now to close with a single RST. */
132 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100133 ret = 0; /* successful termination */
Willy Tarreau2542b532012-08-31 16:01:23 +0200134 goto out_free_session;
135 }
136
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200137#ifndef USE_ACCEPT4
138 /* Adjust some socket options if the connection was accepted by a plain
139 * accept() syscall.
140 */
Willy Tarreau82569f92012-09-27 23:48:56 +0200141 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
142 goto out_free_session;
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200143#endif
Willy Tarreau82569f92012-09-27 23:48:56 +0200144
145 /* monitor-net and health mode are processed immediately after TCP
146 * connection rules. This way it's possible to block them, but they
147 * never use the lower data layers, they send directly over the socket,
148 * as they were designed for. We first flush the socket receive buffer
149 * in order to avoid emission of an RST by the system. We ignore any
150 * error.
151 */
152 if (unlikely((p->mode == PR_MODE_HEALTH) ||
153 ((l->options & LI_O_CHK_MONNET) &&
154 addr->ss_family == AF_INET &&
155 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
156 /* we have 4 possibilities here :
157 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
158 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
159 * - HEALTH mode without HTTP check => just send "OK"
160 * - TCP mode from monitoring address => just close
161 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100162 recv(cfd, trash.str, trash.size, MSG_DONTWAIT);
Willy Tarreau82569f92012-09-27 23:48:56 +0200163 if (p->mode == PR_MODE_HTTP ||
164 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
165 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
166 else if (p->mode == PR_MODE_HEALTH)
167 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
168 ret = 0;
169 goto out_free_session;
170 }
171
172
Willy Tarreau22cda212012-08-31 17:43:29 +0200173 /* wait for a PROXY protocol header */
174 if (l->options & LI_O_ACC_PROXY) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200175 s->si[0].conn->flags |= CO_FL_ACCEPT_PROXY;
176 conn_sock_want_recv(s->si[0].conn);
Willy Tarreau22cda212012-08-31 17:43:29 +0200177 }
178
Willy Tarreau2542b532012-08-31 16:01:23 +0200179 if (unlikely((t = task_new()) == NULL))
180 goto out_free_session;
181
182 t->context = s;
183 t->nice = l->nice;
184 s->task = t;
185
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200186 /* Add the various callbacks. Right now the transport layer is present
187 * but not initialized. Also note we need to be careful as the stream
188 * int is not initialized yet.
Willy Tarreau2542b532012-08-31 16:01:23 +0200189 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200190 conn_prepare(s->si[0].conn, &sess_conn_cb, l->proto, l->xprt, s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200191
192 /* finish initialization of the accepted file descriptor */
193 fd_insert(cfd);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200194 fdtab[cfd].owner = s->si[0].conn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200195 fdtab[cfd].iocb = conn_fd_handler;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200196 conn_data_want_recv(s->si[0].conn);
197 if (conn_xprt_init(s->si[0].conn) < 0)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100198 goto out_free_task;
Willy Tarreau2542b532012-08-31 16:01:23 +0200199
200 /* OK, now either we have a pending handshake to execute with and
201 * then we must return to the I/O layer, or we can proceed with the
202 * end of the session initialization. In case of handshake, we also
203 * set the I/O timeout to the frontend's client timeout.
204 */
205
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200206 if (s->si[0].conn->flags & CO_FL_HANDSHAKE) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200207 t->process = expire_mini_session;
208 t->expire = tick_add_ifset(now_ms, p->timeout.client);
209 task_queue(t);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200210 s->si[0].conn->flags |= CO_FL_INIT_DATA | CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200211 return 1;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200212 }
213
Willy Tarreau815f5ec2012-11-06 00:14:25 +0100214 /* OK let's complete session initialization since there is no handshake */
215 s->si[0].conn->flags |= CO_FL_CONNECTED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200216 ret = session_complete(s);
217 if (ret > 0)
218 return ret;
219
220 /* Error unrolling */
221 out_free_task:
222 task_free(t);
223 out_free_session:
224 p->feconn--;
225 if (s->stkctr1_entry || s->stkctr2_entry)
226 session_store_counters(s);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200227 pool_free2(pool2_connection, s->si[1].conn);
228 out_fail_conn1:
229 pool_free2(pool2_connection, s->si[0].conn);
230 out_fail_conn0:
Willy Tarreau2542b532012-08-31 16:01:23 +0200231 pool_free2(pool2_session, s);
232 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200233 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200234 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau783f2582012-09-04 12:19:04 +0200235 struct chunk *err_msg = http_error_message(s, HTTP_ERR_500);
Willy Tarreau2542b532012-08-31 16:01:23 +0200236 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
237 }
238
239 if (fdtab[cfd].owner)
240 fd_delete(cfd);
241 else
242 close(cfd);
243 return ret;
244}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100245
Willy Tarreau0af29122012-12-03 15:35:00 +0100246
247/* prepare the trash with a log prefix for session <s> */
248static void prepare_mini_sess_log_prefix(struct session *s)
249{
250 struct tm tm;
251 char pn[INET6_ADDRSTRLEN];
252 int ret;
253 char *end;
254
255 ret = addr_to_str(&s->si[0].conn->addr.from, pn, sizeof(pn));
256 if (ret <= 0)
257 chunk_printf(&trash, "unknown [");
258 else if (ret == AF_UNIX)
259 chunk_printf(&trash, "%s:%d [", pn, s->listener->luid);
260 else
261 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&s->si[0].conn->addr.from));
262
263 get_localtime(s->logs.accept_date.tv_sec, &tm);
264 end = date2str_log(trash.str + trash.len, &tm, &(s->logs.accept_date), trash.size - trash.len);
265 trash.len = end - trash.str;
266 if (s->listener->name)
267 chunk_appendf(&trash, "] %s/%s", s->fe->id, s->listener->name);
268 else
269 chunk_appendf(&trash, "] %s/%d", s->fe->id, s->listener->luid);
270}
271
Willy Tarreau2542b532012-08-31 16:01:23 +0200272/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200273 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreau2542b532012-08-31 16:01:23 +0200274 * disabled and finally kills the file descriptor.
275 */
276static void kill_mini_session(struct session *s)
277{
Willy Tarreau0af29122012-12-03 15:35:00 +0100278 int level = LOG_INFO;
279 struct connection *conn = s->si[0].conn;
280 unsigned int log = s->logs.logwait;
281 const char *err_msg;
282
283 if (s->fe->options2 & PR_O2_LOGERRORS)
284 level = LOG_ERR;
285
286 if (log && (s->fe->options & PR_O_NULLNOLOG)) {
287 /* with "option dontlognull", we don't log connections with no transfer */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100288 if (!conn->err_code ||
Willy Tarreau20879a02012-12-03 16:32:10 +0100289 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
290 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
Willy Tarreau0af29122012-12-03 15:35:00 +0100291 log = 0;
292 }
293
294 if (log) {
295 if (!conn->err_code && (s->task->state & TASK_WOKEN_TIMER)) {
296 if (conn->flags & CO_FL_ACCEPT_PROXY)
297 conn->err_code = CO_ER_PRX_TIMEOUT;
298 else if (conn->flags & CO_FL_SSL_WAIT_HS)
299 conn->err_code = CO_ER_SSL_TIMEOUT;
300 }
301
302 prepare_mini_sess_log_prefix(s);
303 err_msg = conn_err_code_str(conn);
304 if (err_msg)
305 send_log(s->fe, level, "%s: %s\n", trash.str, err_msg);
306 else
307 send_log(s->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
308 trash.str, conn->err_code, conn->flags);
309 }
310
Willy Tarreau2542b532012-08-31 16:01:23 +0200311 /* kill the connection now */
Willy Tarreau2b199c92012-11-23 17:32:21 +0100312 conn_full_close(s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200313
314 s->fe->feconn--;
315 if (s->stkctr1_entry || s->stkctr2_entry)
316 session_store_counters(s);
317
318 if (!(s->listener->options & LI_O_UNLIMITED))
319 actconn--;
320 jobs--;
321 s->listener->nbconn--;
322 if (s->listener->state == LI_FULL)
323 resume_listener(s->listener);
324
325 /* Dequeues all of the listeners waiting for a resource */
326 if (!LIST_ISEMPTY(&global_listener_queue))
327 dequeue_all_listeners(&global_listener_queue);
328
329 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
330 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
331 dequeue_all_listeners(&s->fe->listener_queue);
332
333 task_delete(s->task);
334 task_free(s->task);
335
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200336 pool_free2(pool2_connection, s->si[1].conn);
337 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200338 pool_free2(pool2_session, s);
339}
340
Willy Tarreau22cda212012-08-31 17:43:29 +0200341/* Finish initializing a session from a connection, or kills it if the
342 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200343 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200344static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200345{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200346 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200347
Willy Tarreau22cda212012-08-31 17:43:29 +0200348 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200349 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200350 return 0;
351 }
352
353 /* kill the connection now */
354 kill_mini_session(s);
355 return -1;
356}
357
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200358/* Update an embryonic session status. The connection is killed in case of
359 * error, and <0 will be returned. Otherwise it does nothing.
360 */
361static int conn_session_update(struct connection *conn)
362{
363 if (conn->flags & CO_FL_ERROR) {
364 kill_mini_session(conn->owner);
365 return -1;
366 }
367 return 0;
368}
369
Willy Tarreau2542b532012-08-31 16:01:23 +0200370/* Manages embryonic sessions timeout. It is only called when the timeout
371 * strikes and performs the required cleanup.
372 */
373static struct task *expire_mini_session(struct task *t)
374{
375 struct session *s = t->context;
376
377 if (!(t->state & TASK_WOKEN_TIMER))
378 return t;
379
380 kill_mini_session(s);
381 return NULL;
382}
383
384/* This function is called from the I/O handler which detects the end of
385 * handshake, in order to complete initialization of a valid session. It must
386 * be called with an embryonic session. It returns a positive value upon
387 * success, 0 if the connection can be ignored, or a negative value upon
388 * critical failure. The accepted file descriptor is closed if we return <= 0.
389 */
390int session_complete(struct session *s)
391{
392 struct listener *l = s->listener;
393 struct proxy *p = s->fe;
394 struct http_txn *txn;
395 struct task *t = s->task;
396 int ret;
397
398 ret = -1; /* assume unrecoverable error by default */
399
400 /* OK, we're keeping the session, so let's properly initialize the session */
401 LIST_ADDQ(&sessions, &s->list);
402 LIST_INIT(&s->back_refs);
Willy Tarreau5e75e272012-10-02 21:21:20 +0200403 si_takeover_conn(&s->si[0], l->proto, l->xprt);
Willy Tarreau2542b532012-08-31 16:01:23 +0200404 s->flags |= SN_INITIALIZED;
405
406 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200407
408 t->process = l->handler;
409 t->context = s;
410 t->expire = TICK_ETERNITY;
411
412 /* Note: initially, the session's backend points to the frontend.
413 * This changes later when switching rules are executed or
414 * when the default backend is assigned.
415 */
416 s->be = s->fe;
417 s->req = s->rep = NULL; /* will be allocated later */
William Lallemand82fe75c2012-10-23 10:25:10 +0200418 s->comp_algo = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200419
420 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200421 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200422 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200423 void *ptr;
424
Willy Tarreau56123282010-08-06 19:06:56 +0200425 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200426 if (ptr)
427 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200428
Willy Tarreau56123282010-08-06 19:06:56 +0200429 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200430 if (ptr)
431 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200432 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200433 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200434
Willy Tarreau56123282010-08-06 19:06:56 +0200435 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200436 void *ptr;
437
Willy Tarreau56123282010-08-06 19:06:56 +0200438 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200439 if (ptr)
440 stktable_data_cast(ptr, sess_cnt)++;
441
Willy Tarreau56123282010-08-06 19:06:56 +0200442 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200443 if (ptr)
444 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200445 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200446 }
447
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200448 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200449 s->si[0].owner = t;
450 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
451 s->si[0].err_type = SI_ET_NONE;
452 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200453 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200454 s->si[0].send_proxy_ofs = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200455 s->si[0].exp = TICK_ETERNITY;
456 s->si[0].flags = SI_FL_NONE;
457
458 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
459 s->si[0].flags |= SI_FL_INDEP_STR;
460
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200461 /* pre-initialize the other side's stream interface to an INIT state. The
462 * callbacks will be initialized before attempting to connect.
463 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200464 s->si[1].conn->t.sock.fd = -1; /* just to help with debugging */
465 s->si[1].conn->flags = CO_FL_NONE;
Willy Tarreau14cba4b2012-11-30 17:33:05 +0100466 s->si[1].conn->err_code = CO_ER_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200467 s->si[1].owner = t;
468 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
469 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200470 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200471 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200472 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200473 s->si[1].send_proxy_ofs = 0;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100474 s->si[1].conn->target = NULL;
Willy Tarreauc5788912012-08-24 18:12:41 +0200475 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200476 s->si[1].exp = TICK_ETERNITY;
477 s->si[1].flags = SI_FL_NONE;
478
479 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
480 s->si[1].flags |= SI_FL_INDEP_STR;
481
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200482 session_init_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100483 s->target = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200484 s->pend_pos = NULL;
485
486 /* init store persistence */
487 s->store_count = 0;
488
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200489 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200490 goto out_free_task; /* no memory */
491
Willy Tarreau9b28e032012-10-12 23:49:43 +0200492 if (unlikely((s->req->buf = pool_alloc2(pool2_buffer)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200493 goto out_free_req; /* no memory */
494
Willy Tarreau9b28e032012-10-12 23:49:43 +0200495 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
496 goto out_free_req_buf; /* no memory */
497
498 if (unlikely((s->rep->buf = pool_alloc2(pool2_buffer)) == NULL))
499 goto out_free_rep; /* no memory */
500
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200501 /* initialize the request buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200502 s->req->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200503 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200504 s->req->prod = &s->si[0];
505 s->req->cons = &s->si[1];
506 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200507 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200508
509 /* activate default analysers enabled for this listener */
510 s->req->analysers = l->analysers;
511
512 s->req->wto = TICK_ETERNITY;
513 s->req->rto = TICK_ETERNITY;
514 s->req->rex = TICK_ETERNITY;
515 s->req->wex = TICK_ETERNITY;
516 s->req->analyse_exp = TICK_ETERNITY;
517
518 /* initialize response buffer */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200519 s->rep->buf->size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200520 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200521 s->rep->prod = &s->si[1];
522 s->rep->cons = &s->si[0];
523 s->si[0].ob = s->si[1].ib = s->rep;
524 s->rep->analysers = 0;
525
Willy Tarreau96e31212011-05-30 18:10:30 +0200526 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200527 s->req->flags |= CF_NEVER_WAIT;
528 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200529 }
530
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200531 s->rep->rto = TICK_ETERNITY;
532 s->rep->wto = TICK_ETERNITY;
533 s->rep->rex = TICK_ETERNITY;
534 s->rep->wex = TICK_ETERNITY;
535 s->rep->analyse_exp = TICK_ETERNITY;
536
Willy Tarreau62f791e2012-03-09 11:32:30 +0100537 txn = &s->txn;
538 /* Those variables will be checked and freed if non-NULL in
539 * session.c:session_free(). It is important that they are
540 * properly initialized.
541 */
542 txn->sessid = NULL;
543 txn->srv_cookie = NULL;
544 txn->cli_cookie = NULL;
545 txn->uri = NULL;
546 txn->req.cap = NULL;
547 txn->rsp.cap = NULL;
548 txn->hdr_idx.v = NULL;
549 txn->hdr_idx.size = txn->hdr_idx.used = 0;
550 txn->req.flags = 0;
551 txn->rsp.flags = 0;
552 /* the HTTP messages need to know what buffer they're associated with */
Willy Tarreau394db372012-10-12 22:40:39 +0200553 txn->req.chn = s->req;
554 txn->rsp.chn = s->rep;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100555
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200556 /* finish initialization of the accepted file descriptor */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200557 conn_data_want_recv(s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200558
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100559 if (p->accept && (ret = p->accept(s)) <= 0) {
560 /* Either we had an unrecoverable error (<0) or work is
561 * finished (=0, eg: monitoring), in both situations,
562 * we can release everything and close.
563 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200564 goto out_free_rep_buf;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200565 }
566
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200567 /* if logs require transport layer information, note it on the connection */
568 if (s->logs.logwait & LW_XPRT)
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200569 s->si[0].conn->flags |= CO_FL_XPRT_TRACKED;
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200570
Willy Tarreau2542b532012-08-31 16:01:23 +0200571 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200572 s->si[0].conn->flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200573
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200574 /* it is important not to call the wakeup function directly but to
575 * pass through task_wakeup(), because this one knows how to apply
576 * priorities to tasks.
577 */
578 task_wakeup(t, TASK_WOKEN_INIT);
579 return 1;
580
581 /* Error unrolling */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200582 out_free_rep_buf:
583 pool_free2(pool2_buffer, s->rep->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200584 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200585 pool_free2(pool2_channel, s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200586 out_free_req_buf:
587 pool_free2(pool2_buffer, s->req->buf);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200588 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200589 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200590 out_free_task:
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100591 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200592}
593
Willy Tarreaubaaee002006-06-26 02:48:02 +0200594/*
595 * frees the context associated to a session. It must have been removed first.
596 */
Simon Hormandec5be42011-06-08 09:19:07 +0900597static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200598{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100599 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200600 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100601 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200602 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100603
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604 if (s->pend_pos)
605 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100606
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100607 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100608 if (s->flags & SN_CURR_SESS) {
609 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100610 objt_server(s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100611 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100612 if (may_dequeue_tasks(objt_server(s->target), s->be))
613 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100614 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100615
Willy Tarreau7c669d72008-06-20 15:04:11 +0200616 if (unlikely(s->srv_conn)) {
617 /* the session still has a reserved slot on a server, but
618 * it should normally be only the same as the one above,
619 * so this should not happen in fact.
620 */
621 sess_change_server(s, NULL);
622 }
623
Willy Tarreau543db622012-11-15 16:41:22 +0100624 if (s->flags & SN_COMP_READY)
William Lallemand1c2d6222012-10-30 15:52:53 +0100625 s->comp_algo->end(&s->comp_ctx);
Willy Tarreau543db622012-11-15 16:41:22 +0100626 s->comp_algo = NULL;
627 s->flags &= ~SN_COMP_READY;
William Lallemand82fe75c2012-10-23 10:25:10 +0200628
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100629 if (s->req->pipe)
630 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100631
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100632 if (s->rep->pipe)
633 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100634
Willy Tarreau9b28e032012-10-12 23:49:43 +0200635 pool_free2(pool2_buffer, s->req->buf);
636 pool_free2(pool2_buffer, s->rep->buf);
637
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200638 pool_free2(pool2_channel, s->req);
639 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640
Willy Tarreau46023632010-01-07 22:51:47 +0100641 http_end_txn(s);
642
Willy Tarreau1e954912012-10-12 17:50:05 +0200643 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200644 s->si[0].conn->flags &= ~CO_FL_XPRT_TRACKED;
645 conn_xprt_close(s->si[0].conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200646
Willy Tarreaua4cda672010-06-06 18:28:49 +0200647 for (i = 0; i < s->store_count; i++) {
648 if (!s->store[i].ts)
649 continue;
650 stksess_free(s->store[i].table, s->store[i].ts);
651 s->store[i].ts = NULL;
652 }
653
Willy Tarreau34eb6712011-10-24 18:15:04 +0200654 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200655 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100656 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
657 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200658 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100659
Willy Tarreau56123282010-08-06 19:06:56 +0200660 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200661 session_store_counters(s);
662
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100663 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100664 /* we have to unlink all watchers. We must not relink them if
665 * this session was the last one in the list.
666 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100667 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100668 LIST_INIT(&bref->users);
669 if (s->list.n != &sessions)
670 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100671 bref->ref = s->list.n;
672 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100673 LIST_DEL(&s->list);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200674 pool_free2(pool2_connection, s->si[1].conn);
675 pool_free2(pool2_connection, s->si[0].conn);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200676 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200677
678 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200679 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200680 pool_flush2(pool2_buffer);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200681 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200682 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200683 pool_flush2(pool2_requri);
684 pool_flush2(pool2_capture);
685 pool_flush2(pool2_session);
686 pool_flush2(fe->req_cap_pool);
687 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200688 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200689}
690
691
692/* perform minimal intializations, report 0 in case of error, 1 if OK. */
693int init_session()
694{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100695 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200696 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
697 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200698}
699
Willy Tarreau30e71012007-11-26 20:15:35 +0100700void session_process_counters(struct session *s)
701{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100702 unsigned long long bytes;
703
Willy Tarreau30e71012007-11-26 20:15:35 +0100704 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100705 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100706 s->logs.bytes_in = s->req->total;
707 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100708 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100709
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100710 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100711
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100712 if (objt_server(s->target))
713 objt_server(s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200714
715 if (s->listener->counters)
716 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200717
Willy Tarreau56123282010-08-06 19:06:56 +0200718 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200719 void *ptr;
720
Willy Tarreau56123282010-08-06 19:06:56 +0200721 ptr = stktable_data_ptr(s->stkctr2_table,
722 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200723 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200724 if (ptr)
725 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200726
Willy Tarreau56123282010-08-06 19:06:56 +0200727 ptr = stktable_data_ptr(s->stkctr2_table,
728 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200729 STKTABLE_DT_BYTES_IN_RATE);
730 if (ptr)
731 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200732 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200733 }
734
Willy Tarreau56123282010-08-06 19:06:56 +0200735 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200736 void *ptr;
737
Willy Tarreau56123282010-08-06 19:06:56 +0200738 ptr = stktable_data_ptr(s->stkctr1_table,
739 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200740 STKTABLE_DT_BYTES_IN_CNT);
741 if (ptr)
742 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
743
Willy Tarreau56123282010-08-06 19:06:56 +0200744 ptr = stktable_data_ptr(s->stkctr1_table,
745 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200746 STKTABLE_DT_BYTES_IN_RATE);
747 if (ptr)
748 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200749 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200750 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100751 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100752 }
753
Willy Tarreau30e71012007-11-26 20:15:35 +0100754 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100755 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100756 s->logs.bytes_out = s->rep->total;
757 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100758 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100759
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100760 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100761
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100762 if (objt_server(s->target))
763 objt_server(s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200764
765 if (s->listener->counters)
766 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200767
Willy Tarreau56123282010-08-06 19:06:56 +0200768 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200769 void *ptr;
770
Willy Tarreau56123282010-08-06 19:06:56 +0200771 ptr = stktable_data_ptr(s->stkctr2_table,
772 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200773 STKTABLE_DT_BYTES_OUT_CNT);
774 if (ptr)
775 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
776
Willy Tarreau56123282010-08-06 19:06:56 +0200777 ptr = stktable_data_ptr(s->stkctr2_table,
778 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200779 STKTABLE_DT_BYTES_OUT_RATE);
780 if (ptr)
781 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200782 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200783 }
784
Willy Tarreau56123282010-08-06 19:06:56 +0200785 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200786 void *ptr;
787
Willy Tarreau56123282010-08-06 19:06:56 +0200788 ptr = stktable_data_ptr(s->stkctr1_table,
789 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200790 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200791 if (ptr)
792 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200793
Willy Tarreau56123282010-08-06 19:06:56 +0200794 ptr = stktable_data_ptr(s->stkctr1_table,
795 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200796 STKTABLE_DT_BYTES_OUT_RATE);
797 if (ptr)
798 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200799 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200800 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100801 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100802 }
803}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100805/* This function is called with (si->state == SI_ST_CON) meaning that a
806 * connection was attempted and that the file descriptor is already allocated.
807 * We must check for establishment, error and abort. Possible output states
808 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
809 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
810 * otherwise 1.
811 */
Simon Hormandec5be42011-06-08 09:19:07 +0900812static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100813{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200814 struct channel *req = si->ob;
815 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100816
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100817 /* If we got an error, or if nothing happened and the connection timed
818 * out, we must give up. The CER state handler will take care of retry
819 * attempts and error reports.
820 */
821 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100822 if (unlikely(si->ob->flags & CF_WRITE_PARTIAL)) {
823 /* Some data were sent past the connection establishment,
824 * so we need to pretend we're established to log correctly
825 * and let later states handle the failure.
826 */
827 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
828 si->exp = TICK_ETERNITY;
829 si->state = SI_ST_EST;
830 si->err_type = SI_ET_DATA_ERR;
831 si->ib->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100832 si->err_loc = objt_server(s->target);
Willy Tarreaue3224e82012-10-29 22:41:31 +0100833 return 1;
834 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100835 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100836 si->state = SI_ST_CER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100837 fd_delete(si->conn->t.sock.fd);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100838
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200839 conn_xprt_close(si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200840 if (si->release)
841 si->release(si);
842
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100843 if (si->err_type)
844 return 0;
845
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100846 si->err_loc = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100847 if (si->flags & SI_FL_ERR)
848 si->err_type = SI_ET_CONN_ERR;
849 else
850 si->err_type = SI_ET_CONN_TO;
851 return 0;
852 }
853
854 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200855 if (unlikely((rep->flags & CF_SHUTW) ||
856 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
857 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858 s->be->options & PR_O_ABRT_CLOSE)))) {
859 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200860 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100861 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100862 si->err_loc = objt_server(s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100863 if (s->srv_error)
864 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100865 return 1;
866 }
867
868 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200869 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100870 return 1;
871
872 /* OK, this means that a connection succeeded. The caller will be
873 * responsible for handling the transition from CON to EST.
874 */
875 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100876 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100877 si->state = SI_ST_EST;
878 si->err_type = SI_ET_NONE;
879 si->err_loc = NULL;
880 return 1;
881}
882
883/* This function is called with (si->state == SI_ST_CER) meaning that a
884 * previous connection attempt has failed and that the file descriptor
885 * has already been released. Possible causes include asynchronous error
886 * notification and time out. Possible output states are SI_ST_CLO when
887 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
888 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
889 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
890 * marked as in error state. It returns 0.
891 */
Simon Hormandec5be42011-06-08 09:19:07 +0900892static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100893{
894 /* we probably have to release last session from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100895 if (objt_server(s->target)) {
896 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100897
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100898 if (s->flags & SN_CURR_SESS) {
899 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100900 objt_server(s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100901 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100902 }
903
904 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200905 si->conn_retries--;
906 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100907 if (!si->err_type) {
908 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100909 si->err_loc = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100910 }
911
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100912 if (objt_server(s->target))
913 objt_server(s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100914 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100915 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100916 if (may_dequeue_tasks(objt_server(s->target), s->be))
917 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100918
919 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200920 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200921 si->ob->flags |= CF_WRITE_ERROR;
922 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100923
924 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100925 if (s->srv_error)
926 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100927 return 0;
928 }
929
930 /* If the "redispatch" option is set on the backend, we are allowed to
931 * retry on another server for the last retry. In order to achieve this,
932 * we must mark the session unassigned, and eventually clear the DIRECT
933 * bit to ignore any persistence cookie. We won't count a retry nor a
934 * redispatch yet, because this will depend on what server is selected.
935 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100936 if (objt_server(s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100937 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100938 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100939 if (may_dequeue_tasks(objt_server(s->target), s->be))
940 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100941
942 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100943 si->state = SI_ST_REQ;
944 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100945 if (objt_server(s->target))
946 objt_server(s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100947 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 si->state = SI_ST_ASS;
949 }
950
951 if (si->flags & SI_FL_ERR) {
952 /* The error was an asynchronous connection error, and we will
953 * likely have to retry connecting to the same server, most
954 * likely leading to the same result. To avoid this, we wait
955 * one second before retrying.
956 */
957
958 if (!si->err_type)
959 si->err_type = SI_ET_CONN_ERR;
960
961 si->state = SI_ST_TAR;
962 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
963 return 0;
964 }
965 return 0;
966}
967
968/*
969 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200970 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200971 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100972 */
Simon Hormandec5be42011-06-08 09:19:07 +0900973static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100974{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200975 struct channel *req = si->ob;
976 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100977
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100978 if (objt_server(s->target))
979 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100980
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100981 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100982 /* if the user wants to log as soon as possible, without counting
983 * bytes from the server, then this is the right moment. */
984 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
985 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100986 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100987 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100988 }
989 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100990 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
991 /* reset hdr_idx which was already initialized by the request.
992 * right now, the http parser does it.
993 * hdr_idx_init(&s->txn.hdr_idx);
994 */
995 }
996
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200997 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200998 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200999 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +02001000 /* real connections have timeouts */
1001 req->wto = s->be->timeout.server;
1002 rep->rto = s->be->timeout.server;
1003 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001004 req->wex = TICK_ETERNITY;
1005}
1006
1007/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
1008 * Other input states are simply ignored.
1009 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
1010 * Flags must have previously been updated for timeouts and other conditions.
1011 */
Simon Hormandec5be42011-06-08 09:19:07 +09001012static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001013{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001014 struct server *srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001015
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001016 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 +01001017 now_ms, __FUNCTION__,
1018 s,
1019 s->req, s->rep,
1020 s->req->rex, s->rep->wex,
1021 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001022 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 +01001023
1024 if (si->state == SI_ST_ASS) {
1025 /* Server assigned to connection request, we have to try to connect now */
1026 int conn_err;
1027
1028 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001029 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001030
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001031 if (conn_err == SN_ERR_NONE) {
1032 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +01001033 if (srv)
1034 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001035 return;
1036 }
1037
1038 /* We have received a synchronous error. We might have to
1039 * abort, retry immediately or redispatch.
1040 */
1041 if (conn_err == SN_ERR_INTERNAL) {
1042 if (!si->err_type) {
1043 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +01001044 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001045 }
1046
Willy Tarreau827aee92011-03-10 16:55:02 +01001047 if (srv)
1048 srv_inc_sess_ctr(srv);
1049 if (srv)
1050 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001051 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001052
1053 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +01001054 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001055 if (may_dequeue_tasks(srv, s->be))
1056 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001057
1058 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001059 si_shutr(si);
1060 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001061 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001062
1063 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1064
1065 /* no session was ever accounted for this server */
1066 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001067 if (s->srv_error)
1068 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001069 return;
1070 }
1071
1072 /* We are facing a retryable error, but we don't want to run a
1073 * turn-around now, as the problem is likely a source port
1074 * allocation problem, so we want to retry now.
1075 */
1076 si->state = SI_ST_CER;
1077 si->flags &= ~SI_FL_ERR;
1078 sess_update_st_cer(s, si);
1079 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1080 return;
1081 }
1082 else if (si->state == SI_ST_QUE) {
1083 /* connection request was queued, check for any update */
1084 if (!s->pend_pos) {
1085 /* The connection is not in the queue anymore. Either
1086 * we have a server connection slot available and we
1087 * go directly to the assigned state, or we need to
1088 * load-balance first and go to the INI state.
1089 */
1090 si->exp = TICK_ETERNITY;
1091 if (unlikely(!(s->flags & SN_ASSIGNED)))
1092 si->state = SI_ST_REQ;
1093 else {
1094 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1095 si->state = SI_ST_ASS;
1096 }
1097 return;
1098 }
1099
1100 /* Connection request still in queue... */
1101 if (si->flags & SI_FL_EXP) {
1102 /* ... and timeout expired */
1103 si->exp = TICK_ETERNITY;
1104 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001105 if (srv)
1106 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001107 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001108 si_shutr(si);
1109 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001110 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001111 if (!si->err_type)
1112 si->err_type = SI_ET_QUEUE_TO;
1113 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001114 if (s->srv_error)
1115 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001116 return;
1117 }
1118
1119 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001120 if ((si->ob->flags & (CF_READ_ERROR)) ||
1121 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001122 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001123 /* give up */
1124 si->exp = TICK_ETERNITY;
1125 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001126 si_shutr(si);
1127 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001128 si->err_type |= SI_ET_QUEUE_ABRT;
1129 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001130 if (s->srv_error)
1131 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001132 return;
1133 }
1134
1135 /* Nothing changed */
1136 return;
1137 }
1138 else if (si->state == SI_ST_TAR) {
1139 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001140 if ((si->ob->flags & (CF_READ_ERROR)) ||
1141 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001142 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001143 /* give up */
1144 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001145 si_shutr(si);
1146 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001147 si->err_type |= SI_ET_CONN_ABRT;
1148 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001149 if (s->srv_error)
1150 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001151 return;
1152 }
1153
1154 if (!(si->flags & SI_FL_EXP))
1155 return; /* still in turn-around */
1156
1157 si->exp = TICK_ETERNITY;
1158
1159 /* we keep trying on the same server as long as the session is
1160 * marked "assigned".
1161 * FIXME: Should we force a redispatch attempt when the server is down ?
1162 */
1163 if (s->flags & SN_ASSIGNED)
1164 si->state = SI_ST_ASS;
1165 else
1166 si->state = SI_ST_REQ;
1167 return;
1168 }
1169}
1170
Simon Hormandec5be42011-06-08 09:19:07 +09001171/* Set correct session termination flags in case no analyser has done it. It
1172 * also counts a failed request if the server state has not reached the request
1173 * stage.
1174 */
1175static void sess_set_term_flags(struct session *s)
1176{
1177 if (!(s->flags & SN_FINST_MASK)) {
1178 if (s->si[1].state < SI_ST_REQ) {
1179
1180 s->fe->fe_counters.failed_req++;
1181 if (s->listener->counters)
1182 s->listener->counters->failed_req++;
1183
1184 s->flags |= SN_FINST_R;
1185 }
1186 else if (s->si[1].state == SI_ST_QUE)
1187 s->flags |= SN_FINST_Q;
1188 else if (s->si[1].state < SI_ST_EST)
1189 s->flags |= SN_FINST_C;
1190 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1191 s->flags |= SN_FINST_D;
1192 else
1193 s->flags |= SN_FINST_L;
1194 }
1195}
1196
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001197/* This function initiates a server connection request on a stream interface
1198 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1199 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1200 * or SI_ST_CLO upon error.
1201 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001202static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1203{
1204 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 +01001205 now_ms, __FUNCTION__,
1206 s,
1207 s->req, s->rep,
1208 s->req->rex, s->rep->wex,
1209 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001210 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 +01001211
1212 if (si->state != SI_ST_REQ)
1213 return;
1214
1215 /* Try to assign a server */
1216 if (srv_redispatch_connect(s) != 0) {
1217 /* We did not get a server. Either we queued the
1218 * connection request, or we encountered an error.
1219 */
1220 if (si->state == SI_ST_QUE)
1221 return;
1222
1223 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001224 si_shutr(si);
1225 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001226 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001227 if (!si->err_type)
1228 si->err_type = SI_ET_CONN_OTHER;
1229 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001230 if (s->srv_error)
1231 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001232 return;
1233 }
1234
1235 /* The server is assigned */
1236 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1237 si->state = SI_ST_ASS;
1238}
1239
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001240/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001241 * if appropriate. The default_backend rule is also considered, then the
1242 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001243 * It returns 1 if the processing can continue on next analysers, or zero if it
1244 * either needs more data or wants to immediately abort the request.
1245 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001246static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001247{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001248 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001249
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001250 req->analysers &= ~an_bit;
1251 req->analyse_exp = TICK_ETERNITY;
1252
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001253 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 +02001254 now_ms, __FUNCTION__,
1255 s,
1256 req,
1257 req->rex, req->wex,
1258 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001259 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001260 req->analysers);
1261
1262 /* now check whether we have some switching rules for this request */
1263 if (!(s->flags & SN_BE_ASSIGNED)) {
1264 struct switching_rule *rule;
1265
1266 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1267 int ret;
1268
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001269 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 +02001270 ret = acl_pass(ret);
1271 if (rule->cond->pol == ACL_COND_UNLESS)
1272 ret = !ret;
1273
1274 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001275 if (!session_set_backend(s, rule->be.backend))
1276 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001277 break;
1278 }
1279 }
1280
1281 /* To ensure correct connection accounting on the backend, we
1282 * have to assign one if it was not set (eg: a listen). This
1283 * measure also takes care of correctly setting the default
1284 * backend if any.
1285 */
1286 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001287 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1288 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001289 }
1290
Willy Tarreaufb356202010-08-03 14:02:05 +02001291 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1292 if (s->fe == s->be) {
1293 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001294 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001295 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001296
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001297 /* 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 +01001298 * persistence rule, and report that in the session.
1299 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001300 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001301 int ret = 1;
1302
1303 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001304 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 +01001305 ret = acl_pass(ret);
1306 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1307 ret = !ret;
1308 }
1309
1310 if (ret) {
1311 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001312 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1313 s->flags |= SN_FORCE_PRST;
1314 } else {
1315 s->flags |= SN_IGNORE_PRST;
1316 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001317 break;
1318 }
1319 }
1320
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001321 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001322
1323 sw_failed:
1324 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001325 channel_abort(s->req);
1326 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001327
1328 if (!(s->flags & SN_ERR_MASK))
1329 s->flags |= SN_ERR_RESOURCE;
1330 if (!(s->flags & SN_FINST_MASK))
1331 s->flags |= SN_FINST_R;
1332
1333 s->txn.status = 500;
1334 s->req->analysers = 0;
1335 s->req->analyse_exp = TICK_ETERNITY;
1336 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001337}
1338
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001339/* This stream analyser works on a request. It applies all use-server rules on
1340 * it then returns 1. The data must already be present in the buffer otherwise
1341 * they won't match. It always returns 1.
1342 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001343static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001344{
1345 struct proxy *px = s->be;
1346 struct server_rule *rule;
1347
1348 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1349 now_ms, __FUNCTION__,
1350 s,
1351 req,
1352 req->rex, req->wex,
1353 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001354 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001355 req->analysers);
1356
1357 if (!(s->flags & SN_ASSIGNED)) {
1358 list_for_each_entry(rule, &px->server_rules, list) {
1359 int ret;
1360
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001361 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 +02001362 ret = acl_pass(ret);
1363 if (rule->cond->pol == ACL_COND_UNLESS)
1364 ret = !ret;
1365
1366 if (ret) {
1367 struct server *srv = rule->srv.ptr;
1368
1369 if ((srv->state & SRV_RUNNING) ||
1370 (px->options & PR_O_PERSIST) ||
1371 (s->flags & SN_FORCE_PRST)) {
1372 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001373 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001374 break;
1375 }
1376 /* if the server is not UP, let's go on with next rules
1377 * just in case another one is suited.
1378 */
1379 }
1380 }
1381 }
1382
1383 req->analysers &= ~an_bit;
1384 req->analyse_exp = TICK_ETERNITY;
1385 return 1;
1386}
1387
Emeric Brun1d33b292010-01-04 15:47:17 +01001388/* This stream analyser works on a request. It applies all sticking rules on
1389 * it then returns 1. The data must already be present in the buffer otherwise
1390 * they won't match. It always returns 1.
1391 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001392static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001393{
1394 struct proxy *px = s->be;
1395 struct sticking_rule *rule;
1396
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001397 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001398 now_ms, __FUNCTION__,
1399 s,
1400 req,
1401 req->rex, req->wex,
1402 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001403 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001404 req->analysers);
1405
1406 list_for_each_entry(rule, &px->sticking_rules, list) {
1407 int ret = 1 ;
1408 int i;
1409
1410 for (i = 0; i < s->store_count; i++) {
1411 if (rule->table.t == s->store[i].table)
1412 break;
1413 }
1414
1415 if (i != s->store_count)
1416 continue;
1417
1418 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001419 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001420 ret = acl_pass(ret);
1421 if (rule->cond->pol == ACL_COND_UNLESS)
1422 ret = !ret;
1423 }
1424
1425 if (ret) {
1426 struct stktable_key *key;
1427
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001428 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 +01001429 if (!key)
1430 continue;
1431
1432 if (rule->flags & STK_IS_MATCH) {
1433 struct stksess *ts;
1434
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001435 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001436 if (!(s->flags & SN_ASSIGNED)) {
1437 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001438 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001439
1440 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001441 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1442 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001443 if (node) {
1444 struct server *srv;
1445
1446 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001447 if ((srv->state & SRV_RUNNING) ||
1448 (px->options & PR_O_PERSIST) ||
1449 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001450 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001451 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001452 }
1453 }
1454 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001455 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001456 }
1457 }
1458 if (rule->flags & STK_IS_STORE) {
1459 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1460 struct stksess *ts;
1461
1462 ts = stksess_new(rule->table.t, key);
1463 if (ts) {
1464 s->store[s->store_count].table = rule->table.t;
1465 s->store[s->store_count++].ts = ts;
1466 }
1467 }
1468 }
1469 }
1470 }
1471
1472 req->analysers &= ~an_bit;
1473 req->analyse_exp = TICK_ETERNITY;
1474 return 1;
1475}
1476
1477/* This stream analyser works on a response. It applies all store rules on it
1478 * then returns 1. The data must already be present in the buffer otherwise
1479 * they won't match. It always returns 1.
1480 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001481static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001482{
1483 struct proxy *px = s->be;
1484 struct sticking_rule *rule;
1485 int i;
1486
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001487 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 +01001488 now_ms, __FUNCTION__,
1489 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001490 rep,
1491 rep->rex, rep->wex,
1492 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001493 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001494 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001495
1496 list_for_each_entry(rule, &px->storersp_rules, list) {
1497 int ret = 1 ;
1498 int storereqidx = -1;
1499
1500 for (i = 0; i < s->store_count; i++) {
1501 if (rule->table.t == s->store[i].table) {
1502 if (!(s->store[i].flags))
1503 storereqidx = i;
1504 break;
1505 }
1506 }
1507
1508 if ((i != s->store_count) && (storereqidx == -1))
1509 continue;
1510
1511 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001512 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001513 ret = acl_pass(ret);
1514 if (rule->cond->pol == ACL_COND_UNLESS)
1515 ret = !ret;
1516 }
1517
1518 if (ret) {
1519 struct stktable_key *key;
1520
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001521 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 +01001522 if (!key)
1523 continue;
1524
1525 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001526 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001527 s->store[storereqidx].flags = 1;
1528 }
1529 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1530 struct stksess *ts;
1531
1532 ts = stksess_new(rule->table.t, key);
1533 if (ts) {
1534 s->store[s->store_count].table = rule->table.t;
1535 s->store[s->store_count].flags = 1;
1536 s->store[s->store_count++].ts = ts;
1537 }
1538 }
1539 }
1540 }
1541
1542 /* process store request and store response */
1543 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001544 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001545 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001546
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001547 if (objt_server(s->target) && objt_server(s->target)->state & SRV_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001548 stksess_free(s->store[i].table, s->store[i].ts);
1549 s->store[i].ts = NULL;
1550 continue;
1551 }
1552
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001553 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1554 if (ts) {
1555 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001556 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001557 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001558 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001559 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001560 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001561
1562 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001563 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001564 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001565 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001566 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001567
1568 rep->analysers &= ~an_bit;
1569 rep->analyse_exp = TICK_ETERNITY;
1570 return 1;
1571}
1572
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001573/* This macro is very specific to the function below. See the comments in
1574 * process_session() below to understand the logic and the tests.
1575 */
1576#define UPDATE_ANALYSERS(real, list, back, flag) { \
1577 list = (((list) & ~(flag)) | ~(back)) & (real); \
1578 back = real; \
1579 if (!(list)) \
1580 break; \
1581 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1582 continue; \
1583}
1584
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001585/* Processes the client, server, request and response jobs of a session task,
1586 * then puts it back to the wait queue in a clean state, or cleans up its
1587 * resources if it must be deleted. Returns in <next> the date the task wants
1588 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1589 * nothing too many times, the request and response buffers flags are monitored
1590 * and each function is called only if at least another function has changed at
1591 * least one flag it is interested in.
1592 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001593struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001594{
Willy Tarreau827aee92011-03-10 16:55:02 +01001595 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001596 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001597 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001598 unsigned int rq_prod_last, rq_cons_last;
1599 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001600 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001601
1602 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1603 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1604
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001605 /* this data may be no longer valid, clear it */
1606 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1607
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001608 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001609 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001610
1611 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001612 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1613 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001614
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001615 /* we don't want the stream interface functions to recursively wake us up */
1616 if (s->req->prod->owner == t)
1617 s->req->prod->flags |= SI_FL_DONT_WAKE;
1618 if (s->req->cons->owner == t)
1619 s->req->cons->flags |= SI_FL_DONT_WAKE;
1620
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001621 /* 1a: Check for low level timeouts if needed. We just set a flag on
1622 * stream interfaces when their timeouts have expired.
1623 */
1624 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1625 stream_int_check_timeouts(&s->si[0]);
1626 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001627
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001628 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001629 * for future reads or writes. Note: this will also concern upper layers
1630 * but we do not touch any other flag. We must be careful and correctly
1631 * detect state changes when calling them.
1632 */
1633
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001634 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001635
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001636 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001637 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001638 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001639 }
1640
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001641 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001642 if (s->req->prod->flags & SI_FL_NOHALF)
1643 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001644 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001645 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001646
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001647 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001648
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001649 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001650 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001651 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001652 }
1653
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001654 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001655 if (s->rep->prod->flags & SI_FL_NOHALF)
1656 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001657 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001658 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001659
1660 /* Once in a while we're woken up because the task expires. But
1661 * this does not necessarily mean that a timeout has been reached.
1662 * So let's not run a whole session processing if only an expiration
1663 * timeout needs to be refreshed.
1664 */
1665 if (!((s->req->flags | s->rep->flags) &
1666 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
1667 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
1668 !((s->si[0].flags | s->si[1].flags) & (SI_FL_EXP|SI_FL_ERR)) &&
1669 ((t->state & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER))
1670 goto update_exp_and_leave;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001671 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001672
1673 /* 1b: check for low-level errors reported at the stream interface.
1674 * First we check if it's a retryable error (in which case we don't
1675 * want to tell the buffer). Otherwise we report the error one level
1676 * upper by setting flags into the buffers. Note that the side towards
1677 * the client cannot have connect (hence retryable) errors. Also, the
1678 * connection setup code must be able to deal with any type of abort.
1679 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001680 srv = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001681 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1682 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001683 si_shutr(&s->si[0]);
1684 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001685 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001686 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001687 s->be->be_counters.cli_aborts++;
1688 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001689 if (srv)
1690 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001691 if (!(s->flags & SN_ERR_MASK))
1692 s->flags |= SN_ERR_CLICL;
1693 if (!(s->flags & SN_FINST_MASK))
1694 s->flags |= SN_FINST_D;
1695 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001696 }
1697 }
1698
1699 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1700 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001701 si_shutr(&s->si[1]);
1702 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001703 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001704 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001705 if (srv)
1706 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001707 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001708 s->be->be_counters.srv_aborts++;
1709 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001710 if (srv)
1711 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001712 if (!(s->flags & SN_ERR_MASK))
1713 s->flags |= SN_ERR_SRVCL;
1714 if (!(s->flags & SN_FINST_MASK))
1715 s->flags |= SN_FINST_D;
1716 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001717 }
1718 /* note: maybe we should process connection errors here ? */
1719 }
1720
1721 if (s->si[1].state == SI_ST_CON) {
1722 /* we were trying to establish a connection on the server side,
1723 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1724 */
1725 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1726 sess_update_st_cer(s, &s->si[1]);
1727 else if (s->si[1].state == SI_ST_EST)
1728 sess_establish(s, &s->si[1]);
1729
1730 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1731 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1732 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1733 */
1734 }
1735
Willy Tarreau815a9b22010-07-27 17:15:12 +02001736 rq_prod_last = s->si[0].state;
1737 rq_cons_last = s->si[1].state;
1738 rp_cons_last = s->si[0].state;
1739 rp_prod_last = s->si[1].state;
1740
1741 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001742 /* Check for connection closure */
1743
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001744 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001745 "[%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 +01001746 now_ms, __FUNCTION__, __LINE__,
1747 t,
1748 s, s->flags,
1749 s->req, s->rep,
1750 s->req->rex, s->rep->wex,
1751 s->req->flags, s->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001752 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 +01001753 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001754 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001755
1756 /* nothing special to be done on client side */
1757 if (unlikely(s->req->prod->state == SI_ST_DIS))
1758 s->req->prod->state = SI_ST_CLO;
1759
1760 /* When a server-side connection is released, we have to count it and
1761 * check for pending connections on this server.
1762 */
1763 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1764 s->req->cons->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001765 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001766 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001767 if (s->flags & SN_CURR_SESS) {
1768 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001769 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001770 }
1771 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001772 if (may_dequeue_tasks(srv, s->be))
1773 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001774 }
1775 }
1776
1777 /*
1778 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1779 * at this point.
1780 */
1781
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001782 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001783 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001784 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1785 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001786 s->si[0].state != rq_prod_last ||
1787 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001788 unsigned int flags = s->req->flags;
1789
1790 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001791 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001792 unsigned int ana_list;
1793 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001794
Willy Tarreau90deb182010-01-07 00:20:41 +01001795 /* it's up to the analysers to stop new connections,
1796 * disable reading or closing. Note: if an analyser
1797 * disables any of these bits, it is responsible for
1798 * enabling them again when it disables itself, so
1799 * that other analysers are called in similar conditions.
1800 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001801 channel_auto_read(s->req);
1802 channel_auto_connect(s->req);
1803 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001804
1805 /* We will call all analysers for which a bit is set in
1806 * s->req->analysers, following the bit order from LSB
1807 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001808 * the list when not needed. Any analyser may return 0
1809 * to break out of the loop, either because of missing
1810 * data to take a decision, or because it decides to
1811 * kill the session. We loop at least once through each
1812 * analyser, and we may loop again if other analysers
1813 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001814 *
1815 * We build a list of analysers to run. We evaluate all
1816 * of these analysers in the order of the lower bit to
1817 * the higher bit. This ordering is very important.
1818 * An analyser will often add/remove other analysers,
1819 * including itself. Any changes to itself have no effect
1820 * on the loop. If it removes any other analysers, we
1821 * want those analysers not to be called anymore during
1822 * this loop. If it adds an analyser that is located
1823 * after itself, we want it to be scheduled for being
1824 * processed during the loop. If it adds an analyser
1825 * which is located before it, we want it to switch to
1826 * it immediately, even if it has already been called
1827 * once but removed since.
1828 *
1829 * In order to achieve this, we compare the analyser
1830 * list after the call with a copy of it before the
1831 * call. The work list is fed with analyser bits that
1832 * appeared during the call. Then we compare previous
1833 * work list with the new one, and check the bits that
1834 * appeared. If the lowest of these bits is lower than
1835 * the current bit, it means we have enabled a previous
1836 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001837 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001838
1839 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001840 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001841 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001842
Willy Tarreaufb356202010-08-03 14:02:05 +02001843 if (ana_list & AN_REQ_INSPECT_FE) {
1844 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001845 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001846 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001847 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001848
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001849 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001850 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001851 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001852 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001853 }
1854
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001855 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001856 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1857 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001858 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001859 }
1860
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001861 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001862 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1863 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001864 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001865 }
1866
Willy Tarreaufb356202010-08-03 14:02:05 +02001867 if (ana_list & AN_REQ_INSPECT_BE) {
1868 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1869 break;
1870 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1871 }
1872
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001873 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001874 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1875 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001876 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001877 }
1878
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001879 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001880 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001881 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001882 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001883 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001884
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001885 if (ana_list & AN_REQ_SRV_RULES) {
1886 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1887 break;
1888 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1889 }
1890
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001891 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001892 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1893 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001894 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001895 }
1896
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001897 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001898 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001899 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001900 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001901 }
Emeric Brun647caf12009-06-30 17:57:00 +02001902
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001903 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001904 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1905 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001906 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001907 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001908
Emeric Brun1d33b292010-01-04 15:47:17 +01001909 if (ana_list & AN_REQ_STICKING_RULES) {
1910 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1911 break;
1912 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1913 }
1914
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001915 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001916 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1917 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001918 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001919 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001920 break;
1921 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001922 }
Willy Tarreau84455332009-03-15 22:34:05 +01001923
Willy Tarreau815a9b22010-07-27 17:15:12 +02001924 rq_prod_last = s->si[0].state;
1925 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001926 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001927 rqf_last = s->req->flags;
1928
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001929 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001930 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001931 }
1932
Willy Tarreau576507f2010-01-07 00:09:04 +01001933 /* we'll monitor the request analysers while parsing the response,
1934 * because some response analysers may indirectly enable new request
1935 * analysers (eg: HTTP keep-alive).
1936 */
1937 req_ana_back = s->req->analysers;
1938
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001939 resync_response:
1940 /* Analyse response */
1941
Willy Tarreaub31c9712012-11-11 23:05:39 +01001942 if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001943 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001944 s->si[0].state != rp_cons_last ||
1945 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001946 unsigned int flags = s->rep->flags;
1947
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001948 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001949 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1950 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1951 * for some free space in the response buffer, so we might need to call
1952 * it when something changes in the response buffer, but still we pass
1953 * it the request buffer. Note that the SI state might very well still
1954 * be zero due to us returning a flow of redirects!
1955 */
1956 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001957 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001958 }
1959
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001960 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001961 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001962 unsigned int ana_list;
1963 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001964
Willy Tarreau90deb182010-01-07 00:20:41 +01001965 /* it's up to the analysers to stop disable reading or
1966 * closing. Note: if an analyser disables any of these
1967 * bits, it is responsible for enabling them again when
1968 * it disables itself, so that other analysers are called
1969 * in similar conditions.
1970 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001971 channel_auto_read(s->rep);
1972 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001973
1974 /* We will call all analysers for which a bit is set in
1975 * s->rep->analysers, following the bit order from LSB
1976 * to MSB. The analysers must remove themselves from
1977 * the list when not needed. Any analyser may return 0
1978 * to break out of the loop, either because of missing
1979 * data to take a decision, or because it decides to
1980 * kill the session. We loop at least once through each
1981 * analyser, and we may loop again if other analysers
1982 * are added in the middle.
1983 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001984
1985 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001986 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001987 /* Warning! ensure that analysers are always placed in ascending order! */
1988
Emeric Brun97679e72010-09-23 17:56:44 +02001989 if (ana_list & AN_RES_INSPECT) {
1990 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1991 break;
1992 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1993 }
1994
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001995 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001996 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1997 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001998 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001999 }
2000
Emeric Brun1d33b292010-01-04 15:47:17 +01002001 if (ana_list & AN_RES_STORE_RULES) {
2002 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
2003 break;
2004 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
2005 }
2006
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002007 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002008 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
2009 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002010 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002011 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002012
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002013 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01002014 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
2015 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002016 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002017 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01002018 break;
2019 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002020 }
2021
Willy Tarreau815a9b22010-07-27 17:15:12 +02002022 rp_cons_last = s->si[0].state;
2023 rp_prod_last = s->si[1].state;
2024 rpf_last = s->rep->flags;
2025
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002026 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002027 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002028 }
2029
Willy Tarreau576507f2010-01-07 00:09:04 +01002030 /* maybe someone has added some request analysers, so we must check and loop */
2031 if (s->req->analysers & ~req_ana_back)
2032 goto resync_request;
2033
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002034 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01002035 goto resync_request;
2036
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002037 /* FIXME: here we should call protocol handlers which rely on
2038 * both buffers.
2039 */
2040
2041
2042 /*
Willy Tarreauae526782010-03-04 20:34:23 +01002043 * Now we propagate unhandled errors to the session. Normally
2044 * we're just in a data phase here since it means we have not
2045 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002046 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002047 srv = objt_server(s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01002048 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002049 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002050 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01002051 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002052 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002053 s->be->be_counters.cli_aborts++;
2054 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002055 if (srv)
2056 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002057 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002058 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002059 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002060 s->be->be_counters.cli_aborts++;
2061 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002062 if (srv)
2063 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002064 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002065 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002066 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002067 s->be->be_counters.srv_aborts++;
2068 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002069 if (srv)
2070 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002071 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002072 }
2073 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002074 s->be->be_counters.srv_aborts++;
2075 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002076 if (srv)
2077 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002078 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002079 }
Willy Tarreau84455332009-03-15 22:34:05 +01002080 sess_set_term_flags(s);
2081 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002082 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002083 /* Report it if the server got an error or a read timeout expired */
2084 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002085 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002086 s->be->be_counters.srv_aborts++;
2087 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002088 if (srv)
2089 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002090 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002091 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002092 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002093 s->be->be_counters.srv_aborts++;
2094 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002095 if (srv)
2096 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002097 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002098 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002099 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002100 s->be->be_counters.cli_aborts++;
2101 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002102 if (srv)
2103 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002104 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002105 }
2106 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002107 s->be->be_counters.cli_aborts++;
2108 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002109 if (srv)
2110 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002111 s->flags |= SN_ERR_CLITO;
2112 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002113 sess_set_term_flags(s);
2114 }
Willy Tarreau84455332009-03-15 22:34:05 +01002115 }
2116
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002117 /*
2118 * Here we take care of forwarding unhandled data. This also includes
2119 * connection establishments and shutdown requests.
2120 */
2121
2122
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002123 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002124 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002125 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002126 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002127 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002128 if (!s->req->analysers &&
Willy Tarreaub31c9712012-11-11 23:05:39 +01002129 !(s->req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002130 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002131 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002132 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002133 * attached to it. If any data are left in, we'll permit them to
2134 * move.
2135 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002136 channel_auto_read(s->req);
2137 channel_auto_connect(s->req);
2138 channel_auto_close(s->req);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002139 buffer_flush(s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002140
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002141 /* We'll let data flow between the producer (if still connected)
2142 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002143 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002144 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002145 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002146 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002147
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002148 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002149 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002150 s->req->to_forward &&
2151 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002152 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2153 (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 +01002154 (pipes_used < global.maxpipes) &&
2155 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2156 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002157 (s->req->flags & CF_STREAMER_FAST)))) {
2158 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002159 }
2160
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002161 /* reflect what the L7 analysers have seen last */
2162 rqf_last = s->req->flags;
2163
2164 /*
2165 * Now forward all shutdown requests between both sides of the buffer
2166 */
2167
Willy Tarreau520d95e2009-09-19 21:04:57 +02002168 /* first, let's check if the request buffer needs to shutdown(write), which may
2169 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002170 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002171 */
Willy Tarreaub31c9712012-11-11 23:05:39 +01002172 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002173 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002174 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002175
2176 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002177 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002178 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002179 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002180
2181 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002182 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002183 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002184 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002185
2186 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002187 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002188 if (s->req->prod->flags & SI_FL_NOHALF)
2189 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002190 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002191 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002192
Willy Tarreau520d95e2009-09-19 21:04:57 +02002193 /* it's possible that an upper layer has requested a connection setup or abort.
2194 * There are 2 situations where we decide to establish a new connection :
2195 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002196 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002197 */
2198 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002199 if (!(s->req->flags & CF_SHUTW)) {
2200 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002201 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002202 * switch to the connected state, otherwise we perform a connection
2203 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002204 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002205 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002206 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002207 if (unlikely(obj_type(s->req->cons->conn->target) == OBJ_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002208 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002209 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002210 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002211 s->req->wex = TICK_ETERNITY;
2212 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002213 }
Willy Tarreau73201222009-08-16 18:27:24 +02002214 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002215 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002216 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002217 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2218 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002219 }
Willy Tarreau92795622009-03-06 12:51:23 +01002220 }
2221
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002222
2223 /* we may have a pending connection request, or a connection waiting
2224 * for completion.
2225 */
2226 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2227 do {
2228 /* nb: step 1 might switch from QUE to ASS, but we first want
2229 * to give a chance to step 2 to perform a redirect if needed.
2230 */
2231 if (s->si[1].state != SI_ST_REQ)
2232 sess_update_stream_int(s, &s->si[1]);
2233 if (s->si[1].state == SI_ST_REQ)
2234 sess_prepare_conn_req(s, &s->si[1]);
2235
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002236 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01002237 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002238 perform_http_redirect(s, &s->si[1]);
2239 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002240
2241 /* Now we can add the server name to a header (if requested) */
2242 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002243 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002244 (s->be->mode == PR_MODE_HTTP) &&
2245 (s->be->server_id_hdr_name != NULL)) {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002246 http_send_name_header(&s->txn, s->be, objt_server(s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002247 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002248 }
2249
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002250 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002251 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002252 goto resync_stream_interface;
2253
Willy Tarreau815a9b22010-07-27 17:15:12 +02002254 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002255 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002256 goto resync_request;
2257
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002258 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002259
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002260 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002261 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002262 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002263 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002264 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002265 if (!s->rep->analysers &&
Willy Tarreaub31c9712012-11-11 23:05:39 +01002266 !(s->rep->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002267 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002268 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002269 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002270 * attached to it. If any data are left in, we'll permit them to
2271 * move.
2272 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002273 channel_auto_read(s->rep);
2274 channel_auto_close(s->rep);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002275 buffer_flush(s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002276
2277 /* We'll let data flow between the producer (if still connected)
2278 * to the consumer.
2279 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002280 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002281 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002282
2283 /* if we have no analyser anymore in any direction and have a
2284 * tunnel timeout set, use it now.
2285 */
2286 if (!s->req->analysers && s->be->timeout.tunnel) {
2287 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2288 s->be->timeout.tunnel;
2289 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2290 tick_add(now_ms, s->be->timeout.tunnel);
2291 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002292 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002293
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002294 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002295 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002296 s->rep->to_forward &&
2297 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002298 (s->si[0].conn->xprt && s->si[0].conn->xprt->rcv_pipe && s->si[0].conn->xprt->snd_pipe) &&
2299 (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 +01002300 (pipes_used < global.maxpipes) &&
2301 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2302 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002303 (s->rep->flags & CF_STREAMER_FAST)))) {
2304 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002305 }
2306
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002307 /* reflect what the L7 analysers have seen last */
2308 rpf_last = s->rep->flags;
2309
2310 /*
2311 * Now forward all shutdown requests between both sides of the buffer
2312 */
2313
2314 /*
2315 * FIXME: this is probably where we should produce error responses.
2316 */
2317
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002318 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreaub31c9712012-11-11 23:05:39 +01002319 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002320 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002321 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002322
2323 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002324 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002325 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002326 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002327
2328 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002329 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002330 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002331 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002332
2333 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002334 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002335 if (s->rep->prod->flags & SI_FL_NOHALF)
2336 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002337 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002338 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002339
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002340 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002341 goto resync_stream_interface;
2342
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002343 if (s->req->flags != rqf_last)
2344 goto resync_request;
2345
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002346 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002347 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002348
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002349 /* we're interested in getting wakeups again */
2350 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2351 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2352
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002353 /* This is needed only when debugging is enabled, to indicate
2354 * client-side or server-side close. Please note that in the unlikely
2355 * event where both sides would close at once, the sequence is reported
2356 * on the server side first.
2357 */
2358 if (unlikely((global.mode & MODE_DEBUG) &&
2359 (!(global.mode & MODE_QUIET) ||
2360 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002361 if (s->si[1].state == SI_ST_CLO &&
2362 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002363 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002364 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002365 (unsigned short)s->si[0].conn->t.sock.fd,
2366 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002367 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002368 }
2369
2370 if (s->si[0].state == SI_ST_CLO &&
2371 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002372 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002373 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002374 (unsigned short)s->si[0].conn->t.sock.fd,
2375 (unsigned short)s->si[1].conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002376 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002377 }
2378 }
2379
2380 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2381 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2382
2383 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2384 session_process_counters(s);
2385
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002386 if (s->rep->cons->state == SI_ST_EST && obj_type(s->rep->cons->conn->target) != OBJ_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002387 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002388
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002389 if (s->req->cons->state == SI_ST_EST && obj_type(s->req->cons->conn->target) != OBJ_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002390 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002391
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002392 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2393 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 +01002394 s->si[0].prev_state = s->si[0].state;
2395 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002396 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2397 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002398
2399 /* Trick: if a request is being waiting for the server to respond,
2400 * and if we know the server can timeout, we don't want the timeout
2401 * to expire on the client side first, but we're still interested
2402 * in passing data from the client to the server (eg: POST). Thus,
2403 * we can cancel the client's request timeout if the server's
2404 * request timeout is set and the server has not yet sent a response.
2405 */
2406
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002407 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002408 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002409 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002410 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002411 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002412
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002413 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002414 * Note that this one may wake the task up again.
2415 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002416 if (obj_type(s->req->cons->conn->target) == OBJ_TYPE_APPLET ||
2417 obj_type(s->rep->cons->conn->target) == OBJ_TYPE_APPLET) {
2418 if (objt_applet(s->req->cons->conn->target))
2419 objt_applet(s->req->cons->conn->target)->fct(s->req->cons);
2420 if (objt_applet(s->rep->cons->conn->target))
2421 objt_applet(s->rep->cons->conn->target)->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002422 if (task_in_rq(t)) {
2423 /* If we woke up, we don't want to requeue the
2424 * task to the wait queue, but rather requeue
2425 * it into the runqueue ASAP.
2426 */
2427 t->expire = TICK_ETERNITY;
2428 return t;
2429 }
2430 }
2431
Willy Tarreau798f4322012-11-08 14:49:17 +01002432 update_exp_and_leave:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002433 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2434 tick_first(s->rep->rex, s->rep->wex));
2435 if (s->req->analysers)
2436 t->expire = tick_first(t->expire, s->req->analyse_exp);
2437
2438 if (s->si[0].exp)
2439 t->expire = tick_first(t->expire, s->si[0].exp);
2440
2441 if (s->si[1].exp)
2442 t->expire = tick_first(t->expire, s->si[1].exp);
2443
2444#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002445 fprintf(stderr,
2446 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2447 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2448 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2449 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 +01002450#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002451
2452#ifdef DEBUG_DEV
2453 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002454 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002455 ABORT_NOW();
2456#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002457 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002458 }
2459
2460 s->fe->feconn--;
2461 if (s->flags & SN_BE_ASSIGNED)
2462 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002463 if (!(s->listener->options & LI_O_UNLIMITED))
2464 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002465 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002466 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002467 if (s->listener->state == LI_FULL)
2468 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002469
Willy Tarreau08ceb102011-07-24 22:58:00 +02002470 /* Dequeues all of the listeners waiting for a resource */
2471 if (!LIST_ISEMPTY(&global_listener_queue))
2472 dequeue_all_listeners(&global_listener_queue);
2473
Willy Tarreaub32907b2011-07-25 08:37:44 +02002474 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2475 (!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 +02002476 dequeue_all_listeners(&s->fe->listener_queue);
2477
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002478 if (unlikely((global.mode & MODE_DEBUG) &&
2479 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002480 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002481 s->uniq_id, s->be->id,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01002482 (unsigned short)s->req->prod->conn->t.sock.fd,
2483 (unsigned short)s->req->cons->conn->t.sock.fd);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002484 if (write(1, trash.str, trash.len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002485 }
2486
2487 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2488 session_process_counters(s);
2489
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002490 if (s->txn.status) {
2491 int n;
2492
2493 n = s->txn.status / 100;
2494 if (n < 1 || n > 5)
2495 n = 0;
2496
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002497 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002498 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01002499 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002500 s->fe->fe_counters.p.http.comp_rsp++;
2501 }
Willy Tarreau24657792010-02-26 10:30:28 +01002502 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002503 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002504 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002505 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01002506 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002507 s->be->be_counters.p.http.comp_rsp++;
2508 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002509 }
2510
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002511 /* let's do a final log if we need it */
2512 if (s->logs.logwait &&
2513 !(s->flags & SN_MONITOR) &&
2514 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002515 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002516 }
2517
2518 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002519 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002520 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002521 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002522 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002523}
2524
Willy Tarreau7c669d72008-06-20 15:04:11 +02002525/*
2526 * This function adjusts sess->srv_conn and maintains the previous and new
2527 * server's served session counts. Setting newsrv to NULL is enough to release
2528 * current connection slot. This function also notifies any LB algo which might
2529 * expect to be informed about any change in the number of active sessions on a
2530 * server.
2531 */
2532void sess_change_server(struct session *sess, struct server *newsrv)
2533{
2534 if (sess->srv_conn == newsrv)
2535 return;
2536
2537 if (sess->srv_conn) {
2538 sess->srv_conn->served--;
2539 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2540 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002541 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002542 }
2543
2544 if (newsrv) {
2545 newsrv->served++;
2546 if (newsrv->proxy->lbprm.server_take_conn)
2547 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002548 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002549 }
2550}
2551
Willy Tarreau84455332009-03-15 22:34:05 +01002552/* Handle server-side errors for default protocols. It is called whenever a a
2553 * connection setup is aborted or a request is aborted in queue. It sets the
2554 * session termination flags so that the caller does not have to worry about
2555 * them. It's installed as ->srv_error for the server-side stream_interface.
2556 */
2557void default_srv_error(struct session *s, struct stream_interface *si)
2558{
2559 int err_type = si->err_type;
2560 int err = 0, fin = 0;
2561
2562 if (err_type & SI_ET_QUEUE_ABRT) {
2563 err = SN_ERR_CLICL;
2564 fin = SN_FINST_Q;
2565 }
2566 else if (err_type & SI_ET_CONN_ABRT) {
2567 err = SN_ERR_CLICL;
2568 fin = SN_FINST_C;
2569 }
2570 else if (err_type & SI_ET_QUEUE_TO) {
2571 err = SN_ERR_SRVTO;
2572 fin = SN_FINST_Q;
2573 }
2574 else if (err_type & SI_ET_QUEUE_ERR) {
2575 err = SN_ERR_SRVCL;
2576 fin = SN_FINST_Q;
2577 }
2578 else if (err_type & SI_ET_CONN_TO) {
2579 err = SN_ERR_SRVTO;
2580 fin = SN_FINST_C;
2581 }
2582 else if (err_type & SI_ET_CONN_ERR) {
2583 err = SN_ERR_SRVCL;
2584 fin = SN_FINST_C;
2585 }
2586 else /* SI_ET_CONN_OTHER and others */ {
2587 err = SN_ERR_INTERNAL;
2588 fin = SN_FINST_C;
2589 }
2590
2591 if (!(s->flags & SN_ERR_MASK))
2592 s->flags |= err;
2593 if (!(s->flags & SN_FINST_MASK))
2594 s->flags |= fin;
2595}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002596
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002597/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2598void session_shutdown(struct session *session, int why)
2599{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002600 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002601 return;
2602
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002603 channel_shutw_now(session->req);
2604 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002605 session->task->nice = 1024;
2606 if (!(session->flags & SN_ERR_MASK))
2607 session->flags |= why;
2608 task_wakeup(session->task, TASK_WOKEN_OTHER);
2609}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002610
Willy Tarreau8b22a712010-06-18 17:46:06 +02002611/************************************************************************/
2612/* All supported ACL keywords must be declared here. */
2613/************************************************************************/
2614
Willy Tarreaua5e37562011-12-16 17:06:15 +01002615/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002616static int
Willy Tarreau37406352012-04-23 16:16:37 +02002617acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002618{
Willy Tarreau37406352012-04-23 16:16:37 +02002619 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002620 smp->type = SMP_T_UINT;
2621 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002622 if (ts != NULL) {
2623 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2624 if (!ptr)
2625 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002626 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002627 }
2628 return 1;
2629}
2630
Willy Tarreaua5e37562011-12-16 17:06:15 +01002631/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002632 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002633 */
2634static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002635acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002636 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002637{
Willy Tarreau56123282010-08-06 19:06:56 +02002638 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002639 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002640 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002641}
2642
Willy Tarreaua5e37562011-12-16 17:06:15 +01002643/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002644 * backend counters.
2645 */
2646static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002647acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002648 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002649{
Willy Tarreau56123282010-08-06 19:06:56 +02002650 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002651 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002652 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002653}
2654
Willy Tarreaua5e37562011-12-16 17:06:15 +01002655/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002656 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002657 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002658 */
2659static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002660acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002661 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002662{
2663 struct stktable_key *key;
2664
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002665 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002666 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002667 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002668
Willy Tarreau24e32d82012-04-23 23:55:44 +02002669 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002670 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002671}
2672
2673/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002674 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002675 */
2676static int
Willy Tarreau37406352012-04-23 16:16:37 +02002677acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002678{
Willy Tarreau37406352012-04-23 16:16:37 +02002679 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002680 smp->type = SMP_T_UINT;
2681 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002682 if (ts != NULL) {
2683 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2684 if (!ptr)
2685 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002686 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002687 }
2688 return 1;
2689}
2690
2691/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002692 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002693 */
2694static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002695acl_fetch_sc1_inc_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 Tarreauf059a0f2010-08-03 16:29:52 +02002697{
Willy Tarreau56123282010-08-06 19:06:56 +02002698 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002699 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002700 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002701}
2702
2703/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002704 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002705 */
2706static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002707acl_fetch_sc2_inc_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 Tarreauc3bd9722010-06-20 12:47:25 +02002709{
Willy Tarreau56123282010-08-06 19:06:56 +02002710 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002711 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002712 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002713}
2714
2715/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002716 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002717 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002718 */
2719static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002720acl_fetch_src_inc_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 Tarreauc3bd9722010-06-20 12:47:25 +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 Tarreauc3bd9722010-06-20 12:47:25 +02002726 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002727 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002728
Willy Tarreau24e32d82012-04-23 23:55:44 +02002729 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002730 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002731}
2732
Willy Tarreauf73cd112011-08-13 01:45:16 +02002733/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002734 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002735 */
2736static int
Willy Tarreau37406352012-04-23 16:16:37 +02002737acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002738{
Willy Tarreau37406352012-04-23 16:16:37 +02002739 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002740 smp->type = SMP_T_UINT;
2741 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002742 if (ts != NULL) {
2743 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2744 if (!ptr)
2745 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002746 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002747 stktable_data_cast(ptr, gpc0) = 0;
2748 }
2749 return 1;
2750}
2751
2752/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002753 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002754 */
2755static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002756acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002757 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002758{
2759 if (!l4->stkctr1_entry)
2760 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002761 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002762}
2763
2764/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002765 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002766 */
2767static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002768acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002769 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002770{
2771 if (!l4->stkctr2_entry)
2772 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002773 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002774}
2775
2776/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002777 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002778 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002779 */
2780static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002781acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002782 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002783{
2784 struct stktable_key *key;
2785
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002786 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002787 if (!key)
2788 return 0;
2789
Willy Tarreau24e32d82012-04-23 23:55:44 +02002790 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002791 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002792}
2793
Willy Tarreaua5e37562011-12-16 17:06:15 +01002794/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002795static int
Willy Tarreau37406352012-04-23 16:16:37 +02002796acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002797{
Willy Tarreau37406352012-04-23 16:16:37 +02002798 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002799 smp->type = SMP_T_UINT;
2800 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002801 if (ts != NULL) {
2802 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2803 if (!ptr)
2804 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002805 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002806 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002807 return 1;
2808}
2809
Willy Tarreaua5e37562011-12-16 17:06:15 +01002810/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002811static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002812acl_fetch_sc1_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002813 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002814{
Willy Tarreau56123282010-08-06 19:06:56 +02002815 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002816 return 0;
2817
Willy Tarreau37406352012-04-23 16:16:37 +02002818 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002819}
2820
Willy Tarreaua5e37562011-12-16 17:06:15 +01002821/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002822static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002823acl_fetch_sc2_conn_cnt(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 Tarreau9a3f8492010-06-18 19:53:25 +02002825{
Willy Tarreau56123282010-08-06 19:06:56 +02002826 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002827 return 0;
2828
Willy Tarreau37406352012-04-23 16:16:37 +02002829 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002830}
2831
Willy Tarreaua5e37562011-12-16 17:06:15 +01002832/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002833 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002834 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002835 */
2836static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002837acl_fetch_src_conn_cnt(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 Tarreau8b22a712010-06-18 17:46:06 +02002839{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002840 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 Tarreau8b22a712010-06-18 17:46:06 +02002843 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002844 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +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_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002848}
2849
Willy Tarreaua5e37562011-12-16 17:06:15 +01002850/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002851static int
Willy Tarreau37406352012-04-23 16:16:37 +02002852acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002853{
Willy Tarreau37406352012-04-23 16:16:37 +02002854 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002855 smp->type = SMP_T_UINT;
2856 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002857 if (ts != NULL) {
2858 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2859 if (!ptr)
2860 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002861 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002862 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2863 }
2864 return 1;
2865}
2866
Willy Tarreaua5e37562011-12-16 17:06:15 +01002867/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002868 * the configured period.
2869 */
2870static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002871acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002872 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002873{
Willy Tarreau56123282010-08-06 19:06:56 +02002874 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002875 return 0;
2876
Willy Tarreau37406352012-04-23 16:16:37 +02002877 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002878}
2879
Willy Tarreaua5e37562011-12-16 17:06:15 +01002880/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002881 * the configured period.
2882 */
2883static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002884acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002885 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002886{
Willy Tarreau56123282010-08-06 19:06:56 +02002887 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002888 return 0;
2889
Willy Tarreau37406352012-04-23 16:16:37 +02002890 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002891}
2892
Willy Tarreaua5e37562011-12-16 17:06:15 +01002893/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002894 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002895 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002896 */
2897static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002898acl_fetch_src_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002899 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002900{
2901 struct stktable_key *key;
2902
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002903 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002904 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002905 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002906
Willy Tarreau24e32d82012-04-23 23:55:44 +02002907 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002908 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002909}
2910
Willy Tarreaua5e37562011-12-16 17:06:15 +01002911/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002912 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002913 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002914 */
2915static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002916acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002917 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002918{
2919 struct stksess *ts;
2920 struct stktable_key *key;
2921 void *ptr;
2922
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002923 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002924 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002925 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002926
Willy Tarreau24e32d82012-04-23 23:55:44 +02002927 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002928
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002929 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2930 /* entry does not exist and could not be created */
2931 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002932
2933 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2934 if (!ptr)
2935 return 0; /* parameter not stored in this table */
2936
Willy Tarreauf853c462012-04-23 18:53:56 +02002937 smp->type = SMP_T_UINT;
2938 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002939 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002940 return 1;
2941}
2942
Willy Tarreaua5e37562011-12-16 17:06:15 +01002943/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002944static int
Willy Tarreau37406352012-04-23 16:16:37 +02002945acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002946{
Willy Tarreau37406352012-04-23 16:16:37 +02002947 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002948 smp->type = SMP_T_UINT;
2949 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002950
2951 if (ts != NULL) {
2952 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2953 if (!ptr)
2954 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002955 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002956 }
2957 return 1;
2958}
2959
Willy Tarreaua5e37562011-12-16 17:06:15 +01002960/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002961static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002962acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002963 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002964{
Willy Tarreau56123282010-08-06 19:06:56 +02002965 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002966 return 0;
2967
Willy Tarreau37406352012-04-23 16:16:37 +02002968 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002969}
2970
Willy Tarreaua5e37562011-12-16 17:06:15 +01002971/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002972static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002973acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002974 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002975{
Willy Tarreau56123282010-08-06 19:06:56 +02002976 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002977 return 0;
2978
Willy Tarreau37406352012-04-23 16:16:37 +02002979 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002980}
2981
Willy Tarreaua5e37562011-12-16 17:06:15 +01002982/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002983 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002984 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002985 */
2986static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002987acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002988 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002989{
Willy Tarreau38285c12010-06-18 16:35:43 +02002990 struct stktable_key *key;
2991
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002992 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002993 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002994 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002995
Willy Tarreau24e32d82012-04-23 23:55:44 +02002996 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002997 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002998}
2999
Willy Tarreaua5e37562011-12-16 17:06:15 +01003000/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003001static int
Willy Tarreau37406352012-04-23 16:16:37 +02003002acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003003{
Willy Tarreau37406352012-04-23 16:16:37 +02003004 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003005 smp->type = SMP_T_UINT;
3006 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003007 if (ts != NULL) {
3008 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
3009 if (!ptr)
3010 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003011 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003012 }
3013 return 1;
3014}
3015
Willy Tarreaua5e37562011-12-16 17:06:15 +01003016/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003017static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003018acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003019 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003020{
Willy Tarreau56123282010-08-06 19:06:56 +02003021 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003022 return 0;
3023
Willy Tarreau37406352012-04-23 16:16:37 +02003024 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003025}
3026
Willy Tarreaua5e37562011-12-16 17:06:15 +01003027/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003028static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003029acl_fetch_sc2_sess_cnt(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 Tarreauf4d17d92010-06-18 22:10:12 +02003031{
Willy Tarreau56123282010-08-06 19:06:56 +02003032 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003033 return 0;
3034
Willy Tarreau37406352012-04-23 16:16:37 +02003035 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003036}
3037
Willy Tarreaua5e37562011-12-16 17:06:15 +01003038/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003039 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003040 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003041 */
3042static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003043acl_fetch_src_sess_cnt(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 Tarreauf4d17d92010-06-18 22:10:12 +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 Tarreauf4d17d92010-06-18 22:10:12 +02003049 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003050 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +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_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003054}
3055
Willy Tarreaua5e37562011-12-16 17:06:15 +01003056/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02003057static int
Willy Tarreau37406352012-04-23 16:16:37 +02003058acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +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 Tarreau91c43d72010-06-20 11:19:22 +02003063 if (ts != NULL) {
3064 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
3065 if (!ptr)
3066 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003067 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02003068 table->data_arg[STKTABLE_DT_SESS_RATE].u);
3069 }
3070 return 1;
3071}
3072
Willy Tarreaua5e37562011-12-16 17:06:15 +01003073/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003074 * the configured period.
3075 */
3076static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003077acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003078 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003079{
Willy Tarreau56123282010-08-06 19:06:56 +02003080 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003081 return 0;
3082
Willy Tarreau37406352012-04-23 16:16:37 +02003083 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003084}
3085
Willy Tarreaua5e37562011-12-16 17:06:15 +01003086/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02003087 * the configured period.
3088 */
3089static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003090acl_fetch_sc2_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003091 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003092{
Willy Tarreau56123282010-08-06 19:06:56 +02003093 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003094 return 0;
3095
Willy Tarreau37406352012-04-23 16:16:37 +02003096 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003097}
3098
Willy Tarreaua5e37562011-12-16 17:06:15 +01003099/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02003100 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003101 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02003102 */
3103static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003104acl_fetch_src_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003105 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003106{
3107 struct stktable_key *key;
3108
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003109 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003110 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003111 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02003112
Willy Tarreau24e32d82012-04-23 23:55:44 +02003113 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003114 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02003115}
3116
Willy Tarreaua5e37562011-12-16 17:06:15 +01003117/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003118static int
Willy Tarreau37406352012-04-23 16:16:37 +02003119acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003120{
Willy Tarreau37406352012-04-23 16:16:37 +02003121 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003122 smp->type = SMP_T_UINT;
3123 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003124 if (ts != NULL) {
3125 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_CNT);
3126 if (!ptr)
3127 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003128 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003129 }
3130 return 1;
3131}
3132
Willy Tarreaua5e37562011-12-16 17:06:15 +01003133/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003134static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003135acl_fetch_sc1_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003136 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003137{
Willy Tarreau56123282010-08-06 19:06:56 +02003138 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003139 return 0;
3140
Willy Tarreau37406352012-04-23 16:16:37 +02003141 return acl_fetch_http_req_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003142}
3143
Willy Tarreaua5e37562011-12-16 17:06:15 +01003144/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003145static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003146acl_fetch_sc2_http_req_cnt(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_cnt(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 cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003156 * address in the table pointed to by expr.
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_cnt(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_cnt(&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 session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003174static int
Willy Tarreau37406352012-04-23 16:16:37 +02003175acl_fetch_http_req_rate(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_REQ_RATE);
3182 if (!ptr)
3183 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003184 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003185 table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
3186 }
3187 return 1;
3188}
3189
Willy Tarreaua5e37562011-12-16 17:06:15 +01003190/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003191 * the configured period.
3192 */
3193static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003194acl_fetch_sc1_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003195 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003196{
Willy Tarreau56123282010-08-06 19:06:56 +02003197 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003198 return 0;
3199
Willy Tarreau37406352012-04-23 16:16:37 +02003200 return acl_fetch_http_req_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003201}
3202
Willy Tarreaua5e37562011-12-16 17:06:15 +01003203/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003204 * the configured period.
3205 */
3206static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003207acl_fetch_sc2_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003208 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003209{
Willy Tarreau56123282010-08-06 19:06:56 +02003210 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003211 return 0;
3212
Willy Tarreau37406352012-04-23 16:16:37 +02003213 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003214}
3215
Willy Tarreaua5e37562011-12-16 17:06:15 +01003216/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003217 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003218 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003219 */
3220static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003221acl_fetch_src_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003222 const struct arg *args, struct sample *smp)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003223{
3224 struct stktable_key *key;
3225
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003226 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003227 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003228 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003229
Willy Tarreau24e32d82012-04-23 23:55:44 +02003230 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003231 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003232}
3233
Willy Tarreaua5e37562011-12-16 17:06:15 +01003234/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003235static int
Willy Tarreau37406352012-04-23 16:16:37 +02003236acl_fetch_http_err_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003237{
Willy Tarreau37406352012-04-23 16:16:37 +02003238 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003239 smp->type = SMP_T_UINT;
3240 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003241 if (ts != NULL) {
3242 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_CNT);
3243 if (!ptr)
3244 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003245 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003246 }
3247 return 1;
3248}
3249
Willy Tarreaua5e37562011-12-16 17:06:15 +01003250/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003251static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003252acl_fetch_sc1_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003253 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003254{
Willy Tarreau56123282010-08-06 19:06:56 +02003255 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003256 return 0;
3257
Willy Tarreau37406352012-04-23 16:16:37 +02003258 return acl_fetch_http_err_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003259}
3260
Willy Tarreaua5e37562011-12-16 17:06:15 +01003261/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003262static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003263acl_fetch_sc2_http_err_cnt(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_cnt(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 cumulated number of session from the session's source
Willy Tarreauda7ff642010-06-23 11:44:09 +02003273 * address in the table pointed to by expr.
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_cnt(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_cnt(&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 session rate in the stksess entry <ts> over the configured period */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003291static int
Willy Tarreau37406352012-04-23 16:16:37 +02003292acl_fetch_http_err_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003297 if (ts != NULL) {
3298 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_ERR_RATE);
3299 if (!ptr)
3300 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003301 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003302 table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
3303 }
3304 return 1;
3305}
3306
Willy Tarreaua5e37562011-12-16 17:06:15 +01003307/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauda7ff642010-06-23 11:44:09 +02003308 * the configured period.
3309 */
3310static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003311acl_fetch_sc1_http_err_rate(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_http_err_rate(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 session rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003321 * the configured period.
3322 */
3323static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003324acl_fetch_sc2_http_err_rate(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 Tarreauda7ff642010-06-23 11:44:09 +02003326{
Willy Tarreau56123282010-08-06 19:06:56 +02003327 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003328 return 0;
3329
Willy Tarreau37406352012-04-23 16:16:37 +02003330 return acl_fetch_http_err_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003331}
3332
Willy Tarreaua5e37562011-12-16 17:06:15 +01003333/* set temp integer to the session rate from the session's source address in the
Willy Tarreauda7ff642010-06-23 11:44:09 +02003334 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003335 * Accepts exactly 1 argument of type table.
Willy Tarreauda7ff642010-06-23 11:44:09 +02003336 */
3337static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003338acl_fetch_src_http_err_rate(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 Tarreauda7ff642010-06-23 11:44:09 +02003340{
3341 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 Tarreauda7ff642010-06-23 11:44:09 +02003344 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003345 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003346
Willy Tarreau24e32d82012-04-23 23:55:44 +02003347 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003348 return acl_fetch_http_err_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003349}
3350
Willy Tarreaua5e37562011-12-16 17:06:15 +01003351/* set temp integer to the number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003352static int
Willy Tarreau37406352012-04-23 16:16:37 +02003353acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003354{
Willy Tarreau37406352012-04-23 16:16:37 +02003355 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003356 smp->type = SMP_T_UINT;
3357 smp->data.uint = 0;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003358
3359 if (ts != NULL) {
3360 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3361 if (!ptr)
3362 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003363 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003364 }
3365 return 1;
3366}
3367
Willy Tarreaua5e37562011-12-16 17:06:15 +01003368/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003369 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003370 */
3371static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003372acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003373 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003374{
Willy Tarreau56123282010-08-06 19:06:56 +02003375 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003376 return 0;
3377
Willy Tarreau37406352012-04-23 16:16:37 +02003378 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003379}
3380
Willy Tarreaua5e37562011-12-16 17:06:15 +01003381/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003382 * session's tracked BE counters.
3383 */
3384static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003385acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003386 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003387{
Willy Tarreau56123282010-08-06 19:06:56 +02003388 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003389 return 0;
3390
Willy Tarreau37406352012-04-23 16:16:37 +02003391 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003392}
3393
Willy Tarreaua5e37562011-12-16 17:06:15 +01003394/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003395 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003396 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003397 */
3398static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003399acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003400 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003401{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003402 struct stktable_key *key;
3403
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003404 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003405 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003406 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003407
Willy Tarreau24e32d82012-04-23 23:55:44 +02003408 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003409 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003410}
3411
Willy Tarreaua5e37562011-12-16 17:06:15 +01003412/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003413 * configured period.
3414 */
3415static int
Willy Tarreau37406352012-04-23 16:16:37 +02003416acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +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 Tarreau6c59e0a2010-06-20 11:56:30 +02003421 if (ts != NULL) {
3422 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3423 if (!ptr)
3424 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003425 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003426 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3427 }
3428 return 1;
3429}
3430
Willy Tarreaua5e37562011-12-16 17:06:15 +01003431/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003432 * counters over the configured period.
3433 */
3434static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003435acl_fetch_sc1_bytes_in_rate(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_bytes_in_rate(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 bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003445 * counters over the configured period.
3446 */
3447static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003448acl_fetch_sc2_bytes_in_rate(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 Tarreau6c59e0a2010-06-20 11:56:30 +02003450{
Willy Tarreau56123282010-08-06 19:06:56 +02003451 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003452 return 0;
3453
Willy Tarreau37406352012-04-23 16:16:37 +02003454 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003455}
3456
Willy Tarreaua5e37562011-12-16 17:06:15 +01003457/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003458 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003459 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003460 */
3461static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003462acl_fetch_src_bytes_in_rate(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 Tarreau6c59e0a2010-06-20 11:56:30 +02003464{
3465 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 Tarreau6c59e0a2010-06-20 11:56:30 +02003468 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003469 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003470
Willy Tarreau24e32d82012-04-23 23:55:44 +02003471 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003472 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003473}
3474
Willy Tarreaua5e37562011-12-16 17:06:15 +01003475/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003476static int
Willy Tarreau37406352012-04-23 16:16:37 +02003477acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003478{
Willy Tarreau37406352012-04-23 16:16:37 +02003479 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003480 smp->type = SMP_T_UINT;
3481 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003482
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003483 if (ts != NULL) {
3484 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003485 if (!ptr)
3486 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003487 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003488 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003489 return 1;
3490}
3491
Willy Tarreaua5e37562011-12-16 17:06:15 +01003492/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003493 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003494 */
3495static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003496acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003497 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003498{
Willy Tarreau56123282010-08-06 19:06:56 +02003499 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003500 return 0;
3501
Willy Tarreau37406352012-04-23 16:16:37 +02003502 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003503}
3504
Willy Tarreaua5e37562011-12-16 17:06:15 +01003505/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003506 * tracked BE counters.
3507 */
3508static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003509acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003510 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003511{
Willy Tarreau56123282010-08-06 19:06:56 +02003512 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003513 return 0;
3514
Willy Tarreau37406352012-04-23 16:16:37 +02003515 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003516}
3517
Willy Tarreaua5e37562011-12-16 17:06:15 +01003518/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003519 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003520 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003521 */
3522static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003523acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003524 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003525{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003526 struct stktable_key *key;
3527
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003528 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003529 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003530 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003531
Willy Tarreau24e32d82012-04-23 23:55:44 +02003532 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003533 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003534}
3535
Willy Tarreaua5e37562011-12-16 17:06:15 +01003536/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003537 * configured period.
3538 */
3539static int
Willy Tarreau37406352012-04-23 16:16:37 +02003540acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003541{
Willy Tarreau37406352012-04-23 16:16:37 +02003542 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003543 smp->type = SMP_T_UINT;
3544 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003545 if (ts != NULL) {
3546 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3547 if (!ptr)
3548 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003549 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003550 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3551 }
3552 return 1;
3553}
3554
Willy Tarreaua5e37562011-12-16 17:06:15 +01003555/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003556 * over the configured period.
3557 */
3558static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003559acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003560 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003561{
Willy Tarreau56123282010-08-06 19:06:56 +02003562 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003563 return 0;
3564
Willy Tarreau37406352012-04-23 16:16:37 +02003565 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003566}
3567
Willy Tarreaua5e37562011-12-16 17:06:15 +01003568/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003569 * over the configured period.
3570 */
3571static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003572acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003573 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003574{
Willy Tarreau56123282010-08-06 19:06:56 +02003575 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003576 return 0;
3577
Willy Tarreau37406352012-04-23 16:16:37 +02003578 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003579}
3580
Willy Tarreaua5e37562011-12-16 17:06:15 +01003581/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003582 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003583 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003584 */
3585static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003586acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003587 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003588{
3589 struct stktable_key *key;
3590
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003591 key = addr_to_stktable_key(&l4->si[0].conn->addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003592 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003593 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003594
Willy Tarreau24e32d82012-04-23 23:55:44 +02003595 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003596 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003597}
3598
Willy Tarreau34db1082012-04-19 17:16:54 +02003599/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003600 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003601 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003602static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003603acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003604 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003605{
Willy Tarreau37406352012-04-23 16:16:37 +02003606 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003607 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003608 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003609 return 1;
3610}
3611
Willy Tarreau34db1082012-04-19 17:16:54 +02003612/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003613 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003614 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003615static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003616acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003617 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003618{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003619 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003620 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003621 smp->type = SMP_T_UINT;
3622 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003623 return 1;
3624}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003625
Willy Tarreau61612d42012-04-19 18:42:05 +02003626/* Note: must not be declared <const> as its list will be overwritten.
3627 * Please take care of keeping this list alphabetically sorted.
3628 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003629static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003630 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3631 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3632 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3633 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3634 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3635 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3636 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3637 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3638 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3639 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3640 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3641 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3642 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3643 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3644 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3645 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3646 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3647 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3648 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3649 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3650 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3651 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3652 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3653 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3654 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3655 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3656 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3657 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3658 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3659 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3660 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3661 { "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 +02003662 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3663 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3664 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3665 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3666 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3667 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3668 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3669 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3670 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3671 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3672 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3673 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3674 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3675 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3676 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3677 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3678 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3679 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3680 { "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 +02003681 { NULL, NULL, NULL, NULL },
3682}};
3683
3684
Willy Tarreau56123282010-08-06 19:06:56 +02003685/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003686 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3687 * <prm> struct is fed with the table name if any. If unspecified, the caller
3688 * will assume that the current proxy's table is used.
3689 */
3690int parse_track_counters(char **args, int *arg,
3691 int section_type, struct proxy *curpx,
3692 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003693 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003694{
Willy Tarreau12785782012-04-27 21:37:17 +02003695 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003696
Willy Tarreau56123282010-08-06 19:06:56 +02003697 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003698 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003699 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003700 */
3701 while (args[*arg]) {
3702 if (strcmp(args[*arg], "src") == 0) {
3703 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003704 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003705 }
3706 else if (strcmp(args[*arg], "table") == 0) {
3707 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003708 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003709 return -1;
3710 }
3711 /* we copy the table name for now, it will be resolved later */
3712 prm->table.n = strdup(args[*arg + 1]);
3713 (*arg)++;
3714 }
3715 else {
3716 /* unhandled keywords are handled by the caller */
3717 break;
3718 }
3719 (*arg)++;
3720 }
3721
Willy Tarreau12785782012-04-27 21:37:17 +02003722 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003723 memprintf(err,
3724 "tracking key not specified (found %s, only 'src' is supported)",
3725 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003726 return -1;
3727 }
3728
3729 return 0;
3730}
3731
Willy Tarreau8b22a712010-06-18 17:46:06 +02003732__attribute__((constructor))
3733static void __session_init(void)
3734{
3735 acl_register_keywords(&acl_kws);
3736}
3737
Willy Tarreaubaaee002006-06-26 02:48:02 +02003738/*
3739 * Local variables:
3740 * c-indent-level: 8
3741 * c-basic-offset: 8
3742 * End:
3743 */