blob: b5dfd2bb9275eba7388f8ebdf049940df3fba6ec [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 Tarreau7c669d72008-06-20 15:04:11 +020018#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020019#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010022#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020024#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020025#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010026#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020027#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010028#include <proto/checks.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020029#include <proto/connection.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020030#include <proto/dumpstats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020031#include <proto/fd.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020032#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020033#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010034#include <proto/hdr_idx.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020035#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020036#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020037#include <proto/raw_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010039#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010040#include <proto/proto_http.h>
41#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020042#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010044#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020045#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010046#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010047#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010048#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020050struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010051struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020052
Willy Tarreau071e1372012-10-03 01:39:48 +020053static int conn_session_complete(struct connection *conn);
Willy Tarreau9683e9a2012-10-03 21:17:23 +020054static int conn_session_update(struct connection *conn);
Willy Tarreau2542b532012-08-31 16:01:23 +020055static struct task *expire_mini_session(struct task *t);
56int session_complete(struct session *s);
57
Willy Tarreau5e75e272012-10-02 21:21:20 +020058/* data layer callbacks for an embryonic session */
59struct data_cb sess_conn_cb = {
60 .recv = NULL,
61 .send = NULL,
Willy Tarreau9683e9a2012-10-03 21:17:23 +020062 .wake = conn_session_update,
Willy Tarreau071e1372012-10-03 01:39:48 +020063 .init = conn_session_complete,
Willy Tarreau5e75e272012-10-02 21:21:20 +020064};
65
Willy Tarreau2542b532012-08-31 16:01:23 +020066/* This function is called from the protocol layer accept() in order to
67 * instanciate a new embryonic session on behalf of a given listener and
68 * frontend. It returns a positive value upon success, 0 if the connection
69 * can be ignored, or a negative value upon critical failure. The accepted
70 * file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020071 */
72int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
73{
74 struct proxy *p = l->frontend;
75 struct session *s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020076 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010077 int ret;
78
79
80 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020081
Willy Tarreaufffe1322010-11-11 09:48:16 +010082 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020083 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020084
Willy Tarreau2542b532012-08-31 16:01:23 +020085 /* minimum session initialization required for an embryonic session is
86 * fairly low. We need very little to execute L4 ACLs, then we need a
87 * task to make the client-side connection live on its own.
88 * - flags
89 * - stick-entry tracking
90 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020091 s->flags = 0;
92 s->logs.logwait = p->to_log;
Willy Tarreau56123282010-08-06 19:06:56 +020093 s->stkctr1_entry = NULL;
94 s->stkctr2_entry = NULL;
95 s->stkctr1_table = NULL;
96 s->stkctr2_table = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020097
Willy Tarreau2542b532012-08-31 16:01:23 +020098 s->listener = l;
99 s->fe = p;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100100
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200101 /* OK, we're keeping the session, so let's properly initialize the session */
Willy Tarreau96596ae2012-06-08 22:57:36 +0200102 s->si[0].conn.t.sock.fd = cfd;
103 s->si[0].conn.ctrl = l->proto;
Willy Tarreau2542b532012-08-31 16:01:23 +0200104 s->si[0].conn.flags = CO_FL_NONE;
Willy Tarreau986a9d22012-08-30 21:11:38 +0200105 s->si[0].conn.addr.from = *addr;
Willy Tarreau2542b532012-08-31 16:01:23 +0200106 set_target_client(&s->si[0].conn.target, l);
107
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200108 s->logs.accept_date = date; /* user-visible date for logging */
109 s->logs.tv_accept = now; /* corrected date for internal use */
110 s->uniq_id = totalconn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200111 p->feconn++;
112 /* This session was accepted, count it now */
113 if (p->feconn > p->fe_counters.conn_max)
114 p->fe_counters.conn_max = p->feconn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200115
Willy Tarreau2542b532012-08-31 16:01:23 +0200116 proxy_inc_fe_conn_ctr(l, p);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200117
118 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
119 * to abort right here as soon as possible, we check the rules before
120 * even initializing the stream interfaces.
121 */
122 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200123 /* let's do a no-linger now to close with a single RST. */
124 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100125 ret = 0; /* successful termination */
Willy Tarreau2542b532012-08-31 16:01:23 +0200126 goto out_free_session;
127 }
128
Willy Tarreau82569f92012-09-27 23:48:56 +0200129 /* Adjust some socket options */
130 if (unlikely(fcntl(cfd, F_SETFL, O_NONBLOCK) == -1))
131 goto out_free_session;
132
133 /* monitor-net and health mode are processed immediately after TCP
134 * connection rules. This way it's possible to block them, but they
135 * never use the lower data layers, they send directly over the socket,
136 * as they were designed for. We first flush the socket receive buffer
137 * in order to avoid emission of an RST by the system. We ignore any
138 * error.
139 */
140 if (unlikely((p->mode == PR_MODE_HEALTH) ||
141 ((l->options & LI_O_CHK_MONNET) &&
142 addr->ss_family == AF_INET &&
143 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
144 /* we have 4 possibilities here :
145 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
146 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
147 * - HEALTH mode without HTTP check => just send "OK"
148 * - TCP mode from monitoring address => just close
149 */
150 recv(cfd, trash, trashlen, 0&MSG_DONTWAIT);
151 if (p->mode == PR_MODE_HTTP ||
152 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
153 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
154 else if (p->mode == PR_MODE_HEALTH)
155 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
156 ret = 0;
157 goto out_free_session;
158 }
159
160
Willy Tarreau22cda212012-08-31 17:43:29 +0200161 /* wait for a PROXY protocol header */
162 if (l->options & LI_O_ACC_PROXY) {
163 s->si[0].conn.flags |= CO_FL_ACCEPT_PROXY;
164 conn_sock_want_recv(&s->si[0].conn);
165 }
166
Willy Tarreau2542b532012-08-31 16:01:23 +0200167 if (unlikely((t = task_new()) == NULL))
168 goto out_free_session;
169
170 t->context = s;
171 t->nice = l->nice;
172 s->task = t;
173
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200174 /* Add the various callbacks. Right now the transport layer is present
175 * but not initialized. Also note we need to be careful as the stream
176 * int is not initialized yet.
Willy Tarreau2542b532012-08-31 16:01:23 +0200177 */
Willy Tarreau5e75e272012-10-02 21:21:20 +0200178 conn_prepare(&s->si[0].conn, &sess_conn_cb, l->proto, l->xprt, s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200179
180 /* finish initialization of the accepted file descriptor */
181 fd_insert(cfd);
182 fdtab[cfd].owner = &s->si[0].conn;
Willy Tarreau2542b532012-08-31 16:01:23 +0200183 fdtab[cfd].iocb = conn_fd_handler;
184 conn_data_want_recv(&s->si[0].conn);
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200185 if (conn_xprt_init(&s->si[0].conn) < 0)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100186 goto out_free_task;
Willy Tarreau2542b532012-08-31 16:01:23 +0200187
188 /* OK, now either we have a pending handshake to execute with and
189 * then we must return to the I/O layer, or we can proceed with the
190 * end of the session initialization. In case of handshake, we also
191 * set the I/O timeout to the frontend's client timeout.
192 */
193
194 if (s->si[0].conn.flags & CO_FL_HANDSHAKE) {
195 t->process = expire_mini_session;
196 t->expire = tick_add_ifset(now_ms, p->timeout.client);
197 task_queue(t);
Willy Tarreau071e1372012-10-03 01:39:48 +0200198 s->si[0].conn.flags |= CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200199 return 1;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200200 }
201
Willy Tarreau2542b532012-08-31 16:01:23 +0200202 /* OK let's complete session initialization */
203 ret = session_complete(s);
204 if (ret > 0)
205 return ret;
206
207 /* Error unrolling */
208 out_free_task:
209 task_free(t);
210 out_free_session:
211 p->feconn--;
212 if (s->stkctr1_entry || s->stkctr2_entry)
213 session_store_counters(s);
214 pool_free2(pool2_session, s);
215 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200216 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200217 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau783f2582012-09-04 12:19:04 +0200218 struct chunk *err_msg = http_error_message(s, HTTP_ERR_500);
Willy Tarreau2542b532012-08-31 16:01:23 +0200219 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
220 }
221
222 if (fdtab[cfd].owner)
223 fd_delete(cfd);
224 else
225 close(cfd);
226 return ret;
227}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100228
Willy Tarreau2542b532012-08-31 16:01:23 +0200229/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200230 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreau2542b532012-08-31 16:01:23 +0200231 * disabled and finally kills the file descriptor.
232 */
233static void kill_mini_session(struct session *s)
234{
235 /* kill the connection now */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200236 conn_xprt_close(&s->si[0].conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200237
238 s->fe->feconn--;
239 if (s->stkctr1_entry || s->stkctr2_entry)
240 session_store_counters(s);
241
242 if (!(s->listener->options & LI_O_UNLIMITED))
243 actconn--;
244 jobs--;
245 s->listener->nbconn--;
246 if (s->listener->state == LI_FULL)
247 resume_listener(s->listener);
248
249 /* Dequeues all of the listeners waiting for a resource */
250 if (!LIST_ISEMPTY(&global_listener_queue))
251 dequeue_all_listeners(&global_listener_queue);
252
253 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
254 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
255 dequeue_all_listeners(&s->fe->listener_queue);
256
257 task_delete(s->task);
258 task_free(s->task);
259
260 if (fdtab[s->si[0].conn.t.sock.fd].owner)
261 fd_delete(s->si[0].conn.t.sock.fd);
262 else
263 close(s->si[0].conn.t.sock.fd);
264
265 pool_free2(pool2_session, s);
266}
267
Willy Tarreau22cda212012-08-31 17:43:29 +0200268/* Finish initializing a session from a connection, or kills it if the
269 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200270 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200271static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200272{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200273 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200274
Willy Tarreau22cda212012-08-31 17:43:29 +0200275 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200276 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200277 return 0;
278 }
279
280 /* kill the connection now */
281 kill_mini_session(s);
282 return -1;
283}
284
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200285/* Update an embryonic session status. The connection is killed in case of
286 * error, and <0 will be returned. Otherwise it does nothing.
287 */
288static int conn_session_update(struct connection *conn)
289{
290 if (conn->flags & CO_FL_ERROR) {
291 kill_mini_session(conn->owner);
292 return -1;
293 }
294 return 0;
295}
296
Willy Tarreau2542b532012-08-31 16:01:23 +0200297/* Manages embryonic sessions timeout. It is only called when the timeout
298 * strikes and performs the required cleanup.
299 */
300static struct task *expire_mini_session(struct task *t)
301{
302 struct session *s = t->context;
303
304 if (!(t->state & TASK_WOKEN_TIMER))
305 return t;
306
307 kill_mini_session(s);
308 return NULL;
309}
310
311/* This function is called from the I/O handler which detects the end of
312 * handshake, in order to complete initialization of a valid session. It must
313 * be called with an embryonic session. It returns a positive value upon
314 * success, 0 if the connection can be ignored, or a negative value upon
315 * critical failure. The accepted file descriptor is closed if we return <= 0.
316 */
317int session_complete(struct session *s)
318{
319 struct listener *l = s->listener;
320 struct proxy *p = s->fe;
321 struct http_txn *txn;
322 struct task *t = s->task;
323 int ret;
324
325 ret = -1; /* assume unrecoverable error by default */
326
327 /* OK, we're keeping the session, so let's properly initialize the session */
328 LIST_ADDQ(&sessions, &s->list);
329 LIST_INIT(&s->back_refs);
Willy Tarreau5e75e272012-10-02 21:21:20 +0200330 si_takeover_conn(&s->si[0], l->proto, l->xprt);
Willy Tarreau2542b532012-08-31 16:01:23 +0200331 s->flags |= SN_INITIALIZED;
332
333 s->unique_id = NULL;
334 s->term_trace = 0;
335
336 t->process = l->handler;
337 t->context = s;
338 t->expire = TICK_ETERNITY;
339
340 /* Note: initially, the session's backend points to the frontend.
341 * This changes later when switching rules are executed or
342 * when the default backend is assigned.
343 */
344 s->be = s->fe;
345 s->req = s->rep = NULL; /* will be allocated later */
346
347 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200348 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau56123282010-08-06 19:06:56 +0200349 if (s->stkctr1_entry) {
Willy Tarreau91c43d72010-06-20 11:19:22 +0200350 void *ptr;
351
Willy Tarreau56123282010-08-06 19:06:56 +0200352 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200353 if (ptr)
354 stktable_data_cast(ptr, sess_cnt)++;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200355
Willy Tarreau56123282010-08-06 19:06:56 +0200356 ptr = stktable_data_ptr(s->stkctr1_table, s->stkctr1_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200357 if (ptr)
358 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200359 s->stkctr1_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreauf4d17d92010-06-18 22:10:12 +0200360 }
Willy Tarreaub36b4242010-06-04 20:59:39 +0200361
Willy Tarreau56123282010-08-06 19:06:56 +0200362 if (s->stkctr2_entry) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200363 void *ptr;
364
Willy Tarreau56123282010-08-06 19:06:56 +0200365 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200366 if (ptr)
367 stktable_data_cast(ptr, sess_cnt)++;
368
Willy Tarreau56123282010-08-06 19:06:56 +0200369 ptr = stktable_data_ptr(s->stkctr2_table, s->stkctr2_entry, STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200370 if (ptr)
371 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200372 s->stkctr2_table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200373 }
374
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200375 /* this part should be common with other protocols */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200376 s->si[0].owner = t;
377 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
378 s->si[0].err_type = SI_ET_NONE;
379 s->si[0].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200380 s->si[0].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200381 s->si[0].send_proxy_ofs = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200382 s->si[0].exp = TICK_ETERNITY;
383 s->si[0].flags = SI_FL_NONE;
384
385 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
386 s->si[0].flags |= SI_FL_INDEP_STR;
387
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200388 /* pre-initialize the other side's stream interface to an INIT state. The
389 * callbacks will be initialized before attempting to connect.
390 */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200391 s->si[1].conn.t.sock.fd = -1; /* just to help with debugging */
Willy Tarreau505e34a2012-07-06 10:17:53 +0200392 s->si[1].conn.flags = CO_FL_NONE;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200393 s->si[1].owner = t;
394 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
395 s->si[1].err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +0200396 s->si[1].conn_retries = 0; /* used for logging too */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200397 s->si[1].err_loc = NULL;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200398 s->si[1].release = NULL;
Willy Tarreau63e7fe32012-05-08 15:20:43 +0200399 s->si[1].send_proxy_ofs = 0;
Willy Tarreau3cefd522012-08-30 15:49:18 +0200400 clear_target(&s->si[1].conn.target);
Willy Tarreauc5788912012-08-24 18:12:41 +0200401 si_prepare_embedded(&s->si[1]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200402 s->si[1].exp = TICK_ETERNITY;
403 s->si[1].flags = SI_FL_NONE;
404
405 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
406 s->si[1].flags |= SI_FL_INDEP_STR;
407
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200408 session_init_srv_conn(s);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100409 clear_target(&s->target);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200410 s->pend_pos = NULL;
411
412 /* init store persistence */
413 s->store_count = 0;
414
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200415 if (unlikely((s->req = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200416 goto out_free_task; /* no memory */
417
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200418 if (unlikely((s->rep = pool_alloc2(pool2_channel)) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200419 goto out_free_req; /* no memory */
420
421 /* initialize the request buffer */
Willy Tarreau572bf902012-07-02 17:01:20 +0200422 s->req->buf.size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200423 channel_init(s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200424 s->req->prod = &s->si[0];
425 s->req->cons = &s->si[1];
426 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200427 s->req->flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200428
429 /* activate default analysers enabled for this listener */
430 s->req->analysers = l->analysers;
431
432 s->req->wto = TICK_ETERNITY;
433 s->req->rto = TICK_ETERNITY;
434 s->req->rex = TICK_ETERNITY;
435 s->req->wex = TICK_ETERNITY;
436 s->req->analyse_exp = TICK_ETERNITY;
437
438 /* initialize response buffer */
Willy Tarreau572bf902012-07-02 17:01:20 +0200439 s->rep->buf.size = global.tune.bufsize;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200440 channel_init(s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200441 s->rep->prod = &s->si[1];
442 s->rep->cons = &s->si[0];
443 s->si[0].ob = s->si[1].ib = s->rep;
444 s->rep->analysers = 0;
445
Willy Tarreau96e31212011-05-30 18:10:30 +0200446 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200447 s->req->flags |= CF_NEVER_WAIT;
448 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200449 }
450
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200451 s->rep->rto = TICK_ETERNITY;
452 s->rep->wto = TICK_ETERNITY;
453 s->rep->rex = TICK_ETERNITY;
454 s->rep->wex = TICK_ETERNITY;
455 s->rep->analyse_exp = TICK_ETERNITY;
456
Willy Tarreau62f791e2012-03-09 11:32:30 +0100457 txn = &s->txn;
458 /* Those variables will be checked and freed if non-NULL in
459 * session.c:session_free(). It is important that they are
460 * properly initialized.
461 */
462 txn->sessid = NULL;
463 txn->srv_cookie = NULL;
464 txn->cli_cookie = NULL;
465 txn->uri = NULL;
466 txn->req.cap = NULL;
467 txn->rsp.cap = NULL;
468 txn->hdr_idx.v = NULL;
469 txn->hdr_idx.size = txn->hdr_idx.used = 0;
470 txn->req.flags = 0;
471 txn->rsp.flags = 0;
472 /* the HTTP messages need to know what buffer they're associated with */
473 txn->req.buf = s->req;
474 txn->rsp.buf = s->rep;
475
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200476 /* finish initialization of the accepted file descriptor */
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200477 conn_data_want_recv(&s->si[0].conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200478
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100479 if (p->accept && (ret = p->accept(s)) <= 0) {
480 /* Either we had an unrecoverable error (<0) or work is
481 * finished (=0, eg: monitoring), in both situations,
482 * we can release everything and close.
483 */
484 goto out_free_rep;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200485 }
486
Willy Tarreau2542b532012-08-31 16:01:23 +0200487 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200488 s->si[0].conn.flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200489
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200490 /* it is important not to call the wakeup function directly but to
491 * pass through task_wakeup(), because this one knows how to apply
492 * priorities to tasks.
493 */
494 task_wakeup(t, TASK_WOKEN_INIT);
495 return 1;
496
497 /* Error unrolling */
498 out_free_rep:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200499 pool_free2(pool2_channel, s->rep);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200500 out_free_req:
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200501 pool_free2(pool2_channel, s->req);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200502 out_free_task:
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100503 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200504}
505
Willy Tarreaubaaee002006-06-26 02:48:02 +0200506/*
507 * frees the context associated to a session. It must have been removed first.
508 */
Simon Hormandec5be42011-06-08 09:19:07 +0900509static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200510{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100511 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200512 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100513 struct bref *bref, *back;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200514 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100515
Willy Tarreaubaaee002006-06-26 02:48:02 +0200516 if (s->pend_pos)
517 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100518
Willy Tarreau827aee92011-03-10 16:55:02 +0100519 if (target_srv(&s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100520 if (s->flags & SN_CURR_SESS) {
521 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100522 target_srv(&s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100523 }
Willy Tarreau827aee92011-03-10 16:55:02 +0100524 if (may_dequeue_tasks(target_srv(&s->target), s->be))
525 process_srv_queue(target_srv(&s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100526 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100527
Willy Tarreau7c669d72008-06-20 15:04:11 +0200528 if (unlikely(s->srv_conn)) {
529 /* the session still has a reserved slot on a server, but
530 * it should normally be only the same as the one above,
531 * so this should not happen in fact.
532 */
533 sess_change_server(s, NULL);
534 }
535
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100536 if (s->req->pipe)
537 put_pipe(s->req->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100538
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100539 if (s->rep->pipe)
540 put_pipe(s->rep->pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100541
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200542 pool_free2(pool2_channel, s->req);
543 pool_free2(pool2_channel, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200544
Willy Tarreau46023632010-01-07 22:51:47 +0100545 http_end_txn(s);
546
Willy Tarreaua4cda672010-06-06 18:28:49 +0200547 for (i = 0; i < s->store_count; i++) {
548 if (!s->store[i].ts)
549 continue;
550 stksess_free(s->store[i].table, s->store[i].ts);
551 s->store[i].ts = NULL;
552 }
553
Willy Tarreau34eb6712011-10-24 18:15:04 +0200554 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200555 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100556 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
557 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200558 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100559
Willy Tarreau56123282010-08-06 19:06:56 +0200560 if (s->stkctr1_entry || s->stkctr2_entry)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200561 session_store_counters(s);
562
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100563 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100564 /* we have to unlink all watchers. We must not relink them if
565 * this session was the last one in the list.
566 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100567 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100568 LIST_INIT(&bref->users);
569 if (s->list.n != &sessions)
570 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100571 bref->ref = s->list.n;
572 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100573 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200574 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200575
576 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200577 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200578 pool_flush2(pool2_channel);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200579 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200580 pool_flush2(pool2_requri);
581 pool_flush2(pool2_capture);
582 pool_flush2(pool2_session);
583 pool_flush2(fe->req_cap_pool);
584 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200585 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200586}
587
588
589/* perform minimal intializations, report 0 in case of error, 1 if OK. */
590int init_session()
591{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100592 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200593 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
594 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200595}
596
Willy Tarreau30e71012007-11-26 20:15:35 +0100597void session_process_counters(struct session *s)
598{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100599 unsigned long long bytes;
600
Willy Tarreau30e71012007-11-26 20:15:35 +0100601 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100602 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100603 s->logs.bytes_in = s->req->total;
604 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100605 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100606
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100607 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100608
Willy Tarreau827aee92011-03-10 16:55:02 +0100609 if (target_srv(&s->target))
610 target_srv(&s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200611
612 if (s->listener->counters)
613 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200614
Willy Tarreau56123282010-08-06 19:06:56 +0200615 if (s->stkctr2_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200616 void *ptr;
617
Willy Tarreau56123282010-08-06 19:06:56 +0200618 ptr = stktable_data_ptr(s->stkctr2_table,
619 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200620 STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200621 if (ptr)
622 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200623
Willy Tarreau56123282010-08-06 19:06:56 +0200624 ptr = stktable_data_ptr(s->stkctr2_table,
625 s->stkctr2_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200626 STKTABLE_DT_BYTES_IN_RATE);
627 if (ptr)
628 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200629 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200630 }
631
Willy Tarreau56123282010-08-06 19:06:56 +0200632 if (s->stkctr1_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200633 void *ptr;
634
Willy Tarreau56123282010-08-06 19:06:56 +0200635 ptr = stktable_data_ptr(s->stkctr1_table,
636 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200637 STKTABLE_DT_BYTES_IN_CNT);
638 if (ptr)
639 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
640
Willy Tarreau56123282010-08-06 19:06:56 +0200641 ptr = stktable_data_ptr(s->stkctr1_table,
642 s->stkctr1_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200643 STKTABLE_DT_BYTES_IN_RATE);
644 if (ptr)
645 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200646 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200647 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100648 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100649 }
650
Willy Tarreau30e71012007-11-26 20:15:35 +0100651 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100652 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100653 s->logs.bytes_out = s->rep->total;
654 if (bytes) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100655 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100656
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100657 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100658
Willy Tarreau827aee92011-03-10 16:55:02 +0100659 if (target_srv(&s->target))
660 target_srv(&s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200661
662 if (s->listener->counters)
663 s->listener->counters->bytes_out += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200664
Willy Tarreau56123282010-08-06 19:06:56 +0200665 if (s->stkctr2_entry) {
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200666 void *ptr;
667
Willy Tarreau56123282010-08-06 19:06:56 +0200668 ptr = stktable_data_ptr(s->stkctr2_table,
669 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200670 STKTABLE_DT_BYTES_OUT_CNT);
671 if (ptr)
672 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
673
Willy Tarreau56123282010-08-06 19:06:56 +0200674 ptr = stktable_data_ptr(s->stkctr2_table,
675 s->stkctr2_entry,
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200676 STKTABLE_DT_BYTES_OUT_RATE);
677 if (ptr)
678 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200679 s->stkctr2_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200680 }
681
Willy Tarreau56123282010-08-06 19:06:56 +0200682 if (s->stkctr1_entry) {
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200683 void *ptr;
684
Willy Tarreau56123282010-08-06 19:06:56 +0200685 ptr = stktable_data_ptr(s->stkctr1_table,
686 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200687 STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200688 if (ptr)
689 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200690
Willy Tarreau56123282010-08-06 19:06:56 +0200691 ptr = stktable_data_ptr(s->stkctr1_table,
692 s->stkctr1_entry,
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200693 STKTABLE_DT_BYTES_OUT_RATE);
694 if (ptr)
695 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau56123282010-08-06 19:06:56 +0200696 s->stkctr1_table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200697 }
Willy Tarreau30e71012007-11-26 20:15:35 +0100698 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100699 }
700}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200701
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100702/* This function is called with (si->state == SI_ST_CON) meaning that a
703 * connection was attempted and that the file descriptor is already allocated.
704 * We must check for establishment, error and abort. Possible output states
705 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
706 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
707 * otherwise 1.
708 */
Simon Hormandec5be42011-06-08 09:19:07 +0900709static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100710{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200711 struct channel *req = si->ob;
712 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100713
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100714 /* If we got an error, or if nothing happened and the connection timed
715 * out, we must give up. The CER state handler will take care of retry
716 * attempts and error reports.
717 */
718 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau127334e2009-03-28 10:47:26 +0100719 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100720 si->state = SI_ST_CER;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200721 fd_delete(si_fd(si));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100722
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200723 conn_xprt_close(&si->conn);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200724 if (si->release)
725 si->release(si);
726
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100727 if (si->err_type)
728 return 0;
729
Willy Tarreau827aee92011-03-10 16:55:02 +0100730 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100731 if (si->flags & SI_FL_ERR)
732 si->err_type = SI_ET_CONN_ERR;
733 else
734 si->err_type = SI_ET_CONN_TO;
735 return 0;
736 }
737
738 /* OK, maybe we want to abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200739 if (unlikely((rep->flags & CF_SHUTW) ||
740 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
741 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100742 s->be->options & PR_O_ABRT_CLOSE)))) {
743 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200744 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100745 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau827aee92011-03-10 16:55:02 +0100746 si->err_loc = target_srv(&s->target);
Willy Tarreau84455332009-03-15 22:34:05 +0100747 if (s->srv_error)
748 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100749 return 1;
750 }
751
752 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200753 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100754 return 1;
755
756 /* OK, this means that a connection succeeded. The caller will be
757 * responsible for handling the transition from CON to EST.
758 */
759 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau127334e2009-03-28 10:47:26 +0100760 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761 si->state = SI_ST_EST;
762 si->err_type = SI_ET_NONE;
763 si->err_loc = NULL;
764 return 1;
765}
766
767/* This function is called with (si->state == SI_ST_CER) meaning that a
768 * previous connection attempt has failed and that the file descriptor
769 * has already been released. Possible causes include asynchronous error
770 * notification and time out. Possible output states are SI_ST_CLO when
771 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
772 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
773 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
774 * marked as in error state. It returns 0.
775 */
Simon Hormandec5be42011-06-08 09:19:07 +0900776static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100777{
778 /* we probably have to release last session from the server */
Willy Tarreau827aee92011-03-10 16:55:02 +0100779 if (target_srv(&s->target)) {
780 health_adjust(target_srv(&s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100781
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100782 if (s->flags & SN_CURR_SESS) {
783 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +0100784 target_srv(&s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100785 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100786 }
787
788 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200789 si->conn_retries--;
790 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100791 if (!si->err_type) {
792 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau827aee92011-03-10 16:55:02 +0100793 si->err_loc = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100794 }
795
Willy Tarreau827aee92011-03-10 16:55:02 +0100796 if (target_srv(&s->target))
797 target_srv(&s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100798 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100799 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100800 if (may_dequeue_tasks(target_srv(&s->target), s->be))
801 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100802
803 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200804 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200805 si->ob->flags |= CF_WRITE_ERROR;
806 si->ib->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100807
808 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100809 if (s->srv_error)
810 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100811 return 0;
812 }
813
814 /* If the "redispatch" option is set on the backend, we are allowed to
815 * retry on another server for the last retry. In order to achieve this,
816 * we must mark the session unassigned, and eventually clear the DIRECT
817 * bit to ignore any persistence cookie. We won't count a retry nor a
818 * redispatch yet, because this will depend on what server is selected.
819 */
Willy Tarreau827aee92011-03-10 16:55:02 +0100820 if (target_srv(&s->target) && si->conn_retries == 0 &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100821 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100822 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100823 if (may_dequeue_tasks(target_srv(&s->target), s->be))
824 process_srv_queue(target_srv(&s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100825
826 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100827 si->state = SI_ST_REQ;
828 } else {
Willy Tarreau827aee92011-03-10 16:55:02 +0100829 if (target_srv(&s->target))
830 target_srv(&s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100831 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100832 si->state = SI_ST_ASS;
833 }
834
835 if (si->flags & SI_FL_ERR) {
836 /* The error was an asynchronous connection error, and we will
837 * likely have to retry connecting to the same server, most
838 * likely leading to the same result. To avoid this, we wait
839 * one second before retrying.
840 */
841
842 if (!si->err_type)
843 si->err_type = SI_ET_CONN_ERR;
844
845 si->state = SI_ST_TAR;
846 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
847 return 0;
848 }
849 return 0;
850}
851
852/*
853 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200854 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200855 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100856 */
Simon Hormandec5be42011-06-08 09:19:07 +0900857static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200859 struct channel *req = si->ob;
860 struct channel *rep = si->ib;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100861
Willy Tarreau827aee92011-03-10 16:55:02 +0100862 if (target_srv(&s->target))
863 health_adjust(target_srv(&s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100864
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100865 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100866 /* if the user wants to log as soon as possible, without counting
867 * bytes from the server, then this is the right moment. */
868 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
869 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100870 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100871 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100872 }
873 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100874 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
875 /* reset hdr_idx which was already initialized by the request.
876 * right now, the http parser does it.
877 * hdr_idx_init(&s->txn.hdr_idx);
878 */
879 }
880
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200881 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200882 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200883 if (si_ctrl(si)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200884 /* real connections have timeouts */
885 req->wto = s->be->timeout.server;
886 rep->rto = s->be->timeout.server;
887 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100888 req->wex = TICK_ETERNITY;
889}
890
891/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
892 * Other input states are simply ignored.
893 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
894 * Flags must have previously been updated for timeouts and other conditions.
895 */
Simon Hormandec5be42011-06-08 09:19:07 +0900896static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100897{
Willy Tarreau827aee92011-03-10 16:55:02 +0100898 struct server *srv = target_srv(&s->target);
899
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100900 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 +0100901 now_ms, __FUNCTION__,
902 s,
903 s->req, s->rep,
904 s->req->rex, s->rep->wex,
905 s->req->flags, s->rep->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +0200906 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 +0100907
908 if (si->state == SI_ST_ASS) {
909 /* Server assigned to connection request, we have to try to connect now */
910 int conn_err;
911
912 conn_err = connect_server(s);
Willy Tarreau827aee92011-03-10 16:55:02 +0100913 srv = target_srv(&s->target);
914
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100915 if (conn_err == SN_ERR_NONE) {
916 /* state = SI_ST_CON now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100917 if (srv)
918 srv_inc_sess_ctr(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100919 return;
920 }
921
922 /* We have received a synchronous error. We might have to
923 * abort, retry immediately or redispatch.
924 */
925 if (conn_err == SN_ERR_INTERNAL) {
926 if (!si->err_type) {
927 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau827aee92011-03-10 16:55:02 +0100928 si->err_loc = srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100929 }
930
Willy Tarreau827aee92011-03-10 16:55:02 +0100931 if (srv)
932 srv_inc_sess_ctr(srv);
933 if (srv)
934 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100935 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100936
937 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100938 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100939 if (may_dequeue_tasks(srv, s->be))
940 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100941
942 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200943 si_shutr(si);
944 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200945 si->ob->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100946
947 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
948
949 /* no session was ever accounted for this server */
950 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100951 if (s->srv_error)
952 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100953 return;
954 }
955
956 /* We are facing a retryable error, but we don't want to run a
957 * turn-around now, as the problem is likely a source port
958 * allocation problem, so we want to retry now.
959 */
960 si->state = SI_ST_CER;
961 si->flags &= ~SI_FL_ERR;
962 sess_update_st_cer(s, si);
963 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
964 return;
965 }
966 else if (si->state == SI_ST_QUE) {
967 /* connection request was queued, check for any update */
968 if (!s->pend_pos) {
969 /* The connection is not in the queue anymore. Either
970 * we have a server connection slot available and we
971 * go directly to the assigned state, or we need to
972 * load-balance first and go to the INI state.
973 */
974 si->exp = TICK_ETERNITY;
975 if (unlikely(!(s->flags & SN_ASSIGNED)))
976 si->state = SI_ST_REQ;
977 else {
978 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
979 si->state = SI_ST_ASS;
980 }
981 return;
982 }
983
984 /* Connection request still in queue... */
985 if (si->flags & SI_FL_EXP) {
986 /* ... and timeout expired */
987 si->exp = TICK_ETERNITY;
988 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100989 if (srv)
990 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100991 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200992 si_shutr(si);
993 si_shutw(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200994 si->ob->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100995 if (!si->err_type)
996 si->err_type = SI_ET_QUEUE_TO;
997 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100998 if (s->srv_error)
999 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001000 return;
1001 }
1002
1003 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001004 if ((si->ob->flags & (CF_READ_ERROR)) ||
1005 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001006 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001007 /* give up */
1008 si->exp = TICK_ETERNITY;
1009 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001010 si_shutr(si);
1011 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001012 si->err_type |= SI_ET_QUEUE_ABRT;
1013 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001014 if (s->srv_error)
1015 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001016 return;
1017 }
1018
1019 /* Nothing changed */
1020 return;
1021 }
1022 else if (si->state == SI_ST_TAR) {
1023 /* Connection request might be aborted */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001024 if ((si->ob->flags & (CF_READ_ERROR)) ||
1025 ((si->ob->flags & CF_SHUTW_NOW) && /* empty and client aborted */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001026 (channel_is_empty(si->ob) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001027 /* give up */
1028 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001029 si_shutr(si);
1030 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001031 si->err_type |= SI_ET_CONN_ABRT;
1032 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001033 if (s->srv_error)
1034 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001035 return;
1036 }
1037
1038 if (!(si->flags & SI_FL_EXP))
1039 return; /* still in turn-around */
1040
1041 si->exp = TICK_ETERNITY;
1042
1043 /* we keep trying on the same server as long as the session is
1044 * marked "assigned".
1045 * FIXME: Should we force a redispatch attempt when the server is down ?
1046 */
1047 if (s->flags & SN_ASSIGNED)
1048 si->state = SI_ST_ASS;
1049 else
1050 si->state = SI_ST_REQ;
1051 return;
1052 }
1053}
1054
Simon Hormandec5be42011-06-08 09:19:07 +09001055/* Set correct session termination flags in case no analyser has done it. It
1056 * also counts a failed request if the server state has not reached the request
1057 * stage.
1058 */
1059static void sess_set_term_flags(struct session *s)
1060{
1061 if (!(s->flags & SN_FINST_MASK)) {
1062 if (s->si[1].state < SI_ST_REQ) {
1063
1064 s->fe->fe_counters.failed_req++;
1065 if (s->listener->counters)
1066 s->listener->counters->failed_req++;
1067
1068 s->flags |= SN_FINST_R;
1069 }
1070 else if (s->si[1].state == SI_ST_QUE)
1071 s->flags |= SN_FINST_Q;
1072 else if (s->si[1].state < SI_ST_EST)
1073 s->flags |= SN_FINST_C;
1074 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1075 s->flags |= SN_FINST_D;
1076 else
1077 s->flags |= SN_FINST_L;
1078 }
1079}
1080
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001081/* This function initiates a server connection request on a stream interface
1082 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
1083 * indicating that a server has been assigned. It may also return SI_ST_QUE,
1084 * or SI_ST_CLO upon error.
1085 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001086static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1087{
1088 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 +01001089 now_ms, __FUNCTION__,
1090 s,
1091 s->req, s->rep,
1092 s->req->rex, s->rep->wex,
1093 s->req->flags, s->rep->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001094 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 +01001095
1096 if (si->state != SI_ST_REQ)
1097 return;
1098
1099 /* Try to assign a server */
1100 if (srv_redispatch_connect(s) != 0) {
1101 /* We did not get a server. Either we queued the
1102 * connection request, or we encountered an error.
1103 */
1104 if (si->state == SI_ST_QUE)
1105 return;
1106
1107 /* we did not get any server, let's check the cause */
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_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001111 if (!si->err_type)
1112 si->err_type = SI_ET_CONN_OTHER;
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 /* The server is assigned */
1120 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1121 si->state = SI_ST_ASS;
1122}
1123
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001124/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001125 * if appropriate. The default_backend rule is also considered, then the
1126 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001127 * It returns 1 if the processing can continue on next analysers, or zero if it
1128 * either needs more data or wants to immediately abort the request.
1129 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001130static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001131{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001132 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001133
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001134 req->analysers &= ~an_bit;
1135 req->analyse_exp = TICK_ETERNITY;
1136
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001137 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 +02001138 now_ms, __FUNCTION__,
1139 s,
1140 req,
1141 req->rex, req->wex,
1142 req->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001143 req->buf.i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001144 req->analysers);
1145
1146 /* now check whether we have some switching rules for this request */
1147 if (!(s->flags & SN_BE_ASSIGNED)) {
1148 struct switching_rule *rule;
1149
1150 list_for_each_entry(rule, &s->fe->switching_rules, list) {
1151 int ret;
1152
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001153 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 +02001154 ret = acl_pass(ret);
1155 if (rule->cond->pol == ACL_COND_UNLESS)
1156 ret = !ret;
1157
1158 if (ret) {
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001159 if (!session_set_backend(s, rule->be.backend))
1160 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001161 break;
1162 }
1163 }
1164
1165 /* To ensure correct connection accounting on the backend, we
1166 * have to assign one if it was not set (eg: a listen). This
1167 * measure also takes care of correctly setting the default
1168 * backend if any.
1169 */
1170 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001171 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1172 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001173 }
1174
Willy Tarreaufb356202010-08-03 14:02:05 +02001175 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1176 if (s->fe == s->be) {
1177 s->req->analysers &= ~AN_REQ_INSPECT_BE;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001178 s->req->analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001179 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001180
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001181 /* 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 +01001182 * persistence rule, and report that in the session.
1183 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001184 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001185 int ret = 1;
1186
1187 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001188 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 +01001189 ret = acl_pass(ret);
1190 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1191 ret = !ret;
1192 }
1193
1194 if (ret) {
1195 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001196 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1197 s->flags |= SN_FORCE_PRST;
1198 } else {
1199 s->flags |= SN_IGNORE_PRST;
1200 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001201 break;
1202 }
1203 }
1204
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001205 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001206
1207 sw_failed:
1208 /* immediately abort this request in case of allocation failure */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001209 channel_abort(s->req);
1210 channel_abort(s->rep);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001211
1212 if (!(s->flags & SN_ERR_MASK))
1213 s->flags |= SN_ERR_RESOURCE;
1214 if (!(s->flags & SN_FINST_MASK))
1215 s->flags |= SN_FINST_R;
1216
1217 s->txn.status = 500;
1218 s->req->analysers = 0;
1219 s->req->analyse_exp = TICK_ETERNITY;
1220 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001221}
1222
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001223/* This stream analyser works on a request. It applies all use-server rules on
1224 * it then returns 1. The data must already be present in the buffer otherwise
1225 * they won't match. It always returns 1.
1226 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001227static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001228{
1229 struct proxy *px = s->be;
1230 struct server_rule *rule;
1231
1232 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1233 now_ms, __FUNCTION__,
1234 s,
1235 req,
1236 req->rex, req->wex,
1237 req->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001238 req->buf.i + req->buf.o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001239 req->analysers);
1240
1241 if (!(s->flags & SN_ASSIGNED)) {
1242 list_for_each_entry(rule, &px->server_rules, list) {
1243 int ret;
1244
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001245 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 +02001246 ret = acl_pass(ret);
1247 if (rule->cond->pol == ACL_COND_UNLESS)
1248 ret = !ret;
1249
1250 if (ret) {
1251 struct server *srv = rule->srv.ptr;
1252
1253 if ((srv->state & SRV_RUNNING) ||
1254 (px->options & PR_O_PERSIST) ||
1255 (s->flags & SN_FORCE_PRST)) {
1256 s->flags |= SN_DIRECT | SN_ASSIGNED;
1257 set_target_server(&s->target, srv);
1258 break;
1259 }
1260 /* if the server is not UP, let's go on with next rules
1261 * just in case another one is suited.
1262 */
1263 }
1264 }
1265 }
1266
1267 req->analysers &= ~an_bit;
1268 req->analyse_exp = TICK_ETERNITY;
1269 return 1;
1270}
1271
Emeric Brun1d33b292010-01-04 15:47:17 +01001272/* This stream analyser works on a request. It applies all sticking rules on
1273 * it then returns 1. The data must already be present in the buffer otherwise
1274 * they won't match. It always returns 1.
1275 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001276static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001277{
1278 struct proxy *px = s->be;
1279 struct sticking_rule *rule;
1280
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001281 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 +01001282 now_ms, __FUNCTION__,
1283 s,
1284 req,
1285 req->rex, req->wex,
1286 req->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001287 req->buf.i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001288 req->analysers);
1289
1290 list_for_each_entry(rule, &px->sticking_rules, list) {
1291 int ret = 1 ;
1292 int i;
1293
1294 for (i = 0; i < s->store_count; i++) {
1295 if (rule->table.t == s->store[i].table)
1296 break;
1297 }
1298
1299 if (i != s->store_count)
1300 continue;
1301
1302 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001303 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001304 ret = acl_pass(ret);
1305 if (rule->cond->pol == ACL_COND_UNLESS)
1306 ret = !ret;
1307 }
1308
1309 if (ret) {
1310 struct stktable_key *key;
1311
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001312 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 +01001313 if (!key)
1314 continue;
1315
1316 if (rule->flags & STK_IS_MATCH) {
1317 struct stksess *ts;
1318
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001319 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001320 if (!(s->flags & SN_ASSIGNED)) {
1321 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001322 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001323
1324 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001325 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1326 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001327 if (node) {
1328 struct server *srv;
1329
1330 srv = container_of(node, struct server, conf.id);
Willy Tarreau4de91492010-01-22 19:10:05 +01001331 if ((srv->state & SRV_RUNNING) ||
1332 (px->options & PR_O_PERSIST) ||
1333 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001334 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01001335 set_target_server(&s->target, srv);
Emeric Brun1d33b292010-01-04 15:47:17 +01001336 }
1337 }
1338 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001339 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001340 }
1341 }
1342 if (rule->flags & STK_IS_STORE) {
1343 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1344 struct stksess *ts;
1345
1346 ts = stksess_new(rule->table.t, key);
1347 if (ts) {
1348 s->store[s->store_count].table = rule->table.t;
1349 s->store[s->store_count++].ts = ts;
1350 }
1351 }
1352 }
1353 }
1354 }
1355
1356 req->analysers &= ~an_bit;
1357 req->analyse_exp = TICK_ETERNITY;
1358 return 1;
1359}
1360
1361/* This stream analyser works on a response. It applies all store rules on it
1362 * then returns 1. The data must already be present in the buffer otherwise
1363 * they won't match. It always returns 1.
1364 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001365static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001366{
1367 struct proxy *px = s->be;
1368 struct sticking_rule *rule;
1369 int i;
1370
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001371 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 +01001372 now_ms, __FUNCTION__,
1373 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001374 rep,
1375 rep->rex, rep->wex,
1376 rep->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001377 rep->buf.i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001378 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001379
1380 list_for_each_entry(rule, &px->storersp_rules, list) {
1381 int ret = 1 ;
1382 int storereqidx = -1;
1383
1384 for (i = 0; i < s->store_count; i++) {
1385 if (rule->table.t == s->store[i].table) {
1386 if (!(s->store[i].flags))
1387 storereqidx = i;
1388 break;
1389 }
1390 }
1391
1392 if ((i != s->store_count) && (storereqidx == -1))
1393 continue;
1394
1395 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001396 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001397 ret = acl_pass(ret);
1398 if (rule->cond->pol == ACL_COND_UNLESS)
1399 ret = !ret;
1400 }
1401
1402 if (ret) {
1403 struct stktable_key *key;
1404
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001405 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 +01001406 if (!key)
1407 continue;
1408
1409 if (storereqidx != -1) {
Willy Tarreau393379c2010-06-06 12:11:37 +02001410 stksess_setkey(s->store[storereqidx].table, s->store[storereqidx].ts, key);
Emeric Brun1d33b292010-01-04 15:47:17 +01001411 s->store[storereqidx].flags = 1;
1412 }
1413 else if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1414 struct stksess *ts;
1415
1416 ts = stksess_new(rule->table.t, key);
1417 if (ts) {
1418 s->store[s->store_count].table = rule->table.t;
1419 s->store[s->store_count].flags = 1;
1420 s->store[s->store_count++].ts = ts;
1421 }
1422 }
1423 }
1424 }
1425
1426 /* process store request and store response */
1427 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001428 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001429 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001430
Simon Hormanfa461682011-06-25 09:39:49 +09001431 if (target_srv(&s->target) && target_srv(&s->target)->state & SRV_NON_STICK) {
1432 stksess_free(s->store[i].table, s->store[i].ts);
1433 s->store[i].ts = NULL;
1434 continue;
1435 }
1436
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001437 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1438 if (ts) {
1439 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001440 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001441 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001442 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001443 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001444 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001445
1446 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001447 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau827aee92011-03-10 16:55:02 +01001448 stktable_data_cast(ptr, server_id) = target_srv(&s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001449 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001450 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001451
1452 rep->analysers &= ~an_bit;
1453 rep->analyse_exp = TICK_ETERNITY;
1454 return 1;
1455}
1456
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001457/* This macro is very specific to the function below. See the comments in
1458 * process_session() below to understand the logic and the tests.
1459 */
1460#define UPDATE_ANALYSERS(real, list, back, flag) { \
1461 list = (((list) & ~(flag)) | ~(back)) & (real); \
1462 back = real; \
1463 if (!(list)) \
1464 break; \
1465 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1466 continue; \
1467}
1468
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001469/* Processes the client, server, request and response jobs of a session task,
1470 * then puts it back to the wait queue in a clean state, or cleans up its
1471 * resources if it must be deleted. Returns in <next> the date the task wants
1472 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1473 * nothing too many times, the request and response buffers flags are monitored
1474 * and each function is called only if at least another function has changed at
1475 * least one flag it is interested in.
1476 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001477struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001478{
Willy Tarreau827aee92011-03-10 16:55:02 +01001479 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001480 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001481 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001482 unsigned int rq_prod_last, rq_cons_last;
1483 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001484 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001485
1486 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
1487 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
1488
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001489 /* this data may be no longer valid, clear it */
1490 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1491
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001492 /* This flag must explicitly be set every time */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001493 s->req->flags &= ~CF_READ_NOEXP;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001494
1495 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001496 rqf_last = s->req->flags & ~CF_MASK_ANALYSER;
1497 rpf_last = s->rep->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001498
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001499 /* we don't want the stream interface functions to recursively wake us up */
1500 if (s->req->prod->owner == t)
1501 s->req->prod->flags |= SI_FL_DONT_WAKE;
1502 if (s->req->cons->owner == t)
1503 s->req->cons->flags |= SI_FL_DONT_WAKE;
1504
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001505 /* 1a: Check for low level timeouts if needed. We just set a flag on
1506 * stream interfaces when their timeouts have expired.
1507 */
1508 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1509 stream_int_check_timeouts(&s->si[0]);
1510 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001511
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001512 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001513 * for future reads or writes. Note: this will also concern upper layers
1514 * but we do not touch any other flag. We must be careful and correctly
1515 * detect state changes when calling them.
1516 */
1517
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001518 channel_check_timeouts(s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001519
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001520 if (unlikely((s->req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001521 s->req->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001522 si_shutw(s->req->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001523 }
1524
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001525 if (unlikely((s->req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001526 if (s->req->prod->flags & SI_FL_NOHALF)
1527 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001528 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001529 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001530
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001531 channel_check_timeouts(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001532
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001533 if (unlikely((s->rep->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
Willy Tarreau14641402009-12-29 14:49:56 +01001534 s->rep->cons->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001535 si_shutw(s->rep->cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001536 }
1537
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001538 if (unlikely((s->rep->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001539 if (s->rep->prod->flags & SI_FL_NOHALF)
1540 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001541 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001542 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001543 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001544
1545 /* 1b: check for low-level errors reported at the stream interface.
1546 * First we check if it's a retryable error (in which case we don't
1547 * want to tell the buffer). Otherwise we report the error one level
1548 * upper by setting flags into the buffers. Note that the side towards
1549 * the client cannot have connect (hence retryable) errors. Also, the
1550 * connection setup code must be able to deal with any type of abort.
1551 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001552 srv = target_srv(&s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001553 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1554 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001555 si_shutr(&s->si[0]);
1556 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001557 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001558 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001559 s->be->be_counters.cli_aborts++;
1560 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001561 if (srv)
1562 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001563 if (!(s->flags & SN_ERR_MASK))
1564 s->flags |= SN_ERR_CLICL;
1565 if (!(s->flags & SN_FINST_MASK))
1566 s->flags |= SN_FINST_D;
1567 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001568 }
1569 }
1570
1571 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1572 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001573 si_shutr(&s->si[1]);
1574 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001575 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001576 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001577 if (srv)
1578 srv->counters.failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001579 if (!(s->req->analysers) && !(s->rep->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001580 s->be->be_counters.srv_aborts++;
1581 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001582 if (srv)
1583 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001584 if (!(s->flags & SN_ERR_MASK))
1585 s->flags |= SN_ERR_SRVCL;
1586 if (!(s->flags & SN_FINST_MASK))
1587 s->flags |= SN_FINST_D;
1588 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001589 }
1590 /* note: maybe we should process connection errors here ? */
1591 }
1592
1593 if (s->si[1].state == SI_ST_CON) {
1594 /* we were trying to establish a connection on the server side,
1595 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1596 */
1597 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1598 sess_update_st_cer(s, &s->si[1]);
1599 else if (s->si[1].state == SI_ST_EST)
1600 sess_establish(s, &s->si[1]);
1601
1602 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1603 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1604 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1605 */
1606 }
1607
Willy Tarreau815a9b22010-07-27 17:15:12 +02001608 rq_prod_last = s->si[0].state;
1609 rq_cons_last = s->si[1].state;
1610 rp_cons_last = s->si[0].state;
1611 rp_prod_last = s->si[1].state;
1612
1613 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001614 /* Check for connection closure */
1615
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001616 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001617 "[%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 +01001618 now_ms, __FUNCTION__, __LINE__,
1619 t,
1620 s, s->flags,
1621 s->req, s->rep,
1622 s->req->rex, s->rep->wex,
1623 s->req->flags, s->rep->flags,
Cyril Bonté3aaba442012-09-23 14:19:12 +02001624 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 +01001625 s->rep->cons->err_type, s->req->cons->err_type,
Willy Tarreauee28de02010-06-01 09:51:00 +02001626 s->req->cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001627
1628 /* nothing special to be done on client side */
1629 if (unlikely(s->req->prod->state == SI_ST_DIS))
1630 s->req->prod->state = SI_ST_CLO;
1631
1632 /* When a server-side connection is released, we have to count it and
1633 * check for pending connections on this server.
1634 */
1635 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
1636 s->req->cons->state = SI_ST_CLO;
Willy Tarreau827aee92011-03-10 16:55:02 +01001637 srv = target_srv(&s->target);
1638 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001639 if (s->flags & SN_CURR_SESS) {
1640 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001641 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001642 }
1643 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001644 if (may_dequeue_tasks(srv, s->be))
1645 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001646 }
1647 }
1648
1649 /*
1650 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1651 * at this point.
1652 */
1653
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001654 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001655 /* Analyse request */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001656 if (((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1657 ((s->req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001658 s->si[0].state != rq_prod_last ||
1659 s->si[1].state != rq_cons_last) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001660 unsigned int flags = s->req->flags;
1661
1662 if (s->req->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001663 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001664 unsigned int ana_list;
1665 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001666
Willy Tarreau90deb182010-01-07 00:20:41 +01001667 /* it's up to the analysers to stop new connections,
1668 * disable reading or closing. Note: if an analyser
1669 * disables any of these bits, it is responsible for
1670 * enabling them again when it disables itself, so
1671 * that other analysers are called in similar conditions.
1672 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001673 channel_auto_read(s->req);
1674 channel_auto_connect(s->req);
1675 channel_auto_close(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001676
1677 /* We will call all analysers for which a bit is set in
1678 * s->req->analysers, following the bit order from LSB
1679 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001680 * the list when not needed. Any analyser may return 0
1681 * to break out of the loop, either because of missing
1682 * data to take a decision, or because it decides to
1683 * kill the session. We loop at least once through each
1684 * analyser, and we may loop again if other analysers
1685 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001686 *
1687 * We build a list of analysers to run. We evaluate all
1688 * of these analysers in the order of the lower bit to
1689 * the higher bit. This ordering is very important.
1690 * An analyser will often add/remove other analysers,
1691 * including itself. Any changes to itself have no effect
1692 * on the loop. If it removes any other analysers, we
1693 * want those analysers not to be called anymore during
1694 * this loop. If it adds an analyser that is located
1695 * after itself, we want it to be scheduled for being
1696 * processed during the loop. If it adds an analyser
1697 * which is located before it, we want it to switch to
1698 * it immediately, even if it has already been called
1699 * once but removed since.
1700 *
1701 * In order to achieve this, we compare the analyser
1702 * list after the call with a copy of it before the
1703 * call. The work list is fed with analyser bits that
1704 * appeared during the call. Then we compare previous
1705 * work list with the new one, and check the bits that
1706 * appeared. If the lowest of these bits is lower than
1707 * the current bit, it means we have enabled a previous
1708 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001709 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001710
1711 ana_list = ana_back = s->req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001712 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001713 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001714
Willy Tarreaufb356202010-08-03 14:02:05 +02001715 if (ana_list & AN_REQ_INSPECT_FE) {
1716 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001717 break;
Willy Tarreaufb356202010-08-03 14:02:05 +02001718 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001719 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001720
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001721 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001722 if (!http_wait_for_request(s, s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001723 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001724 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001725 }
1726
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001727 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001728 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
1729 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001730 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001731 }
1732
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001733 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001734 if (!process_switching_rules(s, s->req, AN_REQ_SWITCHING_RULES))
1735 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001736 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001737 }
1738
Willy Tarreaufb356202010-08-03 14:02:05 +02001739 if (ana_list & AN_REQ_INSPECT_BE) {
1740 if (!tcp_inspect_request(s, s->req, AN_REQ_INSPECT_BE))
1741 break;
1742 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
1743 }
1744
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001745 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001746 if (!http_process_req_common(s, s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
1747 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001748 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001749 }
1750
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001751 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001752 if (!http_process_tarpit(s, s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001753 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001754 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001755 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001756
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001757 if (ana_list & AN_REQ_SRV_RULES) {
1758 if (!process_server_rules(s, s->req, AN_REQ_SRV_RULES))
1759 break;
1760 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
1761 }
1762
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001763 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreauc465fd72009-08-31 00:17:18 +02001764 if (!http_process_request(s, s->req, AN_REQ_HTTP_INNER))
1765 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001766 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001767 }
1768
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001769 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau3a816292009-07-07 10:55:49 +02001770 if (!http_process_request_body(s, s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001771 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001772 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001773 }
Emeric Brun647caf12009-06-30 17:57:00 +02001774
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001775 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Emeric Brun647caf12009-06-30 17:57:00 +02001776 if (!tcp_persist_rdp_cookie(s, s->req, AN_REQ_PRST_RDP_COOKIE))
1777 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001778 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001779 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001780
Emeric Brun1d33b292010-01-04 15:47:17 +01001781 if (ana_list & AN_REQ_STICKING_RULES) {
1782 if (!process_sticking_rules(s, s->req, AN_REQ_STICKING_RULES))
1783 break;
1784 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
1785 }
1786
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001787 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001788 if (!http_request_forward_body(s, s->req, AN_REQ_HTTP_XFER_BODY))
1789 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001790 UPDATE_ANALYSERS(s->req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001791 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001792 break;
1793 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001794 }
Willy Tarreau84455332009-03-15 22:34:05 +01001795
Willy Tarreau815a9b22010-07-27 17:15:12 +02001796 rq_prod_last = s->si[0].state;
1797 rq_cons_last = s->si[1].state;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001798 s->req->flags &= ~CF_WAKE_ONCE;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001799 rqf_last = s->req->flags;
1800
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001801 if ((s->req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001802 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001803 }
1804
Willy Tarreau576507f2010-01-07 00:09:04 +01001805 /* we'll monitor the request analysers while parsing the response,
1806 * because some response analysers may indirectly enable new request
1807 * analysers (eg: HTTP keep-alive).
1808 */
1809 req_ana_back = s->req->analysers;
1810
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001811 resync_response:
1812 /* Analyse response */
1813
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001814 if (unlikely(s->rep->flags & CF_HIJACK)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001815 /* In inject mode, we wake up everytime something has
1816 * happened on the write side of the buffer.
1817 */
1818 unsigned int flags = s->rep->flags;
1819
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001820 if ((s->rep->flags & (CF_WRITE_PARTIAL|CF_WRITE_ERROR|CF_SHUTW)) &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001821 !channel_full(s->rep)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001822 s->rep->hijacker(s, s->rep);
1823 }
1824
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001825 if ((s->rep->flags ^ flags) & CF_MASK_STATIC) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001826 rpf_last = s->rep->flags;
1827 goto resync_response;
1828 }
1829 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001830 else if (((s->rep->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1831 (s->rep->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001832 s->si[0].state != rp_cons_last ||
1833 s->si[1].state != rp_prod_last) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001834 unsigned int flags = s->rep->flags;
1835
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001836 if ((s->rep->flags & CF_MASK_ANALYSER) &&
Willy Tarreau0499e352010-12-17 07:13:42 +01001837 (s->rep->analysers & AN_REQ_WAIT_HTTP)) {
1838 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1839 * for some free space in the response buffer, so we might need to call
1840 * it when something changes in the response buffer, but still we pass
1841 * it the request buffer. Note that the SI state might very well still
1842 * be zero due to us returning a flow of redirects!
1843 */
1844 s->rep->analysers &= ~AN_REQ_WAIT_HTTP;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001845 s->req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001846 }
1847
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001848 if (s->rep->prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001849 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001850 unsigned int ana_list;
1851 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001852
Willy Tarreau90deb182010-01-07 00:20:41 +01001853 /* it's up to the analysers to stop disable reading or
1854 * closing. Note: if an analyser disables any of these
1855 * bits, it is responsible for enabling them again when
1856 * it disables itself, so that other analysers are called
1857 * in similar conditions.
1858 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001859 channel_auto_read(s->rep);
1860 channel_auto_close(s->rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001861
1862 /* We will call all analysers for which a bit is set in
1863 * s->rep->analysers, following the bit order from LSB
1864 * to MSB. The analysers must remove themselves from
1865 * the list when not needed. Any analyser may return 0
1866 * to break out of the loop, either because of missing
1867 * data to take a decision, or because it decides to
1868 * kill the session. We loop at least once through each
1869 * analyser, and we may loop again if other analysers
1870 * are added in the middle.
1871 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001872
1873 ana_list = ana_back = s->rep->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001874 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001875 /* Warning! ensure that analysers are always placed in ascending order! */
1876
Emeric Brun97679e72010-09-23 17:56:44 +02001877 if (ana_list & AN_RES_INSPECT) {
1878 if (!tcp_inspect_response(s, s->rep, AN_RES_INSPECT))
1879 break;
1880 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_INSPECT);
1881 }
1882
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001883 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001884 if (!http_wait_for_response(s, s->rep, AN_RES_WAIT_HTTP))
1885 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001886 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001887 }
1888
Emeric Brun1d33b292010-01-04 15:47:17 +01001889 if (ana_list & AN_RES_STORE_RULES) {
1890 if (!process_store_rules(s, s->rep, AN_RES_STORE_RULES))
1891 break;
1892 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
1893 }
1894
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001895 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001896 if (!http_process_res_common(s, s->rep, AN_RES_HTTP_PROCESS_BE, s->be))
1897 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001898 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001899 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001900
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001901 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01001902 if (!http_response_forward_body(s, s->rep, AN_RES_HTTP_XFER_BODY))
1903 break;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001904 UPDATE_ANALYSERS(s->rep->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001905 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001906 break;
1907 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001908 }
1909
Willy Tarreau815a9b22010-07-27 17:15:12 +02001910 rp_cons_last = s->si[0].state;
1911 rp_prod_last = s->si[1].state;
1912 rpf_last = s->rep->flags;
1913
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001914 if ((s->rep->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001915 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001916 }
1917
Willy Tarreau576507f2010-01-07 00:09:04 +01001918 /* maybe someone has added some request analysers, so we must check and loop */
1919 if (s->req->analysers & ~req_ana_back)
1920 goto resync_request;
1921
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001922 if ((s->req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001923 goto resync_request;
1924
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001925 /* FIXME: here we should call protocol handlers which rely on
1926 * both buffers.
1927 */
1928
1929
1930 /*
Willy Tarreauae526782010-03-04 20:34:23 +01001931 * Now we propagate unhandled errors to the session. Normally
1932 * we're just in a data phase here since it means we have not
1933 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001934 */
Willy Tarreau827aee92011-03-10 16:55:02 +01001935 srv = target_srv(&s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01001936 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001937 if (s->req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001938 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau84455332009-03-15 22:34:05 +01001939 s->req->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001940 if (s->req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001941 s->be->be_counters.cli_aborts++;
1942 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001943 if (srv)
1944 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001945 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001946 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001947 else if (s->req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001948 s->be->be_counters.cli_aborts++;
1949 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001950 if (srv)
1951 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001952 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001953 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001954 else if (s->req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001955 s->be->be_counters.srv_aborts++;
1956 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001957 if (srv)
1958 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001959 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001960 }
1961 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001962 s->be->be_counters.srv_aborts++;
1963 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001964 if (srv)
1965 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01001966 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001967 }
Willy Tarreau84455332009-03-15 22:34:05 +01001968 sess_set_term_flags(s);
1969 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001970 else if (s->rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001971 /* Report it if the server got an error or a read timeout expired */
1972 s->rep->analysers = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001973 if (s->rep->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001974 s->be->be_counters.srv_aborts++;
1975 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001976 if (srv)
1977 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001978 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001979 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001980 else if (s->rep->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001981 s->be->be_counters.srv_aborts++;
1982 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001983 if (srv)
1984 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001985 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001986 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001987 else if (s->rep->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001988 s->be->be_counters.cli_aborts++;
1989 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001990 if (srv)
1991 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001992 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001993 }
1994 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001995 s->be->be_counters.cli_aborts++;
1996 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001997 if (srv)
1998 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01001999 s->flags |= SN_ERR_CLITO;
2000 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002001 sess_set_term_flags(s);
2002 }
Willy Tarreau84455332009-03-15 22:34:05 +01002003 }
2004
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002005 /*
2006 * Here we take care of forwarding unhandled data. This also includes
2007 * connection establishments and shutdown requests.
2008 */
2009
2010
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002011 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002012 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002013 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002014 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002015 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002016 if (!s->req->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002017 !(s->req->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002018 (s->req->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002019 (s->req->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002020 /* This buffer is freewheeling, there's no analyser nor hijacker
2021 * attached to it. If any data are left in, we'll permit them to
2022 * move.
2023 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002024 channel_auto_read(s->req);
2025 channel_auto_connect(s->req);
2026 channel_auto_close(s->req);
Willy Tarreaua75bcef2012-08-24 22:56:11 +02002027 buffer_flush(&s->req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002028
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002029 /* We'll let data flow between the producer (if still connected)
2030 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002031 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002032 if (!(s->req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002033 channel_forward(s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002034 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002035
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002036 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002037 if (!(s->req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002038 s->req->to_forward &&
2039 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02002040 (s->si[0].conn.xprt && s->si[0].conn.xprt->rcv_pipe && s->si[0].conn.xprt->snd_pipe) &&
2041 (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 +01002042 (pipes_used < global.maxpipes) &&
2043 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2044 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002045 (s->req->flags & CF_STREAMER_FAST)))) {
2046 s->req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002047 }
2048
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002049 /* reflect what the L7 analysers have seen last */
2050 rqf_last = s->req->flags;
2051
2052 /*
2053 * Now forward all shutdown requests between both sides of the buffer
2054 */
2055
Willy Tarreau520d95e2009-09-19 21:04:57 +02002056 /* first, let's check if the request buffer needs to shutdown(write), which may
2057 * happen either because the input is closed or because we want to force a close
Willy Tarreaue4599762010-03-21 23:25:09 +01002058 * once the server has begun to respond.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002059 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002060 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2061 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002062 channel_shutw_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002063
2064 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002065 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002066 channel_is_empty(s->req)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002067 si_shutw(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002068
2069 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002070 if (unlikely((s->req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002071 !s->req->analysers))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002072 channel_shutr_now(s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002073
2074 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002075 if (unlikely((s->req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002076 if (s->req->prod->flags & SI_FL_NOHALF)
2077 s->req->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002078 si_shutr(s->req->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002079 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002080
Willy Tarreau520d95e2009-09-19 21:04:57 +02002081 /* it's possible that an upper layer has requested a connection setup or abort.
2082 * There are 2 situations where we decide to establish a new connection :
2083 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002084 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002085 */
2086 if (s->req->cons->state == SI_ST_INI) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002087 if (!(s->req->flags & CF_SHUTW)) {
2088 if ((s->req->flags & CF_AUTO_CONNECT) || !channel_is_empty(s->req)) {
Willy Tarreaub24281b2011-02-13 13:16:36 +01002089 /* If we have an applet without a connect method, we immediately
Willy Tarreau85e7d002010-05-31 11:57:51 +02002090 * switch to the connected state, otherwise we perform a connection
2091 * request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002092 */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002093 s->req->cons->state = SI_ST_REQ; /* new connection requested */
Willy Tarreau070ceb62010-06-01 10:36:43 +02002094 s->req->cons->conn_retries = s->be->conn_retries;
Willy Tarreau3cefd522012-08-30 15:49:18 +02002095 if (unlikely(s->req->cons->conn.target.type == TARG_TYPE_APPLET &&
Willy Tarreau73b013b2012-05-21 16:31:45 +02002096 !(si_ctrl(s->req->cons) && si_ctrl(s->req->cons)->connect))) {
Willy Tarreau520d95e2009-09-19 21:04:57 +02002097 s->req->cons->state = SI_ST_EST; /* connection established */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002098 s->rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau85e7d002010-05-31 11:57:51 +02002099 s->req->wex = TICK_ETERNITY;
2100 }
Willy Tarreau520d95e2009-09-19 21:04:57 +02002101 }
Willy Tarreau73201222009-08-16 18:27:24 +02002102 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002103 else {
Willy Tarreau92795622009-03-06 12:51:23 +01002104 s->req->cons->state = SI_ST_CLO; /* shutw+ini = abort */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002105 channel_shutw_now(s->req); /* fix buffer flags upon abort */
2106 channel_shutr_now(s->rep);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002107 }
Willy Tarreau92795622009-03-06 12:51:23 +01002108 }
2109
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002110
2111 /* we may have a pending connection request, or a connection waiting
2112 * for completion.
2113 */
2114 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2115 do {
2116 /* nb: step 1 might switch from QUE to ASS, but we first want
2117 * to give a chance to step 2 to perform a redirect if needed.
2118 */
2119 if (s->si[1].state != SI_ST_REQ)
2120 sess_update_stream_int(s, &s->si[1]);
2121 if (s->si[1].state == SI_ST_REQ)
2122 sess_prepare_conn_req(s, &s->si[1]);
2123
Willy Tarreau827aee92011-03-10 16:55:02 +01002124 srv = target_srv(&s->target);
2125 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002126 perform_http_redirect(s, &s->si[1]);
2127 } while (s->si[1].state == SI_ST_ASS);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002128
2129 /* Now we can add the server name to a header (if requested) */
2130 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Stathis Voukelatos09a030a2012-01-09 14:27:13 +01002131 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau45c0d982012-03-09 12:11:57 +01002132 (s->be->mode == PR_MODE_HTTP) &&
2133 (s->be->server_id_hdr_name != NULL)) {
2134 http_send_name_header(&s->txn, s->be, target_srv(&s->target)->id);
Mark Lamourinec2247f02012-01-04 13:02:01 -05002135 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002136 }
2137
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002138 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002139 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002140 goto resync_stream_interface;
2141
Willy Tarreau815a9b22010-07-27 17:15:12 +02002142 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002143 if ((s->req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002144 goto resync_request;
2145
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002146 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002147
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002148 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002149 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002150 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002151 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002152 */
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002153 if (!s->rep->analysers &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002154 !(s->rep->flags & (CF_HIJACK|CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau31971e52009-09-20 12:07:52 +02002155 (s->rep->prod->state >= SI_ST_EST) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002156 (s->rep->to_forward != CHN_INFINITE_FORWARD)) {
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002157 /* This buffer is freewheeling, there's no analyser nor hijacker
2158 * attached to it. If any data are left in, we'll permit them to
2159 * move.
2160 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002161 channel_auto_read(s->rep);
2162 channel_auto_close(s->rep);
Willy Tarreaua75bcef2012-08-24 22:56:11 +02002163 buffer_flush(&s->rep->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002164
2165 /* We'll let data flow between the producer (if still connected)
2166 * to the consumer.
2167 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002168 if (!(s->rep->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002169 channel_forward(s->rep, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002170
2171 /* if we have no analyser anymore in any direction and have a
2172 * tunnel timeout set, use it now.
2173 */
2174 if (!s->req->analysers && s->be->timeout.tunnel) {
2175 s->req->rto = s->req->wto = s->rep->rto = s->rep->wto =
2176 s->be->timeout.tunnel;
2177 s->req->rex = s->req->wex = s->rep->rex = s->rep->wex =
2178 tick_add(now_ms, s->be->timeout.tunnel);
2179 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002180 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002181
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002182 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002183 if (!(s->rep->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002184 s->rep->to_forward &&
2185 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02002186 (s->si[0].conn.xprt && s->si[0].conn.xprt->rcv_pipe && s->si[0].conn.xprt->snd_pipe) &&
2187 (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 +01002188 (pipes_used < global.maxpipes) &&
2189 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2190 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002191 (s->rep->flags & CF_STREAMER_FAST)))) {
2192 s->rep->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002193 }
2194
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002195 /* reflect what the L7 analysers have seen last */
2196 rpf_last = s->rep->flags;
2197
2198 /*
2199 * Now forward all shutdown requests between both sides of the buffer
2200 */
2201
2202 /*
2203 * FIXME: this is probably where we should produce error responses.
2204 */
2205
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002206 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002207 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTR)) ==
2208 (CF_AUTO_CLOSE|CF_SHUTR)))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002209 channel_shutw_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002210
2211 /* shutdown(write) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002212 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02002213 channel_is_empty(s->rep)))
Willy Tarreau73b013b2012-05-21 16:31:45 +02002214 si_shutw(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002215
2216 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002217 if (unlikely((s->rep->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
Willy Tarreau3dbc6942008-12-07 13:05:04 +01002218 !s->rep->analysers)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002219 channel_shutr_now(s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002220
2221 /* shutdown(read) pending */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002222 if (unlikely((s->rep->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002223 if (s->rep->prod->flags & SI_FL_NOHALF)
2224 s->rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +02002225 si_shutr(s->rep->prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002226 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002227
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002228 if (s->req->prod->state == SI_ST_DIS || s->req->cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002229 goto resync_stream_interface;
2230
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002231 if (s->req->flags != rqf_last)
2232 goto resync_request;
2233
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002234 if ((s->rep->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002235 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002236
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002237 /* we're interested in getting wakeups again */
2238 s->req->prod->flags &= ~SI_FL_DONT_WAKE;
2239 s->req->cons->flags &= ~SI_FL_DONT_WAKE;
2240
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002241 /* This is needed only when debugging is enabled, to indicate
2242 * client-side or server-side close. Please note that in the unlikely
2243 * event where both sides would close at once, the sequence is reported
2244 * on the server side first.
2245 */
2246 if (unlikely((global.mode & MODE_DEBUG) &&
2247 (!(global.mode & MODE_QUIET) ||
2248 (global.mode & MODE_VERBOSE)))) {
2249 int len;
2250
2251 if (s->si[1].state == SI_ST_CLO &&
2252 s->si[1].prev_state == SI_ST_EST) {
2253 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
2254 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002255 (unsigned short)si_fd(&s->si[0]),
2256 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002257 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002258 }
2259
2260 if (s->si[0].state == SI_ST_CLO &&
2261 s->si[0].prev_state == SI_ST_EST) {
2262 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
2263 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002264 (unsigned short)si_fd(&s->si[0]),
2265 (unsigned short)si_fd(&s->si[1]));
Willy Tarreau21337822012-04-29 14:11:38 +02002266 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002267 }
2268 }
2269
2270 if (likely((s->rep->cons->state != SI_ST_CLO) ||
2271 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
2272
2273 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2274 session_process_counters(s);
2275
Willy Tarreau3cefd522012-08-30 15:49:18 +02002276 if (s->rep->cons->state == SI_ST_EST && s->rep->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002277 si_update(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002278
Willy Tarreau3cefd522012-08-30 15:49:18 +02002279 if (s->req->cons->state == SI_ST_EST && s->req->cons->conn.target.type != TARG_TYPE_APPLET)
Willy Tarreau73b013b2012-05-21 16:31:45 +02002280 si_update(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002281
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002282 s->req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2283 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 +01002284 s->si[0].prev_state = s->si[0].state;
2285 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002286 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2287 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002288
2289 /* Trick: if a request is being waiting for the server to respond,
2290 * and if we know the server can timeout, we don't want the timeout
2291 * to expire on the client side first, but we're still interested
2292 * in passing data from the client to the server (eg: POST). Thus,
2293 * we can cancel the client's request timeout if the server's
2294 * request timeout is set and the server has not yet sent a response.
2295 */
2296
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002297 if ((s->rep->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01002298 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002299 s->req->flags |= CF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002300 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01002301 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002302
Willy Tarreau7a20aa62010-07-13 16:30:45 +02002303 /* Call the stream interfaces' I/O handlers when embedded.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002304 * Note that this one may wake the task up again.
2305 */
Willy Tarreau3cefd522012-08-30 15:49:18 +02002306 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET ||
2307 s->rep->cons->conn.target.type == TARG_TYPE_APPLET) {
2308 if (s->req->cons->conn.target.type == TARG_TYPE_APPLET)
2309 s->req->cons->conn.target.ptr.a->fct(s->req->cons);
2310 if (s->rep->cons->conn.target.type == TARG_TYPE_APPLET)
2311 s->rep->cons->conn.target.ptr.a->fct(s->rep->cons);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002312 if (task_in_rq(t)) {
2313 /* If we woke up, we don't want to requeue the
2314 * task to the wait queue, but rather requeue
2315 * it into the runqueue ASAP.
2316 */
2317 t->expire = TICK_ETERNITY;
2318 return t;
2319 }
2320 }
2321
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002322 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
2323 tick_first(s->rep->rex, s->rep->wex));
2324 if (s->req->analysers)
2325 t->expire = tick_first(t->expire, s->req->analyse_exp);
2326
2327 if (s->si[0].exp)
2328 t->expire = tick_first(t->expire, s->si[0].exp);
2329
2330 if (s->si[1].exp)
2331 t->expire = tick_first(t->expire, s->si[1].exp);
2332
2333#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002334 fprintf(stderr,
2335 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2336 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
2337 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp,
2338 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 +01002339#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002340
2341#ifdef DEBUG_DEV
2342 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002343 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002344 ABORT_NOW();
2345#endif
Willy Tarreau26c25062009-03-08 09:38:41 +01002346 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002347 }
2348
2349 s->fe->feconn--;
2350 if (s->flags & SN_BE_ASSIGNED)
2351 s->be->beconn--;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02002352 if (!(s->listener->options & LI_O_UNLIMITED))
2353 actconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002354 jobs--;
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +02002355 s->listener->nbconn--;
Willy Tarreau62793712011-07-24 19:23:38 +02002356 if (s->listener->state == LI_FULL)
2357 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002358
Willy Tarreau08ceb102011-07-24 22:58:00 +02002359 /* Dequeues all of the listeners waiting for a resource */
2360 if (!LIST_ISEMPTY(&global_listener_queue))
2361 dequeue_all_listeners(&global_listener_queue);
2362
Willy Tarreaub32907b2011-07-25 08:37:44 +02002363 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2364 (!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 +02002365 dequeue_all_listeners(&s->fe->listener_queue);
2366
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002367 if (unlikely((global.mode & MODE_DEBUG) &&
2368 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
2369 int len;
Willy Tarreauec22b2c2009-03-06 13:07:40 +01002370 len = sprintf(trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002371 s->uniq_id, s->be->id,
Willy Tarreaufb7508a2012-05-21 16:47:54 +02002372 (unsigned short)si_fd(s->req->prod), (unsigned short)si_fd(s->req->cons));
Willy Tarreau21337822012-04-29 14:11:38 +02002373 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002374 }
2375
2376 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2377 session_process_counters(s);
2378
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002379 if (s->txn.status) {
2380 int n;
2381
2382 n = s->txn.status / 100;
2383 if (n < 1 || n > 5)
2384 n = 0;
2385
2386 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002387 s->fe->fe_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002388
Willy Tarreau24657792010-02-26 10:30:28 +01002389 if ((s->flags & SN_BE_ASSIGNED) &&
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002390 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002391 s->be->be_counters.p.http.rsp[n]++;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002392 }
2393
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002394 /* let's do a final log if we need it */
2395 if (s->logs.logwait &&
2396 !(s->flags & SN_MONITOR) &&
2397 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002398 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002399 }
2400
2401 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002402 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002403 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002404 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002405 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002406}
2407
Willy Tarreau7c669d72008-06-20 15:04:11 +02002408/*
2409 * This function adjusts sess->srv_conn and maintains the previous and new
2410 * server's served session counts. Setting newsrv to NULL is enough to release
2411 * current connection slot. This function also notifies any LB algo which might
2412 * expect to be informed about any change in the number of active sessions on a
2413 * server.
2414 */
2415void sess_change_server(struct session *sess, struct server *newsrv)
2416{
2417 if (sess->srv_conn == newsrv)
2418 return;
2419
2420 if (sess->srv_conn) {
2421 sess->srv_conn->served--;
2422 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2423 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002424 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002425 }
2426
2427 if (newsrv) {
2428 newsrv->served++;
2429 if (newsrv->proxy->lbprm.server_take_conn)
2430 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002431 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002432 }
2433}
2434
Willy Tarreau84455332009-03-15 22:34:05 +01002435/* Handle server-side errors for default protocols. It is called whenever a a
2436 * connection setup is aborted or a request is aborted in queue. It sets the
2437 * session termination flags so that the caller does not have to worry about
2438 * them. It's installed as ->srv_error for the server-side stream_interface.
2439 */
2440void default_srv_error(struct session *s, struct stream_interface *si)
2441{
2442 int err_type = si->err_type;
2443 int err = 0, fin = 0;
2444
2445 if (err_type & SI_ET_QUEUE_ABRT) {
2446 err = SN_ERR_CLICL;
2447 fin = SN_FINST_Q;
2448 }
2449 else if (err_type & SI_ET_CONN_ABRT) {
2450 err = SN_ERR_CLICL;
2451 fin = SN_FINST_C;
2452 }
2453 else if (err_type & SI_ET_QUEUE_TO) {
2454 err = SN_ERR_SRVTO;
2455 fin = SN_FINST_Q;
2456 }
2457 else if (err_type & SI_ET_QUEUE_ERR) {
2458 err = SN_ERR_SRVCL;
2459 fin = SN_FINST_Q;
2460 }
2461 else if (err_type & SI_ET_CONN_TO) {
2462 err = SN_ERR_SRVTO;
2463 fin = SN_FINST_C;
2464 }
2465 else if (err_type & SI_ET_CONN_ERR) {
2466 err = SN_ERR_SRVCL;
2467 fin = SN_FINST_C;
2468 }
2469 else /* SI_ET_CONN_OTHER and others */ {
2470 err = SN_ERR_INTERNAL;
2471 fin = SN_FINST_C;
2472 }
2473
2474 if (!(s->flags & SN_ERR_MASK))
2475 s->flags |= err;
2476 if (!(s->flags & SN_FINST_MASK))
2477 s->flags |= fin;
2478}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002479
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002480/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2481void session_shutdown(struct session *session, int why)
2482{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002483 if (session->req->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002484 return;
2485
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002486 channel_shutw_now(session->req);
2487 channel_shutr_now(session->rep);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002488 session->task->nice = 1024;
2489 if (!(session->flags & SN_ERR_MASK))
2490 session->flags |= why;
2491 task_wakeup(session->task, TASK_WOKEN_OTHER);
2492}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002493
Willy Tarreau8b22a712010-06-18 17:46:06 +02002494/************************************************************************/
2495/* All supported ACL keywords must be declared here. */
2496/************************************************************************/
2497
Willy Tarreaua5e37562011-12-16 17:06:15 +01002498/* set temp integer to the General Purpose Counter 0 value in the stksess entry <ts> */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002499static int
Willy Tarreau37406352012-04-23 16:16:37 +02002500acl_fetch_get_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002501{
Willy Tarreau37406352012-04-23 16:16:37 +02002502 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002503 smp->type = SMP_T_UINT;
2504 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002505 if (ts != NULL) {
2506 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2507 if (!ptr)
2508 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002509 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002510 }
2511 return 1;
2512}
2513
Willy Tarreaua5e37562011-12-16 17:06:15 +01002514/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002515 * frontend counters.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002516 */
2517static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002518acl_fetch_sc1_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002519 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002520{
Willy Tarreau56123282010-08-06 19:06:56 +02002521 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002522 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002523 return acl_fetch_get_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002524}
2525
Willy Tarreaua5e37562011-12-16 17:06:15 +01002526/* set temp integer to the General Purpose Counter 0 value from the session's tracked
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002527 * backend counters.
2528 */
2529static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002530acl_fetch_sc2_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002531 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002532{
Willy Tarreau56123282010-08-06 19:06:56 +02002533 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002534 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002535 return acl_fetch_get_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002536}
2537
Willy Tarreaua5e37562011-12-16 17:06:15 +01002538/* set temp integer to the General Purpose Counter 0 value from the session's source
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002539 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002540 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002541 */
2542static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002543acl_fetch_src_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002544 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002545{
2546 struct stktable_key *key;
2547
Willy Tarreau64ee4912012-08-30 22:59:48 +02002548 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002549 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002550 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002551
Willy Tarreau24e32d82012-04-23 23:55:44 +02002552 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002553 return acl_fetch_get_gpc0(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002554}
2555
2556/* Increment the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002557 * return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002558 */
2559static int
Willy Tarreau37406352012-04-23 16:16:37 +02002560acl_fetch_inc_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002561{
Willy Tarreau37406352012-04-23 16:16:37 +02002562 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002563 smp->type = SMP_T_UINT;
2564 smp->data.uint = 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002565 if (ts != NULL) {
2566 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2567 if (!ptr)
2568 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002569 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002570 }
2571 return 1;
2572}
2573
2574/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002575 * frontend counters and return it into temp integer.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002576 */
2577static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002578acl_fetch_sc1_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002579 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002580{
Willy Tarreau56123282010-08-06 19:06:56 +02002581 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002582 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002583 return acl_fetch_inc_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002584}
2585
2586/* Increment the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002587 * backend counters and return it into temp integer.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002588 */
2589static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002590acl_fetch_sc2_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002591 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002592{
Willy Tarreau56123282010-08-06 19:06:56 +02002593 if (!l4->stkctr2_entry)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002594 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002595 return acl_fetch_inc_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002596}
2597
2598/* Increment the General Purpose Counter 0 value from the session's source
Willy Tarreaua5e37562011-12-16 17:06:15 +01002599 * address in the table pointed to by expr, and return it into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002600 * Accepts exactly 1 argument of type table.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002601 */
2602static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002603acl_fetch_src_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002604 const struct arg *args, struct sample *smp)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002605{
2606 struct stktable_key *key;
2607
Willy Tarreau64ee4912012-08-30 22:59:48 +02002608 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002609 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002610 return 0;
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002611
Willy Tarreau24e32d82012-04-23 23:55:44 +02002612 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002613 return acl_fetch_inc_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002614}
2615
Willy Tarreauf73cd112011-08-13 01:45:16 +02002616/* Clear the General Purpose Counter 0 value in the stksess entry <ts> and
Willy Tarreaua5e37562011-12-16 17:06:15 +01002617 * return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002618 */
2619static int
Willy Tarreau37406352012-04-23 16:16:37 +02002620acl_fetch_clr_gpc0(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002621{
Willy Tarreau37406352012-04-23 16:16:37 +02002622 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002623 smp->type = SMP_T_UINT;
2624 smp->data.uint = 0;
Willy Tarreauf73cd112011-08-13 01:45:16 +02002625 if (ts != NULL) {
2626 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_GPC0);
2627 if (!ptr)
2628 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002629 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002630 stktable_data_cast(ptr, gpc0) = 0;
2631 }
2632 return 1;
2633}
2634
2635/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002636 * frontend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002637 */
2638static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002639acl_fetch_sc1_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002640 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002641{
2642 if (!l4->stkctr1_entry)
2643 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002644 return acl_fetch_clr_gpc0(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002645}
2646
2647/* Clear the General Purpose Counter 0 value from the session's tracked
Willy Tarreaua5e37562011-12-16 17:06:15 +01002648 * backend counters and return its previous value into temp integer.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002649 */
2650static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002651acl_fetch_sc2_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002652 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002653{
2654 if (!l4->stkctr2_entry)
2655 return 0;
Willy Tarreau37406352012-04-23 16:16:37 +02002656 return acl_fetch_clr_gpc0(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002657}
2658
2659/* Clear the General Purpose Counter 0 value from the session's source address
Willy Tarreaua5e37562011-12-16 17:06:15 +01002660 * in the table pointed to by expr, and return its previous value into temp integer.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002661 * Accepts exactly 1 argument of type table.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002662 */
2663static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002664acl_fetch_src_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002665 const struct arg *args, struct sample *smp)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002666{
2667 struct stktable_key *key;
2668
Willy Tarreau64ee4912012-08-30 22:59:48 +02002669 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002670 if (!key)
2671 return 0;
2672
Willy Tarreau24e32d82012-04-23 23:55:44 +02002673 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002674 return acl_fetch_clr_gpc0(&px->table, smp, stktable_update_key(&px->table, key));
Willy Tarreauf73cd112011-08-13 01:45:16 +02002675}
2676
Willy Tarreaua5e37562011-12-16 17:06:15 +01002677/* set temp integer to the cumulated number of connections in the stksess entry <ts> */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002678static int
Willy Tarreau37406352012-04-23 16:16:37 +02002679acl_fetch_conn_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002680{
Willy Tarreau37406352012-04-23 16:16:37 +02002681 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002682 smp->type = SMP_T_UINT;
2683 smp->data.uint = 0;
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002684 if (ts != NULL) {
2685 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CNT);
2686 if (!ptr)
2687 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002688 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002689 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002690 return 1;
2691}
2692
Willy Tarreaua5e37562011-12-16 17:06:15 +01002693/* set temp integer to the cumulated number of connections from the session's tracked FE counters */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002694static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002695acl_fetch_sc1_conn_cnt(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;
2700
Willy Tarreau37406352012-04-23 16:16:37 +02002701 return acl_fetch_conn_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002702}
2703
Willy Tarreaua5e37562011-12-16 17:06:15 +01002704/* set temp integer to the cumulated number of connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002705static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002706acl_fetch_sc2_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002707 const struct arg *args, struct sample *smp)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002708{
Willy Tarreau56123282010-08-06 19:06:56 +02002709 if (!l4->stkctr2_entry)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002710 return 0;
2711
Willy Tarreau37406352012-04-23 16:16:37 +02002712 return acl_fetch_conn_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002713}
2714
Willy Tarreaua5e37562011-12-16 17:06:15 +01002715/* set temp integer to the cumulated number of connections from the session's source
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002716 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002717 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002718 */
2719static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002720acl_fetch_src_conn_cnt(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 Tarreau8b22a712010-06-18 17:46:06 +02002722{
Willy Tarreau8b22a712010-06-18 17:46:06 +02002723 struct stktable_key *key;
2724
Willy Tarreau64ee4912012-08-30 22:59:48 +02002725 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002726 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002727 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002728
Willy Tarreau24e32d82012-04-23 23:55:44 +02002729 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002730 return acl_fetch_conn_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau8b22a712010-06-18 17:46:06 +02002731}
2732
Willy Tarreaua5e37562011-12-16 17:06:15 +01002733/* set temp integer to the connection rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002734static int
Willy Tarreau37406352012-04-23 16:16:37 +02002735acl_fetch_conn_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002736{
Willy Tarreau37406352012-04-23 16:16:37 +02002737 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002738 smp->type = SMP_T_UINT;
2739 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002740 if (ts != NULL) {
2741 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_RATE);
2742 if (!ptr)
2743 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002744 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002745 table->data_arg[STKTABLE_DT_CONN_RATE].u);
2746 }
2747 return 1;
2748}
2749
Willy Tarreaua5e37562011-12-16 17:06:15 +01002750/* set temp integer to the connection rate from the session's tracked FE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002751 * the configured period.
2752 */
2753static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002754acl_fetch_sc1_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002755 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002756{
Willy Tarreau56123282010-08-06 19:06:56 +02002757 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002758 return 0;
2759
Willy Tarreau37406352012-04-23 16:16:37 +02002760 return acl_fetch_conn_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002761}
2762
Willy Tarreaua5e37562011-12-16 17:06:15 +01002763/* set temp integer to the connection rate from the session's tracked BE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002764 * the configured period.
2765 */
2766static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002767acl_fetch_sc2_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002768 const struct arg *args, struct sample *smp)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002769{
Willy Tarreau56123282010-08-06 19:06:56 +02002770 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002771 return 0;
2772
Willy Tarreau37406352012-04-23 16:16:37 +02002773 return acl_fetch_conn_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002774}
2775
Willy Tarreaua5e37562011-12-16 17:06:15 +01002776/* set temp integer to the connection rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002777 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002778 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002779 */
2780static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002781acl_fetch_src_conn_rate(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 Tarreau91c43d72010-06-20 11:19:22 +02002783{
2784 struct stktable_key *key;
2785
Willy Tarreau64ee4912012-08-30 22:59:48 +02002786 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002787 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002788 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002789
Willy Tarreau24e32d82012-04-23 23:55:44 +02002790 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002791 return acl_fetch_conn_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +02002792}
2793
Willy Tarreaua5e37562011-12-16 17:06:15 +01002794/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002795 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002796 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002797 */
2798static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002799acl_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002800 const struct arg *args, struct sample *smp)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002801{
2802 struct stksess *ts;
2803 struct stktable_key *key;
2804 void *ptr;
2805
Willy Tarreau64ee4912012-08-30 22:59:48 +02002806 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002807 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002808 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002809
Willy Tarreau24e32d82012-04-23 23:55:44 +02002810 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002811
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002812 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2813 /* entry does not exist and could not be created */
2814 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002815
2816 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2817 if (!ptr)
2818 return 0; /* parameter not stored in this table */
2819
Willy Tarreauf853c462012-04-23 18:53:56 +02002820 smp->type = SMP_T_UINT;
2821 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002822 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002823 return 1;
2824}
2825
Willy Tarreaua5e37562011-12-16 17:06:15 +01002826/* set temp integer to the number of concurrent connections in the stksess entry <ts> */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002827static int
Willy Tarreau37406352012-04-23 16:16:37 +02002828acl_fetch_conn_cur(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002829{
Willy Tarreau37406352012-04-23 16:16:37 +02002830 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002831 smp->type = SMP_T_UINT;
2832 smp->data.uint = 0;
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002833
2834 if (ts != NULL) {
2835 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_CONN_CUR);
2836 if (!ptr)
2837 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002838 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002839 }
2840 return 1;
2841}
2842
Willy Tarreaua5e37562011-12-16 17:06:15 +01002843/* set temp integer to the number of concurrent connections from the session's tracked FE counters */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002844static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002845acl_fetch_sc1_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002846 const struct arg *args, struct sample *smp)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002847{
Willy Tarreau56123282010-08-06 19:06:56 +02002848 if (!l4->stkctr1_entry)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002849 return 0;
2850
Willy Tarreau37406352012-04-23 16:16:37 +02002851 return acl_fetch_conn_cur(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002852}
2853
Willy Tarreaua5e37562011-12-16 17:06:15 +01002854/* set temp integer to the number of concurrent connections from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002855static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002856acl_fetch_sc2_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002857 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002858{
Willy Tarreau56123282010-08-06 19:06:56 +02002859 if (!l4->stkctr2_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002860 return 0;
2861
Willy Tarreau37406352012-04-23 16:16:37 +02002862 return acl_fetch_conn_cur(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002863}
2864
Willy Tarreaua5e37562011-12-16 17:06:15 +01002865/* set temp integer to the number of concurrent connections from the session's source
Willy Tarreau38285c12010-06-18 16:35:43 +02002866 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002867 * Accepts exactly 1 argument of type table.
Willy Tarreau38285c12010-06-18 16:35:43 +02002868 */
2869static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002870acl_fetch_src_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002871 const struct arg *args, struct sample *smp)
Willy Tarreau38285c12010-06-18 16:35:43 +02002872{
Willy Tarreau38285c12010-06-18 16:35:43 +02002873 struct stktable_key *key;
2874
Willy Tarreau64ee4912012-08-30 22:59:48 +02002875 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau38285c12010-06-18 16:35:43 +02002876 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002877 return 0;
Willy Tarreau38285c12010-06-18 16:35:43 +02002878
Willy Tarreau24e32d82012-04-23 23:55:44 +02002879 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002880 return acl_fetch_conn_cur(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau38285c12010-06-18 16:35:43 +02002881}
2882
Willy Tarreaua5e37562011-12-16 17:06:15 +01002883/* set temp integer to the cumulated number of sessions in the stksess entry <ts> */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002884static int
Willy Tarreau37406352012-04-23 16:16:37 +02002885acl_fetch_sess_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002886{
Willy Tarreau37406352012-04-23 16:16:37 +02002887 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002888 smp->type = SMP_T_UINT;
2889 smp->data.uint = 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002890 if (ts != NULL) {
2891 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_CNT);
2892 if (!ptr)
2893 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002894 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002895 }
2896 return 1;
2897}
2898
Willy Tarreaua5e37562011-12-16 17:06:15 +01002899/* set temp integer to the cumulated number of sessions from the session's tracked FE counters */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002900static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002901acl_fetch_sc1_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002902 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002903{
Willy Tarreau56123282010-08-06 19:06:56 +02002904 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002905 return 0;
2906
Willy Tarreau37406352012-04-23 16:16:37 +02002907 return acl_fetch_sess_cnt(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002908}
2909
Willy Tarreaua5e37562011-12-16 17:06:15 +01002910/* set temp integer to the cumulated number of sessions from the session's tracked BE counters */
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002911static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002912acl_fetch_sc2_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002913 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002914{
Willy Tarreau56123282010-08-06 19:06:56 +02002915 if (!l4->stkctr2_entry)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002916 return 0;
2917
Willy Tarreau37406352012-04-23 16:16:37 +02002918 return acl_fetch_sess_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002919}
2920
Willy Tarreaua5e37562011-12-16 17:06:15 +01002921/* set temp integer to the cumulated number of session from the session's source
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002922 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002923 * Accepts exactly 1 argument of type table.
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002924 */
2925static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002926acl_fetch_src_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002927 const struct arg *args, struct sample *smp)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002928{
2929 struct stktable_key *key;
2930
Willy Tarreau64ee4912012-08-30 22:59:48 +02002931 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002932 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002933 return 0;
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002934
Willy Tarreau24e32d82012-04-23 23:55:44 +02002935 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002936 return acl_fetch_sess_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002937}
2938
Willy Tarreaua5e37562011-12-16 17:06:15 +01002939/* set temp integer to the session rate in the stksess entry <ts> over the configured period */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002940static int
Willy Tarreau37406352012-04-23 16:16:37 +02002941acl_fetch_sess_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002942{
Willy Tarreau37406352012-04-23 16:16:37 +02002943 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002944 smp->type = SMP_T_UINT;
2945 smp->data.uint = 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002946 if (ts != NULL) {
2947 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_SESS_RATE);
2948 if (!ptr)
2949 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002950 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau91c43d72010-06-20 11:19:22 +02002951 table->data_arg[STKTABLE_DT_SESS_RATE].u);
2952 }
2953 return 1;
2954}
2955
Willy Tarreaua5e37562011-12-16 17:06:15 +01002956/* set temp integer to the session rate from the session's tracked FE counters over
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002957 * the configured period.
2958 */
2959static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002960acl_fetch_sc1_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02002961 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002962{
Willy Tarreau56123282010-08-06 19:06:56 +02002963 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002964 return 0;
2965
Willy Tarreau37406352012-04-23 16:16:37 +02002966 return acl_fetch_sess_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02002967}
2968
Willy Tarreaua5e37562011-12-16 17:06:15 +01002969/* set temp integer to the session rate from the session's tracked BE counters over
Willy Tarreau91c43d72010-06-20 11:19:22 +02002970 * the configured period.
2971 */
2972static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002973acl_fetch_sc2_sess_rate(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 Tarreau91c43d72010-06-20 11:19:22 +02002975{
Willy Tarreau56123282010-08-06 19:06:56 +02002976 if (!l4->stkctr2_entry)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002977 return 0;
2978
Willy Tarreau37406352012-04-23 16:16:37 +02002979 return acl_fetch_sess_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002980}
2981
Willy Tarreaua5e37562011-12-16 17:06:15 +01002982/* set temp integer to the session rate from the session's source address in the
Willy Tarreau91c43d72010-06-20 11:19:22 +02002983 * table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002984 * Accepts exactly 1 argument of type table.
Willy Tarreau91c43d72010-06-20 11:19:22 +02002985 */
2986static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002987acl_fetch_src_sess_rate(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 Tarreau91c43d72010-06-20 11:19:22 +02002989{
2990 struct stktable_key *key;
2991
Willy Tarreau64ee4912012-08-30 22:59:48 +02002992 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002993 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002994 return 0;
Willy Tarreau91c43d72010-06-20 11:19:22 +02002995
Willy Tarreau24e32d82012-04-23 23:55:44 +02002996 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02002997 return acl_fetch_sess_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau91c43d72010-06-20 11:19:22 +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 Tarreauda7ff642010-06-23 11:44:09 +02003001static int
Willy Tarreau37406352012-04-23 16:16:37 +02003002acl_fetch_http_req_cnt(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003007 if (ts != NULL) {
3008 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_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, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003017static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003018acl_fetch_sc1_http_req_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_http_req_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_http_req_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 Tarreauda7ff642010-06-23 11:44:09 +02003031{
Willy Tarreau56123282010-08-06 19:06:56 +02003032 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003033 return 0;
3034
Willy Tarreau37406352012-04-23 16:16:37 +02003035 return acl_fetch_http_req_cnt(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003041 */
3042static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003043acl_fetch_src_http_req_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 Tarreauda7ff642010-06-23 11:44:09 +02003045{
3046 struct stktable_key *key;
3047
Willy Tarreau64ee4912012-08-30 22:59:48 +02003048 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003049 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003050 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003051
Willy Tarreau24e32d82012-04-23 23:55:44 +02003052 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003053 return acl_fetch_http_req_cnt(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003057static int
Willy Tarreau37406352012-04-23 16:16:37 +02003058acl_fetch_http_req_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059{
Willy Tarreau37406352012-04-23 16:16:37 +02003060 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003061 smp->type = SMP_T_UINT;
3062 smp->data.uint = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003063 if (ts != NULL) {
3064 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_HTTP_REQ_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, http_req_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003068 table->data_arg[STKTABLE_DT_HTTP_REQ_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 Tarreauda7ff642010-06-23 11:44:09 +02003074 * the configured period.
3075 */
3076static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003077acl_fetch_sc1_http_req_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_http_req_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 Tarreauf059a0f2010-08-03 16:29:52 +02003087 * the configured period.
3088 */
3089static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003090acl_fetch_sc2_http_req_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 Tarreauda7ff642010-06-23 11:44:09 +02003092{
Willy Tarreau56123282010-08-06 19:06:56 +02003093 if (!l4->stkctr2_entry)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003094 return 0;
3095
Willy Tarreau37406352012-04-23 16:16:37 +02003096 return acl_fetch_http_req_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +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 Tarreauda7ff642010-06-23 11:44:09 +02003102 */
3103static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003104acl_fetch_src_http_req_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 Tarreauda7ff642010-06-23 11:44:09 +02003106{
3107 struct stktable_key *key;
3108
Willy Tarreau64ee4912012-08-30 22:59:48 +02003109 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003110 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003111 return 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003112
Willy Tarreau24e32d82012-04-23 23:55:44 +02003113 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003114 return acl_fetch_http_req_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreauda7ff642010-06-23 11:44:09 +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_err_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_ERR_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_err_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_err_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_err_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_err_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_err_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_err_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 Tarreau64ee4912012-08-30 22:59:48 +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_err_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_err_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_ERR_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_err_rate),
Willy Tarreauda7ff642010-06-23 11:44:09 +02003185 table->data_arg[STKTABLE_DT_HTTP_ERR_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_err_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_err_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_err_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_err_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_err_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 Tarreau64ee4912012-08-30 22:59:48 +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_err_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 number of kbytes received from clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003235static int
Willy Tarreau37406352012-04-23 16:16:37 +02003236acl_fetch_kbytes_in(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +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 Tarreau1aa006f2010-06-18 21:52:52 +02003241
3242 if (ts != NULL) {
3243 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_CNT);
3244 if (!ptr)
3245 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003246 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003247 }
3248 return 1;
3249}
3250
Willy Tarreaua5e37562011-12-16 17:06:15 +01003251/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003252 * session's tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003253 */
3254static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003255acl_fetch_sc1_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003256 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003257{
Willy Tarreau56123282010-08-06 19:06:56 +02003258 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003259 return 0;
3260
Willy Tarreau37406352012-04-23 16:16:37 +02003261 return acl_fetch_kbytes_in(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003262}
3263
Willy Tarreaua5e37562011-12-16 17:06:15 +01003264/* set temp integer to the number of kbytes received from clients according to the
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003265 * session's tracked BE counters.
3266 */
3267static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003268acl_fetch_sc2_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003269 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003270{
Willy Tarreau56123282010-08-06 19:06:56 +02003271 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003272 return 0;
3273
Willy Tarreau37406352012-04-23 16:16:37 +02003274 return acl_fetch_kbytes_in(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003275}
3276
Willy Tarreaua5e37562011-12-16 17:06:15 +01003277/* set temp integer to the number of kbytes received from the session's source
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003278 * address in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003279 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003280 */
3281static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003282acl_fetch_src_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003283 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003284{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003285 struct stktable_key *key;
3286
Willy Tarreau64ee4912012-08-30 22:59:48 +02003287 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003288 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003289 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003290
Willy Tarreau24e32d82012-04-23 23:55:44 +02003291 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003292 return acl_fetch_kbytes_in(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003293}
3294
Willy Tarreaua5e37562011-12-16 17:06:15 +01003295/* set temp integer to the bytes rate from clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003296 * configured period.
3297 */
3298static int
Willy Tarreau37406352012-04-23 16:16:37 +02003299acl_fetch_bytes_in_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003300{
Willy Tarreau37406352012-04-23 16:16:37 +02003301 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003302 smp->type = SMP_T_UINT;
3303 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003304 if (ts != NULL) {
3305 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_IN_RATE);
3306 if (!ptr)
3307 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003308 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003309 table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
3310 }
3311 return 1;
3312}
3313
Willy Tarreaua5e37562011-12-16 17:06:15 +01003314/* set temp integer to the bytes rate from clients from the session's tracked FE
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003315 * counters over the configured period.
3316 */
3317static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003318acl_fetch_sc1_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003319 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003320{
Willy Tarreau56123282010-08-06 19:06:56 +02003321 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003322 return 0;
3323
Willy Tarreau37406352012-04-23 16:16:37 +02003324 return acl_fetch_bytes_in_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003325}
3326
Willy Tarreaua5e37562011-12-16 17:06:15 +01003327/* set temp integer to the bytes rate from clients from the session's tracked BE
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003328 * counters over the configured period.
3329 */
3330static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003331acl_fetch_sc2_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003332 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003333{
Willy Tarreau56123282010-08-06 19:06:56 +02003334 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003335 return 0;
3336
Willy Tarreau37406352012-04-23 16:16:37 +02003337 return acl_fetch_bytes_in_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003338}
3339
Willy Tarreaua5e37562011-12-16 17:06:15 +01003340/* set temp integer to the bytes rate from clients from the session's source address
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003341 * in the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003342 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003343 */
3344static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003345acl_fetch_src_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003346 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003347{
3348 struct stktable_key *key;
3349
Willy Tarreau64ee4912012-08-30 22:59:48 +02003350 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003351 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003352 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003353
Willy Tarreau24e32d82012-04-23 23:55:44 +02003354 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003355 return acl_fetch_bytes_in_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003356}
3357
Willy Tarreaua5e37562011-12-16 17:06:15 +01003358/* set temp integer to the number of kbytes sent to clients matching the stksess entry <ts> */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003359static int
Willy Tarreau37406352012-04-23 16:16:37 +02003360acl_fetch_kbytes_out(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003361{
Willy Tarreau37406352012-04-23 16:16:37 +02003362 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003363 smp->type = SMP_T_UINT;
3364 smp->data.uint = 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003365
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003366 if (ts != NULL) {
3367 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003368 if (!ptr)
3369 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003370 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003371 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003372 return 1;
3373}
3374
Willy Tarreaua5e37562011-12-16 17:06:15 +01003375/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003376 * tracked FE counters.
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003377 */
3378static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003379acl_fetch_sc1_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003380 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003381{
Willy Tarreau56123282010-08-06 19:06:56 +02003382 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003383 return 0;
3384
Willy Tarreau37406352012-04-23 16:16:37 +02003385 return acl_fetch_kbytes_out(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003386}
3387
Willy Tarreaua5e37562011-12-16 17:06:15 +01003388/* set temp integer to the number of kbytes sent to clients according to the session's
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003389 * tracked BE counters.
3390 */
3391static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003392acl_fetch_sc2_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003393 const struct arg *args, struct sample *smp)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003394{
Willy Tarreau56123282010-08-06 19:06:56 +02003395 if (!l4->stkctr2_entry)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003396 return 0;
3397
Willy Tarreau37406352012-04-23 16:16:37 +02003398 return acl_fetch_kbytes_out(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003399}
3400
Willy Tarreaua5e37562011-12-16 17:06:15 +01003401/* set temp integer to the number of kbytes sent to the session's source address in
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003402 * the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003403 * Accepts exactly 1 argument of type table.
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003404 */
3405static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003406acl_fetch_src_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003407 const struct arg *args, struct sample *smp)
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003408{
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003409 struct stktable_key *key;
3410
Willy Tarreau64ee4912012-08-30 22:59:48 +02003411 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003412 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003413 return 0;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003414
Willy Tarreau24e32d82012-04-23 23:55:44 +02003415 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003416 return acl_fetch_kbytes_out(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003417}
3418
Willy Tarreaua5e37562011-12-16 17:06:15 +01003419/* set temp integer to the bytes rate to clients in the stksess entry <ts> over the
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003420 * configured period.
3421 */
3422static int
Willy Tarreau37406352012-04-23 16:16:37 +02003423acl_fetch_bytes_out_rate(struct stktable *table, struct sample *smp, struct stksess *ts)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003424{
Willy Tarreau37406352012-04-23 16:16:37 +02003425 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003426 smp->type = SMP_T_UINT;
3427 smp->data.uint = 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003428 if (ts != NULL) {
3429 void *ptr = stktable_data_ptr(table, ts, STKTABLE_DT_BYTES_OUT_RATE);
3430 if (!ptr)
3431 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003432 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003433 table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
3434 }
3435 return 1;
3436}
3437
Willy Tarreaua5e37562011-12-16 17:06:15 +01003438/* set temp integer to the bytes rate to clients from the session's tracked FE counters
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003439 * over the configured period.
3440 */
3441static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003442acl_fetch_sc1_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003443 const struct arg *args, struct sample *smp)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003444{
Willy Tarreau56123282010-08-06 19:06:56 +02003445 if (!l4->stkctr1_entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003446 return 0;
3447
Willy Tarreau37406352012-04-23 16:16:37 +02003448 return acl_fetch_bytes_out_rate(l4->stkctr1_table, smp, l4->stkctr1_entry);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003449}
3450
Willy Tarreaua5e37562011-12-16 17:06:15 +01003451/* set temp integer to the bytes rate to clients from the session's tracked BE counters
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003452 * over the configured period.
3453 */
3454static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003455acl_fetch_sc2_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003456 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003457{
Willy Tarreau56123282010-08-06 19:06:56 +02003458 if (!l4->stkctr2_entry)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003459 return 0;
3460
Willy Tarreau37406352012-04-23 16:16:37 +02003461 return acl_fetch_bytes_out_rate(l4->stkctr2_table, smp, l4->stkctr2_entry);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003462}
3463
Willy Tarreaua5e37562011-12-16 17:06:15 +01003464/* set temp integer to the bytes rate to client from the session's source address in
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003465 * the table pointed to by expr, over the configured period.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003466 * Accepts exactly 1 argument of type table.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003467 */
3468static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003469acl_fetch_src_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003470 const struct arg *args, struct sample *smp)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003471{
3472 struct stktable_key *key;
3473
Willy Tarreau64ee4912012-08-30 22:59:48 +02003474 key = addr_to_stktable_key(&l4->si[0].conn.addr.from);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003475 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003476 return 0;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003477
Willy Tarreau24e32d82012-04-23 23:55:44 +02003478 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003479 return acl_fetch_bytes_out_rate(&px->table, smp, stktable_lookup_key(&px->table, key));
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003480}
3481
Willy Tarreau34db1082012-04-19 17:16:54 +02003482/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003483 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003484 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003485static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003486acl_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003487 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003488{
Willy Tarreau37406352012-04-23 16:16:37 +02003489 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003490 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003491 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003492 return 1;
3493}
3494
Willy Tarreau34db1082012-04-19 17:16:54 +02003495/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003496 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003497 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003498static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003499acl_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02003500 const struct arg *args, struct sample *smp)
Willy Tarreauc735a072011-03-29 00:57:02 +02003501{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003502 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003503 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003504 smp->type = SMP_T_UINT;
3505 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003506 return 1;
3507}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003508
Willy Tarreau61612d42012-04-19 18:42:05 +02003509/* Note: must not be declared <const> as its list will be overwritten.
3510 * Please take care of keeping this list alphabetically sorted.
3511 */
Willy Tarreau8b22a712010-06-18 17:46:06 +02003512static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02003513 { "sc1_bytes_in_rate", acl_parse_int, acl_fetch_sc1_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3514 { "sc1_bytes_out_rate", acl_parse_int, acl_fetch_sc1_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3515 { "sc1_clr_gpc0", acl_parse_int, acl_fetch_sc1_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3516 { "sc1_conn_cnt", acl_parse_int, acl_fetch_sc1_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3517 { "sc1_conn_cur", acl_parse_int, acl_fetch_sc1_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3518 { "sc1_conn_rate", acl_parse_int, acl_fetch_sc1_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3519 { "sc1_get_gpc0", acl_parse_int, acl_fetch_sc1_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3520 { "sc1_http_err_cnt", acl_parse_int, acl_fetch_sc1_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3521 { "sc1_http_err_rate", acl_parse_int, acl_fetch_sc1_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3522 { "sc1_http_req_cnt", acl_parse_int, acl_fetch_sc1_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3523 { "sc1_http_req_rate", acl_parse_int, acl_fetch_sc1_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3524 { "sc1_inc_gpc0", acl_parse_int, acl_fetch_sc1_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3525 { "sc1_kbytes_in", acl_parse_int, acl_fetch_sc1_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3526 { "sc1_kbytes_out", acl_parse_int, acl_fetch_sc1_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3527 { "sc1_sess_cnt", acl_parse_int, acl_fetch_sc1_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3528 { "sc1_sess_rate", acl_parse_int, acl_fetch_sc1_sess_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3529 { "sc2_bytes_in_rate", acl_parse_int, acl_fetch_sc2_bytes_in_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3530 { "sc2_bytes_out_rate", acl_parse_int, acl_fetch_sc2_bytes_out_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3531 { "sc2_clr_gpc0", acl_parse_int, acl_fetch_sc2_clr_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3532 { "sc2_conn_cnt", acl_parse_int, acl_fetch_sc2_conn_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3533 { "sc2_conn_cur", acl_parse_int, acl_fetch_sc2_conn_cur, acl_match_int, ACL_USE_NOTHING, 0 },
3534 { "sc2_conn_rate", acl_parse_int, acl_fetch_sc2_conn_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3535 { "sc2_get_gpc0", acl_parse_int, acl_fetch_sc2_get_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3536 { "sc2_http_err_cnt", acl_parse_int, acl_fetch_sc2_http_err_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3537 { "sc2_http_err_rate", acl_parse_int, acl_fetch_sc2_http_err_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3538 { "sc2_http_req_cnt", acl_parse_int, acl_fetch_sc2_http_req_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3539 { "sc2_http_req_rate", acl_parse_int, acl_fetch_sc2_http_req_rate, acl_match_int, ACL_USE_NOTHING, 0 },
3540 { "sc2_inc_gpc0", acl_parse_int, acl_fetch_sc2_inc_gpc0, acl_match_int, ACL_USE_NOTHING, 0 },
3541 { "sc2_kbytes_in", acl_parse_int, acl_fetch_sc2_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3542 { "sc2_kbytes_out", acl_parse_int, acl_fetch_sc2_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, 0 },
3543 { "sc2_sess_cnt", acl_parse_int, acl_fetch_sc2_sess_cnt, acl_match_int, ACL_USE_NOTHING, 0 },
3544 { "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 +02003545 { "src_bytes_in_rate", acl_parse_int, acl_fetch_src_bytes_in_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3546 { "src_bytes_out_rate", acl_parse_int, acl_fetch_src_bytes_out_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3547 { "src_clr_gpc0", acl_parse_int, acl_fetch_src_clr_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3548 { "src_conn_cnt", acl_parse_int, acl_fetch_src_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3549 { "src_conn_cur", acl_parse_int, acl_fetch_src_conn_cur, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3550 { "src_conn_rate", acl_parse_int, acl_fetch_src_conn_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3551 { "src_get_gpc0", acl_parse_int, acl_fetch_src_get_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3552 { "src_http_err_cnt", acl_parse_int, acl_fetch_src_http_err_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3553 { "src_http_err_rate", acl_parse_int, acl_fetch_src_http_err_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3554 { "src_http_req_cnt", acl_parse_int, acl_fetch_src_http_req_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3555 { "src_http_req_rate", acl_parse_int, acl_fetch_src_http_req_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3556 { "src_inc_gpc0", acl_parse_int, acl_fetch_src_inc_gpc0, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3557 { "src_kbytes_in", acl_parse_int, acl_fetch_src_kbytes_in, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3558 { "src_kbytes_out", acl_parse_int, acl_fetch_src_kbytes_out, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3559 { "src_sess_cnt", acl_parse_int, acl_fetch_src_sess_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3560 { "src_sess_rate", acl_parse_int, acl_fetch_src_sess_rate, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3561 { "src_updt_conn_cnt", acl_parse_int, acl_fetch_src_updt_conn_cnt, acl_match_int, ACL_USE_TCP4_VOLATILE, ARG1(1,TAB) },
3562 { "table_avl", acl_parse_int, acl_fetch_table_avl, acl_match_int, ACL_USE_NOTHING, ARG1(1,TAB) },
3563 { "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 +02003564 { NULL, NULL, NULL, NULL },
3565}};
3566
3567
Willy Tarreau56123282010-08-06 19:06:56 +02003568/* Parse a "track-sc[12]" line starting with "track-sc[12]" in args[arg-1].
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003569 * Returns the number of warnings emitted, or -1 in case of fatal errors. The
3570 * <prm> struct is fed with the table name if any. If unspecified, the caller
3571 * will assume that the current proxy's table is used.
3572 */
3573int parse_track_counters(char **args, int *arg,
3574 int section_type, struct proxy *curpx,
3575 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003576 struct proxy *defpx, char **err)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003577{
Willy Tarreau12785782012-04-27 21:37:17 +02003578 int sample_type = 0;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003579
Willy Tarreau56123282010-08-06 19:06:56 +02003580 /* parse the arguments of "track-sc[12]" before the condition in the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003581 * following form :
Willy Tarreau56123282010-08-06 19:06:56 +02003582 * track-sc[12] src [ table xxx ] [ if|unless ... ]
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003583 */
3584 while (args[*arg]) {
3585 if (strcmp(args[*arg], "src") == 0) {
3586 prm->type = STKTABLE_TYPE_IP;
Willy Tarreau12785782012-04-27 21:37:17 +02003587 sample_type = 1;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003588 }
3589 else if (strcmp(args[*arg], "table") == 0) {
3590 if (!args[*arg + 1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003591 memprintf(err, "missing table name");
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003592 return -1;
3593 }
3594 /* we copy the table name for now, it will be resolved later */
3595 prm->table.n = strdup(args[*arg + 1]);
3596 (*arg)++;
3597 }
3598 else {
3599 /* unhandled keywords are handled by the caller */
3600 break;
3601 }
3602 (*arg)++;
3603 }
3604
Willy Tarreau12785782012-04-27 21:37:17 +02003605 if (!sample_type) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02003606 memprintf(err,
3607 "tracking key not specified (found %s, only 'src' is supported)",
3608 quote_arg(args[*arg]));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003609 return -1;
3610 }
3611
3612 return 0;
3613}
3614
Willy Tarreau8b22a712010-06-18 17:46:06 +02003615__attribute__((constructor))
3616static void __session_init(void)
3617{
3618 acl_register_keywords(&acl_kws);
3619}
3620
Willy Tarreaubaaee002006-06-26 02:48:02 +02003621/*
3622 * Local variables:
3623 * c-indent-level: 8
3624 * c-basic-offset: 8
3625 * End:
3626 */