blob: ca8efca1b94225e10e87ec6a008a6249dcecd58e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau81f9aa32010-06-01 17:45:26 +02002 * Session management functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaud28c3532012-04-19 19:28:33 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
Willy Tarreau81f9aa32010-06-01 17:45:26 +020014#include <unistd.h>
15#include <fcntl.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020016
17#include <common/config.h>
Willy Tarreau9b28e032012-10-12 23:49:43 +020018#include <common/buffer.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020019#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010023#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020025#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020026#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010027#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020028#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010029#include <proto/checks.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020030#include <proto/connection.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020031#include <proto/dumpstats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020032#include <proto/fd.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020033#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020034#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010035#include <proto/hdr_idx.h>
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010036#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020037#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020038#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020039#include <proto/raw_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/session.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010041#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010042#include <proto/proto_http.h>
43#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020044#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010046#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020047#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010048#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010049#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010050#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020052struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010053struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreaubf883e02014-11-25 21:10:35 +010055/* list of sessions waiting for at least one buffer */
56struct list buffer_wq = LIST_HEAD_INIT(buffer_wq);
57
Willy Tarreau071e1372012-10-03 01:39:48 +020058static int conn_session_complete(struct connection *conn);
Willy Tarreau9683e9a2012-10-03 21:17:23 +020059static int conn_session_update(struct connection *conn);
Willy Tarreau2542b532012-08-31 16:01:23 +020060static struct task *expire_mini_session(struct task *t);
61int session_complete(struct session *s);
62
Willy Tarreau5e75e272012-10-02 21:21:20 +020063/* data layer callbacks for an embryonic session */
64struct data_cb sess_conn_cb = {
65 .recv = NULL,
66 .send = NULL,
Willy Tarreau9683e9a2012-10-03 21:17:23 +020067 .wake = conn_session_update,
Willy Tarreau071e1372012-10-03 01:39:48 +020068 .init = conn_session_complete,
Willy Tarreau5e75e272012-10-02 21:21:20 +020069};
70
Willy Tarreau2542b532012-08-31 16:01:23 +020071/* This function is called from the protocol layer accept() in order to
72 * instanciate a new embryonic session on behalf of a given listener and
73 * frontend. It returns a positive value upon success, 0 if the connection
74 * can be ignored, or a negative value upon critical failure. The accepted
75 * file descriptor is closed if we return <= 0.
Willy Tarreau81f9aa32010-06-01 17:45:26 +020076 */
77int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr)
78{
Willy Tarreaub363a1f2013-10-01 10:45:07 +020079 struct connection *cli_conn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020080 struct proxy *p = l->frontend;
81 struct session *s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020082 struct task *t;
Willy Tarreauabe8ea52010-11-11 10:56:04 +010083 int ret;
84
85
86 ret = -1; /* assume unrecoverable error by default */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020087
Willy Tarreau32e3c6a2013-10-11 19:34:20 +020088 if (unlikely((cli_conn = conn_new()) == NULL))
Willy Tarreau81f9aa32010-06-01 17:45:26 +020089 goto out_close;
Willy Tarreau81f9aa32010-06-01 17:45:26 +020090
Willy Tarreau32e3c6a2013-10-11 19:34:20 +020091 conn_prepare(cli_conn, l->proto, l->xprt);
Willy Tarreauf2943dc2012-10-26 20:10:28 +020092
Willy Tarreau32e3c6a2013-10-11 19:34:20 +020093 cli_conn->t.sock.fd = cfd;
94 cli_conn->addr.from = *addr;
95 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
96 cli_conn->target = &l->obj_type;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010097 cli_conn->proxy_netns = l->netns;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +020098
99 if (unlikely((s = pool_alloc2(pool2_session)) == NULL))
100 goto out_free_conn;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200101
Willy Tarreau2542b532012-08-31 16:01:23 +0200102 /* minimum session initialization required for an embryonic session is
103 * fairly low. We need very little to execute L4 ACLs, then we need a
104 * task to make the client-side connection live on its own.
105 * - flags
106 * - stick-entry tracking
107 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200108 s->flags = 0;
109 s->logs.logwait = p->to_log;
Willy Tarreau9a355ec2013-06-11 17:45:46 +0200110 s->logs.level = 0;
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200111
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +0100112 /* Initialise the current rule list pointer to NULL. We are sure that
113 * any rulelist match the NULL pointer.
114 */
115 s->current_rule_list = NULL;
116
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200117 memset(s->stkctr, 0, sizeof(s->stkctr));
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200118
Willy Tarreau2542b532012-08-31 16:01:23 +0200119 s->listener = l;
120 s->fe = p;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100121
Willy Tarreaua5f5d8d2014-11-28 11:26:07 +0100122 s->si[0].flags = SI_FL_NONE;
123 s->si[1].flags = SI_FL_ISBACK;
124
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200125 /* On a mini-session, the connection is directly attached to the
126 * session's target so that we don't need to initialize the stream
127 * interfaces. Another benefit is that it's easy to detect a mini-
128 * session in dumps using this : it's the only one which has a
129 * connection in s->target.
130 */
131 s->target = &cli_conn->obj_type;
132
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200133 s->logs.accept_date = date; /* user-visible date for logging */
134 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau1f0da242014-01-25 11:01:50 +0100135 s->uniq_id = global.req_count++;
Willy Tarreau2542b532012-08-31 16:01:23 +0200136 p->feconn++;
137 /* This session was accepted, count it now */
138 if (p->feconn > p->fe_counters.conn_max)
139 p->fe_counters.conn_max = p->feconn;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200140
Willy Tarreau2542b532012-08-31 16:01:23 +0200141 proxy_inc_fe_conn_ctr(l, p);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200142
Willy Tarreau59e3ff42013-12-16 02:16:50 +0100143 /* Add the minimum callbacks to prepare the connection's control layer.
144 * We need this so that we can safely execute the ACLs used by the
145 * "tcp-request connection" ruleset. We also carefully attach the
146 * connection to the stream interface without initializing the rest,
147 * so that ACLs can use si[0]->end.
148 */
149 si_attach_conn(&s->si[0], cli_conn);
150 conn_attach(cli_conn, s, &sess_conn_cb);
151 conn_ctrl_init(cli_conn);
152
Willy Tarreau2cff2f72013-12-16 10:12:54 +0100153 /* now evaluate the tcp-request layer4 rules. Since we expect to be able
154 * to abort right here as soon as possible, we check the rules before
155 * even initializing the stream interfaces.
156 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200157 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(s)) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200158 /* let's do a no-linger now to close with a single RST. */
159 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100160 ret = 0; /* successful termination */
Willy Tarreau2542b532012-08-31 16:01:23 +0200161 goto out_free_session;
162 }
163
Willy Tarreau82569f92012-09-27 23:48:56 +0200164 /* monitor-net and health mode are processed immediately after TCP
165 * connection rules. This way it's possible to block them, but they
166 * never use the lower data layers, they send directly over the socket,
167 * as they were designed for. We first flush the socket receive buffer
168 * in order to avoid emission of an RST by the system. We ignore any
169 * error.
170 */
171 if (unlikely((p->mode == PR_MODE_HEALTH) ||
172 ((l->options & LI_O_CHK_MONNET) &&
173 addr->ss_family == AF_INET &&
174 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
175 /* we have 4 possibilities here :
176 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
177 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
178 * - HEALTH mode without HTTP check => just send "OK"
179 * - TCP mode from monitoring address => just close
180 */
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200181 if (l->proto->drain)
182 l->proto->drain(cfd);
Willy Tarreau82569f92012-09-27 23:48:56 +0200183 if (p->mode == PR_MODE_HTTP ||
184 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
185 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
186 else if (p->mode == PR_MODE_HEALTH)
187 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
188 ret = 0;
189 goto out_free_session;
190 }
191
Willy Tarreau22cda212012-08-31 17:43:29 +0200192 /* wait for a PROXY protocol header */
193 if (l->options & LI_O_ACC_PROXY) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200194 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
195 conn_sock_want_recv(cli_conn);
Willy Tarreau22cda212012-08-31 17:43:29 +0200196 }
197
Willy Tarreau2542b532012-08-31 16:01:23 +0200198 if (unlikely((t = task_new()) == NULL))
199 goto out_free_session;
200
201 t->context = s;
202 t->nice = l->nice;
203 s->task = t;
204
Willy Tarreau59e3ff42013-12-16 02:16:50 +0100205 /* Finish setting the callbacks. Right now the transport layer is present
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200206 * but not initialized. Also note we need to be careful as the stream
207 * int is not initialized yet.
Willy Tarreau2542b532012-08-31 16:01:23 +0200208 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200209 conn_data_want_recv(cli_conn);
210 if (conn_xprt_init(cli_conn) < 0)
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100211 goto out_free_task;
Willy Tarreau2542b532012-08-31 16:01:23 +0200212
213 /* OK, now either we have a pending handshake to execute with and
214 * then we must return to the I/O layer, or we can proceed with the
215 * end of the session initialization. In case of handshake, we also
216 * set the I/O timeout to the frontend's client timeout.
217 */
218
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200219 if (cli_conn->flags & CO_FL_HANDSHAKE) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200220 t->process = expire_mini_session;
221 t->expire = tick_add_ifset(now_ms, p->timeout.client);
222 task_queue(t);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200223 cli_conn->flags |= CO_FL_INIT_DATA | CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200224 return 1;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200225 }
226
Willy Tarreau815f5ec2012-11-06 00:14:25 +0100227 /* OK let's complete session initialization since there is no handshake */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200228 cli_conn->flags |= CO_FL_CONNECTED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200229 ret = session_complete(s);
230 if (ret > 0)
231 return ret;
232
233 /* Error unrolling */
234 out_free_task:
235 task_free(t);
236 out_free_session:
237 p->feconn--;
Willy Tarreaue9101692014-01-28 22:48:24 +0100238 session_store_counters(s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200239 pool_free2(pool2_session, s);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200240 out_free_conn:
241 cli_conn->flags &= ~CO_FL_XPRT_TRACKED;
242 conn_xprt_close(cli_conn);
243 conn_free(cli_conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200244 out_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200245 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
Willy Tarreau2542b532012-08-31 16:01:23 +0200246 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau05bf5e12013-10-20 23:10:28 +0200247 struct chunk *err_msg = &p->errmsg[HTTP_ERR_500];
248 if (!err_msg->str)
249 err_msg = &http_err_chunks[HTTP_ERR_500];
Willy Tarreau2542b532012-08-31 16:01:23 +0200250 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
251 }
252
253 if (fdtab[cfd].owner)
254 fd_delete(cfd);
255 else
256 close(cfd);
257 return ret;
258}
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100259
Willy Tarreau0af29122012-12-03 15:35:00 +0100260
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200261/* prepare the trash with a log prefix for session <s>. It only works with
Willy Tarreaub4f98092014-05-08 21:06:11 +0200262 * embryonic sessions based on a real connection. This function requires that
263 * at s->target still points to the incoming connection.
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200264 */
Willy Tarreau0af29122012-12-03 15:35:00 +0100265static void prepare_mini_sess_log_prefix(struct session *s)
266{
267 struct tm tm;
268 char pn[INET6_ADDRSTRLEN];
269 int ret;
270 char *end;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200271 struct connection *cli_conn = __objt_conn(s->target);
Willy Tarreau0af29122012-12-03 15:35:00 +0100272
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200273 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
Willy Tarreau0af29122012-12-03 15:35:00 +0100274 if (ret <= 0)
275 chunk_printf(&trash, "unknown [");
276 else if (ret == AF_UNIX)
277 chunk_printf(&trash, "%s:%d [", pn, s->listener->luid);
278 else
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200279 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
Willy Tarreau0af29122012-12-03 15:35:00 +0100280
281 get_localtime(s->logs.accept_date.tv_sec, &tm);
282 end = date2str_log(trash.str + trash.len, &tm, &(s->logs.accept_date), trash.size - trash.len);
283 trash.len = end - trash.str;
284 if (s->listener->name)
285 chunk_appendf(&trash, "] %s/%s", s->fe->id, s->listener->name);
286 else
287 chunk_appendf(&trash, "] %s/%d", s->fe->id, s->listener->luid);
288}
289
Willy Tarreau2542b532012-08-31 16:01:23 +0200290/* This function kills an existing embryonic session. It stops the connection's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200291 * transport layer, releases assigned resources, resumes the listener if it was
Willy Tarreaub4f98092014-05-08 21:06:11 +0200292 * disabled and finally kills the file descriptor. This function requires that
293 * at s->target still points to the incoming connection.
Willy Tarreau2542b532012-08-31 16:01:23 +0200294 */
295static void kill_mini_session(struct session *s)
296{
Willy Tarreau0af29122012-12-03 15:35:00 +0100297 int level = LOG_INFO;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200298 struct connection *conn = __objt_conn(s->target);
Willy Tarreau0af29122012-12-03 15:35:00 +0100299 unsigned int log = s->logs.logwait;
300 const char *err_msg;
301
302 if (s->fe->options2 & PR_O2_LOGERRORS)
303 level = LOG_ERR;
304
305 if (log && (s->fe->options & PR_O_NULLNOLOG)) {
306 /* with "option dontlognull", we don't log connections with no transfer */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100307 if (!conn->err_code ||
Willy Tarreau20879a02012-12-03 16:32:10 +0100308 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
309 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
Willy Tarreau0af29122012-12-03 15:35:00 +0100310 log = 0;
311 }
312
313 if (log) {
314 if (!conn->err_code && (s->task->state & TASK_WOKEN_TIMER)) {
315 if (conn->flags & CO_FL_ACCEPT_PROXY)
316 conn->err_code = CO_ER_PRX_TIMEOUT;
317 else if (conn->flags & CO_FL_SSL_WAIT_HS)
318 conn->err_code = CO_ER_SSL_TIMEOUT;
319 }
320
321 prepare_mini_sess_log_prefix(s);
322 err_msg = conn_err_code_str(conn);
323 if (err_msg)
324 send_log(s->fe, level, "%s: %s\n", trash.str, err_msg);
325 else
326 send_log(s->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
327 trash.str, conn->err_code, conn->flags);
328 }
329
Willy Tarreau2542b532012-08-31 16:01:23 +0200330 /* kill the connection now */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200331 conn_force_close(conn);
Willy Tarreaua23ee3a2014-02-05 00:18:47 +0100332 conn_free(conn);
Willy Tarreau2542b532012-08-31 16:01:23 +0200333
334 s->fe->feconn--;
Willy Tarreau7af7d592013-07-01 18:07:03 +0200335 session_store_counters(s);
Willy Tarreau2542b532012-08-31 16:01:23 +0200336
337 if (!(s->listener->options & LI_O_UNLIMITED))
338 actconn--;
339 jobs--;
340 s->listener->nbconn--;
341 if (s->listener->state == LI_FULL)
342 resume_listener(s->listener);
343
344 /* Dequeues all of the listeners waiting for a resource */
345 if (!LIST_ISEMPTY(&global_listener_queue))
346 dequeue_all_listeners(&global_listener_queue);
347
348 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
349 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
350 dequeue_all_listeners(&s->fe->listener_queue);
351
352 task_delete(s->task);
353 task_free(s->task);
Willy Tarreau2542b532012-08-31 16:01:23 +0200354 pool_free2(pool2_session, s);
355}
356
Willy Tarreau22cda212012-08-31 17:43:29 +0200357/* Finish initializing a session from a connection, or kills it if the
358 * connection shows and error. Returns <0 if the connection was killed.
Willy Tarreau2542b532012-08-31 16:01:23 +0200359 */
Willy Tarreau071e1372012-10-03 01:39:48 +0200360static int conn_session_complete(struct connection *conn)
Willy Tarreau2542b532012-08-31 16:01:23 +0200361{
Willy Tarreau5e75e272012-10-02 21:21:20 +0200362 struct session *s = conn->owner;
Willy Tarreau2542b532012-08-31 16:01:23 +0200363
Willy Tarreau22cda212012-08-31 17:43:29 +0200364 if (!(conn->flags & CO_FL_ERROR) && (session_complete(s) > 0)) {
Willy Tarreau071e1372012-10-03 01:39:48 +0200365 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200366 return 0;
367 }
368
369 /* kill the connection now */
370 kill_mini_session(s);
371 return -1;
372}
373
Willy Tarreau9683e9a2012-10-03 21:17:23 +0200374/* Update an embryonic session status. The connection is killed in case of
375 * error, and <0 will be returned. Otherwise it does nothing.
376 */
377static int conn_session_update(struct connection *conn)
378{
379 if (conn->flags & CO_FL_ERROR) {
380 kill_mini_session(conn->owner);
381 return -1;
382 }
383 return 0;
384}
385
Willy Tarreau2542b532012-08-31 16:01:23 +0200386/* Manages embryonic sessions timeout. It is only called when the timeout
387 * strikes and performs the required cleanup.
388 */
389static struct task *expire_mini_session(struct task *t)
390{
391 struct session *s = t->context;
392
393 if (!(t->state & TASK_WOKEN_TIMER))
394 return t;
395
396 kill_mini_session(s);
397 return NULL;
398}
399
400/* This function is called from the I/O handler which detects the end of
401 * handshake, in order to complete initialization of a valid session. It must
402 * be called with an embryonic session. It returns a positive value upon
403 * success, 0 if the connection can be ignored, or a negative value upon
404 * critical failure. The accepted file descriptor is closed if we return <= 0.
Willy Tarreaub4f98092014-05-08 21:06:11 +0200405 * The client-side end point is assumed to be a connection, whose pointer is
406 * taken from s->target which is assumed to be valid. If the function fails,
407 * it restores s->target.
Willy Tarreau2542b532012-08-31 16:01:23 +0200408 */
409int session_complete(struct session *s)
410{
411 struct listener *l = s->listener;
412 struct proxy *p = s->fe;
413 struct http_txn *txn;
414 struct task *t = s->task;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200415 struct connection *conn = __objt_conn(s->target);
Willy Tarreau2542b532012-08-31 16:01:23 +0200416 int ret;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100417 int i;
Willy Tarreau2542b532012-08-31 16:01:23 +0200418
419 ret = -1; /* assume unrecoverable error by default */
420
421 /* OK, we're keeping the session, so let's properly initialize the session */
422 LIST_ADDQ(&sessions, &s->list);
423 LIST_INIT(&s->back_refs);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100424 LIST_INIT(&s->buffer_wait);
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200425
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200426 s->flags |= SN_INITIALIZED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200427 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200428
429 t->process = l->handler;
430 t->context = s;
431 t->expire = TICK_ETERNITY;
432
433 /* Note: initially, the session's backend points to the frontend.
434 * This changes later when switching rules are executed or
435 * when the default backend is assigned.
436 */
437 s->be = s->fe;
William Lallemand82fe75c2012-10-23 10:25:10 +0200438 s->comp_algo = NULL;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100439 s->req.buf = s->res.buf = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200440
441 /* Let's count a session now */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200442 proxy_inc_fe_sess_ctr(l, p);
Willy Tarreau91c43d72010-06-20 11:19:22 +0200443
Willy Tarreaub4c84932013-07-23 19:15:30 +0200444 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200445 void *ptr;
446
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100447 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100448 continue;
449
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100450 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_SESS_CNT);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200451 if (ptr)
452 stktable_data_cast(ptr, sess_cnt)++;
453
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100454 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_SESS_RATE);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200455 if (ptr)
456 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100457 s->stkctr[i].table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
Willy Tarreau9e9879a2010-08-06 15:25:22 +0200458 }
459
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200460 /* this part should be common with other protocols */
Willy Tarreau819d3322014-11-28 12:12:34 +0100461 si_reset(&s->si[0]);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200462 si_set_state(&s->si[0], SI_ST_EST);
463
Willy Tarreaub4f98092014-05-08 21:06:11 +0200464 /* attach the incoming connection to the stream interface now.
465 * We must do that *before* clearing ->target because we need
466 * to keep a pointer to the connection in case we have to call
467 * kill_mini_session().
468 */
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200469 si_attach_conn(&s->si[0], conn);
470
471 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
472 s->si[0].flags |= SI_FL_INDEP_STR;
473
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200474 /* pre-initialize the other side's stream interface to an INIT state. The
475 * callbacks will be initialized before attempting to connect.
476 */
Willy Tarreau819d3322014-11-28 12:12:34 +0100477 si_reset(&s->si[1]);
Willy Tarreau2a6e8802013-10-24 15:50:53 +0200478 si_detach(&s->si[1]);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200479
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200480 if (likely(s->fe->options2 & PR_O2_INDEPSTR))
481 s->si[1].flags |= SI_FL_INDEP_STR;
482
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200483 session_init_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100484 s->target = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200485 s->pend_pos = NULL;
486
487 /* init store persistence */
488 s->store_count = 0;
489
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100490 channel_init(&s->req);
491 s->req.prod = &s->si[0];
492 s->req.cons = &s->si[1];
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100493 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200494
495 /* activate default analysers enabled for this listener */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100496 s->req.analysers = l->analysers;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200497
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100498 s->req.wto = TICK_ETERNITY;
499 s->req.rto = TICK_ETERNITY;
500 s->req.rex = TICK_ETERNITY;
501 s->req.wex = TICK_ETERNITY;
502 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200503
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100504 channel_init(&s->res);
505 s->res.prod = &s->si[1];
506 s->res.cons = &s->si[0];
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100507 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200508
Willy Tarreau96e31212011-05-30 18:10:30 +0200509 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100510 s->req.flags |= CF_NEVER_WAIT;
511 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200512 }
513
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100514 s->res.rto = TICK_ETERNITY;
515 s->res.wto = TICK_ETERNITY;
516 s->res.rex = TICK_ETERNITY;
517 s->res.wex = TICK_ETERNITY;
518 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200519
Willy Tarreau62f791e2012-03-09 11:32:30 +0100520 txn = &s->txn;
521 /* Those variables will be checked and freed if non-NULL in
522 * session.c:session_free(). It is important that they are
523 * properly initialized.
524 */
525 txn->sessid = NULL;
526 txn->srv_cookie = NULL;
527 txn->cli_cookie = NULL;
528 txn->uri = NULL;
529 txn->req.cap = NULL;
530 txn->rsp.cap = NULL;
531 txn->hdr_idx.v = NULL;
532 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau068621e2013-12-23 15:11:25 +0100533 txn->flags = 0;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100534 txn->req.flags = 0;
535 txn->rsp.flags = 0;
536 /* the HTTP messages need to know what buffer they're associated with */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100537 txn->req.chn = &s->req;
538 txn->rsp.chn = &s->res;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100539
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100540 HLUA_INIT(&s->hlua);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100541
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200542 /* finish initialization of the accepted file descriptor */
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200543 conn_data_want_recv(conn);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200544
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100545 if (p->accept && (ret = p->accept(s)) <= 0) {
546 /* Either we had an unrecoverable error (<0) or work is
547 * finished (=0, eg: monitoring), in both situations,
548 * we can release everything and close.
549 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100550 goto out_free_strm;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200551 }
552
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200553 /* if logs require transport layer information, note it on the connection */
554 if (s->logs.logwait & LW_XPRT)
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200555 conn->flags |= CO_FL_XPRT_TRACKED;
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200556
Willy Tarreau2542b532012-08-31 16:01:23 +0200557 /* we want the connection handler to notify the stream interface about updates. */
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200558 conn->flags |= CO_FL_WAKE_DATA;
Willy Tarreau2542b532012-08-31 16:01:23 +0200559
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200560 /* it is important not to call the wakeup function directly but to
561 * pass through task_wakeup(), because this one knows how to apply
562 * priorities to tasks.
563 */
564 task_wakeup(t, TASK_WOKEN_INIT);
565 return 1;
566
567 /* Error unrolling */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100568 out_free_strm:
Willy Tarreaub4f98092014-05-08 21:06:11 +0200569 /* and restore the connection pointer in case we destroyed it,
570 * because kill_mini_session() will need it.
571 */
Willy Tarreau3b246412014-11-25 17:10:33 +0100572 LIST_DEL(&s->list);
Willy Tarreaub4f98092014-05-08 21:06:11 +0200573 s->target = &conn->obj_type;
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100574 return ret;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200575}
576
Willy Tarreaubaaee002006-06-26 02:48:02 +0200577/*
578 * frees the context associated to a session. It must have been removed first.
579 */
Simon Hormandec5be42011-06-08 09:19:07 +0900580static void session_free(struct session *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +0100582 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +0200583 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100584 struct bref *bref, *back;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200585 struct connection *cli_conn = objt_conn(s->si[0].end);
Willy Tarreaua4cda672010-06-06 18:28:49 +0200586 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100587
Willy Tarreaubaaee002006-06-26 02:48:02 +0200588 if (s->pend_pos)
589 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100590
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100591 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreau1e62de62008-11-11 20:20:02 +0100592 if (s->flags & SN_CURR_SESS) {
593 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100594 objt_server(s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100595 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100596 if (may_dequeue_tasks(objt_server(s->target), s->be))
597 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100598 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100599
Willy Tarreau7c669d72008-06-20 15:04:11 +0200600 if (unlikely(s->srv_conn)) {
601 /* the session still has a reserved slot on a server, but
602 * it should normally be only the same as the one above,
603 * so this should not happen in fact.
604 */
605 sess_change_server(s, NULL);
606 }
607
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100608 if (s->req.pipe)
609 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100610
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100611 if (s->res.pipe)
612 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100613
Willy Tarreaubf883e02014-11-25 21:10:35 +0100614 /* We may still be present in the buffer wait queue */
615 if (!LIST_ISEMPTY(&s->buffer_wait)) {
616 LIST_DEL(&s->buffer_wait);
617 LIST_INIT(&s->buffer_wait);
618 }
619
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100620 b_drop(&s->req.buf);
621 b_drop(&s->res.buf);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100622 if (!LIST_ISEMPTY(&buffer_wq))
Willy Tarreaua24adf02014-11-27 01:11:56 +0100623 session_offer_buffers();
Willy Tarreau9b28e032012-10-12 23:49:43 +0200624
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100625 hlua_ctx_destroy(&s->hlua);
Willy Tarreau46023632010-01-07 22:51:47 +0100626 http_end_txn(s);
627
Willy Tarreau1e954912012-10-12 17:50:05 +0200628 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200629 if (cli_conn)
630 conn_force_close(cli_conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200631
Willy Tarreaua4cda672010-06-06 18:28:49 +0200632 for (i = 0; i < s->store_count; i++) {
633 if (!s->store[i].ts)
634 continue;
635 stksess_free(s->store[i].table, s->store[i].ts);
636 s->store[i].ts = NULL;
637 }
638
Willy Tarreau34eb6712011-10-24 18:15:04 +0200639 pool_free2(pool2_hdr_idx, txn->hdr_idx.v);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200640 if (fe) {
Willy Tarreau46023632010-01-07 22:51:47 +0100641 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
642 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200643 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100644
Willy Tarreau7af7d592013-07-01 18:07:03 +0200645 session_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200646
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100647 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100648 /* we have to unlink all watchers. We must not relink them if
649 * this session was the last one in the list.
650 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100651 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100652 LIST_INIT(&bref->users);
653 if (s->list.n != &sessions)
654 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100655 bref->ref = s->list.n;
656 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100657 LIST_DEL(&s->list);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200658 si_release_endpoint(&s->si[1]);
659 si_release_endpoint(&s->si[0]);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200660 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200661
662 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200663 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200664 pool_flush2(pool2_buffer);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200665 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200666 pool_flush2(pool2_requri);
667 pool_flush2(pool2_capture);
668 pool_flush2(pool2_session);
Willy Tarreau3a5e0602014-11-13 16:46:28 +0100669 pool_flush2(pool2_connection);
670 pool_flush2(pool2_pendconn);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200671 pool_flush2(fe->req_cap_pool);
672 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200673 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200674}
675
Willy Tarreau656859d2014-11-25 19:46:36 +0100676/* Allocates a single buffer for session <s>, but only if it's guaranteed that
677 * it's not the last available buffer. To be called at the beginning of recv()
Willy Tarreaua24adf02014-11-27 01:11:56 +0100678 * callbacks to ensure that the required buffers are properly allocated. If the
679 * buffer is the session's request buffer, an extra control is made so that we
680 * always keep <tune.buffers.reserved> buffers available after this allocation.
681 * In all circumstances we leave at least 2 buffers so that any later call from
682 * process_session() has a chance to succeed. The response buffer is not bound
683 * to this control. Returns 0 in case of failure, non-zero otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100684 */
685int session_alloc_recv_buffer(struct session *s, struct buffer **buf)
686{
687 struct buffer *b;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100688 int margin = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100689
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100690 if (buf == &s->req.buf)
Willy Tarreaua24adf02014-11-27 01:11:56 +0100691 margin = global.tune.reserved_bufs;
692
693 b = b_alloc_margin(buf, margin);
Willy Tarreau656859d2014-11-25 19:46:36 +0100694 if (b)
695 return 1;
696
Willy Tarreaubf883e02014-11-25 21:10:35 +0100697 if (LIST_ISEMPTY(&s->buffer_wait))
698 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100699 return 0;
700}
701
Willy Tarreaua24adf02014-11-27 01:11:56 +0100702/* Allocates a work buffer for session <s>. It is meant to be called inside
703 * process_session(). It will only allocate the side needed for the function
704 * to work fine. For a regular connection, only the response is needed so that
705 * an error message may be built and returned. In case where the initiator is
706 * an applet (eg: peers), then we need to allocate the request buffer for the
707 * applet to be able to send its data (in this case a response is not needed).
708 * Request buffers are never picked from the reserved pool, but response
709 * buffers may be allocated from the reserve. This is critical to ensure that
710 * a response may always flow and will never block a server from releasing a
711 * connection. Returns 0 in case of failure, non-zero otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100712 */
Willy Tarreaua24adf02014-11-27 01:11:56 +0100713int session_alloc_work_buffer(struct session *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100714{
Willy Tarreaua24adf02014-11-27 01:11:56 +0100715 int margin;
716 struct buffer **buf;
717
718 if (objt_appctx(s->si[0].end)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100719 buf = &s->req.buf;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100720 margin = global.tune.reserved_bufs;
721 }
722 else {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100723 buf = &s->res.buf;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100724 margin = 0;
725 }
726
Willy Tarreaubf883e02014-11-25 21:10:35 +0100727 if (!LIST_ISEMPTY(&s->buffer_wait)) {
728 LIST_DEL(&s->buffer_wait);
729 LIST_INIT(&s->buffer_wait);
730 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100731
Willy Tarreaua24adf02014-11-27 01:11:56 +0100732 if (b_alloc_margin(buf, margin))
Willy Tarreau656859d2014-11-25 19:46:36 +0100733 return 1;
734
Willy Tarreaubf883e02014-11-25 21:10:35 +0100735 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100736 return 0;
737}
738
739/* releases unused buffers after processing. Typically used at the end of the
Willy Tarreaubf883e02014-11-25 21:10:35 +0100740 * update() functions. It will try to wake up as many tasks as the number of
741 * buffers that it releases. In practice, most often sessions are blocked on
742 * a single buffer, so it makes sense to try to wake two up when two buffers
743 * are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100744 */
745void session_release_buffers(struct session *s)
746{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100747 if (s->req.buf->size && buffer_empty(s->req.buf))
748 b_free(&s->req.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100749
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100750 if (s->res.buf->size && buffer_empty(s->res.buf))
751 b_free(&s->res.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100752
Willy Tarreaubf883e02014-11-25 21:10:35 +0100753 /* if we're certain to have at least 1 buffer available, and there is
754 * someone waiting, we can wake up a waiter and offer them.
755 */
Willy Tarreaua24adf02014-11-27 01:11:56 +0100756 if (!LIST_ISEMPTY(&buffer_wq))
757 session_offer_buffers();
Willy Tarreaubf883e02014-11-25 21:10:35 +0100758}
759
Willy Tarreaua24adf02014-11-27 01:11:56 +0100760/* Runs across the list of pending sessions waiting for a buffer and wakes one
761 * up if buffers are available. Will stop when the run queue reaches <rqlimit>.
762 * Should not be called directly, use session_offer_buffers() instead.
Willy Tarreaubf883e02014-11-25 21:10:35 +0100763 */
Willy Tarreaua24adf02014-11-27 01:11:56 +0100764void __session_offer_buffers(int rqlimit)
Willy Tarreaubf883e02014-11-25 21:10:35 +0100765{
766 struct session *sess, *bak;
767
768 list_for_each_entry_safe(sess, bak, &buffer_wq, buffer_wait) {
Willy Tarreaua24adf02014-11-27 01:11:56 +0100769 if (rqlimit <= run_queue)
770 break;
771
Willy Tarreaubf883e02014-11-25 21:10:35 +0100772 if (sess->task->state & TASK_RUNNING)
773 continue;
774
775 LIST_DEL(&sess->buffer_wait);
776 LIST_INIT(&sess->buffer_wait);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100777 task_wakeup(sess->task, TASK_WOKEN_RES);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100778 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100779}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200780
781/* perform minimal intializations, report 0 in case of error, 1 if OK. */
782int init_session()
783{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100784 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200785 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
786 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787}
788
Willy Tarreau30e71012007-11-26 20:15:35 +0100789void session_process_counters(struct session *s)
790{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100791 unsigned long long bytes;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100792 void *ptr;
793 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100794
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100795 bytes = s->req.total - s->logs.bytes_in;
796 s->logs.bytes_in = s->req.total;
797 if (bytes) {
798 s->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100799
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100800 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100801
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100802 if (objt_server(s->target))
803 objt_server(s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200804
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100805 if (s->listener && s->listener->counters)
806 s->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200807
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100808 for (i = 0; i < MAX_SESS_STKCTR; i++) {
809 if (!stkctr_entry(&s->stkctr[i]))
810 continue;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200811
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100812 ptr = stktable_data_ptr(s->stkctr[i].table,
813 stkctr_entry(&s->stkctr[i]),
814 STKTABLE_DT_BYTES_IN_CNT);
815 if (ptr)
816 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200817
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100818 ptr = stktable_data_ptr(s->stkctr[i].table,
819 stkctr_entry(&s->stkctr[i]),
820 STKTABLE_DT_BYTES_IN_RATE);
821 if (ptr)
822 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
823 s->stkctr[i].table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau30e71012007-11-26 20:15:35 +0100824 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100825 }
826
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100827 bytes = s->res.total - s->logs.bytes_out;
828 s->logs.bytes_out = s->res.total;
829 if (bytes) {
830 s->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100831
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100832 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100833
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100834 if (objt_server(s->target))
835 objt_server(s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200836
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100837 if (s->listener && s->listener->counters)
838 s->listener->counters->bytes_out += bytes;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200839
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100840 for (i = 0; i < MAX_SESS_STKCTR; i++) {
841 if (!stkctr_entry(&s->stkctr[i]))
842 continue;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200843
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100844 ptr = stktable_data_ptr(s->stkctr[i].table,
845 stkctr_entry(&s->stkctr[i]),
846 STKTABLE_DT_BYTES_OUT_CNT);
847 if (ptr)
848 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200849
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100850 ptr = stktable_data_ptr(s->stkctr[i].table,
851 stkctr_entry(&s->stkctr[i]),
852 STKTABLE_DT_BYTES_OUT_RATE);
853 if (ptr)
854 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
855 s->stkctr[i].table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau30e71012007-11-26 20:15:35 +0100856 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100857 }
858}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100860/* This function is called with (si->state == SI_ST_CON) meaning that a
861 * connection was attempted and that the file descriptor is already allocated.
862 * We must check for establishment, error and abort. Possible output states
863 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
864 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200865 * otherwise 1. This only works with connection-based sessions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100866 */
Simon Hormandec5be42011-06-08 09:19:07 +0900867static int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100868{
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100869 struct channel *req = si_oc(si);
870 struct channel *rep = si_ic(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200871 struct connection *srv_conn = __objt_conn(si->end);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100872
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100873 /* If we got an error, or if nothing happened and the connection timed
874 * out, we must give up. The CER state handler will take care of retry
875 * attempts and error reports.
876 */
877 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100878 if (unlikely(si_oc(si)->flags & CF_WRITE_PARTIAL)) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100879 /* Some data were sent past the connection establishment,
880 * so we need to pretend we're established to log correctly
881 * and let later states handle the failure.
882 */
Willy Tarreaue3224e82012-10-29 22:41:31 +0100883 si->state = SI_ST_EST;
884 si->err_type = SI_ET_DATA_ERR;
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100885 si_ic(si)->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreaue3224e82012-10-29 22:41:31 +0100886 return 1;
887 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100888 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100889 si->state = SI_ST_CER;
Willy Tarreau0ede5a32012-12-08 08:44:02 +0100890
Willy Tarreauf79c8172013-10-21 16:30:56 +0200891 conn_force_close(srv_conn);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100892
893 if (si->err_type)
894 return 0;
895
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100896 if (si->flags & SI_FL_ERR)
897 si->err_type = SI_ET_CONN_ERR;
898 else
899 si->err_type = SI_ET_CONN_TO;
900 return 0;
901 }
902
903 /* OK, maybe we want to abort */
Willy Tarreaua7a7ebc2012-12-30 00:50:35 +0100904 if (!(req->flags & CF_WRITE_PARTIAL) &&
905 unlikely((rep->flags & CF_SHUTW) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200906 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
907 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100908 s->be->options & PR_O_ABRT_CLOSE)))) {
909 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200910 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100911 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau84455332009-03-15 22:34:05 +0100912 if (s->srv_error)
913 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100914 return 1;
915 }
916
917 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200918 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100919 return 1;
920
921 /* OK, this means that a connection succeeded. The caller will be
922 * responsible for handling the transition from CON to EST.
923 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100924 si->state = SI_ST_EST;
925 si->err_type = SI_ET_NONE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100926 return 1;
927}
928
929/* This function is called with (si->state == SI_ST_CER) meaning that a
930 * previous connection attempt has failed and that the file descriptor
931 * has already been released. Possible causes include asynchronous error
932 * notification and time out. Possible output states are SI_ST_CLO when
933 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
934 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
935 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
936 * marked as in error state. It returns 0.
937 */
Simon Hormandec5be42011-06-08 09:19:07 +0900938static int sess_update_st_cer(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100939{
940 /* we probably have to release last session from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100941 if (objt_server(s->target)) {
942 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100943
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100944 if (s->flags & SN_CURR_SESS) {
945 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100946 objt_server(s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100947 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 }
949
950 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200951 si->conn_retries--;
952 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100953 if (!si->err_type) {
954 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100955 }
956
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100957 if (objt_server(s->target))
958 objt_server(s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100959 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100960 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100961 if (may_dequeue_tasks(objt_server(s->target), s->be))
962 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100963
964 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200965 si_shutw(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100966 si_oc(si)->flags |= CF_WRITE_ERROR;
967 si_ic(si)->flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100968
969 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100970 if (s->srv_error)
971 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100972 return 0;
973 }
974
975 /* If the "redispatch" option is set on the backend, we are allowed to
976 * retry on another server for the last retry. In order to achieve this,
977 * we must mark the session unassigned, and eventually clear the DIRECT
978 * bit to ignore any persistence cookie. We won't count a retry nor a
979 * redispatch yet, because this will depend on what server is selected.
Willy Tarreau33a14e52014-06-13 17:49:40 +0200980 * If the connection is not persistent, the balancing algorithm is not
981 * determinist (round robin) and there is more than one active server,
982 * we accept to perform an immediate redispatch without waiting since
983 * we don't care about this particular server.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100984 */
Willy Tarreau33a14e52014-06-13 17:49:40 +0200985 if (objt_server(s->target) &&
986 (si->conn_retries == 0 ||
987 (!(s->flags & SN_DIRECT) && s->be->srv_act > 1 &&
988 ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR))) &&
Willy Tarreau4de91492010-01-22 19:10:05 +0100989 s->be->options & PR_O_REDISP && !(s->flags & SN_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100990 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100991 if (may_dequeue_tasks(objt_server(s->target), s->be))
992 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100993
994 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100995 si->state = SI_ST_REQ;
996 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100997 if (objt_server(s->target))
998 objt_server(s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100999 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001000 si->state = SI_ST_ASS;
1001 }
1002
1003 if (si->flags & SI_FL_ERR) {
1004 /* The error was an asynchronous connection error, and we will
1005 * likely have to retry connecting to the same server, most
1006 * likely leading to the same result. To avoid this, we wait
Willy Tarreaub0290662014-06-13 17:04:44 +02001007 * MIN(one second, connect timeout) before retrying.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001008 */
1009
Willy Tarreaub0290662014-06-13 17:04:44 +02001010 int delay = 1000;
1011
1012 if (s->be->timeout.connect && s->be->timeout.connect < delay)
1013 delay = s->be->timeout.connect;
1014
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001015 if (!si->err_type)
1016 si->err_type = SI_ET_CONN_ERR;
1017
Willy Tarreaudb6d0122014-06-13 17:40:15 +02001018 /* only wait when we're retrying on the same server */
1019 if (si->state == SI_ST_ASS ||
1020 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
1021 (s->be->srv_act <= 1)) {
1022 si->state = SI_ST_TAR;
1023 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
1024 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001025 return 0;
1026 }
1027 return 0;
1028}
1029
1030/*
1031 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +02001032 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +02001033 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001034 */
Simon Hormandec5be42011-06-08 09:19:07 +09001035static void sess_establish(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001036{
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001037 struct channel *req = si_oc(si);
1038 struct channel *rep = si_ic(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001039
Willy Tarreau0e37f1c2013-12-31 23:06:46 +01001040 /* First, centralize the timers information */
1041 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
1042 si->exp = TICK_ETERNITY;
1043
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001044 if (objt_server(s->target))
1045 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001046
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001047 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001048 /* if the user wants to log as soon as possible, without counting
1049 * bytes from the server, then this is the right moment. */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001050 if (!LIST_ISEMPTY(&s->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001051 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +01001052 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001053 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001054 }
1055 else {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001056 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
Willy Tarreaud81ca042013-12-31 22:33:13 +01001057 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001058 }
1059
Willy Tarreau4e5b8282009-08-16 22:57:50 +02001060 rep->analysers |= s->fe->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001061 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau644c1012014-04-30 18:11:11 +02001062 if (req->flags & CF_WAKE_CONNECT) {
1063 req->flags |= CF_WAKE_ONCE;
1064 req->flags &= ~CF_WAKE_CONNECT;
1065 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001066 if (objt_conn(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +02001067 /* real connections have timeouts */
1068 req->wto = s->be->timeout.server;
1069 rep->rto = s->be->timeout.server;
1070 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001071 req->wex = TICK_ETERNITY;
1072}
1073
1074/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
1075 * Other input states are simply ignored.
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01001076 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1077 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1078 * conditions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001079 */
Simon Hormandec5be42011-06-08 09:19:07 +09001080static void sess_update_stream_int(struct session *s, struct stream_interface *si)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001081{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001082 struct server *srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001083
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001084 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 +01001085 now_ms, __FUNCTION__,
1086 s,
1087 s->req, s->rep,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001088 s->req.rex, s->res.wex,
1089 s->req.flags, s->res.flags,
1090 s->req.buf->i, s->req.buf->o, s->res.buf->i, s->res.buf->o, s->res.cons->state, s->req.cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001091
1092 if (si->state == SI_ST_ASS) {
1093 /* Server assigned to connection request, we have to try to connect now */
1094 int conn_err;
1095
1096 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001097 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001098
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001099 if (conn_err == SN_ERR_NONE) {
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01001100 /* state = SI_ST_CON or SI_ST_EST now */
Willy Tarreau827aee92011-03-10 16:55:02 +01001101 if (srv)
1102 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001103 if (srv)
1104 srv_set_sess_last(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001105 return;
1106 }
1107
1108 /* We have received a synchronous error. We might have to
1109 * abort, retry immediately or redispatch.
1110 */
1111 if (conn_err == SN_ERR_INTERNAL) {
1112 if (!si->err_type) {
1113 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001114 }
1115
Willy Tarreau827aee92011-03-10 16:55:02 +01001116 if (srv)
1117 srv_inc_sess_ctr(srv);
1118 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001119 srv_set_sess_last(srv);
1120 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +01001121 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001122 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001123
1124 /* release other sessions waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +01001125 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001126 if (may_dequeue_tasks(srv, s->be))
1127 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001128
1129 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001130 si_shutr(si);
1131 si_shutw(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001132 si_oc(si)->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001133
1134 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1135
1136 /* no session was ever accounted for this server */
1137 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001138 if (s->srv_error)
1139 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001140 return;
1141 }
1142
1143 /* We are facing a retryable error, but we don't want to run a
1144 * turn-around now, as the problem is likely a source port
1145 * allocation problem, so we want to retry now.
1146 */
1147 si->state = SI_ST_CER;
1148 si->flags &= ~SI_FL_ERR;
1149 sess_update_st_cer(s, si);
1150 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
1151 return;
1152 }
1153 else if (si->state == SI_ST_QUE) {
1154 /* connection request was queued, check for any update */
1155 if (!s->pend_pos) {
1156 /* The connection is not in the queue anymore. Either
1157 * we have a server connection slot available and we
1158 * go directly to the assigned state, or we need to
1159 * load-balance first and go to the INI state.
1160 */
1161 si->exp = TICK_ETERNITY;
1162 if (unlikely(!(s->flags & SN_ASSIGNED)))
1163 si->state = SI_ST_REQ;
1164 else {
1165 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1166 si->state = SI_ST_ASS;
1167 }
1168 return;
1169 }
1170
1171 /* Connection request still in queue... */
1172 if (si->flags & SI_FL_EXP) {
1173 /* ... and timeout expired */
1174 si->exp = TICK_ETERNITY;
1175 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +01001176 if (srv)
1177 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001178 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001179 si_shutr(si);
1180 si_shutw(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001181 si_oc(si)->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001182 if (!si->err_type)
1183 si->err_type = SI_ET_QUEUE_TO;
1184 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001185 if (s->srv_error)
1186 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001187 return;
1188 }
1189
1190 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001191 if ((si_oc(si)->flags & (CF_READ_ERROR)) ||
1192 ((si_oc(si)->flags & CF_SHUTW_NOW) && /* empty and client aborted */
1193 (channel_is_empty(si_oc(si)) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001194 /* give up */
1195 si->exp = TICK_ETERNITY;
1196 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001197 si_shutr(si);
1198 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001199 si->err_type |= SI_ET_QUEUE_ABRT;
1200 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001201 if (s->srv_error)
1202 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001203 return;
1204 }
1205
1206 /* Nothing changed */
1207 return;
1208 }
1209 else if (si->state == SI_ST_TAR) {
1210 /* Connection request might be aborted */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001211 if ((si_oc(si)->flags & (CF_READ_ERROR)) ||
1212 ((si_oc(si)->flags & CF_SHUTW_NOW) && /* empty and client aborted */
1213 (channel_is_empty(si_oc(si)) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001214 /* give up */
1215 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +02001216 si_shutr(si);
1217 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001218 si->err_type |= SI_ET_CONN_ABRT;
1219 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001220 if (s->srv_error)
1221 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001222 return;
1223 }
1224
1225 if (!(si->flags & SI_FL_EXP))
1226 return; /* still in turn-around */
1227
1228 si->exp = TICK_ETERNITY;
1229
1230 /* we keep trying on the same server as long as the session is
1231 * marked "assigned".
1232 * FIXME: Should we force a redispatch attempt when the server is down ?
1233 */
1234 if (s->flags & SN_ASSIGNED)
1235 si->state = SI_ST_ASS;
1236 else
1237 si->state = SI_ST_REQ;
1238 return;
1239 }
1240}
1241
Simon Hormandec5be42011-06-08 09:19:07 +09001242/* Set correct session termination flags in case no analyser has done it. It
1243 * also counts a failed request if the server state has not reached the request
1244 * stage.
1245 */
1246static void sess_set_term_flags(struct session *s)
1247{
1248 if (!(s->flags & SN_FINST_MASK)) {
1249 if (s->si[1].state < SI_ST_REQ) {
1250
1251 s->fe->fe_counters.failed_req++;
1252 if (s->listener->counters)
1253 s->listener->counters->failed_req++;
1254
1255 s->flags |= SN_FINST_R;
1256 }
1257 else if (s->si[1].state == SI_ST_QUE)
1258 s->flags |= SN_FINST_Q;
1259 else if (s->si[1].state < SI_ST_EST)
1260 s->flags |= SN_FINST_C;
1261 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
1262 s->flags |= SN_FINST_D;
1263 else
1264 s->flags |= SN_FINST_L;
1265 }
1266}
1267
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001268/* This function initiates a server connection request on a stream interface
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001269 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1270 * a real connection to a server, indicating that a server has been assigned,
1271 * or SI_ST_EST for a successful connection to an applet. It may also return
1272 * SI_ST_QUE, or SI_ST_CLO upon error.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001273 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001274static void sess_prepare_conn_req(struct session *s, struct stream_interface *si)
1275{
1276 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 +01001277 now_ms, __FUNCTION__,
1278 s,
1279 s->req, s->rep,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001280 s->req.rex, s->res.wex,
1281 s->req.flags, s->res.flags,
1282 s->req.buf->i, s->req.buf->o, s->res.buf->i, s->res.buf->o, s->res.cons->state, s->req.cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001283
1284 if (si->state != SI_ST_REQ)
1285 return;
1286
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001287 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1288 /* the applet directly goes to the EST state */
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001289 struct appctx *appctx = objt_appctx(si->end);
1290
1291 if (!appctx || appctx->applet != __objt_applet(s->target))
1292 appctx = stream_int_register_handler(si, objt_applet(s->target));
1293
1294 if (!appctx) {
1295 /* No more memory, let's immediately abort. Force the
1296 * error code to ignore the ERR_LOCAL which is not a
1297 * real error.
1298 */
Willy Tarreau6bbb2f62013-12-09 17:14:23 +01001299 s->flags &= ~(SN_ERR_MASK | SN_FINST_MASK);
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001300
1301 si_shutr(si);
1302 si_shutw(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001303 si_oc(si)->flags |= CF_WRITE_ERROR;
Willy Tarreau6bbb2f62013-12-09 17:14:23 +01001304 si->err_type = SI_ET_CONN_RES;
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001305 si->state = SI_ST_CLO;
1306 if (s->srv_error)
1307 s->srv_error(s, si);
1308 return;
1309 }
1310
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001311 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001312 si->state = SI_ST_EST;
1313 si->err_type = SI_ET_NONE;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001314 be_set_sess_last(s->be);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01001315 /* let sess_establish() finish the job */
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001316 return;
1317 }
1318
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001319 /* Try to assign a server */
1320 if (srv_redispatch_connect(s) != 0) {
1321 /* We did not get a server. Either we queued the
1322 * connection request, or we encountered an error.
1323 */
1324 if (si->state == SI_ST_QUE)
1325 return;
1326
1327 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001328 si_shutr(si);
1329 si_shutw(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001330 si_oc(si)->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001331 if (!si->err_type)
1332 si->err_type = SI_ET_CONN_OTHER;
1333 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001334 if (s->srv_error)
1335 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001336 return;
1337 }
1338
1339 /* The server is assigned */
1340 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1341 si->state = SI_ST_ASS;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001342 be_set_sess_last(s->be);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001343}
1344
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001345/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001346 * if appropriate. The default_backend rule is also considered, then the
1347 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001348 * It returns 1 if the processing can continue on next analysers, or zero if it
1349 * either needs more data or wants to immediately abort the request.
1350 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001351static int process_switching_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001352{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001353 struct persist_rule *prst_rule;
Willy Tarreau4de91492010-01-22 19:10:05 +01001354
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001355 req->analysers &= ~an_bit;
1356 req->analyse_exp = TICK_ETERNITY;
1357
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001358 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 +02001359 now_ms, __FUNCTION__,
1360 s,
1361 req,
1362 req->rex, req->wex,
1363 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001364 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001365 req->analysers);
1366
1367 /* now check whether we have some switching rules for this request */
1368 if (!(s->flags & SN_BE_ASSIGNED)) {
1369 struct switching_rule *rule;
1370
1371 list_for_each_entry(rule, &s->fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001372 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001373
Willy Tarreauf51658d2014-04-23 01:21:56 +02001374 if (rule->cond) {
1375 ret = acl_exec_cond(rule->cond, s->fe, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
1376 ret = acl_pass(ret);
1377 if (rule->cond->pol == ACL_COND_UNLESS)
1378 ret = !ret;
1379 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001380
1381 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001382 /* If the backend name is dynamic, try to resolve the name.
1383 * If we can't resolve the name, or if any error occurs, break
1384 * the loop and fallback to the default backend.
1385 */
1386 struct proxy *backend;
1387
1388 if (rule->dynamic) {
1389 struct chunk *tmp = get_trash_chunk();
1390 if (!build_logline(s, tmp->str, tmp->size, &rule->be.expr))
1391 break;
1392 backend = findproxy(tmp->str, PR_CAP_BE);
1393 if (!backend)
1394 break;
1395 }
1396 else
1397 backend = rule->be.backend;
1398
1399 if (!session_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001400 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001401 break;
1402 }
1403 }
1404
1405 /* To ensure correct connection accounting on the backend, we
1406 * have to assign one if it was not set (eg: a listen). This
1407 * measure also takes care of correctly setting the default
1408 * backend if any.
1409 */
1410 if (!(s->flags & SN_BE_ASSIGNED))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001411 if (!session_set_backend(s, s->fe->defbe.be ? s->fe->defbe.be : s->be))
1412 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001413 }
1414
Willy Tarreaufb356202010-08-03 14:02:05 +02001415 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
1416 if (s->fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001417 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1418 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001419 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001420
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001421 /* 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 +01001422 * persistence rule, and report that in the session.
1423 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001424 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001425 int ret = 1;
1426
1427 if (prst_rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001428 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 +01001429 ret = acl_pass(ret);
1430 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1431 ret = !ret;
1432 }
1433
1434 if (ret) {
1435 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001436 if (prst_rule->type == PERSIST_TYPE_FORCE) {
1437 s->flags |= SN_FORCE_PRST;
1438 } else {
1439 s->flags |= SN_IGNORE_PRST;
1440 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001441 break;
1442 }
1443 }
1444
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001445 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001446
1447 sw_failed:
1448 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001449 channel_abort(&s->req);
1450 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001451
1452 if (!(s->flags & SN_ERR_MASK))
1453 s->flags |= SN_ERR_RESOURCE;
1454 if (!(s->flags & SN_FINST_MASK))
1455 s->flags |= SN_FINST_R;
1456
1457 s->txn.status = 500;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001458 s->req.analysers = 0;
1459 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001460 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001461}
1462
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001463/* This stream analyser works on a request. It applies all use-server rules on
1464 * it then returns 1. The data must already be present in the buffer otherwise
1465 * they won't match. It always returns 1.
1466 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001467static int process_server_rules(struct session *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001468{
1469 struct proxy *px = s->be;
1470 struct server_rule *rule;
1471
1472 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
1473 now_ms, __FUNCTION__,
1474 s,
1475 req,
1476 req->rex, req->wex,
1477 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001478 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001479 req->analysers);
1480
1481 if (!(s->flags & SN_ASSIGNED)) {
1482 list_for_each_entry(rule, &px->server_rules, list) {
1483 int ret;
1484
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001485 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 +02001486 ret = acl_pass(ret);
1487 if (rule->cond->pol == ACL_COND_UNLESS)
1488 ret = !ret;
1489
1490 if (ret) {
1491 struct server *srv = rule->srv.ptr;
1492
Willy Tarreau892337c2014-05-13 23:41:20 +02001493 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001494 (px->options & PR_O_PERSIST) ||
1495 (s->flags & SN_FORCE_PRST)) {
1496 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001497 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001498 break;
1499 }
1500 /* if the server is not UP, let's go on with next rules
1501 * just in case another one is suited.
1502 */
1503 }
1504 }
1505 }
1506
1507 req->analysers &= ~an_bit;
1508 req->analyse_exp = TICK_ETERNITY;
1509 return 1;
1510}
1511
Emeric Brun1d33b292010-01-04 15:47:17 +01001512/* This stream analyser works on a request. It applies all sticking rules on
1513 * it then returns 1. The data must already be present in the buffer otherwise
1514 * they won't match. It always returns 1.
1515 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001516static int process_sticking_rules(struct session *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001517{
1518 struct proxy *px = s->be;
1519 struct sticking_rule *rule;
1520
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001521 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 +01001522 now_ms, __FUNCTION__,
1523 s,
1524 req,
1525 req->rex, req->wex,
1526 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001527 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001528 req->analysers);
1529
1530 list_for_each_entry(rule, &px->sticking_rules, list) {
1531 int ret = 1 ;
1532 int i;
1533
Willy Tarreau9667a802013-12-09 12:52:13 +01001534 /* Only the first stick store-request of each table is applied
1535 * and other ones are ignored. The purpose is to allow complex
1536 * configurations which look for multiple entries by decreasing
1537 * order of precision and to stop at the first which matches.
1538 * An example could be a store of the IP address from an HTTP
1539 * header first, then from the source if not found.
1540 */
Emeric Brun1d33b292010-01-04 15:47:17 +01001541 for (i = 0; i < s->store_count; i++) {
1542 if (rule->table.t == s->store[i].table)
1543 break;
1544 }
1545
1546 if (i != s->store_count)
1547 continue;
1548
1549 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001550 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001551 ret = acl_pass(ret);
1552 if (rule->cond->pol == ACL_COND_UNLESS)
1553 ret = !ret;
1554 }
1555
1556 if (ret) {
1557 struct stktable_key *key;
1558
Willy Tarreaub5975de2014-06-25 16:20:53 +02001559 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001560 if (!key)
1561 continue;
1562
1563 if (rule->flags & STK_IS_MATCH) {
1564 struct stksess *ts;
1565
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001566 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001567 if (!(s->flags & SN_ASSIGNED)) {
1568 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001569 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001570
1571 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001572 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1573 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001574 if (node) {
1575 struct server *srv;
1576
1577 srv = container_of(node, struct server, conf.id);
Willy Tarreau892337c2014-05-13 23:41:20 +02001578 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4de91492010-01-22 19:10:05 +01001579 (px->options & PR_O_PERSIST) ||
1580 (s->flags & SN_FORCE_PRST)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001581 s->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001582 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001583 }
1584 }
1585 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001586 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001587 }
1588 }
1589 if (rule->flags & STK_IS_STORE) {
1590 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1591 struct stksess *ts;
1592
1593 ts = stksess_new(rule->table.t, key);
1594 if (ts) {
1595 s->store[s->store_count].table = rule->table.t;
1596 s->store[s->store_count++].ts = ts;
1597 }
1598 }
1599 }
1600 }
1601 }
1602
1603 req->analysers &= ~an_bit;
1604 req->analyse_exp = TICK_ETERNITY;
1605 return 1;
1606}
1607
1608/* This stream analyser works on a response. It applies all store rules on it
1609 * then returns 1. The data must already be present in the buffer otherwise
1610 * they won't match. It always returns 1.
1611 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001612static int process_store_rules(struct session *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001613{
1614 struct proxy *px = s->be;
1615 struct sticking_rule *rule;
1616 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001617 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001618
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001619 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 +01001620 now_ms, __FUNCTION__,
1621 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001622 rep,
1623 rep->rex, rep->wex,
1624 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001625 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001626 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001627
1628 list_for_each_entry(rule, &px->storersp_rules, list) {
1629 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001630
Willy Tarreau9667a802013-12-09 12:52:13 +01001631 /* Only the first stick store-response of each table is applied
1632 * and other ones are ignored. The purpose is to allow complex
1633 * configurations which look for multiple entries by decreasing
1634 * order of precision and to stop at the first which matches.
1635 * An example could be a store of a set-cookie value, with a
1636 * fallback to a parameter found in a 302 redirect.
1637 *
1638 * The store-response rules are not allowed to override the
1639 * store-request rules for the same table, but they may coexist.
1640 * Thus we can have up to one store-request entry and one store-
1641 * response entry for the same table at any time.
1642 */
1643 for (i = nbreq; i < s->store_count; i++) {
1644 if (rule->table.t == s->store[i].table)
1645 break;
1646 }
1647
1648 /* skip existing entries for this table */
1649 if (i < s->store_count)
1650 continue;
1651
Emeric Brun1d33b292010-01-04 15:47:17 +01001652 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001653 ret = acl_exec_cond(rule->cond, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001654 ret = acl_pass(ret);
1655 if (rule->cond->pol == ACL_COND_UNLESS)
1656 ret = !ret;
1657 }
1658
1659 if (ret) {
1660 struct stktable_key *key;
1661
Willy Tarreaub5975de2014-06-25 16:20:53 +02001662 key = stktable_fetch_key(rule->table.t, px, s, &s->txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001663 if (!key)
1664 continue;
1665
Willy Tarreau37e340c2013-12-06 23:05:21 +01001666 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001667 struct stksess *ts;
1668
1669 ts = stksess_new(rule->table.t, key);
1670 if (ts) {
1671 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001672 s->store[s->store_count++].ts = ts;
1673 }
1674 }
1675 }
1676 }
1677
1678 /* process store request and store response */
1679 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001680 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001681 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001682
Willy Tarreauc93cd162014-05-13 15:54:22 +02001683 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001684 stksess_free(s->store[i].table, s->store[i].ts);
1685 s->store[i].ts = NULL;
1686 continue;
1687 }
1688
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001689 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1690 if (ts) {
1691 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001692 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001693 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001694 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001695 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001696 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001697
1698 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001699 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001700 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001701 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001702 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001703
1704 rep->analysers &= ~an_bit;
1705 rep->analyse_exp = TICK_ETERNITY;
1706 return 1;
1707}
1708
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001709/* This macro is very specific to the function below. See the comments in
1710 * process_session() below to understand the logic and the tests.
1711 */
1712#define UPDATE_ANALYSERS(real, list, back, flag) { \
1713 list = (((list) & ~(flag)) | ~(back)) & (real); \
1714 back = real; \
1715 if (!(list)) \
1716 break; \
1717 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1718 continue; \
1719}
1720
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001721/* Processes the client, server, request and response jobs of a session task,
1722 * then puts it back to the wait queue in a clean state, or cleans up its
1723 * resources if it must be deleted. Returns in <next> the date the task wants
1724 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1725 * nothing too many times, the request and response buffers flags are monitored
1726 * and each function is called only if at least another function has changed at
1727 * least one flag it is interested in.
1728 */
Willy Tarreau26c25062009-03-08 09:38:41 +01001729struct task *process_session(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001730{
Willy Tarreau827aee92011-03-10 16:55:02 +01001731 struct server *srv;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001732 struct session *s = t->context;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001733 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001734 unsigned int rq_prod_last, rq_cons_last;
1735 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001736 unsigned int req_ana_back;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001737
1738 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001739 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req.flags, s->res.flags);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001740
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001741 /* this data may be no longer valid, clear it */
1742 memset(&s->txn.auth, 0, sizeof(s->txn.auth));
1743
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02001744 /* This flag must explicitly be set every time */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001745 s->req.flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
1746 s->res.flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001747
1748 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001749 rqf_last = s->req.flags & ~CF_MASK_ANALYSER;
1750 rpf_last = s->res.flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001751
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001752 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau07373b82014-11-28 12:08:47 +01001753 s->req.prod->flags |= SI_FL_DONT_WAKE;
1754 s->req.cons->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001755
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001756 /* 1a: Check for low level timeouts if needed. We just set a flag on
1757 * stream interfaces when their timeouts have expired.
1758 */
1759 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
1760 stream_int_check_timeouts(&s->si[0]);
1761 stream_int_check_timeouts(&s->si[1]);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001762
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001763 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001764 * for future reads or writes. Note: this will also concern upper layers
1765 * but we do not touch any other flag. We must be careful and correctly
1766 * detect state changes when calling them.
1767 */
1768
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001769 channel_check_timeouts(&s->req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001770
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001771 if (unlikely((s->req.flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1772 s->req.cons->flags |= SI_FL_NOLINGER;
1773 si_shutw(s->req.cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001774 }
1775
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001776 if (unlikely((s->req.flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1777 if (s->req.prod->flags & SI_FL_NOHALF)
1778 s->req.prod->flags |= SI_FL_NOLINGER;
1779 si_shutr(s->req.prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001780 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001781
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001782 channel_check_timeouts(&s->res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001783
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001784 if (unlikely((s->res.flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1785 s->res.cons->flags |= SI_FL_NOLINGER;
1786 si_shutw(s->res.cons);
Willy Tarreau14641402009-12-29 14:49:56 +01001787 }
1788
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001789 if (unlikely((s->res.flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1790 if (s->res.prod->flags & SI_FL_NOHALF)
1791 s->res.prod->flags |= SI_FL_NOLINGER;
1792 si_shutr(s->res.prod);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001793 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001794
1795 /* Once in a while we're woken up because the task expires. But
1796 * this does not necessarily mean that a timeout has been reached.
1797 * So let's not run a whole session processing if only an expiration
1798 * timeout needs to be refreshed.
1799 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001800 if (!((s->req.flags | s->res.flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01001801 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
1802 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
1803 !((s->si[0].flags | s->si[1].flags) & (SI_FL_EXP|SI_FL_ERR)) &&
1804 ((t->state & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER))
1805 goto update_exp_and_leave;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001806 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001807
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001808 /* below we may emit error messages so we have to ensure that we have
1809 * our buffers properly allocated.
1810 */
Willy Tarreaua24adf02014-11-27 01:11:56 +01001811 if (!session_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001812 /* No buffer available, we've been subscribed to the list of
1813 * buffer waiters, let's wait for our turn.
1814 */
1815 goto update_exp_and_leave;
1816 }
1817
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001818 /* 1b: check for low-level errors reported at the stream interface.
1819 * First we check if it's a retryable error (in which case we don't
1820 * want to tell the buffer). Otherwise we report the error one level
1821 * upper by setting flags into the buffers. Note that the side towards
1822 * the client cannot have connect (hence retryable) errors. Also, the
1823 * connection setup code must be able to deal with any type of abort.
1824 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001825 srv = objt_server(s->target);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001826 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
1827 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001828 si_shutr(&s->si[0]);
1829 si_shutw(&s->si[0]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001830 stream_int_report_error(&s->si[0]);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001831 if (!(s->req.analysers) && !(s->res.analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001832 s->be->be_counters.cli_aborts++;
1833 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001834 if (srv)
1835 srv->counters.cli_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001836 if (!(s->flags & SN_ERR_MASK))
1837 s->flags |= SN_ERR_CLICL;
1838 if (!(s->flags & SN_FINST_MASK))
1839 s->flags |= SN_FINST_D;
1840 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001841 }
1842 }
1843
1844 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
1845 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
Willy Tarreau73b013b2012-05-21 16:31:45 +02001846 si_shutr(&s->si[1]);
1847 si_shutw(&s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001848 stream_int_report_error(&s->si[1]);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001849 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001850 if (srv)
1851 srv->counters.failed_resp++;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001852 if (!(s->req.analysers) && !(s->res.analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001853 s->be->be_counters.srv_aborts++;
1854 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001855 if (srv)
1856 srv->counters.srv_aborts++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001857 if (!(s->flags & SN_ERR_MASK))
1858 s->flags |= SN_ERR_SRVCL;
1859 if (!(s->flags & SN_FINST_MASK))
1860 s->flags |= SN_FINST_D;
1861 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001862 }
1863 /* note: maybe we should process connection errors here ? */
1864 }
1865
1866 if (s->si[1].state == SI_ST_CON) {
1867 /* we were trying to establish a connection on the server side,
1868 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1869 */
1870 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
1871 sess_update_st_cer(s, &s->si[1]);
1872 else if (s->si[1].state == SI_ST_EST)
1873 sess_establish(s, &s->si[1]);
1874
1875 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1876 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1877 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1878 */
1879 }
1880
Willy Tarreau815a9b22010-07-27 17:15:12 +02001881 rq_prod_last = s->si[0].state;
1882 rq_cons_last = s->si[1].state;
1883 rp_cons_last = s->si[0].state;
1884 rp_prod_last = s->si[1].state;
1885
1886 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001887 /* Check for connection closure */
1888
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001889 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001890 "[%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 +01001891 now_ms, __FUNCTION__, __LINE__,
1892 t,
1893 s, s->flags,
1894 s->req, s->rep,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001895 s->req.rex, s->res.wex,
1896 s->req.flags, s->res.flags,
1897 s->req.buf->i, s->req.buf->o, s->res.buf->i, s->res.buf->o, s->res.cons->state, s->req.cons->state,
1898 s->res.cons->err_type, s->req.cons->err_type,
1899 s->req.cons->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001900
1901 /* nothing special to be done on client side */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001902 if (unlikely(s->req.prod->state == SI_ST_DIS))
1903 s->req.prod->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001904
1905 /* When a server-side connection is released, we have to count it and
1906 * check for pending connections on this server.
1907 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001908 if (unlikely(s->req.cons->state == SI_ST_DIS)) {
1909 s->req.cons->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001910 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001911 if (srv) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001912 if (s->flags & SN_CURR_SESS) {
1913 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001914 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001915 }
1916 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001917 if (may_dequeue_tasks(srv, s->be))
1918 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001919 }
1920 }
1921
1922 /*
1923 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1924 * at this point.
1925 */
1926
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001927 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001928 /* Analyse request */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001929 if (((s->req.flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1930 ((s->req.flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau815a9b22010-07-27 17:15:12 +02001931 s->si[0].state != rq_prod_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01001932 s->si[1].state != rq_cons_last ||
1933 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001934 unsigned int flags = s->req.flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001935
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001936 if (s->req.prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001937 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001938 unsigned int ana_list;
1939 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001940
Willy Tarreau90deb182010-01-07 00:20:41 +01001941 /* it's up to the analysers to stop new connections,
1942 * disable reading or closing. Note: if an analyser
1943 * disables any of these bits, it is responsible for
1944 * enabling them again when it disables itself, so
1945 * that other analysers are called in similar conditions.
1946 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001947 channel_auto_read(&s->req);
1948 channel_auto_connect(&s->req);
1949 channel_auto_close(&s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001950
1951 /* We will call all analysers for which a bit is set in
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001952 * s->req.analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01001953 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001954 * the list when not needed. Any analyser may return 0
1955 * to break out of the loop, either because of missing
1956 * data to take a decision, or because it decides to
1957 * kill the session. We loop at least once through each
1958 * analyser, and we may loop again if other analysers
1959 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001960 *
1961 * We build a list of analysers to run. We evaluate all
1962 * of these analysers in the order of the lower bit to
1963 * the higher bit. This ordering is very important.
1964 * An analyser will often add/remove other analysers,
1965 * including itself. Any changes to itself have no effect
1966 * on the loop. If it removes any other analysers, we
1967 * want those analysers not to be called anymore during
1968 * this loop. If it adds an analyser that is located
1969 * after itself, we want it to be scheduled for being
1970 * processed during the loop. If it adds an analyser
1971 * which is located before it, we want it to switch to
1972 * it immediately, even if it has already been called
1973 * once but removed since.
1974 *
1975 * In order to achieve this, we compare the analyser
1976 * list after the call with a copy of it before the
1977 * call. The work list is fed with analyser bits that
1978 * appeared during the call. Then we compare previous
1979 * work list with the new one, and check the bits that
1980 * appeared. If the lowest of these bits is lower than
1981 * the current bit, it means we have enabled a previous
1982 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001983 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001984
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001985 ana_list = ana_back = s->req.analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001986 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001987 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001988
Willy Tarreaufb356202010-08-03 14:02:05 +02001989 if (ana_list & AN_REQ_INSPECT_FE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001990 if (!tcp_inspect_request(s, &s->req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001991 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001992 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001993 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001994
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001995 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001996 if (!http_wait_for_request(s, &s->req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001997 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001998 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001999 }
2000
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002001 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002002 if (!http_process_req_common(s, &s->req, AN_REQ_HTTP_PROCESS_FE, s->fe))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002003 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002004 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002005 }
2006
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002007 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002008 if (!process_switching_rules(s, &s->req, AN_REQ_SWITCHING_RULES))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002009 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002010 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002011 }
2012
Willy Tarreaufb356202010-08-03 14:02:05 +02002013 if (ana_list & AN_REQ_INSPECT_BE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002014 if (!tcp_inspect_request(s, &s->req, AN_REQ_INSPECT_BE))
Willy Tarreaufb356202010-08-03 14:02:05 +02002015 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002016 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
Willy Tarreaufb356202010-08-03 14:02:05 +02002017 }
2018
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002019 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002020 if (!http_process_req_common(s, &s->req, AN_REQ_HTTP_PROCESS_BE, s->be))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002021 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002022 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002023 }
2024
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002025 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002026 if (!http_process_tarpit(s, &s->req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01002027 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002028 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02002029 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01002030
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002031 if (ana_list & AN_REQ_SRV_RULES) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002032 if (!process_server_rules(s, &s->req, AN_REQ_SRV_RULES))
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002033 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002034 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002035 }
2036
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002037 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002038 if (!http_process_request(s, &s->req, AN_REQ_HTTP_INNER))
Willy Tarreauc465fd72009-08-31 00:17:18 +02002039 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002040 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02002041 }
2042
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002043 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002044 if (!http_wait_for_request_body(s, &s->req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01002045 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002046 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02002047 }
Emeric Brun647caf12009-06-30 17:57:00 +02002048
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002049 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002050 if (!tcp_persist_rdp_cookie(s, &s->req, AN_REQ_PRST_RDP_COOKIE))
Emeric Brun647caf12009-06-30 17:57:00 +02002051 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002052 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02002053 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002054
Emeric Brun1d33b292010-01-04 15:47:17 +01002055 if (ana_list & AN_REQ_STICKING_RULES) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002056 if (!process_sticking_rules(s, &s->req, AN_REQ_STICKING_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01002057 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002058 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01002059 }
2060
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002061 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002062 if (!http_request_forward_body(s, &s->req, AN_REQ_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01002063 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002064 UPDATE_ANALYSERS(s->req.analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002065 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01002066 break;
2067 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002068 }
Willy Tarreau84455332009-03-15 22:34:05 +01002069
Willy Tarreau815a9b22010-07-27 17:15:12 +02002070 rq_prod_last = s->si[0].state;
2071 rq_cons_last = s->si[1].state;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002072 s->req.flags &= ~CF_WAKE_ONCE;
2073 rqf_last = s->req.flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002074
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002075 if ((s->req.flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002076 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002077 }
2078
Willy Tarreau576507f2010-01-07 00:09:04 +01002079 /* we'll monitor the request analysers while parsing the response,
2080 * because some response analysers may indirectly enable new request
2081 * analysers (eg: HTTP keep-alive).
2082 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002083 req_ana_back = s->req.analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01002084
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002085 resync_response:
2086 /* Analyse response */
2087
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002088 if (((s->res.flags & ~rpf_last) & CF_MASK_ANALYSER) ||
2089 (s->res.flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002090 s->si[0].state != rp_cons_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01002091 s->si[1].state != rp_prod_last ||
2092 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002093 unsigned int flags = s->res.flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002094
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002095 if ((s->res.flags & CF_MASK_ANALYSER) &&
2096 (s->res.analysers & AN_REQ_ALL)) {
Willy Tarreau0499e352010-12-17 07:13:42 +01002097 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
2098 * for some free space in the response buffer, so we might need to call
2099 * it when something changes in the response buffer, but still we pass
2100 * it the request buffer. Note that the SI state might very well still
2101 * be zero due to us returning a flow of redirects!
2102 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002103 s->res.analysers &= ~AN_REQ_ALL;
2104 s->req.flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01002105 }
2106
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002107 if (s->res.prod->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01002108 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002109 unsigned int ana_list;
2110 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002111
Willy Tarreau90deb182010-01-07 00:20:41 +01002112 /* it's up to the analysers to stop disable reading or
2113 * closing. Note: if an analyser disables any of these
2114 * bits, it is responsible for enabling them again when
2115 * it disables itself, so that other analysers are called
2116 * in similar conditions.
2117 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002118 channel_auto_read(&s->res);
2119 channel_auto_close(&s->res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002120
2121 /* We will call all analysers for which a bit is set in
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002122 * s->res.analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002123 * to MSB. The analysers must remove themselves from
2124 * the list when not needed. Any analyser may return 0
2125 * to break out of the loop, either because of missing
2126 * data to take a decision, or because it decides to
2127 * kill the session. We loop at least once through each
2128 * analyser, and we may loop again if other analysers
2129 * are added in the middle.
2130 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002131
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002132 ana_list = ana_back = s->res.analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01002133 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002134 /* Warning! ensure that analysers are always placed in ascending order! */
2135
Emeric Brun97679e72010-09-23 17:56:44 +02002136 if (ana_list & AN_RES_INSPECT) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002137 if (!tcp_inspect_response(s, &s->res, AN_RES_INSPECT))
Emeric Brun97679e72010-09-23 17:56:44 +02002138 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002139 UPDATE_ANALYSERS(s->res.analysers, ana_list, ana_back, AN_RES_INSPECT);
Emeric Brun97679e72010-09-23 17:56:44 +02002140 }
2141
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002142 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002143 if (!http_wait_for_response(s, &s->res, AN_RES_WAIT_HTTP))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002144 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002145 UPDATE_ANALYSERS(s->res.analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002146 }
2147
Emeric Brun1d33b292010-01-04 15:47:17 +01002148 if (ana_list & AN_RES_STORE_RULES) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002149 if (!process_store_rules(s, &s->res, AN_RES_STORE_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01002150 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002151 UPDATE_ANALYSERS(s->res.analysers, ana_list, ana_back, AN_RES_STORE_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01002152 }
2153
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002154 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002155 if (!http_process_res_common(s, &s->res, AN_RES_HTTP_PROCESS_BE, s->be))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002156 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002157 UPDATE_ANALYSERS(s->res.analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002158 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002159
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002160 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002161 if (!http_response_forward_body(s, &s->res, AN_RES_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01002162 break;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002163 UPDATE_ANALYSERS(s->res.analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002164 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01002165 break;
2166 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002167 }
2168
Willy Tarreau815a9b22010-07-27 17:15:12 +02002169 rp_cons_last = s->si[0].state;
2170 rp_prod_last = s->si[1].state;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002171 rpf_last = s->res.flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002172
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002173 if ((s->res.flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002174 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002175 }
2176
Willy Tarreau576507f2010-01-07 00:09:04 +01002177 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002178 if (s->req.analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01002179 goto resync_request;
2180
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002181 if ((s->req.flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01002182 goto resync_request;
2183
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002184 /* FIXME: here we should call protocol handlers which rely on
2185 * both buffers.
2186 */
2187
2188
2189 /*
Willy Tarreauae526782010-03-04 20:34:23 +01002190 * Now we propagate unhandled errors to the session. Normally
2191 * we're just in a data phase here since it means we have not
2192 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002193 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002194 srv = objt_server(s->target);
Willy Tarreau2f976e12010-11-11 14:28:47 +01002195 if (unlikely(!(s->flags & SN_ERR_MASK))) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002196 if (s->req.flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002197 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002198 s->req.analysers = 0;
2199 if (s->req.flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002200 s->be->be_counters.cli_aborts++;
2201 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002202 if (srv)
2203 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002204 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002205 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002206 else if (s->req.flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002207 s->be->be_counters.cli_aborts++;
2208 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002209 if (srv)
2210 srv->counters.cli_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002211 s->flags |= SN_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002212 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002213 else if (s->req.flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002214 s->be->be_counters.srv_aborts++;
2215 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002216 if (srv)
2217 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002218 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002219 }
2220 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002221 s->be->be_counters.srv_aborts++;
2222 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002223 if (srv)
2224 srv->counters.srv_aborts++;
Willy Tarreau84455332009-03-15 22:34:05 +01002225 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002226 }
Willy Tarreau84455332009-03-15 22:34:05 +01002227 sess_set_term_flags(s);
2228 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002229 else if (s->res.flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002230 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002231 s->res.analysers = 0;
2232 if (s->res.flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002233 s->be->be_counters.srv_aborts++;
2234 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002235 if (srv)
2236 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002237 s->flags |= SN_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002238 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002239 else if (s->res.flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002240 s->be->be_counters.srv_aborts++;
2241 s->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002242 if (srv)
2243 srv->counters.srv_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002244 s->flags |= SN_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002245 }
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002246 else if (s->res.flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002247 s->be->be_counters.cli_aborts++;
2248 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002249 if (srv)
2250 srv->counters.cli_aborts++;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002251 s->flags |= SN_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002252 }
2253 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002254 s->be->be_counters.cli_aborts++;
2255 s->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01002256 if (srv)
2257 srv->counters.cli_aborts++;
Willy Tarreauae526782010-03-04 20:34:23 +01002258 s->flags |= SN_ERR_CLITO;
2259 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002260 sess_set_term_flags(s);
2261 }
Willy Tarreau84455332009-03-15 22:34:05 +01002262 }
2263
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002264 /*
2265 * Here we take care of forwarding unhandled data. This also includes
2266 * connection establishments and shutdown requests.
2267 */
2268
2269
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002270 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002271 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002272 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002273 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002274 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002275 if (unlikely(!s->req.analysers &&
2276 !(s->req.flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2277 (s->req.prod->state >= SI_ST_EST) &&
2278 (s->req.to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002279 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002280 * attached to it. If any data are left in, we'll permit them to
2281 * move.
2282 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002283 channel_auto_read(&s->req);
2284 channel_auto_connect(&s->req);
2285 channel_auto_close(&s->req);
2286 buffer_flush(s->req.buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002287
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002288 /* We'll let data flow between the producer (if still connected)
2289 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002290 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002291 if (!(s->req.flags & (CF_SHUTR|CF_SHUTW_NOW)))
2292 channel_forward(&s->req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002293 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002294
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002295 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002296 if (!(s->req.flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2297 s->req.to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002298 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002299 (objt_conn(s->si[0].end) && __objt_conn(s->si[0].end)->xprt && __objt_conn(s->si[0].end)->xprt->rcv_pipe) &&
2300 (objt_conn(s->si[1].end) && __objt_conn(s->si[1].end)->xprt && __objt_conn(s->si[1].end)->xprt->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002301 (pipes_used < global.maxpipes) &&
2302 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2303 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002304 (s->req.flags & CF_STREAMER_FAST)))) {
2305 s->req.flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002306 }
2307
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002308 /* reflect what the L7 analysers have seen last */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002309 rqf_last = s->req.flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002310
2311 /*
2312 * Now forward all shutdown requests between both sides of the buffer
2313 */
2314
Willy Tarreau520d95e2009-09-19 21:04:57 +02002315 /* first, let's check if the request buffer needs to shutdown(write), which may
2316 * happen either because the input is closed or because we want to force a close
Willy Tarreau05cdd962014-05-10 14:30:07 +02002317 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2318 * the other side's timeout as well.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002319 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002320 if (unlikely((s->req.flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002321 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002322 channel_shutw_now(&s->req);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002323 if (tick_isset(s->fe->timeout.clientfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002324 s->res.wto = s->fe->timeout.clientfin;
2325 s->res.wex = tick_add(now_ms, s->res.wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002326 }
2327 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002328
2329 /* shutdown(write) pending */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002330 if (unlikely((s->req.flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2331 channel_is_empty(&s->req))) {
2332 if (s->req.flags & CF_READ_ERROR)
2333 s->req.cons->flags |= SI_FL_NOLINGER;
2334 si_shutw(s->req.cons);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002335 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002336 s->res.rto = s->be->timeout.serverfin;
2337 s->res.rex = tick_add(now_ms, s->res.rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002338 }
Willy Tarreau8615c2a2013-06-21 08:20:19 +02002339 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002340
2341 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002342 if (unlikely((s->req.flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2343 !s->req.analysers))
2344 channel_shutr_now(&s->req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002345
2346 /* shutdown(read) pending */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002347 if (unlikely((s->req.flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2348 if (s->req.prod->flags & SI_FL_NOHALF)
2349 s->req.prod->flags |= SI_FL_NOLINGER;
2350 si_shutr(s->req.prod);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002351 if (tick_isset(s->fe->timeout.clientfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002352 s->res.wto = s->fe->timeout.clientfin;
2353 s->res.wex = tick_add(now_ms, s->res.wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002354 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002355 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002356
Willy Tarreau520d95e2009-09-19 21:04:57 +02002357 /* it's possible that an upper layer has requested a connection setup or abort.
2358 * There are 2 situations where we decide to establish a new connection :
2359 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002360 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002361 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002362 if (s->req.cons->state == SI_ST_INI) {
2363 if (!(s->req.flags & CF_SHUTW)) {
2364 if ((s->req.flags & CF_AUTO_CONNECT) || !channel_is_empty(&s->req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002365 /* If we have an appctx, there is no connect method, so we
2366 * immediately switch to the connected state, otherwise we
2367 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002368 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002369 s->req.cons->state = SI_ST_REQ; /* new connection requested */
2370 s->req.cons->conn_retries = s->be->conn_retries;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002371 }
Willy Tarreau73201222009-08-16 18:27:24 +02002372 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002373 else {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002374 s->req.cons->state = SI_ST_CLO; /* shutw+ini = abort */
2375 channel_shutw_now(&s->req); /* fix buffer flags upon abort */
2376 channel_shutr_now(&s->res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002377 }
Willy Tarreau92795622009-03-06 12:51:23 +01002378 }
2379
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002380
2381 /* we may have a pending connection request, or a connection waiting
2382 * for completion.
2383 */
2384 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
2385 do {
2386 /* nb: step 1 might switch from QUE to ASS, but we first want
2387 * to give a chance to step 2 to perform a redirect if needed.
2388 */
2389 if (s->si[1].state != SI_ST_REQ)
2390 sess_update_stream_int(s, &s->si[1]);
Willy Tarreaub44c8732013-12-31 23:16:50 +01002391 if (s->si[1].state == SI_ST_REQ)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002392 sess_prepare_conn_req(s, &s->si[1]);
2393
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002394 /* applets directly go to the ESTABLISHED state. Similarly,
2395 * servers experience the same fate when their connection
2396 * is reused.
2397 */
Willy Tarreaub44c8732013-12-31 23:16:50 +01002398 if (unlikely(s->si[1].state == SI_ST_EST))
2399 sess_establish(s, &s->si[1]);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002400
Willy Tarreaub44c8732013-12-31 23:16:50 +01002401 /* Now we can add the server name to a header (if requested) */
2402 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
2403 if ((s->si[1].state >= SI_ST_CON) &&
2404 (s->be->server_id_hdr_name != NULL) &&
2405 (s->be->mode == PR_MODE_HTTP) &&
2406 objt_server(s->target)) {
2407 http_send_name_header(&s->txn, s->be, objt_server(s->target)->id);
Willy Tarreau1e5dfda2013-04-07 18:19:16 +02002408 }
2409
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002410 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01002411 if (s->si[1].state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SN_REDIRECTABLE))
Willy Tarreau71241ab2012-12-27 11:30:54 +01002412 http_perform_server_redirect(s, &s->si[1]);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002413 } while (s->si[1].state == SI_ST_ASS);
2414 }
2415
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002416 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002417 if (s->req.prod->state == SI_ST_DIS || s->req.cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002418 goto resync_stream_interface;
2419
Willy Tarreau815a9b22010-07-27 17:15:12 +02002420 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002421 if ((s->req.flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002422 goto resync_request;
2423
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002424 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002425
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002426 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002427 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002428 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002429 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002430 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002431 if (unlikely(!s->res.analysers &&
2432 !(s->res.flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2433 (s->res.prod->state >= SI_ST_EST) &&
2434 (s->res.to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002435 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002436 * attached to it. If any data are left in, we'll permit them to
2437 * move.
2438 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002439 channel_auto_read(&s->res);
2440 channel_auto_close(&s->res);
2441 buffer_flush(s->res.buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002442
2443 /* We'll let data flow between the producer (if still connected)
2444 * to the consumer.
2445 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002446 if (!(s->res.flags & (CF_SHUTR|CF_SHUTW_NOW)))
2447 channel_forward(&s->res, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002448
2449 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002450 * tunnel timeout set, use it now. Note that we must respect
2451 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002452 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002453 if (!s->req.analysers && s->be->timeout.tunnel) {
2454 s->req.rto = s->req.wto = s->res.rto = s->res.wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002455 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002456
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002457 if ((s->req.flags & CF_SHUTR) && tick_isset(s->fe->timeout.clientfin))
2458 s->res.wto = s->fe->timeout.clientfin;
2459 if ((s->req.flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2460 s->res.rto = s->be->timeout.serverfin;
2461 if ((s->res.flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2462 s->req.wto = s->be->timeout.serverfin;
2463 if ((s->res.flags & CF_SHUTW) && tick_isset(s->fe->timeout.clientfin))
2464 s->req.rto = s->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002465
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002466 s->req.rex = tick_add(now_ms, s->req.rto);
2467 s->req.wex = tick_add(now_ms, s->req.wto);
2468 s->res.rex = tick_add(now_ms, s->res.rto);
2469 s->res.wex = tick_add(now_ms, s->res.wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002470 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002471 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002472
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002473 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002474 if (!(s->res.flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2475 s->res.to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002476 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002477 (objt_conn(s->si[0].end) && __objt_conn(s->si[0].end)->xprt && __objt_conn(s->si[0].end)->xprt->snd_pipe) &&
2478 (objt_conn(s->si[1].end) && __objt_conn(s->si[1].end)->xprt && __objt_conn(s->si[1].end)->xprt->rcv_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002479 (pipes_used < global.maxpipes) &&
2480 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2481 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002482 (s->res.flags & CF_STREAMER_FAST)))) {
2483 s->res.flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002484 }
2485
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002486 /* reflect what the L7 analysers have seen last */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002487 rpf_last = s->res.flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002488
2489 /*
2490 * Now forward all shutdown requests between both sides of the buffer
2491 */
2492
2493 /*
2494 * FIXME: this is probably where we should produce error responses.
2495 */
2496
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002497 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002498 if (unlikely((s->res.flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002499 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002500 channel_shutw_now(&s->res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002501 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002502 s->req.wto = s->be->timeout.serverfin;
2503 s->req.wex = tick_add(now_ms, s->req.wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002504 }
2505 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002506
2507 /* shutdown(write) pending */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002508 if (unlikely((s->res.flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2509 channel_is_empty(&s->res))) {
2510 si_shutw(s->res.cons);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002511 if (tick_isset(s->fe->timeout.clientfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002512 s->req.rto = s->fe->timeout.clientfin;
2513 s->req.rex = tick_add(now_ms, s->req.rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002514 }
2515 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002516
2517 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002518 if (unlikely((s->res.flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2519 !s->res.analysers)
2520 channel_shutr_now(&s->res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002521
2522 /* shutdown(read) pending */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002523 if (unlikely((s->res.flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2524 if (s->res.prod->flags & SI_FL_NOHALF)
2525 s->res.prod->flags |= SI_FL_NOLINGER;
2526 si_shutr(s->res.prod);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002527 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002528 s->req.wto = s->be->timeout.serverfin;
2529 s->req.wex = tick_add(now_ms, s->req.wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002530 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002531 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002532
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002533 if (s->req.prod->state == SI_ST_DIS || s->req.cons->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002534 goto resync_stream_interface;
2535
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002536 if (s->req.flags != rqf_last)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002537 goto resync_request;
2538
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002539 if ((s->res.flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002540 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002541
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002542 /* we're interested in getting wakeups again */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002543 s->req.prod->flags &= ~SI_FL_DONT_WAKE;
2544 s->req.cons->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002545
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002546 /* This is needed only when debugging is enabled, to indicate
2547 * client-side or server-side close. Please note that in the unlikely
2548 * event where both sides would close at once, the sequence is reported
2549 * on the server side first.
2550 */
2551 if (unlikely((global.mode & MODE_DEBUG) &&
2552 (!(global.mode & MODE_QUIET) ||
2553 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002554 if (s->si[1].state == SI_ST_CLO &&
2555 s->si[1].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002556 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002557 s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002558 objt_conn(s->si[0].end) ? (unsigned short)objt_conn(s->si[0].end)->t.sock.fd : -1,
2559 objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002560 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002561 }
2562
2563 if (s->si[0].state == SI_ST_CLO &&
2564 s->si[0].prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002565 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002566 s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002567 objt_conn(s->si[0].end) ? (unsigned short)objt_conn(s->si[0].end)->t.sock.fd : -1,
2568 objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002569 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002570 }
2571 }
2572
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002573 if (likely((s->res.cons->state != SI_ST_CLO) ||
2574 (s->req.cons->state > SI_ST_INI && s->req.cons->state < SI_ST_CLO))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002575
2576 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
2577 session_process_counters(s);
2578
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002579 if (s->res.cons->state == SI_ST_EST && obj_type(s->res.cons->end) != OBJ_TYPE_APPCTX)
2580 si_update(s->res.cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002581
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002582 if (s->req.cons->state == SI_ST_EST && obj_type(s->req.cons->end) != OBJ_TYPE_APPCTX)
2583 si_update(s->req.cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002584
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002585 s->req.flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2586 s->res.flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002587 s->si[0].prev_state = s->si[0].state;
2588 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +01002589 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
2590 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002591
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002592 /* Trick: if a request is being waiting for the server to respond,
2593 * and if we know the server can timeout, we don't want the timeout
2594 * to expire on the client side first, but we're still interested
2595 * in passing data from the client to the server (eg: POST). Thus,
2596 * we can cancel the client's request timeout if the server's
2597 * request timeout is set and the server has not yet sent a response.
2598 */
2599
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002600 if ((s->res.flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2601 (tick_isset(s->req.wex) || tick_isset(s->res.rex))) {
2602 s->req.flags |= CF_READ_NOEXP;
2603 s->req.rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002604 }
2605
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002606 /* When any of the stream interfaces is attached to an applet,
2607 * we have to call it here. Note that this one may wake the
2608 * task up again. If at least one applet was called, the current
2609 * task might have been woken up, in which case we don't want it
2610 * to be requeued to the wait queue but rather to the run queue
2611 * to run ASAP. The bitwise "or" in the condition ensures that
2612 * both functions are always called and that we wake up if at
2613 * least one did something.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002614 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002615 if ((si_applet_call(s->req.cons) | si_applet_call(s->res.cons)) != 0) {
Willy Tarreau1accfc02009-09-05 20:57:35 +02002616 if (task_in_rq(t)) {
Willy Tarreau1accfc02009-09-05 20:57:35 +02002617 t->expire = TICK_ETERNITY;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01002618 session_release_buffers(s);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002619 return t;
2620 }
2621 }
2622
Willy Tarreau798f4322012-11-08 14:49:17 +01002623 update_exp_and_leave:
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002624 t->expire = tick_first(tick_first(s->req.rex, s->req.wex),
2625 tick_first(s->res.rex, s->res.wex));
2626 if (s->req.analysers)
2627 t->expire = tick_first(t->expire, s->req.analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002628
2629 if (s->si[0].exp)
2630 t->expire = tick_first(t->expire, s->si[0].exp);
2631
2632 if (s->si[1].exp)
2633 t->expire = tick_first(t->expire, s->si[1].exp);
2634
2635#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002636 fprintf(stderr,
2637 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2638 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002639 now_ms, t->expire, s->req.rex, s->req.wex, s->req.analyse_exp,
2640 s->res.rex, s->res.wex, s->si[0].exp, s->si[1].exp, s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002641#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002642
2643#ifdef DEBUG_DEV
2644 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002645 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002646 ABORT_NOW();
2647#endif
Willy Tarreau10fc09e2014-11-25 19:46:36 +01002648 session_release_buffers(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002649 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002650 }
2651
2652 s->fe->feconn--;
2653 if (s->flags & SN_BE_ASSIGNED)
2654 s->be->beconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002655 jobs--;
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002656 if (s->listener) {
2657 if (!(s->listener->options & LI_O_UNLIMITED))
2658 actconn--;
2659 s->listener->nbconn--;
2660 if (s->listener->state == LI_FULL)
2661 resume_listener(s->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002662
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002663 /* Dequeues all of the listeners waiting for a resource */
2664 if (!LIST_ISEMPTY(&global_listener_queue))
2665 dequeue_all_listeners(&global_listener_queue);
Willy Tarreau08ceb102011-07-24 22:58:00 +02002666
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002667 if (!LIST_ISEMPTY(&s->fe->listener_queue) &&
2668 (!s->fe->fe_sps_lim || freq_ctr_remain(&s->fe->fe_sess_per_sec, s->fe->fe_sps_lim, 0) > 0))
2669 dequeue_all_listeners(&s->fe->listener_queue);
2670 }
Willy Tarreau07687c12011-07-24 23:55:06 +02002671
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002672 if (unlikely((global.mode & MODE_DEBUG) &&
2673 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002674 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002675 s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002676 objt_conn(s->si[0].end) ? (unsigned short)objt_conn(s->si[0].end)->t.sock.fd : -1,
2677 objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002678 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002679 }
2680
2681 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2682 session_process_counters(s);
2683
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002684 if (s->txn.status) {
2685 int n;
2686
2687 n = s->txn.status / 100;
2688 if (n < 1 || n > 5)
2689 n = 0;
2690
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002691 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002692 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01002693 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002694 s->fe->fe_counters.p.http.comp_rsp++;
2695 }
Willy Tarreau24657792010-02-26 10:30:28 +01002696 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002697 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002698 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002699 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01002700 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002701 s->be->be_counters.p.http.comp_rsp++;
2702 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002703 }
2704
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002705 /* let's do a final log if we need it */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002706 if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait &&
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002707 !(s->flags & SN_MONITOR) &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002708 (!(s->fe->options & PR_O_NULLNOLOG) || s->req.total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002709 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002710 }
2711
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002712 /* update time stats for this session */
2713 session_update_time_stats(s);
2714
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002715 /* the task MUST not be in the run queue anymore */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002716 session_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002717 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002718 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002719 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002720}
2721
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002722/* Update the session's backend and server time stats */
2723void session_update_time_stats(struct session *s)
2724{
2725 int t_request;
2726 int t_queue;
2727 int t_connect;
2728 int t_data;
2729 int t_close;
2730 struct server *srv;
2731
2732 t_request = 0;
2733 t_queue = s->logs.t_queue;
2734 t_connect = s->logs.t_connect;
2735 t_close = s->logs.t_close;
2736 t_data = s->logs.t_data;
2737
2738 if (s->be->mode != PR_MODE_HTTP)
2739 t_data = t_connect;
2740
2741 if (t_connect < 0 || t_data < 0)
2742 return;
2743
2744 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2745 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2746
2747 t_data -= t_connect;
2748 t_connect -= t_queue;
2749 t_queue -= t_request;
2750
2751 srv = objt_server(s->target);
2752 if (srv) {
2753 swrate_add(&srv->counters.q_time, TIME_STATS_SAMPLES, t_queue);
2754 swrate_add(&srv->counters.c_time, TIME_STATS_SAMPLES, t_connect);
2755 swrate_add(&srv->counters.d_time, TIME_STATS_SAMPLES, t_data);
2756 swrate_add(&srv->counters.t_time, TIME_STATS_SAMPLES, t_close);
2757 }
2758 swrate_add(&s->be->be_counters.q_time, TIME_STATS_SAMPLES, t_queue);
2759 swrate_add(&s->be->be_counters.c_time, TIME_STATS_SAMPLES, t_connect);
2760 swrate_add(&s->be->be_counters.d_time, TIME_STATS_SAMPLES, t_data);
2761 swrate_add(&s->be->be_counters.t_time, TIME_STATS_SAMPLES, t_close);
2762}
2763
Willy Tarreau7c669d72008-06-20 15:04:11 +02002764/*
2765 * This function adjusts sess->srv_conn and maintains the previous and new
2766 * server's served session counts. Setting newsrv to NULL is enough to release
2767 * current connection slot. This function also notifies any LB algo which might
2768 * expect to be informed about any change in the number of active sessions on a
2769 * server.
2770 */
2771void sess_change_server(struct session *sess, struct server *newsrv)
2772{
2773 if (sess->srv_conn == newsrv)
2774 return;
2775
2776 if (sess->srv_conn) {
2777 sess->srv_conn->served--;
2778 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2779 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Simon Hormanaf514952011-06-21 14:34:57 +09002780 session_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002781 }
2782
2783 if (newsrv) {
2784 newsrv->served++;
2785 if (newsrv->proxy->lbprm.server_take_conn)
2786 newsrv->proxy->lbprm.server_take_conn(newsrv);
Simon Hormanaf514952011-06-21 14:34:57 +09002787 session_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002788 }
2789}
2790
Willy Tarreau84455332009-03-15 22:34:05 +01002791/* Handle server-side errors for default protocols. It is called whenever a a
2792 * connection setup is aborted or a request is aborted in queue. It sets the
2793 * session termination flags so that the caller does not have to worry about
2794 * them. It's installed as ->srv_error for the server-side stream_interface.
2795 */
2796void default_srv_error(struct session *s, struct stream_interface *si)
2797{
2798 int err_type = si->err_type;
2799 int err = 0, fin = 0;
2800
2801 if (err_type & SI_ET_QUEUE_ABRT) {
2802 err = SN_ERR_CLICL;
2803 fin = SN_FINST_Q;
2804 }
2805 else if (err_type & SI_ET_CONN_ABRT) {
2806 err = SN_ERR_CLICL;
2807 fin = SN_FINST_C;
2808 }
2809 else if (err_type & SI_ET_QUEUE_TO) {
2810 err = SN_ERR_SRVTO;
2811 fin = SN_FINST_Q;
2812 }
2813 else if (err_type & SI_ET_QUEUE_ERR) {
2814 err = SN_ERR_SRVCL;
2815 fin = SN_FINST_Q;
2816 }
2817 else if (err_type & SI_ET_CONN_TO) {
2818 err = SN_ERR_SRVTO;
2819 fin = SN_FINST_C;
2820 }
2821 else if (err_type & SI_ET_CONN_ERR) {
2822 err = SN_ERR_SRVCL;
2823 fin = SN_FINST_C;
2824 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002825 else if (err_type & SI_ET_CONN_RES) {
2826 err = SN_ERR_RESOURCE;
2827 fin = SN_FINST_C;
2828 }
Willy Tarreau84455332009-03-15 22:34:05 +01002829 else /* SI_ET_CONN_OTHER and others */ {
2830 err = SN_ERR_INTERNAL;
2831 fin = SN_FINST_C;
2832 }
2833
2834 if (!(s->flags & SN_ERR_MASK))
2835 s->flags |= err;
2836 if (!(s->flags & SN_FINST_MASK))
2837 s->flags |= fin;
2838}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002839
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002840/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
2841void session_shutdown(struct session *session, int why)
2842{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002843 if (session->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002844 return;
2845
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002846 channel_shutw_now(&session->req);
2847 channel_shutr_now(&session->res);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002848 session->task->nice = 1024;
2849 if (!(session->flags & SN_ERR_MASK))
2850 session->flags |= why;
2851 task_wakeup(session->task, TASK_WOKEN_OTHER);
2852}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002853
Willy Tarreau8b22a712010-06-18 17:46:06 +02002854/************************************************************************/
2855/* All supported ACL keywords must be declared here. */
2856/************************************************************************/
2857
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002858/* Returns a pointer to a stkctr depending on the fetch keyword name.
2859 * It is designed to be called as sc[0-9]_* sc_* or src_* exclusively.
Willy Tarreaua65536c2013-07-22 22:40:11 +02002860 * sc[0-9]_* will return a pointer to the respective field in the
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002861 * session <l4>. sc_* requires an UINT argument specifying the stick
2862 * counter number. src_* will fill a locally allocated structure with
Willy Tarreaua65536c2013-07-22 22:40:11 +02002863 * the table and entry corresponding to what is specified with src_*.
Willy Tarreau0f791d42013-07-23 19:56:43 +02002864 * NULL may be returned if the designated stkctr is not tracked. For
2865 * the sc_* and sc[0-9]_* forms, an optional table argument may be
2866 * passed. When present, the currently tracked key is then looked up
2867 * in the specified table instead of the current table. The purpose is
2868 * to be able to convery multiple values per key (eg: have gpc0 from
2869 * multiple tables).
Willy Tarreaua65536c2013-07-22 22:40:11 +02002870 */
Willy Tarreaue12704b2014-07-15 19:06:18 +02002871struct stkctr *
Willy Tarreaua65536c2013-07-22 22:40:11 +02002872smp_fetch_sc_stkctr(struct session *l4, const struct arg *args, const char *kw)
2873{
2874 static struct stkctr stkctr;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002875 struct stksess *stksess;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002876 unsigned int num = kw[2] - '0';
Willy Tarreau0f791d42013-07-23 19:56:43 +02002877 int arg = 0;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002878
Willy Tarreau0f791d42013-07-23 19:56:43 +02002879 if (num == '_' - '0') {
2880 /* sc_* variant, args[0] = ctr# (mandatory) */
2881 num = args[arg++].data.uint;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002882 if (num >= MAX_SESS_STKCTR)
2883 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002884 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002885 else if (num > 9) { /* src_* variant, args[0] = table */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002886 struct stktable_key *key;
2887 struct connection *conn = objt_conn(l4->si[0].end);
2888
2889 if (!conn)
2890 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002891
Thierry FOURNIER74c219d2014-04-14 14:35:40 +02002892 key = addr_to_stktable_key(&conn->addr.from, args->data.prx->table.type);
Willy Tarreaua65536c2013-07-22 22:40:11 +02002893 if (!key)
2894 return NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002895
Willy Tarreaua65536c2013-07-22 22:40:11 +02002896 stkctr.table = &args->data.prx->table;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002897 stkctr_set_entry(&stkctr, stktable_lookup_key(stkctr.table, key));
Willy Tarreaua65536c2013-07-22 22:40:11 +02002898 return &stkctr;
2899 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002900
2901 /* Here, <num> contains the counter number from 0 to 9 for
2902 * the sc[0-9]_ form, or even higher using sc_(num) if needed.
2903 * args[arg] is the first optional argument.
2904 */
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002905 stksess = stkctr_entry(&l4->stkctr[num]);
2906 if (!stksess)
2907 return NULL;
2908
Willy Tarreau0f791d42013-07-23 19:56:43 +02002909 if (unlikely(args[arg].type == ARGT_TAB)) {
2910 /* an alternate table was specified, let's look up the same key there */
2911 stkctr.table = &args[arg].data.prx->table;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002912 stkctr_set_entry(&stkctr, stktable_lookup(stkctr.table, stksess));
Willy Tarreau0f791d42013-07-23 19:56:43 +02002913 return &stkctr;
2914 }
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002915 return &l4->stkctr[num];
Willy Tarreaua65536c2013-07-22 22:40:11 +02002916}
2917
Willy Tarreau88821242013-07-22 18:29:29 +02002918/* set return a boolean indicating if the requested session counter is
2919 * currently being tracked or not.
2920 * Supports being called as "sc[0-9]_tracked" only.
2921 */
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002922static int
Willy Tarreau88821242013-07-22 18:29:29 +02002923smp_fetch_sc_tracked(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002924 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002925{
2926 smp->flags = SMP_F_VOL_TEST;
2927 smp->type = SMP_T_BOOL;
Thierry FOURNIERd988f212014-04-15 01:15:52 +02002928 smp->data.uint = !!smp_fetch_sc_stkctr(l4, args, kw);
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002929 return 1;
2930}
2931
Willy Tarreau30b20462013-07-22 19:46:52 +02002932/* set <smp> to the General Purpose Counter 0 value from the session's tracked
2933 * frontend counters or from the src.
2934 * Supports being called as "sc[0-9]_get_gpc0" or "src_get_gpc0" only. Value
2935 * zero is returned if the key is new.
2936 */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002937static int
Willy Tarreau30b20462013-07-22 19:46:52 +02002938smp_fetch_sc_get_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002939 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002940{
Willy Tarreau30b20462013-07-22 19:46:52 +02002941 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
2942
2943 if (!stkctr)
2944 return 0;
2945
Willy Tarreau37406352012-04-23 16:16:37 +02002946 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002947 smp->type = SMP_T_UINT;
2948 smp->data.uint = 0;
Willy Tarreau30b20462013-07-22 19:46:52 +02002949
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002950 if (stkctr_entry(stkctr) != NULL) {
2951 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002952 if (!ptr)
2953 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002954 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002955 }
2956 return 1;
2957}
2958
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002959/* set <smp> to the General Purpose Counter 0's event rate from the session's
2960 * tracked frontend counters or from the src.
2961 * Supports being called as "sc[0-9]_gpc0_rate" or "src_gpc0_rate" only.
2962 * Value zero is returned if the key is new.
2963 */
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002964static int
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002965smp_fetch_sc_gpc0_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002966 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002967{
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002968 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
2969
2970 if (!stkctr)
2971 return 0;
2972
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002973 smp->flags = SMP_F_VOL_TEST;
2974 smp->type = SMP_T_UINT;
2975 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002976 if (stkctr_entry(stkctr) != NULL) {
2977 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002978 if (!ptr)
2979 return 0; /* parameter not stored */
2980 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, gpc0_rate),
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002981 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002982 }
2983 return 1;
2984}
2985
Willy Tarreau710d38c2013-07-23 00:07:04 +02002986/* Increment the General Purpose Counter 0 value from the session's tracked
2987 * frontend counters and return it into temp integer.
2988 * Supports being called as "sc[0-9]_inc_gpc0" or "src_inc_gpc0" only.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002989 */
2990static int
Willy Tarreau710d38c2013-07-23 00:07:04 +02002991smp_fetch_sc_inc_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002992 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002993{
Willy Tarreau710d38c2013-07-23 00:07:04 +02002994 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
2995
2996 if (!stkctr)
2997 return 0;
2998
Willy Tarreau37406352012-04-23 16:16:37 +02002999 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003000 smp->type = SMP_T_UINT;
3001 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003002 if (stkctr_entry(stkctr) != NULL) {
Willy Tarreauba2ffd12013-05-29 15:54:14 +02003003 void *ptr;
3004
3005 /* First, update gpc0_rate if it's tracked. Second, update its
3006 * gpc0 if tracked. Returns gpc0's value otherwise the curr_ctr.
3007 */
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003008 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02003009 if (ptr) {
3010 update_freq_ctr_period(&stktable_data_cast(ptr, gpc0_rate),
Willy Tarreau710d38c2013-07-23 00:07:04 +02003011 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u, 1);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02003012 smp->data.uint = (&stktable_data_cast(ptr, gpc0_rate))->curr_ctr;
3013 }
3014
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003015 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02003016 if (ptr)
3017 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
3018
Willy Tarreauc3bd9722010-06-20 12:47:25 +02003019 }
3020 return 1;
3021}
3022
Willy Tarreaub9f441d2013-07-23 00:10:35 +02003023/* Clear the General Purpose Counter 0 value from the session's tracked
3024 * frontend counters and return its previous value into temp integer.
3025 * Supports being called as "sc[0-9]_clr_gpc0" or "src_clr_gpc0" only.
Willy Tarreauf73cd112011-08-13 01:45:16 +02003026 */
3027static int
Willy Tarreaub9f441d2013-07-23 00:10:35 +02003028smp_fetch_sc_clr_gpc0(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003029 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf73cd112011-08-13 01:45:16 +02003030{
Willy Tarreaub9f441d2013-07-23 00:10:35 +02003031 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3032
3033 if (!stkctr)
3034 return 0;
3035
Willy Tarreau37406352012-04-23 16:16:37 +02003036 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003037 smp->type = SMP_T_UINT;
3038 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003039 if (stkctr_entry(stkctr) != NULL) {
3040 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02003041 if (!ptr)
3042 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003043 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02003044 stktable_data_cast(ptr, gpc0) = 0;
3045 }
3046 return 1;
3047}
3048
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02003049/* set <smp> to the cumulated number of connections from the session's tracked
3050 * frontend counters. Supports being called as "sc[0-9]_conn_cnt" or
3051 * "src_conn_cnt" only.
3052 */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02003053static int
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02003054smp_fetch_sc_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003055 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02003056{
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02003057 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3058
3059 if (!stkctr)
3060 return 0;
3061
Willy Tarreau37406352012-04-23 16:16:37 +02003062 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003063 smp->type = SMP_T_UINT;
3064 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003065 if (stkctr_entry(stkctr) != NULL) {
3066 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CNT);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02003067 if (!ptr)
3068 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003069 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02003070 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02003071 return 1;
3072}
3073
Willy Tarreauc8c65702013-07-23 15:09:35 +02003074/* set <smp> to the connection rate from the session's tracked frontend
3075 * counters. Supports being called as "sc[0-9]_conn_rate" or "src_conn_rate"
3076 * only.
3077 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02003078static int
Willy Tarreauc8c65702013-07-23 15:09:35 +02003079smp_fetch_sc_conn_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003080 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003081{
Willy Tarreauc8c65702013-07-23 15:09:35 +02003082 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3083
3084 if (!stkctr)
3085 return 0;
3086
Willy Tarreau37406352012-04-23 16:16:37 +02003087 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003088 smp->type = SMP_T_UINT;
3089 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003090 if (stkctr_entry(stkctr) != NULL) {
3091 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003092 if (!ptr)
3093 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003094 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreauc8c65702013-07-23 15:09:35 +02003095 stkctr->table->data_arg[STKTABLE_DT_CONN_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003096 }
3097 return 1;
3098}
3099
Willy Tarreaua5e37562011-12-16 17:06:15 +01003100/* set temp integer to the number of connections from the session's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02003101 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003102 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02003103 */
3104static int
Willy Tarreau281c7992013-01-08 01:23:27 +01003105smp_fetch_src_updt_conn_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003106 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8b22a712010-06-18 17:46:06 +02003107{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003108 struct connection *conn = objt_conn(l4->si[0].end);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003109 struct stksess *ts;
3110 struct stktable_key *key;
3111 void *ptr;
3112
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003113 if (!conn)
3114 return 0;
3115
Thierry FOURNIER74c219d2014-04-14 14:35:40 +02003116 key = addr_to_stktable_key(&conn->addr.from, px->table.type);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003117 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01003118 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02003119
Willy Tarreau24e32d82012-04-23 23:55:44 +02003120 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02003121
Willy Tarreau1f7e9252010-06-20 12:27:21 +02003122 if ((ts = stktable_update_key(&px->table, key)) == NULL)
3123 /* entry does not exist and could not be created */
3124 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02003125
3126 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
3127 if (!ptr)
3128 return 0; /* parameter not stored in this table */
3129
Willy Tarreauf853c462012-04-23 18:53:56 +02003130 smp->type = SMP_T_UINT;
3131 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02003132 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02003133 return 1;
3134}
3135
Willy Tarreauf44a5532013-07-23 15:17:53 +02003136/* set <smp> to the number of concurrent connections from the session's tracked
3137 * frontend counters. Supports being called as "sc[0-9]_conn_cur" or
3138 * "src_conn_cur" only.
3139 */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02003140static int
Willy Tarreauf44a5532013-07-23 15:17:53 +02003141smp_fetch_sc_conn_cur(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003142 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02003143{
Willy Tarreauf44a5532013-07-23 15:17:53 +02003144 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3145
3146 if (!stkctr)
3147 return 0;
3148
Willy Tarreau37406352012-04-23 16:16:37 +02003149 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003150 smp->type = SMP_T_UINT;
3151 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003152 if (stkctr_entry(stkctr) != NULL) {
3153 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CUR);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02003154 if (!ptr)
3155 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003156 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02003157 }
3158 return 1;
3159}
3160
Willy Tarreau20843082013-07-23 15:35:33 +02003161/* set <smp> to the cumulated number of sessions from the session's tracked
3162 * frontend counters. Supports being called as "sc[0-9]_sess_cnt" or
3163 * "src_sess_cnt" only.
3164 */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003165static int
Willy Tarreau20843082013-07-23 15:35:33 +02003166smp_fetch_sc_sess_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003167 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003168{
Willy Tarreau20843082013-07-23 15:35:33 +02003169 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3170
3171 if (!stkctr)
3172 return 0;
3173
Willy Tarreau37406352012-04-23 16:16:37 +02003174 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003175 smp->type = SMP_T_UINT;
3176 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003177 if (stkctr_entry(stkctr) != NULL) {
3178 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003179 if (!ptr)
3180 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003181 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02003182 }
3183 return 1;
3184}
3185
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02003186/* set <smp> to the session rate from the session's tracked frontend counters.
3187 * Supports being called as "sc[0-9]_sess_rate" or "src_sess_rate" only.
3188 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02003189static int
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02003190smp_fetch_sc_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003191 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02003192{
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02003193 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3194
3195 if (!stkctr)
3196 return 0;
3197
Willy Tarreau37406352012-04-23 16:16:37 +02003198 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003199 smp->type = SMP_T_UINT;
3200 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003201 if (stkctr_entry(stkctr) != NULL) {
3202 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003203 if (!ptr)
3204 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003205 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02003206 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02003207 }
3208 return 1;
3209}
3210
Willy Tarreau91200da2013-07-23 15:55:19 +02003211/* set <smp> to the cumulated number of HTTP requests from the session's tracked
3212 * frontend counters. Supports being called as "sc[0-9]_http_req_cnt" or
3213 * "src_http_req_cnt" only.
3214 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003215static int
Willy Tarreau91200da2013-07-23 15:55:19 +02003216smp_fetch_sc_http_req_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003217 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003218{
Willy Tarreau91200da2013-07-23 15:55:19 +02003219 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3220
3221 if (!stkctr)
3222 return 0;
3223
Willy Tarreau37406352012-04-23 16:16:37 +02003224 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003225 smp->type = SMP_T_UINT;
3226 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003227 if (stkctr_entry(stkctr) != NULL) {
3228 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003229 if (!ptr)
3230 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003231 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003232 }
3233 return 1;
3234}
3235
Willy Tarreaucf477632013-07-23 16:04:37 +02003236/* set <smp> to the HTTP request rate from the session's tracked frontend
3237 * counters. Supports being called as "sc[0-9]_http_req_rate" or
3238 * "src_http_req_rate" only.
3239 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003240static int
Willy Tarreaucf477632013-07-23 16:04:37 +02003241smp_fetch_sc_http_req_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003242 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003243{
Willy Tarreaucf477632013-07-23 16:04:37 +02003244 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3245
3246 if (!stkctr)
3247 return 0;
3248
Willy Tarreau37406352012-04-23 16:16:37 +02003249 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003250 smp->type = SMP_T_UINT;
3251 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003252 if (stkctr_entry(stkctr) != NULL) {
3253 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003254 if (!ptr)
3255 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003256 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreaucf477632013-07-23 16:04:37 +02003257 stkctr->table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003258 }
3259 return 1;
3260}
3261
Willy Tarreau30d07c32013-07-23 16:45:38 +02003262/* set <smp> to the cumulated number of HTTP requests errors from the session's
3263 * tracked frontend counters. Supports being called as "sc[0-9]_http_err_cnt" or
3264 * "src_http_err_cnt" only.
3265 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003266static int
Willy Tarreau30d07c32013-07-23 16:45:38 +02003267smp_fetch_sc_http_err_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003268 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003269{
Willy Tarreau30d07c32013-07-23 16:45:38 +02003270 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3271
3272 if (!stkctr)
3273 return 0;
3274
Willy Tarreau37406352012-04-23 16:16:37 +02003275 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003276 smp->type = SMP_T_UINT;
3277 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003278 if (stkctr_entry(stkctr) != NULL) {
3279 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003280 if (!ptr)
3281 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003282 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003283 }
3284 return 1;
3285}
3286
Willy Tarreau9daf2622013-07-23 16:48:54 +02003287/* set <smp> to the HTTP request error rate from the session's tracked frontend
3288 * counters. Supports being called as "sc[0-9]_http_err_rate" or
3289 * "src_http_err_rate" only.
3290 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003291static int
Willy Tarreau9daf2622013-07-23 16:48:54 +02003292smp_fetch_sc_http_err_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003293 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02003294{
Willy Tarreau9daf2622013-07-23 16:48:54 +02003295 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3296
3297 if (!stkctr)
3298 return 0;
3299
Willy Tarreau37406352012-04-23 16:16:37 +02003300 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003301 smp->type = SMP_T_UINT;
3302 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003303 if (stkctr_entry(stkctr) != NULL) {
3304 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_ERR_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003305 if (!ptr)
3306 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003307 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreau9daf2622013-07-23 16:48:54 +02003308 stkctr->table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003309 }
3310 return 1;
3311}
3312
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003313/* set <smp> to the number of kbytes received from clients, as found in the
3314 * session's tracked frontend counters. Supports being called as
3315 * "sc[0-9]_kbytes_in" or "src_kbytes_in" only.
3316 */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003317static int
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003318smp_fetch_sc_kbytes_in(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003319 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003320{
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003321 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3322
3323 if (!stkctr)
3324 return 0;
3325
Willy Tarreau37406352012-04-23 16:16:37 +02003326 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003327 smp->type = SMP_T_UINT;
3328 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003329 if (stkctr_entry(stkctr) != NULL) {
3330 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003331 if (!ptr)
3332 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003333 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003334 }
3335 return 1;
3336}
3337
Willy Tarreau613fe992013-07-23 17:39:19 +02003338/* set <smp> to the data rate received from clients in bytes/s, as found
3339 * in the session's tracked frontend counters. Supports being called as
3340 * "sc[0-9]_bytes_in_rate" or "src_bytes_in_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003341 */
3342static int
Willy Tarreau613fe992013-07-23 17:39:19 +02003343smp_fetch_sc_bytes_in_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003344 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003345{
Willy Tarreau613fe992013-07-23 17:39:19 +02003346 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3347
3348 if (!stkctr)
3349 return 0;
3350
Willy Tarreau37406352012-04-23 16:16:37 +02003351 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003352 smp->type = SMP_T_UINT;
3353 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003354 if (stkctr_entry(stkctr) != NULL) {
3355 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003356 if (!ptr)
3357 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003358 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau613fe992013-07-23 17:39:19 +02003359 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003360 }
3361 return 1;
3362}
3363
Willy Tarreau53aea102013-07-23 17:39:02 +02003364/* set <smp> to the number of kbytes sent to clients, as found in the
3365 * session's tracked frontend counters. Supports being called as
3366 * "sc[0-9]_kbytes_out" or "src_kbytes_out" only.
3367 */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003368static int
Willy Tarreau53aea102013-07-23 17:39:02 +02003369smp_fetch_sc_kbytes_out(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003370 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003371{
Willy Tarreau53aea102013-07-23 17:39:02 +02003372 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3373
3374 if (!stkctr)
3375 return 0;
3376
Willy Tarreau37406352012-04-23 16:16:37 +02003377 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003378 smp->type = SMP_T_UINT;
3379 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003380 if (stkctr_entry(stkctr) != NULL) {
3381 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003382 if (!ptr)
3383 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003384 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003385 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003386 return 1;
3387}
3388
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003389/* set <smp> to the data rate sent to clients in bytes/s, as found in the
3390 * session's tracked frontend counters. Supports being called as
3391 * "sc[0-9]_bytes_out_rate" or "src_bytes_out_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003392 */
3393static int
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003394smp_fetch_sc_bytes_out_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003395 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003396{
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003397 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
3398
3399 if (!stkctr)
3400 return 0;
3401
Willy Tarreau37406352012-04-23 16:16:37 +02003402 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003403 smp->type = SMP_T_UINT;
3404 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003405 if (stkctr_entry(stkctr) != NULL) {
3406 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003407 if (!ptr)
3408 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003409 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003410 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003411 }
3412 return 1;
3413}
3414
Willy Tarreau563eef42013-07-23 18:32:02 +02003415/* set <smp> to the number of active trackers on the SC entry in the session's
3416 * tracked frontend counters. Supports being called as "sc[0-9]_trackers" only.
3417 */
Willy Tarreau2406db42012-12-09 12:16:43 +01003418static int
Willy Tarreau563eef42013-07-23 18:32:02 +02003419smp_fetch_sc_trackers(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003420 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2406db42012-12-09 12:16:43 +01003421{
Willy Tarreau563eef42013-07-23 18:32:02 +02003422 struct stkctr *stkctr = smp_fetch_sc_stkctr(l4, args, kw);
Willy Tarreau2406db42012-12-09 12:16:43 +01003423
Willy Tarreau563eef42013-07-23 18:32:02 +02003424 if (!stkctr)
Willy Tarreau2406db42012-12-09 12:16:43 +01003425 return 0;
3426
Willy Tarreau563eef42013-07-23 18:32:02 +02003427 smp->flags = SMP_F_VOL_TEST;
3428 smp->type = SMP_T_UINT;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003429 smp->data.uint = stkctr_entry(stkctr)->ref_cnt;
Willy Tarreau563eef42013-07-23 18:32:02 +02003430 return 1;
Willy Tarreaue25c9172013-05-28 18:32:20 +02003431}
3432
Willy Tarreau34db1082012-04-19 17:16:54 +02003433/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003434 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003435 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003436static int
Willy Tarreau281c7992013-01-08 01:23:27 +01003437smp_fetch_table_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003438 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003439{
Willy Tarreau37406352012-04-23 16:16:37 +02003440 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003441 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003442 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003443 return 1;
3444}
3445
Willy Tarreau34db1082012-04-19 17:16:54 +02003446/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003447 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003448 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003449static int
Willy Tarreau281c7992013-01-08 01:23:27 +01003450smp_fetch_table_avl(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003451 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003452{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003453 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003454 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003455 smp->type = SMP_T_UINT;
3456 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003457 return 1;
3458}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003459
Willy Tarreau61612d42012-04-19 18:42:05 +02003460/* Note: must not be declared <const> as its list will be overwritten.
3461 * Please take care of keeping this list alphabetically sorted.
3462 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003463static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau281c7992013-01-08 01:23:27 +01003464 { /* END */ },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003465}};
3466
Willy Tarreau281c7992013-01-08 01:23:27 +01003467/* Note: must not be declared <const> as its list will be overwritten.
3468 * Please take care of keeping this list alphabetically sorted.
3469 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003470static struct sample_fetch_kw_list smp_fetch_keywords = {ILH, {
Willy Tarreau0f791d42013-07-23 19:56:43 +02003471 { "sc_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3472 { "sc_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3473 { "sc_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3474 { "sc_conn_cnt", smp_fetch_sc_conn_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3475 { "sc_conn_cur", smp_fetch_sc_conn_cur, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3476 { "sc_conn_rate", smp_fetch_sc_conn_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3477 { "sc_get_gpc0", smp_fetch_sc_get_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3478 { "sc_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3479 { "sc_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3480 { "sc_http_err_rate", smp_fetch_sc_http_err_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3481 { "sc_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3482 { "sc_http_req_rate", smp_fetch_sc_http_req_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3483 { "sc_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3484 { "sc_kbytes_in", smp_fetch_sc_kbytes_in, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3485 { "sc_kbytes_out", smp_fetch_sc_kbytes_out, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3486 { "sc_sess_cnt", smp_fetch_sc_sess_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3487 { "sc_sess_rate", smp_fetch_sc_sess_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3488 { "sc_tracked", smp_fetch_sc_tracked, ARG2(1,UINT,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3489 { "sc_trackers", smp_fetch_sc_trackers, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3490 { "sc0_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3491 { "sc0_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3492 { "sc0_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3493 { "sc0_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3494 { "sc0_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3495 { "sc0_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3496 { "sc0_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3497 { "sc0_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3498 { "sc0_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3499 { "sc0_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3500 { "sc0_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3501 { "sc0_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3502 { "sc0_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3503 { "sc0_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3504 { "sc0_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3505 { "sc0_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3506 { "sc0_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3507 { "sc0_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3508 { "sc0_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3509 { "sc1_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3510 { "sc1_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3511 { "sc1_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3512 { "sc1_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3513 { "sc1_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3514 { "sc1_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3515 { "sc1_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3516 { "sc1_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3517 { "sc1_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3518 { "sc1_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3519 { "sc1_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3520 { "sc1_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3521 { "sc1_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3522 { "sc1_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3523 { "sc1_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3524 { "sc1_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3525 { "sc1_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3526 { "sc1_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3527 { "sc1_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3528 { "sc2_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3529 { "sc2_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3530 { "sc2_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3531 { "sc2_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3532 { "sc2_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3533 { "sc2_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3534 { "sc2_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3535 { "sc2_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3536 { "sc2_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3537 { "sc2_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3538 { "sc2_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3539 { "sc2_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3540 { "sc2_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3541 { "sc2_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3542 { "sc2_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3543 { "sc2_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3544 { "sc2_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3545 { "sc2_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3546 { "sc2_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3547 { "src_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3548 { "src_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3549 { "src_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3550 { "src_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3551 { "src_conn_cur", smp_fetch_sc_conn_cur, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3552 { "src_conn_rate", smp_fetch_sc_conn_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3553 { "src_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3554 { "src_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3555 { "src_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3556 { "src_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3557 { "src_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3558 { "src_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3559 { "src_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3560 { "src_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3561 { "src_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3562 { "src_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3563 { "src_sess_rate", smp_fetch_sc_sess_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3564 { "src_updt_conn_cnt", smp_fetch_src_updt_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3565 { "table_avl", smp_fetch_table_avl, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3566 { "table_cnt", smp_fetch_table_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
Willy Tarreau281c7992013-01-08 01:23:27 +01003567 { /* END */ },
3568}};
3569
Willy Tarreau8b22a712010-06-18 17:46:06 +02003570__attribute__((constructor))
3571static void __session_init(void)
3572{
Willy Tarreau281c7992013-01-08 01:23:27 +01003573 sample_register_fetches(&smp_fetch_keywords);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003574 acl_register_keywords(&acl_kws);
3575}
3576
Willy Tarreaubaaee002006-06-26 02:48:02 +02003577/*
3578 * Local variables:
3579 * c-indent-level: 8
3580 * c-basic-offset: 8
3581 * End:
3582 */