blob: 9663747e1f08ec59828b5e0661e254a0f01de06e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau87b09662015-04-03 00:22:06 +02002 * Stream 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 Tarreaufeb76402015-04-03 14:10:06 +020040#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020041#include <proto/stream.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010042#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010043#include <proto/proto_http.h>
44#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020045#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010047#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020048#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010049#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010050#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010051#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052
Willy Tarreau87b09662015-04-03 00:22:06 +020053struct pool_head *pool2_stream;
54struct list streams;
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Willy Tarreau87b09662015-04-03 00:22:06 +020056/* list of streams waiting for at least one buffer */
Willy Tarreaubf883e02014-11-25 21:10:35 +010057struct list buffer_wq = LIST_HEAD_INIT(buffer_wq);
58
Willy Tarreau9903f0e2015-04-04 18:50:31 +020059/* This function is called from the session handler which detects the end of
Willy Tarreau87b09662015-04-03 00:22:06 +020060 * handshake, in order to complete initialization of a valid stream. It must
Willy Tarreau02d86382015-04-05 12:00:52 +020061 * be called with an embryonic session. It returns the pointer to the newly
62 * created stream, or NULL in case of fatal error. For now the client-side
63 * end point is taken from the session's origin, which must be valid.
Willy Tarreaud1769b82015-04-06 00:25:48 +020064 * The task's context is set to the new stream, and its function is set to
65 * process_stream(). Target and analysers are null.
Willy Tarreau2542b532012-08-31 16:01:23 +020066 */
Willy Tarreau02d86382015-04-05 12:00:52 +020067struct stream *stream_new(struct session *sess, struct task *t)
Willy Tarreau2542b532012-08-31 16:01:23 +020068{
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020069 struct stream *s;
Willy Tarreauf2b98742015-04-05 01:30:42 +020070 struct connection *conn = objt_conn(sess->origin);
Willy Tarreau470280e2015-04-05 01:33:13 +020071 struct appctx *appctx = objt_appctx(sess->origin);
Willy Tarreau2542b532012-08-31 16:01:23 +020072
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020073 if (unlikely((s = pool_alloc2(pool2_stream)) == NULL))
Willy Tarreau02d86382015-04-05 12:00:52 +020074 return s;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020075
76 /* minimum stream initialization required for an embryonic stream is
77 * fairly low. We need very little to execute L4 ACLs, then we need a
78 * task to make the client-side connection live on its own.
79 * - flags
80 * - stick-entry tracking
81 */
82 s->flags = 0;
Willy Tarreaufb9f5842015-04-05 18:19:23 +020083 s->logs.logwait = sess->fe->to_log;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020084 s->logs.level = 0;
Willy Tarreau99eb0f12015-04-05 12:03:54 +020085 s->logs.accept_date = sess->accept_date; /* user-visible date for logging */
86 s->logs.tv_accept = sess->tv_accept; /* corrected date for internal use */
87 tv_zero(&s->logs.tv_request);
88 s->logs.t_queue = -1;
89 s->logs.t_connect = -1;
90 s->logs.t_data = -1;
91 s->logs.t_close = 0;
92 s->logs.bytes_in = s->logs.bytes_out = 0;
93 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
94 s->logs.srv_queue_size = 0; /* we will get this number soon */
95
96 /* default logging function */
97 s->do_log = strm_log;
98
99 /* default error reporting function, may be changed by analysers */
100 s->srv_error = default_srv_error;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200101
102 /* Initialise the current rule list pointer to NULL. We are sure that
103 * any rulelist match the NULL pointer.
104 */
105 s->current_rule_list = NULL;
106
107 memset(s->stkctr, 0, sizeof(s->stkctr));
108
109 s->sess = sess;
110 s->si[0].flags = SI_FL_NONE;
111 s->si[1].flags = SI_FL_ISBACK;
112
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200113 s->uniq_id = global.req_count++;
114
Willy Tarreau87b09662015-04-03 00:22:06 +0200115 /* OK, we're keeping the stream, so let's properly initialize the stream */
116 LIST_ADDQ(&streams, &s->list);
Willy Tarreau2542b532012-08-31 16:01:23 +0200117 LIST_INIT(&s->back_refs);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100118 LIST_INIT(&s->buffer_wait);
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200119
Willy Tarreaue7dff022015-04-03 01:14:29 +0200120 s->flags |= SF_INITIALIZED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200121 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200122
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200123 s->task = t;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200124 t->process = process_stream;
Willy Tarreau2542b532012-08-31 16:01:23 +0200125 t->context = s;
126 t->expire = TICK_ETERNITY;
127
Willy Tarreau87b09662015-04-03 00:22:06 +0200128 /* Note: initially, the stream's backend points to the frontend.
Willy Tarreau2542b532012-08-31 16:01:23 +0200129 * This changes later when switching rules are executed or
130 * when the default backend is assigned.
131 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200132 s->be = sess->fe;
William Lallemand82fe75c2012-10-23 10:25:10 +0200133 s->comp_algo = NULL;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100134 s->req.buf = s->res.buf = NULL;
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200135 s->req_cap = NULL;
136 s->res_cap = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200137
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200138 /* this part should be common with other protocols */
Willy Tarreau819d3322014-11-28 12:12:34 +0100139 si_reset(&s->si[0]);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200140 si_set_state(&s->si[0], SI_ST_EST);
141
Willy Tarreau1f52bb22015-04-04 14:28:46 +0200142 /* attach the incoming connection to the stream interface now. */
Willy Tarreauf2b98742015-04-05 01:30:42 +0200143 if (conn)
144 si_attach_conn(&s->si[0], conn);
Willy Tarreau470280e2015-04-05 01:33:13 +0200145 else if (appctx)
146 si_attach_appctx(&s->si[0], appctx);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200147
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200148 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200149 s->si[0].flags |= SI_FL_INDEP_STR;
150
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200151 /* pre-initialize the other side's stream interface to an INIT state. The
152 * callbacks will be initialized before attempting to connect.
153 */
Willy Tarreau819d3322014-11-28 12:12:34 +0100154 si_reset(&s->si[1]);
Willy Tarreau2a6e8802013-10-24 15:50:53 +0200155 si_detach(&s->si[1]);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200156
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200157 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200158 s->si[1].flags |= SI_FL_INDEP_STR;
159
Willy Tarreau87b09662015-04-03 00:22:06 +0200160 stream_init_srv_conn(s);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200161 s->target = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200162 s->pend_pos = NULL;
163
164 /* init store persistence */
165 s->store_count = 0;
166
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100167 channel_init(&s->req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100168 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreaud1769b82015-04-06 00:25:48 +0200169 s->req.analysers = 0;
170 channel_auto_connect(&s->req); /* don't wait to establish connection */
171 channel_auto_close(&s->req); /* let the producer forward close requests */
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200172
173 s->req.rto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100174 s->req.wto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100175 s->req.rex = TICK_ETERNITY;
176 s->req.wex = TICK_ETERNITY;
177 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200178
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100179 channel_init(&s->res);
Willy Tarreauef573c02014-11-28 14:17:09 +0100180 s->res.flags |= CF_ISRESP;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100181 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200182
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200183 if (sess->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100184 s->req.flags |= CF_NEVER_WAIT;
185 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200186 }
187
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200188 s->res.wto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100189 s->res.rto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100190 s->res.rex = TICK_ETERNITY;
191 s->res.wex = TICK_ETERNITY;
192 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200193
Willy Tarreaueee5b512015-04-03 23:46:31 +0200194 s->txn = NULL;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100195
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100196 HLUA_INIT(&s->hlua);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100197
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200198 /* finish initialization of the accepted file descriptor */
Willy Tarreauf2b98742015-04-05 01:30:42 +0200199 if (conn)
200 conn_data_want_recv(conn);
Willy Tarreau470280e2015-04-05 01:33:13 +0200201 else if (appctx)
202 s->si[0].flags |= SI_FL_WAIT_DATA;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200203
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200204 if (sess->fe->accept && sess->fe->accept(s) < 0)
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200205 goto out_fail_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200206
Willy Tarreauf2b98742015-04-05 01:30:42 +0200207 if (conn) {
208 /* if logs require transport layer information, note it on the connection */
209 if (s->logs.logwait & LW_XPRT)
210 conn->flags |= CO_FL_XPRT_TRACKED;
Willy Tarreau93dbc2b2012-10-12 18:01:49 +0200211
Willy Tarreauf2b98742015-04-05 01:30:42 +0200212 /* we want the connection handler to notify the stream interface about updates. */
213 conn->flags |= CO_FL_WAKE_DATA;
214 }
Willy Tarreau2542b532012-08-31 16:01:23 +0200215
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200216 /* it is important not to call the wakeup function directly but to
217 * pass through task_wakeup(), because this one knows how to apply
218 * priorities to tasks.
219 */
220 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreau02d86382015-04-05 12:00:52 +0200221 return s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200222
223 /* Error unrolling */
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200224 out_fail_accept:
Willy Tarreau3b246412014-11-25 17:10:33 +0100225 LIST_DEL(&s->list);
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200226 pool_free2(pool2_stream, s);
Willy Tarreau02d86382015-04-05 12:00:52 +0200227 return NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200228}
229
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200231 * frees the context associated to a stream. It must have been removed first.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200232 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200233static void stream_free(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200234{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200235 struct session *sess = strm_sess(s);
236 struct proxy *fe = sess->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100237 struct bref *bref, *back;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200238 struct connection *cli_conn = objt_conn(sess->origin);
Willy Tarreaua4cda672010-06-06 18:28:49 +0200239 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100240
Willy Tarreaubaaee002006-06-26 02:48:02 +0200241 if (s->pend_pos)
242 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100243
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100244 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200245 if (s->flags & SF_CURR_SESS) {
246 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100247 objt_server(s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100248 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100249 if (may_dequeue_tasks(objt_server(s->target), s->be))
250 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100251 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100252
Willy Tarreau7c669d72008-06-20 15:04:11 +0200253 if (unlikely(s->srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200254 /* the stream still has a reserved slot on a server, but
Willy Tarreau7c669d72008-06-20 15:04:11 +0200255 * it should normally be only the same as the one above,
256 * so this should not happen in fact.
257 */
258 sess_change_server(s, NULL);
259 }
260
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100261 if (s->req.pipe)
262 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100263
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100264 if (s->res.pipe)
265 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100266
Willy Tarreaubf883e02014-11-25 21:10:35 +0100267 /* We may still be present in the buffer wait queue */
268 if (!LIST_ISEMPTY(&s->buffer_wait)) {
269 LIST_DEL(&s->buffer_wait);
270 LIST_INIT(&s->buffer_wait);
271 }
272
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100273 b_drop(&s->req.buf);
274 b_drop(&s->res.buf);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100275 if (!LIST_ISEMPTY(&buffer_wq))
Willy Tarreau87b09662015-04-03 00:22:06 +0200276 stream_offer_buffers();
Willy Tarreau9b28e032012-10-12 23:49:43 +0200277
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100278 hlua_ctx_destroy(&s->hlua);
Willy Tarreaueee5b512015-04-03 23:46:31 +0200279 if (s->txn)
280 http_end_txn(s);
Willy Tarreau46023632010-01-07 22:51:47 +0100281
Willy Tarreau1e954912012-10-12 17:50:05 +0200282 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200283 if (cli_conn)
284 conn_force_close(cli_conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200285
Willy Tarreaua4cda672010-06-06 18:28:49 +0200286 for (i = 0; i < s->store_count; i++) {
287 if (!s->store[i].ts)
288 continue;
289 stksess_free(s->store[i].table, s->store[i].ts);
290 s->store[i].ts = NULL;
291 }
292
Willy Tarreaueee5b512015-04-03 23:46:31 +0200293 if (s->txn) {
294 pool_free2(pool2_hdr_idx, s->txn->hdr_idx.v);
295 pool_free2(pool2_http_txn, s->txn);
296 s->txn = NULL;
297 }
298
Willy Tarreau92fb9832007-10-16 17:34:28 +0200299 if (fe) {
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200300 pool_free2(fe->rsp_cap_pool, s->res_cap);
301 pool_free2(fe->req_cap_pool, s->req_cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200302 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100303
Willy Tarreau87b09662015-04-03 00:22:06 +0200304 stream_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200305
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100306 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100307 /* we have to unlink all watchers. We must not relink them if
Willy Tarreau87b09662015-04-03 00:22:06 +0200308 * this stream was the last one in the list.
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100309 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100310 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100311 LIST_INIT(&bref->users);
Willy Tarreau87b09662015-04-03 00:22:06 +0200312 if (s->list.n != &streams)
313 LIST_ADDQ(&LIST_ELEM(s->list.n, struct stream *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100314 bref->ref = s->list.n;
315 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100316 LIST_DEL(&s->list);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200317 si_release_endpoint(&s->si[1]);
318 si_release_endpoint(&s->si[0]);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200319
320 /* FIXME: for now we have a 1:1 relation between stream and session so
321 * the stream must free the session.
322 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200323 pool_free2(pool2_stream, s);
Willy Tarreau11c36242015-04-04 15:54:03 +0200324 session_free(sess);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200325
326 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200327 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200328 pool_flush2(pool2_buffer);
Willy Tarreau63986c72015-04-03 22:55:33 +0200329 pool_flush2(pool2_http_txn);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200330 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200331 pool_flush2(pool2_requri);
332 pool_flush2(pool2_capture);
Willy Tarreau87b09662015-04-03 00:22:06 +0200333 pool_flush2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200334 pool_flush2(pool2_session);
Willy Tarreau3a5e0602014-11-13 16:46:28 +0100335 pool_flush2(pool2_connection);
336 pool_flush2(pool2_pendconn);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200337 pool_flush2(fe->req_cap_pool);
338 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200339 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200340}
341
Willy Tarreau78955f42014-12-28 13:09:02 +0100342/* Allocates a receive buffer for channel <chn>, but only if it's guaranteed
343 * that it's not the last available buffer or it's the response buffer. Unless
344 * the buffer is the response buffer, an extra control is made so that we always
345 * keep <tune.buffers.reserved> buffers available after this allocation. To be
346 * called at the beginning of recv() callbacks to ensure that the required
347 * buffers are properly allocated. Returns 0 in case of failure, non-zero
348 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100349 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200350int stream_alloc_recv_buffer(struct channel *chn)
Willy Tarreau656859d2014-11-25 19:46:36 +0100351{
Willy Tarreau87b09662015-04-03 00:22:06 +0200352 struct stream *s;
Willy Tarreau656859d2014-11-25 19:46:36 +0100353 struct buffer *b;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100354 int margin = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100355
Willy Tarreau78955f42014-12-28 13:09:02 +0100356 if (!(chn->flags & CF_ISRESP))
Willy Tarreaua24adf02014-11-27 01:11:56 +0100357 margin = global.tune.reserved_bufs;
358
Willy Tarreau78955f42014-12-28 13:09:02 +0100359 s = chn_sess(chn);
360
361 b = b_alloc_margin(&chn->buf, margin);
Willy Tarreau656859d2014-11-25 19:46:36 +0100362 if (b)
363 return 1;
364
Willy Tarreaubf883e02014-11-25 21:10:35 +0100365 if (LIST_ISEMPTY(&s->buffer_wait))
366 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100367 return 0;
368}
369
Willy Tarreau87b09662015-04-03 00:22:06 +0200370/* Allocates a work buffer for stream <s>. It is meant to be called inside
371 * process_stream(). It will only allocate the side needed for the function
Willy Tarreaua24adf02014-11-27 01:11:56 +0100372 * to work fine. For a regular connection, only the response is needed so that
373 * an error message may be built and returned. In case where the initiator is
374 * an applet (eg: peers), then we need to allocate the request buffer for the
375 * applet to be able to send its data (in this case a response is not needed).
376 * Request buffers are never picked from the reserved pool, but response
377 * buffers may be allocated from the reserve. This is critical to ensure that
378 * a response may always flow and will never block a server from releasing a
379 * connection. Returns 0 in case of failure, non-zero otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100380 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200381int stream_alloc_work_buffer(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100382{
Willy Tarreaua24adf02014-11-27 01:11:56 +0100383 int margin;
384 struct buffer **buf;
385
386 if (objt_appctx(s->si[0].end)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100387 buf = &s->req.buf;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100388 margin = global.tune.reserved_bufs;
389 }
390 else {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100391 buf = &s->res.buf;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100392 margin = 0;
393 }
394
Willy Tarreaubf883e02014-11-25 21:10:35 +0100395 if (!LIST_ISEMPTY(&s->buffer_wait)) {
396 LIST_DEL(&s->buffer_wait);
397 LIST_INIT(&s->buffer_wait);
398 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100399
Willy Tarreaua24adf02014-11-27 01:11:56 +0100400 if (b_alloc_margin(buf, margin))
Willy Tarreau656859d2014-11-25 19:46:36 +0100401 return 1;
402
Willy Tarreaubf883e02014-11-25 21:10:35 +0100403 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100404 return 0;
405}
406
407/* releases unused buffers after processing. Typically used at the end of the
Willy Tarreaubf883e02014-11-25 21:10:35 +0100408 * update() functions. It will try to wake up as many tasks as the number of
Willy Tarreau87b09662015-04-03 00:22:06 +0200409 * buffers that it releases. In practice, most often streams are blocked on
Willy Tarreaubf883e02014-11-25 21:10:35 +0100410 * a single buffer, so it makes sense to try to wake two up when two buffers
411 * are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100412 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200413void stream_release_buffers(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100414{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100415 if (s->req.buf->size && buffer_empty(s->req.buf))
416 b_free(&s->req.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100417
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100418 if (s->res.buf->size && buffer_empty(s->res.buf))
419 b_free(&s->res.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100420
Willy Tarreaubf883e02014-11-25 21:10:35 +0100421 /* if we're certain to have at least 1 buffer available, and there is
422 * someone waiting, we can wake up a waiter and offer them.
423 */
Willy Tarreaua24adf02014-11-27 01:11:56 +0100424 if (!LIST_ISEMPTY(&buffer_wq))
Willy Tarreau87b09662015-04-03 00:22:06 +0200425 stream_offer_buffers();
Willy Tarreaubf883e02014-11-25 21:10:35 +0100426}
427
Willy Tarreau87b09662015-04-03 00:22:06 +0200428/* Runs across the list of pending streams waiting for a buffer and wakes one
Willy Tarreaua24adf02014-11-27 01:11:56 +0100429 * up if buffers are available. Will stop when the run queue reaches <rqlimit>.
Willy Tarreau87b09662015-04-03 00:22:06 +0200430 * Should not be called directly, use stream_offer_buffers() instead.
Willy Tarreaubf883e02014-11-25 21:10:35 +0100431 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200432void __stream_offer_buffers(int rqlimit)
Willy Tarreaubf883e02014-11-25 21:10:35 +0100433{
Willy Tarreau87b09662015-04-03 00:22:06 +0200434 struct stream *sess, *bak;
Willy Tarreaubf883e02014-11-25 21:10:35 +0100435
436 list_for_each_entry_safe(sess, bak, &buffer_wq, buffer_wait) {
Willy Tarreaua24adf02014-11-27 01:11:56 +0100437 if (rqlimit <= run_queue)
438 break;
439
Willy Tarreaubf883e02014-11-25 21:10:35 +0100440 if (sess->task->state & TASK_RUNNING)
441 continue;
442
443 LIST_DEL(&sess->buffer_wait);
444 LIST_INIT(&sess->buffer_wait);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100445 task_wakeup(sess->task, TASK_WOKEN_RES);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100446 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100447}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200448
449/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau87b09662015-04-03 00:22:06 +0200450int init_stream()
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200451{
Willy Tarreau87b09662015-04-03 00:22:06 +0200452 LIST_INIT(&streams);
453 pool2_stream = create_pool("stream", sizeof(struct stream), MEM_F_SHARED);
454 return pool2_stream != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200455}
456
Willy Tarreau87b09662015-04-03 00:22:06 +0200457void stream_process_counters(struct stream *s)
Willy Tarreau30e71012007-11-26 20:15:35 +0100458{
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200459 struct session *sess = s->sess;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100460 unsigned long long bytes;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100461 void *ptr;
462 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100463
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100464 bytes = s->req.total - s->logs.bytes_in;
465 s->logs.bytes_in = s->req.total;
466 if (bytes) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200467 sess->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100468
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100469 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100470
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100471 if (objt_server(s->target))
472 objt_server(s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200473
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200474 if (sess->listener && sess->listener->counters)
475 sess->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200476
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100477 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200478 struct stkctr *stkctr = &s->stkctr[i];
479
480 if (!stkctr_entry(stkctr)) {
481 stkctr = &sess->stkctr[i];
482 if (!stkctr_entry(stkctr))
483 continue;
484 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200485
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200486 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100487 if (ptr)
488 stktable_data_cast(ptr, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200489
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200490 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_RATE);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100491 if (ptr)
492 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200493 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Willy Tarreau30e71012007-11-26 20:15:35 +0100494 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100495 }
496
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100497 bytes = s->res.total - s->logs.bytes_out;
498 s->logs.bytes_out = s->res.total;
499 if (bytes) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200500 sess->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100501
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100502 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100503
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100504 if (objt_server(s->target))
505 objt_server(s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200506
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200507 if (sess->listener && sess->listener->counters)
508 sess->listener->counters->bytes_out += bytes;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200509
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100510 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200511 struct stkctr *stkctr = &s->stkctr[i];
512
513 if (!stkctr_entry(stkctr)) {
514 stkctr = &sess->stkctr[i];
515 if (!stkctr_entry(stkctr))
516 continue;
517 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200518
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200519 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100520 if (ptr)
521 stktable_data_cast(ptr, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200522
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200523 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_RATE);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100524 if (ptr)
525 update_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200526 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Willy Tarreau30e71012007-11-26 20:15:35 +0100527 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100528 }
529}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200530
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100531/* This function is called with (si->state == SI_ST_CON) meaning that a
532 * connection was attempted and that the file descriptor is already allocated.
533 * We must check for establishment, error and abort. Possible output states
534 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
535 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
Willy Tarreau87b09662015-04-03 00:22:06 +0200536 * otherwise 1. This only works with connection-based streams.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100537 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200538static int sess_update_st_con_tcp(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100539{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100540 struct stream_interface *si = &s->si[1];
541 struct channel *req = &s->req;
542 struct channel *rep = &s->res;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200543 struct connection *srv_conn = __objt_conn(si->end);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100544
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100545 /* If we got an error, or if nothing happened and the connection timed
546 * out, we must give up. The CER state handler will take care of retry
547 * attempts and error reports.
548 */
549 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau103197d2014-11-28 15:26:12 +0100550 if (unlikely(req->flags & CF_WRITE_PARTIAL)) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100551 /* Some data were sent past the connection establishment,
552 * so we need to pretend we're established to log correctly
553 * and let later states handle the failure.
554 */
Willy Tarreaue3224e82012-10-29 22:41:31 +0100555 si->state = SI_ST_EST;
556 si->err_type = SI_ET_DATA_ERR;
Willy Tarreau103197d2014-11-28 15:26:12 +0100557 rep->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreaue3224e82012-10-29 22:41:31 +0100558 return 1;
559 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100560 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100561 si->state = SI_ST_CER;
Willy Tarreau0ede5a32012-12-08 08:44:02 +0100562
Willy Tarreauf79c8172013-10-21 16:30:56 +0200563 conn_force_close(srv_conn);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100564
565 if (si->err_type)
566 return 0;
567
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100568 if (si->flags & SI_FL_ERR)
569 si->err_type = SI_ET_CONN_ERR;
570 else
571 si->err_type = SI_ET_CONN_TO;
572 return 0;
573 }
574
575 /* OK, maybe we want to abort */
Willy Tarreaua7a7ebc2012-12-30 00:50:35 +0100576 if (!(req->flags & CF_WRITE_PARTIAL) &&
577 unlikely((rep->flags & CF_SHUTW) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200578 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
579 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100580 s->be->options & PR_O_ABRT_CLOSE)))) {
581 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200582 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100583 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau84455332009-03-15 22:34:05 +0100584 if (s->srv_error)
585 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100586 return 1;
587 }
588
589 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200590 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100591 return 1;
592
593 /* OK, this means that a connection succeeded. The caller will be
594 * responsible for handling the transition from CON to EST.
595 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100596 si->state = SI_ST_EST;
597 si->err_type = SI_ET_NONE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100598 return 1;
599}
600
601/* This function is called with (si->state == SI_ST_CER) meaning that a
602 * previous connection attempt has failed and that the file descriptor
603 * has already been released. Possible causes include asynchronous error
604 * notification and time out. Possible output states are SI_ST_CLO when
605 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
606 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
607 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
608 * marked as in error state. It returns 0.
609 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200610static int sess_update_st_cer(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100611{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100612 struct stream_interface *si = &s->si[1];
613
Willy Tarreau87b09662015-04-03 00:22:06 +0200614 /* we probably have to release last stream from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100615 if (objt_server(s->target)) {
616 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100617
Willy Tarreaue7dff022015-04-03 01:14:29 +0200618 if (s->flags & SF_CURR_SESS) {
619 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100620 objt_server(s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100621 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100622 }
623
624 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200625 si->conn_retries--;
626 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100627 if (!si->err_type) {
628 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100629 }
630
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100631 if (objt_server(s->target))
632 objt_server(s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100633 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100634 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100635 if (may_dequeue_tasks(objt_server(s->target), s->be))
636 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100637
638 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200639 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100640 s->req.flags |= CF_WRITE_ERROR;
641 s->res.flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100642
643 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100644 if (s->srv_error)
645 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100646 return 0;
647 }
648
649 /* If the "redispatch" option is set on the backend, we are allowed to
650 * retry on another server for the last retry. In order to achieve this,
Willy Tarreau87b09662015-04-03 00:22:06 +0200651 * we must mark the stream unassigned, and eventually clear the DIRECT
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100652 * bit to ignore any persistence cookie. We won't count a retry nor a
653 * redispatch yet, because this will depend on what server is selected.
Willy Tarreau33a14e52014-06-13 17:49:40 +0200654 * If the connection is not persistent, the balancing algorithm is not
655 * determinist (round robin) and there is more than one active server,
656 * we accept to perform an immediate redispatch without waiting since
657 * we don't care about this particular server.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100658 */
Willy Tarreau33a14e52014-06-13 17:49:40 +0200659 if (objt_server(s->target) &&
660 (si->conn_retries == 0 ||
Willy Tarreaue7dff022015-04-03 01:14:29 +0200661 (!(s->flags & SF_DIRECT) && s->be->srv_act > 1 &&
Willy Tarreau33a14e52014-06-13 17:49:40 +0200662 ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR))) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +0200663 s->be->options & PR_O_REDISP && !(s->flags & SF_FORCE_PRST)) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100664 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100665 if (may_dequeue_tasks(objt_server(s->target), s->be))
666 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100667
Willy Tarreaue7dff022015-04-03 01:14:29 +0200668 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100669 si->state = SI_ST_REQ;
670 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100671 if (objt_server(s->target))
672 objt_server(s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100673 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100674 si->state = SI_ST_ASS;
675 }
676
677 if (si->flags & SI_FL_ERR) {
678 /* The error was an asynchronous connection error, and we will
679 * likely have to retry connecting to the same server, most
680 * likely leading to the same result. To avoid this, we wait
Willy Tarreaub0290662014-06-13 17:04:44 +0200681 * MIN(one second, connect timeout) before retrying.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100682 */
683
Willy Tarreaub0290662014-06-13 17:04:44 +0200684 int delay = 1000;
685
686 if (s->be->timeout.connect && s->be->timeout.connect < delay)
687 delay = s->be->timeout.connect;
688
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100689 if (!si->err_type)
690 si->err_type = SI_ET_CONN_ERR;
691
Willy Tarreaudb6d0122014-06-13 17:40:15 +0200692 /* only wait when we're retrying on the same server */
693 if (si->state == SI_ST_ASS ||
694 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
695 (s->be->srv_act <= 1)) {
696 si->state = SI_ST_TAR;
697 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
698 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100699 return 0;
700 }
701 return 0;
702}
703
704/*
705 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200706 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200707 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100708 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200709static void sess_establish(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100710{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100711 struct stream_interface *si = &s->si[1];
712 struct channel *req = &s->req;
713 struct channel *rep = &s->res;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100714
Willy Tarreau0e37f1c2013-12-31 23:06:46 +0100715 /* First, centralize the timers information */
716 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
717 si->exp = TICK_ETERNITY;
718
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100719 if (objt_server(s->target))
720 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100721
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100722 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100723 /* if the user wants to log as soon as possible, without counting
724 * bytes from the server, then this is the right moment. */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200725 if (!LIST_ISEMPTY(&strm_fe(s)->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100726 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100727 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100728 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100729 }
730 else {
Willy Tarreaud81ca042013-12-31 22:33:13 +0100731 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100732 }
733
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200734 rep->analysers |= strm_fe(s)->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200735 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau644c1012014-04-30 18:11:11 +0200736 if (req->flags & CF_WAKE_CONNECT) {
737 req->flags |= CF_WAKE_ONCE;
738 req->flags &= ~CF_WAKE_CONNECT;
739 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200740 if (objt_conn(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200741 /* real connections have timeouts */
742 req->wto = s->be->timeout.server;
743 rep->rto = s->be->timeout.server;
744 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100745 req->wex = TICK_ETERNITY;
746}
747
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100748/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
749 * SI_ST_TAR. Other input states are simply ignored.
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100750 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
751 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
752 * conditions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100753 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200754static void sess_update_stream_int(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100755{
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100756 struct server *srv = objt_server(s->target);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100757 struct stream_interface *si = &s->si[1];
Willy Tarreau103197d2014-11-28 15:26:12 +0100758 struct channel *req = &s->req;
Willy Tarreau827aee92011-03-10 16:55:02 +0100759
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100760 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 +0100761 now_ms, __FUNCTION__,
762 s,
Willy Tarreau103197d2014-11-28 15:26:12 +0100763 req, s->rep,
764 req->rex, s->res.wex,
765 req->flags, s->res.flags,
766 req->buf->i, req->buf->o, s->res.buf->i, s->res.buf->o, s->si[0].state, req->cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100767
768 if (si->state == SI_ST_ASS) {
769 /* Server assigned to connection request, we have to try to connect now */
770 int conn_err;
771
772 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100773 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100774
Willy Tarreaue7dff022015-04-03 01:14:29 +0200775 if (conn_err == SF_ERR_NONE) {
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100776 /* state = SI_ST_CON or SI_ST_EST now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100777 if (srv)
778 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500779 if (srv)
780 srv_set_sess_last(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100781 return;
782 }
783
784 /* We have received a synchronous error. We might have to
785 * abort, retry immediately or redispatch.
786 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200787 if (conn_err == SF_ERR_INTERNAL) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100788 if (!si->err_type) {
789 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100790 }
791
Willy Tarreau827aee92011-03-10 16:55:02 +0100792 if (srv)
793 srv_inc_sess_ctr(srv);
794 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500795 srv_set_sess_last(srv);
796 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +0100797 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100798 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100799
Willy Tarreau87b09662015-04-03 00:22:06 +0200800 /* release other streams waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100801 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100802 if (may_dequeue_tasks(srv, s->be))
803 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100804
805 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200806 si_shutr(si);
807 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100808 req->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100809
810 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
811
Willy Tarreau87b09662015-04-03 00:22:06 +0200812 /* no stream was ever accounted for this server */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100813 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100814 if (s->srv_error)
815 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100816 return;
817 }
818
819 /* We are facing a retryable error, but we don't want to run a
820 * turn-around now, as the problem is likely a source port
821 * allocation problem, so we want to retry now.
822 */
823 si->state = SI_ST_CER;
824 si->flags &= ~SI_FL_ERR;
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100825 sess_update_st_cer(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100826 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
827 return;
828 }
829 else if (si->state == SI_ST_QUE) {
830 /* connection request was queued, check for any update */
831 if (!s->pend_pos) {
832 /* The connection is not in the queue anymore. Either
833 * we have a server connection slot available and we
834 * go directly to the assigned state, or we need to
835 * load-balance first and go to the INI state.
836 */
837 si->exp = TICK_ETERNITY;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200838 if (unlikely(!(s->flags & SF_ASSIGNED)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100839 si->state = SI_ST_REQ;
840 else {
841 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
842 si->state = SI_ST_ASS;
843 }
844 return;
845 }
846
847 /* Connection request still in queue... */
848 if (si->flags & SI_FL_EXP) {
849 /* ... and timeout expired */
850 si->exp = TICK_ETERNITY;
851 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100852 if (srv)
853 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100854 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200855 si_shutr(si);
856 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100857 req->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858 if (!si->err_type)
859 si->err_type = SI_ET_QUEUE_TO;
860 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100861 if (s->srv_error)
862 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100863 return;
864 }
865
866 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau103197d2014-11-28 15:26:12 +0100867 if ((req->flags & (CF_READ_ERROR)) ||
868 ((req->flags & CF_SHUTW_NOW) && /* empty and client aborted */
869 (channel_is_empty(req) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100870 /* give up */
871 si->exp = TICK_ETERNITY;
872 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200873 si_shutr(si);
874 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100875 si->err_type |= SI_ET_QUEUE_ABRT;
876 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100877 if (s->srv_error)
878 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100879 return;
880 }
881
882 /* Nothing changed */
883 return;
884 }
885 else if (si->state == SI_ST_TAR) {
886 /* Connection request might be aborted */
Willy Tarreau103197d2014-11-28 15:26:12 +0100887 if ((req->flags & (CF_READ_ERROR)) ||
888 ((req->flags & CF_SHUTW_NOW) && /* empty and client aborted */
889 (channel_is_empty(req) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100890 /* give up */
891 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200892 si_shutr(si);
893 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100894 si->err_type |= SI_ET_CONN_ABRT;
895 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100896 if (s->srv_error)
897 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100898 return;
899 }
900
901 if (!(si->flags & SI_FL_EXP))
902 return; /* still in turn-around */
903
904 si->exp = TICK_ETERNITY;
905
Willy Tarreau87b09662015-04-03 00:22:06 +0200906 /* we keep trying on the same server as long as the stream is
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100907 * marked "assigned".
908 * FIXME: Should we force a redispatch attempt when the server is down ?
909 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200910 if (s->flags & SF_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100911 si->state = SI_ST_ASS;
912 else
913 si->state = SI_ST_REQ;
914 return;
915 }
916}
917
Willy Tarreau87b09662015-04-03 00:22:06 +0200918/* Set correct stream termination flags in case no analyser has done it. It
Simon Hormandec5be42011-06-08 09:19:07 +0900919 * also counts a failed request if the server state has not reached the request
920 * stage.
921 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200922static void sess_set_term_flags(struct stream *s)
Simon Hormandec5be42011-06-08 09:19:07 +0900923{
Willy Tarreaue7dff022015-04-03 01:14:29 +0200924 if (!(s->flags & SF_FINST_MASK)) {
Simon Hormandec5be42011-06-08 09:19:07 +0900925 if (s->si[1].state < SI_ST_REQ) {
926
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200927 strm_fe(s)->fe_counters.failed_req++;
928 if (strm_li(s)->counters)
929 strm_li(s)->counters->failed_req++;
Simon Hormandec5be42011-06-08 09:19:07 +0900930
Willy Tarreaue7dff022015-04-03 01:14:29 +0200931 s->flags |= SF_FINST_R;
Simon Hormandec5be42011-06-08 09:19:07 +0900932 }
933 else if (s->si[1].state == SI_ST_QUE)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200934 s->flags |= SF_FINST_Q;
Simon Hormandec5be42011-06-08 09:19:07 +0900935 else if (s->si[1].state < SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200936 s->flags |= SF_FINST_C;
Simon Hormandec5be42011-06-08 09:19:07 +0900937 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200938 s->flags |= SF_FINST_D;
Simon Hormandec5be42011-06-08 09:19:07 +0900939 else
Willy Tarreaue7dff022015-04-03 01:14:29 +0200940 s->flags |= SF_FINST_L;
Simon Hormandec5be42011-06-08 09:19:07 +0900941 }
942}
943
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100944/* This function initiates a server connection request on a stream interface
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100945 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
946 * a real connection to a server, indicating that a server has been assigned,
947 * or SI_ST_EST for a successful connection to an applet. It may also return
948 * SI_ST_QUE, or SI_ST_CLO upon error.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100949 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200950static void sess_prepare_conn_req(struct stream *s)
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100951{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100952 struct stream_interface *si = &s->si[1];
953
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100954 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 +0100955 now_ms, __FUNCTION__,
956 s,
957 s->req, s->rep,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100958 s->req.rex, s->res.wex,
959 s->req.flags, s->res.flags,
Willy Tarreau350f4872014-11-28 14:42:25 +0100960 s->req.buf->i, s->req.buf->o, s->res.buf->i, s->res.buf->o, s->si[0].state, s->req.cons->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100961
962 if (si->state != SI_ST_REQ)
963 return;
964
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100965 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
966 /* the applet directly goes to the EST state */
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100967 struct appctx *appctx = objt_appctx(si->end);
968
969 if (!appctx || appctx->applet != __objt_applet(s->target))
970 appctx = stream_int_register_handler(si, objt_applet(s->target));
971
972 if (!appctx) {
973 /* No more memory, let's immediately abort. Force the
974 * error code to ignore the ERR_LOCAL which is not a
975 * real error.
976 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200977 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100978
979 si_shutr(si);
980 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100981 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau6bbb2f62013-12-09 17:14:23 +0100982 si->err_type = SI_ET_CONN_RES;
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100983 si->state = SI_ST_CLO;
984 if (s->srv_error)
985 s->srv_error(s, si);
986 return;
987 }
988
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100989 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100990 si->state = SI_ST_EST;
991 si->err_type = SI_ET_NONE;
Willy Tarreaub9a551e2014-04-23 00:35:17 +0200992 be_set_sess_last(s->be);
Willy Tarreaufac4bd12013-11-30 09:21:49 +0100993 /* let sess_establish() finish the job */
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100994 return;
995 }
996
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100997 /* Try to assign a server */
998 if (srv_redispatch_connect(s) != 0) {
999 /* We did not get a server. Either we queued the
1000 * connection request, or we encountered an error.
1001 */
1002 if (si->state == SI_ST_QUE)
1003 return;
1004
1005 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001006 si_shutr(si);
1007 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001008 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001009 if (!si->err_type)
1010 si->err_type = SI_ET_CONN_OTHER;
1011 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001012 if (s->srv_error)
1013 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001014 return;
1015 }
1016
1017 /* The server is assigned */
1018 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1019 si->state = SI_ST_ASS;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001020 be_set_sess_last(s->be);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001021}
1022
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001023/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001024 * if appropriate. The default_backend rule is also considered, then the
1025 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001026 * It returns 1 if the processing can continue on next analysers, or zero if it
1027 * either needs more data or wants to immediately abort the request.
1028 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001029static int process_switching_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001030{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001031 struct persist_rule *prst_rule;
Willy Tarreau192252e2015-04-04 01:47:55 +02001032 struct session *sess = s->sess;
1033 struct proxy *fe = sess->fe;
Willy Tarreau4de91492010-01-22 19:10:05 +01001034
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001035 req->analysers &= ~an_bit;
1036 req->analyse_exp = TICK_ETERNITY;
1037
Willy Tarreau87b09662015-04-03 00:22:06 +02001038 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001039 now_ms, __FUNCTION__,
1040 s,
1041 req,
1042 req->rex, req->wex,
1043 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001044 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001045 req->analysers);
1046
1047 /* now check whether we have some switching rules for this request */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001048 if (!(s->flags & SF_BE_ASSIGNED)) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001049 struct switching_rule *rule;
1050
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001051 list_for_each_entry(rule, &fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001052 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001053
Willy Tarreauf51658d2014-04-23 01:21:56 +02001054 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001055 ret = acl_exec_cond(rule->cond, fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001056 ret = acl_pass(ret);
1057 if (rule->cond->pol == ACL_COND_UNLESS)
1058 ret = !ret;
1059 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001060
1061 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001062 /* If the backend name is dynamic, try to resolve the name.
1063 * If we can't resolve the name, or if any error occurs, break
1064 * the loop and fallback to the default backend.
1065 */
1066 struct proxy *backend;
1067
1068 if (rule->dynamic) {
1069 struct chunk *tmp = get_trash_chunk();
1070 if (!build_logline(s, tmp->str, tmp->size, &rule->be.expr))
1071 break;
1072 backend = findproxy(tmp->str, PR_CAP_BE);
1073 if (!backend)
1074 break;
1075 }
1076 else
1077 backend = rule->be.backend;
1078
Willy Tarreau87b09662015-04-03 00:22:06 +02001079 if (!stream_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001080 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001081 break;
1082 }
1083 }
1084
1085 /* To ensure correct connection accounting on the backend, we
1086 * have to assign one if it was not set (eg: a listen). This
1087 * measure also takes care of correctly setting the default
1088 * backend if any.
1089 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001090 if (!(s->flags & SF_BE_ASSIGNED))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001091 if (!stream_set_backend(s, fe->defbe.be ? fe->defbe.be : s->be))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001092 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001093 }
1094
Willy Tarreaufb356202010-08-03 14:02:05 +02001095 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001096 if (fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001097 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1098 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001099 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001100
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001101 /* as soon as we know the backend, we must check if we have a matching forced or ignored
Willy Tarreau87b09662015-04-03 00:22:06 +02001102 * persistence rule, and report that in the stream.
Willy Tarreau4de91492010-01-22 19:10:05 +01001103 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001104 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001105 int ret = 1;
1106
1107 if (prst_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001108 ret = acl_exec_cond(prst_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4de91492010-01-22 19:10:05 +01001109 ret = acl_pass(ret);
1110 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1111 ret = !ret;
1112 }
1113
1114 if (ret) {
1115 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001116 if (prst_rule->type == PERSIST_TYPE_FORCE) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001117 s->flags |= SF_FORCE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001118 } else {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001119 s->flags |= SF_IGNORE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001120 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001121 break;
1122 }
1123 }
1124
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001125 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001126
1127 sw_failed:
1128 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001129 channel_abort(&s->req);
1130 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001131
Willy Tarreaue7dff022015-04-03 01:14:29 +02001132 if (!(s->flags & SF_ERR_MASK))
1133 s->flags |= SF_ERR_RESOURCE;
1134 if (!(s->flags & SF_FINST_MASK))
1135 s->flags |= SF_FINST_R;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001136
Willy Tarreaueee5b512015-04-03 23:46:31 +02001137 if (s->txn)
1138 s->txn->status = 500;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001139 s->req.analysers = 0;
1140 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001141 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001142}
1143
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001144/* This stream analyser works on a request. It applies all use-server rules on
1145 * it then returns 1. The data must already be present in the buffer otherwise
1146 * they won't match. It always returns 1.
1147 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001148static int process_server_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001149{
1150 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001151 struct session *sess = s->sess;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001152 struct server_rule *rule;
1153
Willy Tarreau87b09662015-04-03 00:22:06 +02001154 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001155 now_ms, __FUNCTION__,
1156 s,
1157 req,
1158 req->rex, req->wex,
1159 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001160 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001161 req->analysers);
1162
Willy Tarreaue7dff022015-04-03 01:14:29 +02001163 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001164 list_for_each_entry(rule, &px->server_rules, list) {
1165 int ret;
1166
Willy Tarreau192252e2015-04-04 01:47:55 +02001167 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001168 ret = acl_pass(ret);
1169 if (rule->cond->pol == ACL_COND_UNLESS)
1170 ret = !ret;
1171
1172 if (ret) {
1173 struct server *srv = rule->srv.ptr;
1174
Willy Tarreau892337c2014-05-13 23:41:20 +02001175 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001176 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001177 (s->flags & SF_FORCE_PRST)) {
1178 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001179 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001180 break;
1181 }
1182 /* if the server is not UP, let's go on with next rules
1183 * just in case another one is suited.
1184 */
1185 }
1186 }
1187 }
1188
1189 req->analysers &= ~an_bit;
1190 req->analyse_exp = TICK_ETERNITY;
1191 return 1;
1192}
1193
Emeric Brun1d33b292010-01-04 15:47:17 +01001194/* This stream analyser works on a request. It applies all sticking rules on
1195 * it then returns 1. The data must already be present in the buffer otherwise
1196 * they won't match. It always returns 1.
1197 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001198static int process_sticking_rules(struct stream *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001199{
1200 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001201 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001202 struct sticking_rule *rule;
1203
Willy Tarreau87b09662015-04-03 00:22:06 +02001204 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001205 now_ms, __FUNCTION__,
1206 s,
1207 req,
1208 req->rex, req->wex,
1209 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001210 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001211 req->analysers);
1212
1213 list_for_each_entry(rule, &px->sticking_rules, list) {
1214 int ret = 1 ;
1215 int i;
1216
Willy Tarreau9667a802013-12-09 12:52:13 +01001217 /* Only the first stick store-request of each table is applied
1218 * and other ones are ignored. The purpose is to allow complex
1219 * configurations which look for multiple entries by decreasing
1220 * order of precision and to stop at the first which matches.
1221 * An example could be a store of the IP address from an HTTP
1222 * header first, then from the source if not found.
1223 */
Emeric Brun1d33b292010-01-04 15:47:17 +01001224 for (i = 0; i < s->store_count; i++) {
1225 if (rule->table.t == s->store[i].table)
1226 break;
1227 }
1228
1229 if (i != s->store_count)
1230 continue;
1231
1232 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001233 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001234 ret = acl_pass(ret);
1235 if (rule->cond->pol == ACL_COND_UNLESS)
1236 ret = !ret;
1237 }
1238
1239 if (ret) {
1240 struct stktable_key *key;
1241
Willy Tarreau192252e2015-04-04 01:47:55 +02001242 key = stktable_fetch_key(rule->table.t, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001243 if (!key)
1244 continue;
1245
1246 if (rule->flags & STK_IS_MATCH) {
1247 struct stksess *ts;
1248
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001249 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001250 if (!(s->flags & SF_ASSIGNED)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001251 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001252 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001253
1254 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001255 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1256 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001257 if (node) {
1258 struct server *srv;
1259
1260 srv = container_of(node, struct server, conf.id);
Willy Tarreau892337c2014-05-13 23:41:20 +02001261 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4de91492010-01-22 19:10:05 +01001262 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001263 (s->flags & SF_FORCE_PRST)) {
1264 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001265 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001266 }
1267 }
1268 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001269 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001270 }
1271 }
1272 if (rule->flags & STK_IS_STORE) {
1273 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1274 struct stksess *ts;
1275
1276 ts = stksess_new(rule->table.t, key);
1277 if (ts) {
1278 s->store[s->store_count].table = rule->table.t;
1279 s->store[s->store_count++].ts = ts;
1280 }
1281 }
1282 }
1283 }
1284 }
1285
1286 req->analysers &= ~an_bit;
1287 req->analyse_exp = TICK_ETERNITY;
1288 return 1;
1289}
1290
1291/* This stream analyser works on a response. It applies all store rules on it
1292 * then returns 1. The data must already be present in the buffer otherwise
1293 * they won't match. It always returns 1.
1294 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001295static int process_store_rules(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001296{
1297 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001298 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001299 struct sticking_rule *rule;
1300 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001301 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001302
Willy Tarreau87b09662015-04-03 00:22:06 +02001303 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001304 now_ms, __FUNCTION__,
1305 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001306 rep,
1307 rep->rex, rep->wex,
1308 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001309 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001310 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001311
1312 list_for_each_entry(rule, &px->storersp_rules, list) {
1313 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001314
Willy Tarreau9667a802013-12-09 12:52:13 +01001315 /* Only the first stick store-response of each table is applied
1316 * and other ones are ignored. The purpose is to allow complex
1317 * configurations which look for multiple entries by decreasing
1318 * order of precision and to stop at the first which matches.
1319 * An example could be a store of a set-cookie value, with a
1320 * fallback to a parameter found in a 302 redirect.
1321 *
1322 * The store-response rules are not allowed to override the
1323 * store-request rules for the same table, but they may coexist.
1324 * Thus we can have up to one store-request entry and one store-
1325 * response entry for the same table at any time.
1326 */
1327 for (i = nbreq; i < s->store_count; i++) {
1328 if (rule->table.t == s->store[i].table)
1329 break;
1330 }
1331
1332 /* skip existing entries for this table */
1333 if (i < s->store_count)
1334 continue;
1335
Emeric Brun1d33b292010-01-04 15:47:17 +01001336 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001337 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001338 ret = acl_pass(ret);
1339 if (rule->cond->pol == ACL_COND_UNLESS)
1340 ret = !ret;
1341 }
1342
1343 if (ret) {
1344 struct stktable_key *key;
1345
Willy Tarreau192252e2015-04-04 01:47:55 +02001346 key = stktable_fetch_key(rule->table.t, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001347 if (!key)
1348 continue;
1349
Willy Tarreau37e340c2013-12-06 23:05:21 +01001350 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001351 struct stksess *ts;
1352
1353 ts = stksess_new(rule->table.t, key);
1354 if (ts) {
1355 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001356 s->store[s->store_count++].ts = ts;
1357 }
1358 }
1359 }
1360 }
1361
1362 /* process store request and store response */
1363 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001364 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001365 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001366
Willy Tarreauc93cd162014-05-13 15:54:22 +02001367 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001368 stksess_free(s->store[i].table, s->store[i].ts);
1369 s->store[i].ts = NULL;
1370 continue;
1371 }
1372
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001373 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1374 if (ts) {
1375 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001376 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001377 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001378 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001379 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001380 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001381
1382 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001383 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001384 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001385 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001386 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001387
1388 rep->analysers &= ~an_bit;
1389 rep->analyse_exp = TICK_ETERNITY;
1390 return 1;
1391}
1392
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001393/* This macro is very specific to the function below. See the comments in
Willy Tarreau87b09662015-04-03 00:22:06 +02001394 * process_stream() below to understand the logic and the tests.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001395 */
1396#define UPDATE_ANALYSERS(real, list, back, flag) { \
1397 list = (((list) & ~(flag)) | ~(back)) & (real); \
1398 back = real; \
1399 if (!(list)) \
1400 break; \
1401 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1402 continue; \
1403}
1404
Willy Tarreau87b09662015-04-03 00:22:06 +02001405/* Processes the client, server, request and response jobs of a stream task,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001406 * then puts it back to the wait queue in a clean state, or cleans up its
1407 * resources if it must be deleted. Returns in <next> the date the task wants
1408 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1409 * nothing too many times, the request and response buffers flags are monitored
1410 * and each function is called only if at least another function has changed at
1411 * least one flag it is interested in.
1412 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001413struct task *process_stream(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001414{
Willy Tarreau827aee92011-03-10 16:55:02 +01001415 struct server *srv;
Willy Tarreau87b09662015-04-03 00:22:06 +02001416 struct stream *s = t->context;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001417 struct session *sess = s->sess;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001418 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001419 unsigned int rq_prod_last, rq_cons_last;
1420 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001421 unsigned int req_ana_back;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001422 struct channel *req, *res;
1423 struct stream_interface *si_f, *si_b;
1424
1425 req = &s->req;
1426 res = &s->res;
1427
1428 si_f = &s->si[0];
1429 si_b = &s->si[1];
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001430
1431 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001432 // si_f->state, si_b->state, si_b->err_type, req->flags, res->flags);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001433
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001434 /* this data may be no longer valid, clear it */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001435 if (s->txn)
1436 memset(&s->txn->auth, 0, sizeof(s->txn->auth));
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001437
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02001438 /* This flag must explicitly be set every time */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001439 req->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
1440 res->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001441
1442 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001443 rqf_last = req->flags & ~CF_MASK_ANALYSER;
1444 rpf_last = res->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001445
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001446 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001447 si_f->flags |= SI_FL_DONT_WAKE;
1448 si_b->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001449
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001450 /* 1a: Check for low level timeouts if needed. We just set a flag on
1451 * stream interfaces when their timeouts have expired.
1452 */
1453 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001454 stream_int_check_timeouts(si_f);
1455 stream_int_check_timeouts(si_b);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001456
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001457 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001458 * for future reads or writes. Note: this will also concern upper layers
1459 * but we do not touch any other flag. We must be careful and correctly
1460 * detect state changes when calling them.
1461 */
1462
Willy Tarreau8f128b42014-11-28 15:07:47 +01001463 channel_check_timeouts(req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001464
Willy Tarreau8f128b42014-11-28 15:07:47 +01001465 if (unlikely((req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1466 si_b->flags |= SI_FL_NOLINGER;
1467 si_shutw(si_b);
Willy Tarreau14641402009-12-29 14:49:56 +01001468 }
1469
Willy Tarreau8f128b42014-11-28 15:07:47 +01001470 if (unlikely((req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1471 if (si_f->flags & SI_FL_NOHALF)
1472 si_f->flags |= SI_FL_NOLINGER;
1473 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001474 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001475
Willy Tarreau8f128b42014-11-28 15:07:47 +01001476 channel_check_timeouts(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001477
Willy Tarreau8f128b42014-11-28 15:07:47 +01001478 if (unlikely((res->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1479 si_f->flags |= SI_FL_NOLINGER;
1480 si_shutw(si_f);
Willy Tarreau14641402009-12-29 14:49:56 +01001481 }
1482
Willy Tarreau8f128b42014-11-28 15:07:47 +01001483 if (unlikely((res->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1484 if (si_b->flags & SI_FL_NOHALF)
1485 si_b->flags |= SI_FL_NOLINGER;
1486 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001487 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001488
1489 /* Once in a while we're woken up because the task expires. But
1490 * this does not necessarily mean that a timeout has been reached.
Willy Tarreau87b09662015-04-03 00:22:06 +02001491 * So let's not run a whole stream processing if only an expiration
Willy Tarreau798f4322012-11-08 14:49:17 +01001492 * timeout needs to be refreshed.
1493 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001494 if (!((req->flags | res->flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01001495 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
1496 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001497 !((si_f->flags | si_b->flags) & (SI_FL_EXP|SI_FL_ERR)) &&
Willy Tarreau798f4322012-11-08 14:49:17 +01001498 ((t->state & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER))
1499 goto update_exp_and_leave;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001500 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001501
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001502 /* below we may emit error messages so we have to ensure that we have
1503 * our buffers properly allocated.
1504 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001505 if (!stream_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001506 /* No buffer available, we've been subscribed to the list of
1507 * buffer waiters, let's wait for our turn.
1508 */
1509 goto update_exp_and_leave;
1510 }
1511
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001512 /* 1b: check for low-level errors reported at the stream interface.
1513 * First we check if it's a retryable error (in which case we don't
1514 * want to tell the buffer). Otherwise we report the error one level
1515 * upper by setting flags into the buffers. Note that the side towards
1516 * the client cannot have connect (hence retryable) errors. Also, the
1517 * connection setup code must be able to deal with any type of abort.
1518 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001519 srv = objt_server(s->target);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001520 if (unlikely(si_f->flags & SI_FL_ERR)) {
1521 if (si_f->state == SI_ST_EST || si_f->state == SI_ST_DIS) {
1522 si_shutr(si_f);
1523 si_shutw(si_f);
1524 stream_int_report_error(si_f);
1525 if (!(req->analysers) && !(res->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001526 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001527 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001528 if (srv)
1529 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001530 if (!(s->flags & SF_ERR_MASK))
1531 s->flags |= SF_ERR_CLICL;
1532 if (!(s->flags & SF_FINST_MASK))
1533 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001534 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001535 }
1536 }
1537
Willy Tarreau8f128b42014-11-28 15:07:47 +01001538 if (unlikely(si_b->flags & SI_FL_ERR)) {
1539 if (si_b->state == SI_ST_EST || si_b->state == SI_ST_DIS) {
1540 si_shutr(si_b);
1541 si_shutw(si_b);
1542 stream_int_report_error(si_b);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001543 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001544 if (srv)
1545 srv->counters.failed_resp++;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001546 if (!(req->analysers) && !(res->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001547 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001548 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001549 if (srv)
1550 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001551 if (!(s->flags & SF_ERR_MASK))
1552 s->flags |= SF_ERR_SRVCL;
1553 if (!(s->flags & SF_FINST_MASK))
1554 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001555 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001556 }
1557 /* note: maybe we should process connection errors here ? */
1558 }
1559
Willy Tarreau8f128b42014-11-28 15:07:47 +01001560 if (si_b->state == SI_ST_CON) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001561 /* we were trying to establish a connection on the server side,
1562 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1563 */
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001564 if (unlikely(!sess_update_st_con_tcp(s)))
1565 sess_update_st_cer(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001566 else if (si_b->state == SI_ST_EST)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001567 sess_establish(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001568
1569 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1570 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1571 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1572 */
1573 }
1574
Willy Tarreau8f128b42014-11-28 15:07:47 +01001575 rq_prod_last = si_f->state;
1576 rq_cons_last = si_b->state;
1577 rp_cons_last = si_f->state;
1578 rp_prod_last = si_b->state;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001579
1580 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001581 /* Check for connection closure */
1582
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001583 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001584 "[%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 +01001585 now_ms, __FUNCTION__, __LINE__,
1586 t,
1587 s, s->flags,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001588 req, res,
1589 req->rex, res->wex,
1590 req->flags, res->flags,
1591 req->buf->i, req->buf->o, res->buf->i, res->buf->o, si_f->state, si_b->state,
1592 si_f->err_type, si_b->err_type,
1593 si_b->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001594
1595 /* nothing special to be done on client side */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001596 if (unlikely(si_f->state == SI_ST_DIS))
1597 si_f->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001598
1599 /* When a server-side connection is released, we have to count it and
1600 * check for pending connections on this server.
1601 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001602 if (unlikely(si_b->state == SI_ST_DIS)) {
1603 si_b->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001604 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001605 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001606 if (s->flags & SF_CURR_SESS) {
1607 s->flags &= ~SF_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001608 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001609 }
1610 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001611 if (may_dequeue_tasks(srv, s->be))
1612 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001613 }
1614 }
1615
1616 /*
1617 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1618 * at this point.
1619 */
1620
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001621 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001622 /* Analyse request */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001623 if (((req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1624 ((req->flags ^ rqf_last) & CF_MASK_STATIC) ||
1625 si_f->state != rq_prod_last ||
1626 si_b->state != rq_cons_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01001627 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001628 unsigned int flags = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001629
Willy Tarreau8f128b42014-11-28 15:07:47 +01001630 if (si_f->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001631 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001632 unsigned int ana_list;
1633 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001634
Willy Tarreau90deb182010-01-07 00:20:41 +01001635 /* it's up to the analysers to stop new connections,
1636 * disable reading or closing. Note: if an analyser
1637 * disables any of these bits, it is responsible for
1638 * enabling them again when it disables itself, so
1639 * that other analysers are called in similar conditions.
1640 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001641 channel_auto_read(req);
1642 channel_auto_connect(req);
1643 channel_auto_close(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001644
1645 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001646 * req->analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01001647 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001648 * the list when not needed. Any analyser may return 0
1649 * to break out of the loop, either because of missing
1650 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001651 * kill the stream. We loop at least once through each
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001652 * analyser, and we may loop again if other analysers
1653 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001654 *
1655 * We build a list of analysers to run. We evaluate all
1656 * of these analysers in the order of the lower bit to
1657 * the higher bit. This ordering is very important.
1658 * An analyser will often add/remove other analysers,
1659 * including itself. Any changes to itself have no effect
1660 * on the loop. If it removes any other analysers, we
1661 * want those analysers not to be called anymore during
1662 * this loop. If it adds an analyser that is located
1663 * after itself, we want it to be scheduled for being
1664 * processed during the loop. If it adds an analyser
1665 * which is located before it, we want it to switch to
1666 * it immediately, even if it has already been called
1667 * once but removed since.
1668 *
1669 * In order to achieve this, we compare the analyser
1670 * list after the call with a copy of it before the
1671 * call. The work list is fed with analyser bits that
1672 * appeared during the call. Then we compare previous
1673 * work list with the new one, and check the bits that
1674 * appeared. If the lowest of these bits is lower than
1675 * the current bit, it means we have enabled a previous
1676 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001677 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001678
Willy Tarreau8f128b42014-11-28 15:07:47 +01001679 ana_list = ana_back = req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001680 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001681 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001682
Willy Tarreaufb356202010-08-03 14:02:05 +02001683 if (ana_list & AN_REQ_INSPECT_FE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001684 if (!tcp_inspect_request(s, req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001685 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001686 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001687 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001688
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001689 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001690 if (!http_wait_for_request(s, req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001691 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001692 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001693 }
1694
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001695 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001696 if (!http_process_req_common(s, req, AN_REQ_HTTP_PROCESS_FE, sess->fe))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001697 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001698 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001699 }
1700
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001701 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001702 if (!process_switching_rules(s, req, AN_REQ_SWITCHING_RULES))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001703 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001704 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001705 }
1706
Willy Tarreaufb356202010-08-03 14:02:05 +02001707 if (ana_list & AN_REQ_INSPECT_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001708 if (!tcp_inspect_request(s, req, AN_REQ_INSPECT_BE))
Willy Tarreaufb356202010-08-03 14:02:05 +02001709 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001710 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
Willy Tarreaufb356202010-08-03 14:02:05 +02001711 }
1712
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001713 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001714 if (!http_process_req_common(s, req, AN_REQ_HTTP_PROCESS_BE, s->be))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001715 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001716 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001717 }
1718
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001719 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001720 if (!http_process_tarpit(s, req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001721 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001722 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001723 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001724
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001725 if (ana_list & AN_REQ_SRV_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001726 if (!process_server_rules(s, req, AN_REQ_SRV_RULES))
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001727 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001728 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001729 }
1730
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001731 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001732 if (!http_process_request(s, req, AN_REQ_HTTP_INNER))
Willy Tarreauc465fd72009-08-31 00:17:18 +02001733 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001734 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001735 }
1736
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001737 if (ana_list & AN_REQ_HTTP_BODY) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001738 if (!http_wait_for_request_body(s, req, AN_REQ_HTTP_BODY))
Willy Tarreaud34af782008-11-30 23:36:37 +01001739 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001740 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001741 }
Emeric Brun647caf12009-06-30 17:57:00 +02001742
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001743 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001744 if (!tcp_persist_rdp_cookie(s, req, AN_REQ_PRST_RDP_COOKIE))
Emeric Brun647caf12009-06-30 17:57:00 +02001745 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001746 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001747 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001748
Emeric Brun1d33b292010-01-04 15:47:17 +01001749 if (ana_list & AN_REQ_STICKING_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001750 if (!process_sticking_rules(s, req, AN_REQ_STICKING_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01001751 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001752 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01001753 }
1754
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001755 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001756 if (!http_request_forward_body(s, req, AN_REQ_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01001757 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001758 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001759 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001760 break;
1761 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001762 }
Willy Tarreau84455332009-03-15 22:34:05 +01001763
Willy Tarreau8f128b42014-11-28 15:07:47 +01001764 rq_prod_last = si_f->state;
1765 rq_cons_last = si_b->state;
1766 req->flags &= ~CF_WAKE_ONCE;
1767 rqf_last = req->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001768
Willy Tarreau8f128b42014-11-28 15:07:47 +01001769 if ((req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001770 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001771 }
1772
Willy Tarreau576507f2010-01-07 00:09:04 +01001773 /* we'll monitor the request analysers while parsing the response,
1774 * because some response analysers may indirectly enable new request
1775 * analysers (eg: HTTP keep-alive).
1776 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001777 req_ana_back = req->analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01001778
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001779 resync_response:
1780 /* Analyse response */
1781
Willy Tarreau8f128b42014-11-28 15:07:47 +01001782 if (((res->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1783 (res->flags ^ rpf_last) & CF_MASK_STATIC ||
1784 si_f->state != rp_cons_last ||
1785 si_b->state != rp_prod_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01001786 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001787 unsigned int flags = res->flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001788
Willy Tarreau8f128b42014-11-28 15:07:47 +01001789 if ((res->flags & CF_MASK_ANALYSER) &&
1790 (res->analysers & AN_REQ_ALL)) {
Willy Tarreau0499e352010-12-17 07:13:42 +01001791 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1792 * for some free space in the response buffer, so we might need to call
1793 * it when something changes in the response buffer, but still we pass
1794 * it the request buffer. Note that the SI state might very well still
1795 * be zero due to us returning a flow of redirects!
1796 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001797 res->analysers &= ~AN_REQ_ALL;
1798 req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001799 }
1800
Willy Tarreau8f128b42014-11-28 15:07:47 +01001801 if (si_b->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001802 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001803 unsigned int ana_list;
1804 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001805
Willy Tarreau90deb182010-01-07 00:20:41 +01001806 /* it's up to the analysers to stop disable reading or
1807 * closing. Note: if an analyser disables any of these
1808 * bits, it is responsible for enabling them again when
1809 * it disables itself, so that other analysers are called
1810 * in similar conditions.
1811 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001812 channel_auto_read(res);
1813 channel_auto_close(res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001814
1815 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001816 * res->analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001817 * to MSB. The analysers must remove themselves from
1818 * the list when not needed. Any analyser may return 0
1819 * to break out of the loop, either because of missing
1820 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001821 * kill the stream. We loop at least once through each
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001822 * analyser, and we may loop again if other analysers
1823 * are added in the middle.
1824 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001825
Willy Tarreau8f128b42014-11-28 15:07:47 +01001826 ana_list = ana_back = res->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001827 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001828 /* Warning! ensure that analysers are always placed in ascending order! */
1829
Emeric Brun97679e72010-09-23 17:56:44 +02001830 if (ana_list & AN_RES_INSPECT) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001831 if (!tcp_inspect_response(s, res, AN_RES_INSPECT))
Emeric Brun97679e72010-09-23 17:56:44 +02001832 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001833 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_INSPECT);
Emeric Brun97679e72010-09-23 17:56:44 +02001834 }
1835
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001836 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001837 if (!http_wait_for_response(s, res, AN_RES_WAIT_HTTP))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001838 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001839 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001840 }
1841
Emeric Brun1d33b292010-01-04 15:47:17 +01001842 if (ana_list & AN_RES_STORE_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001843 if (!process_store_rules(s, res, AN_RES_STORE_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01001844 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001845 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01001846 }
1847
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001848 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001849 if (!http_process_res_common(s, res, AN_RES_HTTP_PROCESS_BE, s->be))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001850 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001851 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001852 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001853
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001854 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001855 if (!http_response_forward_body(s, res, AN_RES_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01001856 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001857 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001858 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001859 break;
1860 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001861 }
1862
Willy Tarreau8f128b42014-11-28 15:07:47 +01001863 rp_cons_last = si_f->state;
1864 rp_prod_last = si_b->state;
1865 rpf_last = res->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001866
Willy Tarreau8f128b42014-11-28 15:07:47 +01001867 if ((res->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001868 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001869 }
1870
Willy Tarreau576507f2010-01-07 00:09:04 +01001871 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001872 if (req->analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01001873 goto resync_request;
1874
Willy Tarreau8f128b42014-11-28 15:07:47 +01001875 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001876 goto resync_request;
1877
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001878 /* FIXME: here we should call protocol handlers which rely on
1879 * both buffers.
1880 */
1881
1882
1883 /*
Willy Tarreau87b09662015-04-03 00:22:06 +02001884 * Now we propagate unhandled errors to the stream. Normally
Willy Tarreauae526782010-03-04 20:34:23 +01001885 * we're just in a data phase here since it means we have not
1886 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001887 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001888 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001889 if (unlikely(!(s->flags & SF_ERR_MASK))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001890 if (req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001891 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001892 req->analysers = 0;
1893 if (req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001894 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001895 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001896 if (srv)
1897 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001898 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001899 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001900 else if (req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001901 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001902 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001903 if (srv)
1904 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001905 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001906 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001907 else if (req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001908 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001909 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001910 if (srv)
1911 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001912 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001913 }
1914 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001915 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001916 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001917 if (srv)
1918 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001919 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001920 }
Willy Tarreau84455332009-03-15 22:34:05 +01001921 sess_set_term_flags(s);
1922 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001923 else if (res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001924 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001925 res->analysers = 0;
1926 if (res->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001927 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001928 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001929 if (srv)
1930 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001931 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001932 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001933 else if (res->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001934 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001935 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001936 if (srv)
1937 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001938 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001939 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001940 else if (res->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001941 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001942 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001943 if (srv)
1944 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001945 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001946 }
1947 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001948 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001949 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001950 if (srv)
1951 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001952 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001953 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001954 sess_set_term_flags(s);
1955 }
Willy Tarreau84455332009-03-15 22:34:05 +01001956 }
1957
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001958 /*
1959 * Here we take care of forwarding unhandled data. This also includes
1960 * connection establishments and shutdown requests.
1961 */
1962
1963
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001964 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001965 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001966 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001967 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001968 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001969 if (unlikely(!req->analysers &&
1970 !(req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
1971 (si_f->state >= SI_ST_EST) &&
1972 (req->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01001973 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001974 * attached to it. If any data are left in, we'll permit them to
1975 * move.
1976 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001977 channel_auto_read(req);
1978 channel_auto_connect(req);
1979 channel_auto_close(req);
1980 buffer_flush(req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001981
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001982 /* We'll let data flow between the producer (if still connected)
1983 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001984 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001985 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
1986 channel_forward(req, CHN_INFINITE_FORWARD);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001987 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001988
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001989 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001990 if (!(req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
1991 req->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001992 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001993 (objt_conn(si_f->end) && __objt_conn(si_f->end)->xprt && __objt_conn(si_f->end)->xprt->rcv_pipe) &&
1994 (objt_conn(si_b->end) && __objt_conn(si_b->end)->xprt && __objt_conn(si_b->end)->xprt->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001995 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001996 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
1997 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001998 (req->flags & CF_STREAMER_FAST)))) {
1999 req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002000 }
2001
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002002 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002003 rqf_last = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002004
2005 /*
2006 * Now forward all shutdown requests between both sides of the buffer
2007 */
2008
Willy Tarreau520d95e2009-09-19 21:04:57 +02002009 /* first, let's check if the request buffer needs to shutdown(write), which may
2010 * happen either because the input is closed or because we want to force a close
Willy Tarreau05cdd962014-05-10 14:30:07 +02002011 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2012 * the other side's timeout as well.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002013 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002014 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002015 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002016 channel_shutw_now(req);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002017 if (tick_isset(sess->fe->timeout.clientfin)) {
2018 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002019 res->wex = tick_add(now_ms, res->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002020 }
2021 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002022
2023 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002024 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2025 channel_is_empty(req))) {
2026 if (req->flags & CF_READ_ERROR)
2027 si_b->flags |= SI_FL_NOLINGER;
2028 si_shutw(si_b);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002029 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002030 res->rto = s->be->timeout.serverfin;
2031 res->rex = tick_add(now_ms, res->rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002032 }
Willy Tarreau8615c2a2013-06-21 08:20:19 +02002033 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002034
2035 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002036 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2037 !req->analysers))
2038 channel_shutr_now(req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002039
2040 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002041 if (unlikely((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2042 if (si_f->flags & SI_FL_NOHALF)
2043 si_f->flags |= SI_FL_NOLINGER;
2044 si_shutr(si_f);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002045 if (tick_isset(sess->fe->timeout.clientfin)) {
2046 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002047 res->wex = tick_add(now_ms, res->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002048 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002049 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002050
Willy Tarreau520d95e2009-09-19 21:04:57 +02002051 /* it's possible that an upper layer has requested a connection setup or abort.
2052 * There are 2 situations where we decide to establish a new connection :
2053 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002054 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002055 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002056 if (si_b->state == SI_ST_INI) {
2057 if (!(req->flags & CF_SHUTW)) {
2058 if ((req->flags & CF_AUTO_CONNECT) || !channel_is_empty(req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002059 /* If we have an appctx, there is no connect method, so we
2060 * immediately switch to the connected state, otherwise we
2061 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002062 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002063 si_b->state = SI_ST_REQ; /* new connection requested */
2064 si_b->conn_retries = s->be->conn_retries;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002065 }
Willy Tarreau73201222009-08-16 18:27:24 +02002066 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002067 else {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002068 si_b->state = SI_ST_CLO; /* shutw+ini = abort */
2069 channel_shutw_now(req); /* fix buffer flags upon abort */
2070 channel_shutr_now(res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002071 }
Willy Tarreau92795622009-03-06 12:51:23 +01002072 }
2073
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002074
2075 /* we may have a pending connection request, or a connection waiting
2076 * for completion.
2077 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002078 if (si_b->state >= SI_ST_REQ && si_b->state < SI_ST_CON) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002079 do {
2080 /* nb: step 1 might switch from QUE to ASS, but we first want
2081 * to give a chance to step 2 to perform a redirect if needed.
2082 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002083 if (si_b->state != SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002084 sess_update_stream_int(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002085 if (si_b->state == SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002086 sess_prepare_conn_req(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002087
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002088 /* applets directly go to the ESTABLISHED state. Similarly,
2089 * servers experience the same fate when their connection
2090 * is reused.
2091 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002092 if (unlikely(si_b->state == SI_ST_EST))
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002093 sess_establish(s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002094
Willy Tarreaub44c8732013-12-31 23:16:50 +01002095 /* Now we can add the server name to a header (if requested) */
2096 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002097 if ((si_b->state >= SI_ST_CON) &&
Willy Tarreaub44c8732013-12-31 23:16:50 +01002098 (s->be->server_id_hdr_name != NULL) &&
2099 (s->be->mode == PR_MODE_HTTP) &&
2100 objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02002101 http_send_name_header(s->txn, s->be, objt_server(s->target)->id);
Willy Tarreau1e5dfda2013-04-07 18:19:16 +02002102 }
2103
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002104 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002105 if (si_b->state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SF_REDIRECTABLE))
Willy Tarreau8f128b42014-11-28 15:07:47 +01002106 http_perform_server_redirect(s, si_b);
2107 } while (si_b->state == SI_ST_ASS);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002108 }
2109
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002110 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002111 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002112 goto resync_stream_interface;
2113
Willy Tarreau815a9b22010-07-27 17:15:12 +02002114 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002115 if ((req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002116 goto resync_request;
2117
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002118 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002119
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002120 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002121 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002122 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002123 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002124 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002125 if (unlikely(!res->analysers &&
2126 !(res->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2127 (si_b->state >= SI_ST_EST) &&
2128 (res->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002129 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002130 * attached to it. If any data are left in, we'll permit them to
2131 * move.
2132 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002133 channel_auto_read(res);
2134 channel_auto_close(res);
2135 buffer_flush(res->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002136
2137 /* We'll let data flow between the producer (if still connected)
2138 * to the consumer.
2139 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002140 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2141 channel_forward(res, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002142
2143 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002144 * tunnel timeout set, use it now. Note that we must respect
2145 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002146 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002147 if (!req->analysers && s->be->timeout.tunnel) {
2148 req->rto = req->wto = res->rto = res->wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002149 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002150
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002151 if ((req->flags & CF_SHUTR) && tick_isset(sess->fe->timeout.clientfin))
2152 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002153 if ((req->flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2154 res->rto = s->be->timeout.serverfin;
2155 if ((res->flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2156 req->wto = s->be->timeout.serverfin;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002157 if ((res->flags & CF_SHUTW) && tick_isset(sess->fe->timeout.clientfin))
2158 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002159
Willy Tarreau8f128b42014-11-28 15:07:47 +01002160 req->rex = tick_add(now_ms, req->rto);
2161 req->wex = tick_add(now_ms, req->wto);
2162 res->rex = tick_add(now_ms, res->rto);
2163 res->wex = tick_add(now_ms, res->wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002164 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002165 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002166
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002167 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002168 if (!(res->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2169 res->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002170 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002171 (objt_conn(si_f->end) && __objt_conn(si_f->end)->xprt && __objt_conn(si_f->end)->xprt->snd_pipe) &&
2172 (objt_conn(si_b->end) && __objt_conn(si_b->end)->xprt && __objt_conn(si_b->end)->xprt->rcv_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002173 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002174 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2175 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002176 (res->flags & CF_STREAMER_FAST)))) {
2177 res->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002178 }
2179
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002180 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002181 rpf_last = res->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002182
2183 /*
2184 * Now forward all shutdown requests between both sides of the buffer
2185 */
2186
2187 /*
2188 * FIXME: this is probably where we should produce error responses.
2189 */
2190
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002191 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002192 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002193 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002194 channel_shutw_now(res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002195 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002196 req->wto = s->be->timeout.serverfin;
2197 req->wex = tick_add(now_ms, req->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002198 }
2199 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002200
2201 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002202 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2203 channel_is_empty(res))) {
2204 si_shutw(si_f);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002205 if (tick_isset(sess->fe->timeout.clientfin)) {
2206 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002207 req->rex = tick_add(now_ms, req->rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002208 }
2209 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002210
2211 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002212 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2213 !res->analysers)
2214 channel_shutr_now(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002215
2216 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002217 if (unlikely((res->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2218 if (si_b->flags & SI_FL_NOHALF)
2219 si_b->flags |= SI_FL_NOLINGER;
2220 si_shutr(si_b);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002221 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002222 req->wto = s->be->timeout.serverfin;
2223 req->wex = tick_add(now_ms, req->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002224 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002225 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002226
Willy Tarreau8f128b42014-11-28 15:07:47 +01002227 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002228 goto resync_stream_interface;
2229
Willy Tarreau8f128b42014-11-28 15:07:47 +01002230 if (req->flags != rqf_last)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002231 goto resync_request;
2232
Willy Tarreau8f128b42014-11-28 15:07:47 +01002233 if ((res->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002234 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002235
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002236 /* we're interested in getting wakeups again */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002237 si_f->flags &= ~SI_FL_DONT_WAKE;
2238 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002239
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002240 /* This is needed only when debugging is enabled, to indicate
2241 * client-side or server-side close. Please note that in the unlikely
2242 * event where both sides would close at once, the sequence is reported
2243 * on the server side first.
2244 */
2245 if (unlikely((global.mode & MODE_DEBUG) &&
2246 (!(global.mode & MODE_QUIET) ||
2247 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002248 if (si_b->state == SI_ST_CLO &&
2249 si_b->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002250 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002251 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002252 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2253 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002254 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002255 }
2256
Willy Tarreau8f128b42014-11-28 15:07:47 +01002257 if (si_f->state == SI_ST_CLO &&
2258 si_f->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002259 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002260 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002261 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2262 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002263 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002264 }
2265 }
2266
Willy Tarreau8f128b42014-11-28 15:07:47 +01002267 if (likely((si_f->state != SI_ST_CLO) ||
2268 (si_b->state > SI_ST_INI && si_b->state < SI_ST_CLO))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002269
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002270 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED))
Willy Tarreau87b09662015-04-03 00:22:06 +02002271 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002272
Willy Tarreau8f128b42014-11-28 15:07:47 +01002273 if (si_f->state == SI_ST_EST && obj_type(si_f->end) != OBJ_TYPE_APPCTX)
2274 si_update(si_f);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002275
Willy Tarreau8f128b42014-11-28 15:07:47 +01002276 if (si_b->state == SI_ST_EST && obj_type(si_b->end) != OBJ_TYPE_APPCTX)
2277 si_update(si_b);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002278
Willy Tarreau8f128b42014-11-28 15:07:47 +01002279 req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2280 res->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2281 si_f->prev_state = si_f->state;
2282 si_b->prev_state = si_b->state;
2283 si_f->flags &= ~(SI_FL_ERR|SI_FL_EXP);
2284 si_b->flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002285
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002286 /* Trick: if a request is being waiting for the server to respond,
2287 * and if we know the server can timeout, we don't want the timeout
2288 * to expire on the client side first, but we're still interested
2289 * in passing data from the client to the server (eg: POST). Thus,
2290 * we can cancel the client's request timeout if the server's
2291 * request timeout is set and the server has not yet sent a response.
2292 */
2293
Willy Tarreau8f128b42014-11-28 15:07:47 +01002294 if ((res->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2295 (tick_isset(req->wex) || tick_isset(res->rex))) {
2296 req->flags |= CF_READ_NOEXP;
2297 req->rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002298 }
2299
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002300 /* When any of the stream interfaces is attached to an applet,
2301 * we have to call it here. Note that this one may wake the
2302 * task up again. If at least one applet was called, the current
2303 * task might have been woken up, in which case we don't want it
2304 * to be requeued to the wait queue but rather to the run queue
2305 * to run ASAP. The bitwise "or" in the condition ensures that
2306 * both functions are always called and that we wake up if at
2307 * least one did something.
Willy Tarreau1accfc02009-09-05 20:57:35 +02002308 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002309 if ((si_applet_call(si_b) | si_applet_call(si_f)) != 0) {
Willy Tarreau1accfc02009-09-05 20:57:35 +02002310 if (task_in_rq(t)) {
Willy Tarreau1accfc02009-09-05 20:57:35 +02002311 t->expire = TICK_ETERNITY;
Willy Tarreau87b09662015-04-03 00:22:06 +02002312 stream_release_buffers(s);
Willy Tarreau1accfc02009-09-05 20:57:35 +02002313 return t;
2314 }
2315 }
2316
Willy Tarreau798f4322012-11-08 14:49:17 +01002317 update_exp_and_leave:
Willy Tarreau8f128b42014-11-28 15:07:47 +01002318 t->expire = tick_first(tick_first(req->rex, req->wex),
2319 tick_first(res->rex, res->wex));
2320 if (req->analysers)
2321 t->expire = tick_first(t->expire, req->analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002322
Willy Tarreau8f128b42014-11-28 15:07:47 +01002323 if (si_f->exp)
2324 t->expire = tick_first(t->expire, si_f->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002325
Willy Tarreau8f128b42014-11-28 15:07:47 +01002326 if (si_b->exp)
2327 t->expire = tick_first(t->expire, si_b->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002328
2329#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002330 fprintf(stderr,
2331 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2332 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
Willy Tarreau8f128b42014-11-28 15:07:47 +01002333 now_ms, t->expire, req->rex, req->wex, req->analyse_exp,
2334 res->rex, res->wex, si_f->exp, si_b->exp, si_f->state, si_b->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002335#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002336
2337#ifdef DEBUG_DEV
2338 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002339 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002340 ABORT_NOW();
2341#endif
Willy Tarreau87b09662015-04-03 00:22:06 +02002342 stream_release_buffers(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002343 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002344 }
2345
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002346 sess->fe->feconn--;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002347 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002348 s->be->beconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002349 jobs--;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002350 if (sess->listener) {
2351 if (!(sess->listener->options & LI_O_UNLIMITED))
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002352 actconn--;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002353 sess->listener->nbconn--;
2354 if (sess->listener->state == LI_FULL)
2355 resume_listener(sess->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002356
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002357 /* Dequeues all of the listeners waiting for a resource */
2358 if (!LIST_ISEMPTY(&global_listener_queue))
2359 dequeue_all_listeners(&global_listener_queue);
Willy Tarreau08ceb102011-07-24 22:58:00 +02002360
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002361 if (!LIST_ISEMPTY(&sess->fe->listener_queue) &&
2362 (!sess->fe->fe_sps_lim || freq_ctr_remain(&sess->fe->fe_sess_per_sec, sess->fe->fe_sps_lim, 0) > 0))
2363 dequeue_all_listeners(&sess->fe->listener_queue);
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002364 }
Willy Tarreau07687c12011-07-24 23:55:06 +02002365
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002366 if (unlikely((global.mode & MODE_DEBUG) &&
2367 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002368 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002369 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002370 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2371 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002372 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002373 }
2374
2375 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02002376 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002377
Willy Tarreaueee5b512015-04-03 23:46:31 +02002378 if (s->txn && s->txn->status) {
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002379 int n;
2380
Willy Tarreaueee5b512015-04-03 23:46:31 +02002381 n = s->txn->status / 100;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002382 if (n < 1 || n > 5)
2383 n = 0;
2384
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002385 if (sess->fe->mode == PR_MODE_HTTP) {
2386 sess->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002387 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002388 sess->fe->fe_counters.p.http.comp_rsp++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002389 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002390 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002391 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002392 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002393 s->be->be_counters.p.http.cum_req++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002394 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002395 s->be->be_counters.p.http.comp_rsp++;
2396 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002397 }
2398
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002399 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002400 if (!LIST_ISEMPTY(&sess->fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02002401 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002402 (!(sess->fe->options & PR_O_NULLNOLOG) || req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002403 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002404 }
2405
Willy Tarreau87b09662015-04-03 00:22:06 +02002406 /* update time stats for this stream */
2407 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002408
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002409 /* the task MUST not be in the run queue anymore */
Willy Tarreau87b09662015-04-03 00:22:06 +02002410 stream_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002411 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002412 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002413 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002414}
2415
Willy Tarreau87b09662015-04-03 00:22:06 +02002416/* Update the stream's backend and server time stats */
2417void stream_update_time_stats(struct stream *s)
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002418{
2419 int t_request;
2420 int t_queue;
2421 int t_connect;
2422 int t_data;
2423 int t_close;
2424 struct server *srv;
2425
2426 t_request = 0;
2427 t_queue = s->logs.t_queue;
2428 t_connect = s->logs.t_connect;
2429 t_close = s->logs.t_close;
2430 t_data = s->logs.t_data;
2431
2432 if (s->be->mode != PR_MODE_HTTP)
2433 t_data = t_connect;
2434
2435 if (t_connect < 0 || t_data < 0)
2436 return;
2437
2438 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2439 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2440
2441 t_data -= t_connect;
2442 t_connect -= t_queue;
2443 t_queue -= t_request;
2444
2445 srv = objt_server(s->target);
2446 if (srv) {
2447 swrate_add(&srv->counters.q_time, TIME_STATS_SAMPLES, t_queue);
2448 swrate_add(&srv->counters.c_time, TIME_STATS_SAMPLES, t_connect);
2449 swrate_add(&srv->counters.d_time, TIME_STATS_SAMPLES, t_data);
2450 swrate_add(&srv->counters.t_time, TIME_STATS_SAMPLES, t_close);
2451 }
2452 swrate_add(&s->be->be_counters.q_time, TIME_STATS_SAMPLES, t_queue);
2453 swrate_add(&s->be->be_counters.c_time, TIME_STATS_SAMPLES, t_connect);
2454 swrate_add(&s->be->be_counters.d_time, TIME_STATS_SAMPLES, t_data);
2455 swrate_add(&s->be->be_counters.t_time, TIME_STATS_SAMPLES, t_close);
2456}
2457
Willy Tarreau7c669d72008-06-20 15:04:11 +02002458/*
2459 * This function adjusts sess->srv_conn and maintains the previous and new
Willy Tarreau87b09662015-04-03 00:22:06 +02002460 * server's served stream counts. Setting newsrv to NULL is enough to release
Willy Tarreau7c669d72008-06-20 15:04:11 +02002461 * current connection slot. This function also notifies any LB algo which might
Willy Tarreau87b09662015-04-03 00:22:06 +02002462 * expect to be informed about any change in the number of active streams on a
Willy Tarreau7c669d72008-06-20 15:04:11 +02002463 * server.
2464 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002465void sess_change_server(struct stream *sess, struct server *newsrv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02002466{
2467 if (sess->srv_conn == newsrv)
2468 return;
2469
2470 if (sess->srv_conn) {
2471 sess->srv_conn->served--;
2472 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2473 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Willy Tarreau87b09662015-04-03 00:22:06 +02002474 stream_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002475 }
2476
2477 if (newsrv) {
2478 newsrv->served++;
2479 if (newsrv->proxy->lbprm.server_take_conn)
2480 newsrv->proxy->lbprm.server_take_conn(newsrv);
Willy Tarreau87b09662015-04-03 00:22:06 +02002481 stream_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002482 }
2483}
2484
Willy Tarreau84455332009-03-15 22:34:05 +01002485/* Handle server-side errors for default protocols. It is called whenever a a
2486 * connection setup is aborted or a request is aborted in queue. It sets the
Willy Tarreau87b09662015-04-03 00:22:06 +02002487 * stream termination flags so that the caller does not have to worry about
Willy Tarreau84455332009-03-15 22:34:05 +01002488 * them. It's installed as ->srv_error for the server-side stream_interface.
2489 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002490void default_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreau84455332009-03-15 22:34:05 +01002491{
2492 int err_type = si->err_type;
2493 int err = 0, fin = 0;
2494
2495 if (err_type & SI_ET_QUEUE_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002496 err = SF_ERR_CLICL;
2497 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002498 }
2499 else if (err_type & SI_ET_CONN_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002500 err = SF_ERR_CLICL;
2501 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002502 }
2503 else if (err_type & SI_ET_QUEUE_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002504 err = SF_ERR_SRVTO;
2505 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002506 }
2507 else if (err_type & SI_ET_QUEUE_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002508 err = SF_ERR_SRVCL;
2509 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002510 }
2511 else if (err_type & SI_ET_CONN_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002512 err = SF_ERR_SRVTO;
2513 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002514 }
2515 else if (err_type & SI_ET_CONN_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002516 err = SF_ERR_SRVCL;
2517 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002518 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002519 else if (err_type & SI_ET_CONN_RES) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002520 err = SF_ERR_RESOURCE;
2521 fin = SF_FINST_C;
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002522 }
Willy Tarreau84455332009-03-15 22:34:05 +01002523 else /* SI_ET_CONN_OTHER and others */ {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002524 err = SF_ERR_INTERNAL;
2525 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002526 }
2527
Willy Tarreaue7dff022015-04-03 01:14:29 +02002528 if (!(s->flags & SF_ERR_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002529 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002530 if (!(s->flags & SF_FINST_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002531 s->flags |= fin;
2532}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002533
Willy Tarreaue7dff022015-04-03 01:14:29 +02002534/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +02002535void stream_shutdown(struct stream *stream, int why)
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002536{
Willy Tarreau87b09662015-04-03 00:22:06 +02002537 if (stream->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002538 return;
2539
Willy Tarreau87b09662015-04-03 00:22:06 +02002540 channel_shutw_now(&stream->req);
2541 channel_shutr_now(&stream->res);
2542 stream->task->nice = 1024;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002543 if (!(stream->flags & SF_ERR_MASK))
Willy Tarreau87b09662015-04-03 00:22:06 +02002544 stream->flags |= why;
2545 task_wakeup(stream->task, TASK_WOKEN_OTHER);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002546}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002547
Willy Tarreau8b22a712010-06-18 17:46:06 +02002548/************************************************************************/
2549/* All supported ACL keywords must be declared here. */
2550/************************************************************************/
2551
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002552/* Returns a pointer to a stkctr depending on the fetch keyword name.
2553 * It is designed to be called as sc[0-9]_* sc_* or src_* exclusively.
Willy Tarreaua65536c2013-07-22 22:40:11 +02002554 * sc[0-9]_* will return a pointer to the respective field in the
Willy Tarreau87b09662015-04-03 00:22:06 +02002555 * stream <l4>. sc_* requires an UINT argument specifying the stick
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002556 * counter number. src_* will fill a locally allocated structure with
Willy Tarreaua65536c2013-07-22 22:40:11 +02002557 * the table and entry corresponding to what is specified with src_*.
Willy Tarreau0f791d42013-07-23 19:56:43 +02002558 * NULL may be returned if the designated stkctr is not tracked. For
2559 * the sc_* and sc[0-9]_* forms, an optional table argument may be
2560 * passed. When present, the currently tracked key is then looked up
2561 * in the specified table instead of the current table. The purpose is
2562 * to be able to convery multiple values per key (eg: have gpc0 from
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002563 * multiple tables). <strm> is allowed to be NULL, in which case only
2564 * the session will be consulted.
Willy Tarreaua65536c2013-07-22 22:40:11 +02002565 */
Willy Tarreaue12704b2014-07-15 19:06:18 +02002566struct stkctr *
Willy Tarreau192252e2015-04-04 01:47:55 +02002567smp_fetch_sc_stkctr(struct session *sess, struct stream *strm, const struct arg *args, const char *kw)
Willy Tarreaua65536c2013-07-22 22:40:11 +02002568{
2569 static struct stkctr stkctr;
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002570 struct stkctr *stkptr;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002571 struct stksess *stksess;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002572 unsigned int num = kw[2] - '0';
Willy Tarreau0f791d42013-07-23 19:56:43 +02002573 int arg = 0;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002574
Willy Tarreau0f791d42013-07-23 19:56:43 +02002575 if (num == '_' - '0') {
2576 /* sc_* variant, args[0] = ctr# (mandatory) */
2577 num = args[arg++].data.uint;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002578 if (num >= MAX_SESS_STKCTR)
2579 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002580 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002581 else if (num > 9) { /* src_* variant, args[0] = table */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002582 struct stktable_key *key;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002583 struct connection *conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002584
2585 if (!conn)
2586 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002587
Thierry FOURNIER74c219d2014-04-14 14:35:40 +02002588 key = addr_to_stktable_key(&conn->addr.from, args->data.prx->table.type);
Willy Tarreaua65536c2013-07-22 22:40:11 +02002589 if (!key)
2590 return NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002591
Willy Tarreaua65536c2013-07-22 22:40:11 +02002592 stkctr.table = &args->data.prx->table;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002593 stkctr_set_entry(&stkctr, stktable_lookup_key(stkctr.table, key));
Willy Tarreaua65536c2013-07-22 22:40:11 +02002594 return &stkctr;
2595 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002596
2597 /* Here, <num> contains the counter number from 0 to 9 for
2598 * the sc[0-9]_ form, or even higher using sc_(num) if needed.
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002599 * args[arg] is the first optional argument. We first lookup the
2600 * ctr form the stream, then from the session if it was not there.
Willy Tarreau0f791d42013-07-23 19:56:43 +02002601 */
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002602
2603 stkptr = &strm->stkctr[num];
2604 if (!strm || !stkctr_entry(stkptr)) {
2605 stkptr = &sess->stkctr[num];
2606 if (!stkctr_entry(stkptr))
2607 return NULL;
2608 }
2609
2610 stksess = stkctr_entry(stkptr);
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002611 if (!stksess)
2612 return NULL;
2613
Willy Tarreau0f791d42013-07-23 19:56:43 +02002614 if (unlikely(args[arg].type == ARGT_TAB)) {
2615 /* an alternate table was specified, let's look up the same key there */
2616 stkctr.table = &args[arg].data.prx->table;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002617 stkctr_set_entry(&stkctr, stktable_lookup(stkctr.table, stksess));
Willy Tarreau0f791d42013-07-23 19:56:43 +02002618 return &stkctr;
2619 }
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002620 return stkptr;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002621}
2622
Willy Tarreau87b09662015-04-03 00:22:06 +02002623/* set return a boolean indicating if the requested stream counter is
Willy Tarreau88821242013-07-22 18:29:29 +02002624 * currently being tracked or not.
2625 * Supports being called as "sc[0-9]_tracked" only.
2626 */
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002627static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002628smp_fetch_sc_tracked(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Willy Tarreau15e91e12015-04-04 00:52:09 +02002629 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002630{
2631 smp->flags = SMP_F_VOL_TEST;
2632 smp->type = SMP_T_BOOL;
Willy Tarreau192252e2015-04-04 01:47:55 +02002633 smp->data.uint = !!smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002634 return 1;
2635}
2636
Willy Tarreau87b09662015-04-03 00:22:06 +02002637/* set <smp> to the General Purpose Counter 0 value from the stream's tracked
Willy Tarreau30b20462013-07-22 19:46:52 +02002638 * frontend counters or from the src.
2639 * Supports being called as "sc[0-9]_get_gpc0" or "src_get_gpc0" only. Value
2640 * zero is returned if the key is new.
2641 */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002642static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002643smp_fetch_sc_get_gpc0(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002644 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002645{
Willy Tarreau192252e2015-04-04 01:47:55 +02002646 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau30b20462013-07-22 19:46:52 +02002647
2648 if (!stkctr)
2649 return 0;
2650
Willy Tarreau37406352012-04-23 16:16:37 +02002651 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002652 smp->type = SMP_T_UINT;
2653 smp->data.uint = 0;
Willy Tarreau30b20462013-07-22 19:46:52 +02002654
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002655 if (stkctr_entry(stkctr) != NULL) {
2656 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002657 if (!ptr)
2658 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002659 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002660 }
2661 return 1;
2662}
2663
Willy Tarreau87b09662015-04-03 00:22:06 +02002664/* set <smp> to the General Purpose Counter 0's event rate from the stream's
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002665 * tracked frontend counters or from the src.
2666 * Supports being called as "sc[0-9]_gpc0_rate" or "src_gpc0_rate" only.
2667 * Value zero is returned if the key is new.
2668 */
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002669static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002670smp_fetch_sc_gpc0_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002671 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002672{
Willy Tarreau192252e2015-04-04 01:47:55 +02002673 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002674
2675 if (!stkctr)
2676 return 0;
2677
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002678 smp->flags = SMP_F_VOL_TEST;
2679 smp->type = SMP_T_UINT;
2680 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002681 if (stkctr_entry(stkctr) != NULL) {
2682 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002683 if (!ptr)
2684 return 0; /* parameter not stored */
2685 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, gpc0_rate),
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002686 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002687 }
2688 return 1;
2689}
2690
Willy Tarreau87b09662015-04-03 00:22:06 +02002691/* Increment the General Purpose Counter 0 value from the stream's tracked
Willy Tarreau710d38c2013-07-23 00:07:04 +02002692 * frontend counters and return it into temp integer.
2693 * Supports being called as "sc[0-9]_inc_gpc0" or "src_inc_gpc0" only.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002694 */
2695static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002696smp_fetch_sc_inc_gpc0(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002697 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002698{
Willy Tarreau192252e2015-04-04 01:47:55 +02002699 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau710d38c2013-07-23 00:07:04 +02002700
2701 if (!stkctr)
2702 return 0;
2703
Willy Tarreau37406352012-04-23 16:16:37 +02002704 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002705 smp->type = SMP_T_UINT;
2706 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002707 if (stkctr_entry(stkctr) != NULL) {
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002708 void *ptr;
2709
2710 /* First, update gpc0_rate if it's tracked. Second, update its
2711 * gpc0 if tracked. Returns gpc0's value otherwise the curr_ctr.
2712 */
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002713 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002714 if (ptr) {
2715 update_freq_ctr_period(&stktable_data_cast(ptr, gpc0_rate),
Willy Tarreau710d38c2013-07-23 00:07:04 +02002716 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u, 1);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002717 smp->data.uint = (&stktable_data_cast(ptr, gpc0_rate))->curr_ctr;
2718 }
2719
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002720 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002721 if (ptr)
2722 smp->data.uint = ++stktable_data_cast(ptr, gpc0);
2723
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002724 }
2725 return 1;
2726}
2727
Willy Tarreau87b09662015-04-03 00:22:06 +02002728/* Clear the General Purpose Counter 0 value from the stream's tracked
Willy Tarreaub9f441d2013-07-23 00:10:35 +02002729 * frontend counters and return its previous value into temp integer.
2730 * Supports being called as "sc[0-9]_clr_gpc0" or "src_clr_gpc0" only.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002731 */
2732static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002733smp_fetch_sc_clr_gpc0(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002734 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002735{
Willy Tarreau192252e2015-04-04 01:47:55 +02002736 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreaub9f441d2013-07-23 00:10:35 +02002737
2738 if (!stkctr)
2739 return 0;
2740
Willy Tarreau37406352012-04-23 16:16:37 +02002741 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002742 smp->type = SMP_T_UINT;
2743 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002744 if (stkctr_entry(stkctr) != NULL) {
2745 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002746 if (!ptr)
2747 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002748 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002749 stktable_data_cast(ptr, gpc0) = 0;
2750 }
2751 return 1;
2752}
2753
Willy Tarreau87b09662015-04-03 00:22:06 +02002754/* set <smp> to the cumulated number of connections from the stream's tracked
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02002755 * frontend counters. Supports being called as "sc[0-9]_conn_cnt" or
2756 * "src_conn_cnt" only.
2757 */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002758static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002759smp_fetch_sc_conn_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002760 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002761{
Willy Tarreau192252e2015-04-04 01:47:55 +02002762 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02002763
2764 if (!stkctr)
2765 return 0;
2766
Willy Tarreau37406352012-04-23 16:16:37 +02002767 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002768 smp->type = SMP_T_UINT;
2769 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002770 if (stkctr_entry(stkctr) != NULL) {
2771 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CNT);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002772 if (!ptr)
2773 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002774 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002775 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002776 return 1;
2777}
2778
Willy Tarreau87b09662015-04-03 00:22:06 +02002779/* set <smp> to the connection rate from the stream's tracked frontend
Willy Tarreauc8c65702013-07-23 15:09:35 +02002780 * counters. Supports being called as "sc[0-9]_conn_rate" or "src_conn_rate"
2781 * only.
2782 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002783static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002784smp_fetch_sc_conn_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002785 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002786{
Willy Tarreau192252e2015-04-04 01:47:55 +02002787 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreauc8c65702013-07-23 15:09:35 +02002788
2789 if (!stkctr)
2790 return 0;
2791
Willy Tarreau37406352012-04-23 16:16:37 +02002792 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002793 smp->type = SMP_T_UINT;
2794 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002795 if (stkctr_entry(stkctr) != NULL) {
2796 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002797 if (!ptr)
2798 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002799 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreauc8c65702013-07-23 15:09:35 +02002800 stkctr->table->data_arg[STKTABLE_DT_CONN_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002801 }
2802 return 1;
2803}
2804
Willy Tarreau87b09662015-04-03 00:22:06 +02002805/* set temp integer to the number of connections from the stream's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002806 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002807 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002808 */
2809static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002810smp_fetch_src_updt_conn_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002811 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002812{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002813 struct connection *conn = objt_conn(sess->origin);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002814 struct stksess *ts;
2815 struct stktable_key *key;
2816 void *ptr;
2817
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002818 if (!conn)
2819 return 0;
2820
Thierry FOURNIER74c219d2014-04-14 14:35:40 +02002821 key = addr_to_stktable_key(&conn->addr.from, px->table.type);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002822 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002823 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002824
Willy Tarreau24e32d82012-04-23 23:55:44 +02002825 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002826
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002827 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2828 /* entry does not exist and could not be created */
2829 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002830
2831 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2832 if (!ptr)
2833 return 0; /* parameter not stored in this table */
2834
Willy Tarreauf853c462012-04-23 18:53:56 +02002835 smp->type = SMP_T_UINT;
2836 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Willy Tarreau37406352012-04-23 16:16:37 +02002837 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002838 return 1;
2839}
2840
Willy Tarreau87b09662015-04-03 00:22:06 +02002841/* set <smp> to the number of concurrent connections from the stream's tracked
Willy Tarreauf44a5532013-07-23 15:17:53 +02002842 * frontend counters. Supports being called as "sc[0-9]_conn_cur" or
2843 * "src_conn_cur" only.
2844 */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002845static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002846smp_fetch_sc_conn_cur(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002847 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002848{
Willy Tarreau192252e2015-04-04 01:47:55 +02002849 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreauf44a5532013-07-23 15:17:53 +02002850
2851 if (!stkctr)
2852 return 0;
2853
Willy Tarreau37406352012-04-23 16:16:37 +02002854 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002855 smp->type = SMP_T_UINT;
2856 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002857 if (stkctr_entry(stkctr) != NULL) {
2858 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CUR);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002859 if (!ptr)
2860 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002861 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002862 }
2863 return 1;
2864}
2865
Willy Tarreau87b09662015-04-03 00:22:06 +02002866/* set <smp> to the cumulated number of streams from the stream's tracked
Willy Tarreau20843082013-07-23 15:35:33 +02002867 * frontend counters. Supports being called as "sc[0-9]_sess_cnt" or
2868 * "src_sess_cnt" only.
2869 */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002870static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002871smp_fetch_sc_sess_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002872 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002873{
Willy Tarreau192252e2015-04-04 01:47:55 +02002874 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau20843082013-07-23 15:35:33 +02002875
2876 if (!stkctr)
2877 return 0;
2878
Willy Tarreau37406352012-04-23 16:16:37 +02002879 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002880 smp->type = SMP_T_UINT;
2881 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002882 if (stkctr_entry(stkctr) != NULL) {
2883 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002884 if (!ptr)
2885 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002886 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002887 }
2888 return 1;
2889}
2890
Willy Tarreau87b09662015-04-03 00:22:06 +02002891/* set <smp> to the stream rate from the stream's tracked frontend counters.
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002892 * Supports being called as "sc[0-9]_sess_rate" or "src_sess_rate" only.
2893 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002894static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002895smp_fetch_sc_sess_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002896 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002897{
Willy Tarreau192252e2015-04-04 01:47:55 +02002898 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002899
2900 if (!stkctr)
2901 return 0;
2902
Willy Tarreau37406352012-04-23 16:16:37 +02002903 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002904 smp->type = SMP_T_UINT;
2905 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002906 if (stkctr_entry(stkctr) != NULL) {
2907 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002908 if (!ptr)
2909 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002910 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002911 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002912 }
2913 return 1;
2914}
2915
Willy Tarreau87b09662015-04-03 00:22:06 +02002916/* set <smp> to the cumulated number of HTTP requests from the stream's tracked
Willy Tarreau91200da2013-07-23 15:55:19 +02002917 * frontend counters. Supports being called as "sc[0-9]_http_req_cnt" or
2918 * "src_http_req_cnt" only.
2919 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002920static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002921smp_fetch_sc_http_req_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002922 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002923{
Willy Tarreau192252e2015-04-04 01:47:55 +02002924 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau91200da2013-07-23 15:55:19 +02002925
2926 if (!stkctr)
2927 return 0;
2928
Willy Tarreau37406352012-04-23 16:16:37 +02002929 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002930 smp->type = SMP_T_UINT;
2931 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002932 if (stkctr_entry(stkctr) != NULL) {
2933 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002934 if (!ptr)
2935 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002936 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002937 }
2938 return 1;
2939}
2940
Willy Tarreau87b09662015-04-03 00:22:06 +02002941/* set <smp> to the HTTP request rate from the stream's tracked frontend
Willy Tarreaucf477632013-07-23 16:04:37 +02002942 * counters. Supports being called as "sc[0-9]_http_req_rate" or
2943 * "src_http_req_rate" only.
2944 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002945static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002946smp_fetch_sc_http_req_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002947 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002948{
Willy Tarreau192252e2015-04-04 01:47:55 +02002949 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreaucf477632013-07-23 16:04:37 +02002950
2951 if (!stkctr)
2952 return 0;
2953
Willy Tarreau37406352012-04-23 16:16:37 +02002954 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002955 smp->type = SMP_T_UINT;
2956 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002957 if (stkctr_entry(stkctr) != NULL) {
2958 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002959 if (!ptr)
2960 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002961 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreaucf477632013-07-23 16:04:37 +02002962 stkctr->table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002963 }
2964 return 1;
2965}
2966
Willy Tarreau87b09662015-04-03 00:22:06 +02002967/* set <smp> to the cumulated number of HTTP requests errors from the stream's
Willy Tarreau30d07c32013-07-23 16:45:38 +02002968 * tracked frontend counters. Supports being called as "sc[0-9]_http_err_cnt" or
2969 * "src_http_err_cnt" only.
2970 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002971static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002972smp_fetch_sc_http_err_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002973 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002974{
Willy Tarreau192252e2015-04-04 01:47:55 +02002975 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau30d07c32013-07-23 16:45:38 +02002976
2977 if (!stkctr)
2978 return 0;
2979
Willy Tarreau37406352012-04-23 16:16:37 +02002980 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002981 smp->type = SMP_T_UINT;
2982 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002983 if (stkctr_entry(stkctr) != NULL) {
2984 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002985 if (!ptr)
2986 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002987 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002988 }
2989 return 1;
2990}
2991
Willy Tarreau87b09662015-04-03 00:22:06 +02002992/* set <smp> to the HTTP request error rate from the stream's tracked frontend
Willy Tarreau9daf2622013-07-23 16:48:54 +02002993 * counters. Supports being called as "sc[0-9]_http_err_rate" or
2994 * "src_http_err_rate" only.
2995 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002996static int
Willy Tarreau192252e2015-04-04 01:47:55 +02002997smp_fetch_sc_http_err_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01002998 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002999{
Willy Tarreau192252e2015-04-04 01:47:55 +02003000 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau9daf2622013-07-23 16:48:54 +02003001
3002 if (!stkctr)
3003 return 0;
3004
Willy Tarreau37406352012-04-23 16:16:37 +02003005 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003006 smp->type = SMP_T_UINT;
3007 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003008 if (stkctr_entry(stkctr) != NULL) {
3009 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_ERR_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003010 if (!ptr)
3011 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003012 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreau9daf2622013-07-23 16:48:54 +02003013 stkctr->table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003014 }
3015 return 1;
3016}
3017
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003018/* set <smp> to the number of kbytes received from clients, as found in the
Willy Tarreau87b09662015-04-03 00:22:06 +02003019 * stream's tracked frontend counters. Supports being called as
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003020 * "sc[0-9]_kbytes_in" or "src_kbytes_in" only.
3021 */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003022static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003023smp_fetch_sc_kbytes_in(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003024 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003025{
Willy Tarreau192252e2015-04-04 01:47:55 +02003026 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003027
3028 if (!stkctr)
3029 return 0;
3030
Willy Tarreau37406352012-04-23 16:16:37 +02003031 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003032 smp->type = SMP_T_UINT;
3033 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003034 if (stkctr_entry(stkctr) != NULL) {
3035 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003036 if (!ptr)
3037 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003038 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003039 }
3040 return 1;
3041}
3042
Willy Tarreau613fe992013-07-23 17:39:19 +02003043/* set <smp> to the data rate received from clients in bytes/s, as found
Willy Tarreau87b09662015-04-03 00:22:06 +02003044 * in the stream's tracked frontend counters. Supports being called as
Willy Tarreau613fe992013-07-23 17:39:19 +02003045 * "sc[0-9]_bytes_in_rate" or "src_bytes_in_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003046 */
3047static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003048smp_fetch_sc_bytes_in_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003049 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003050{
Willy Tarreau192252e2015-04-04 01:47:55 +02003051 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau613fe992013-07-23 17:39:19 +02003052
3053 if (!stkctr)
3054 return 0;
3055
Willy Tarreau37406352012-04-23 16:16:37 +02003056 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003057 smp->type = SMP_T_UINT;
3058 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003059 if (stkctr_entry(stkctr) != NULL) {
3060 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003061 if (!ptr)
3062 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003063 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau613fe992013-07-23 17:39:19 +02003064 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003065 }
3066 return 1;
3067}
3068
Willy Tarreau53aea102013-07-23 17:39:02 +02003069/* set <smp> to the number of kbytes sent to clients, as found in the
Willy Tarreau87b09662015-04-03 00:22:06 +02003070 * stream's tracked frontend counters. Supports being called as
Willy Tarreau53aea102013-07-23 17:39:02 +02003071 * "sc[0-9]_kbytes_out" or "src_kbytes_out" only.
3072 */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003073static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003074smp_fetch_sc_kbytes_out(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Willy Tarreau15e91e12015-04-04 00:52:09 +02003075 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003076{
Willy Tarreau192252e2015-04-04 01:47:55 +02003077 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau53aea102013-07-23 17:39:02 +02003078
3079 if (!stkctr)
3080 return 0;
3081
Willy Tarreau37406352012-04-23 16:16:37 +02003082 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003083 smp->type = SMP_T_UINT;
3084 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003085 if (stkctr_entry(stkctr) != NULL) {
3086 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003087 if (!ptr)
3088 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003089 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003090 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003091 return 1;
3092}
3093
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003094/* set <smp> to the data rate sent to clients in bytes/s, as found in the
Willy Tarreau87b09662015-04-03 00:22:06 +02003095 * stream's tracked frontend counters. Supports being called as
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003096 * "sc[0-9]_bytes_out_rate" or "src_bytes_out_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003097 */
3098static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003099smp_fetch_sc_bytes_out_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003100 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003101{
Willy Tarreau192252e2015-04-04 01:47:55 +02003102 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003103
3104 if (!stkctr)
3105 return 0;
3106
Willy Tarreau37406352012-04-23 16:16:37 +02003107 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003108 smp->type = SMP_T_UINT;
3109 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003110 if (stkctr_entry(stkctr) != NULL) {
3111 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003112 if (!ptr)
3113 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003114 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003115 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003116 }
3117 return 1;
3118}
3119
Willy Tarreau87b09662015-04-03 00:22:06 +02003120/* set <smp> to the number of active trackers on the SC entry in the stream's
Willy Tarreau563eef42013-07-23 18:32:02 +02003121 * tracked frontend counters. Supports being called as "sc[0-9]_trackers" only.
3122 */
Willy Tarreau2406db42012-12-09 12:16:43 +01003123static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003124smp_fetch_sc_trackers(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003125 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2406db42012-12-09 12:16:43 +01003126{
Willy Tarreau192252e2015-04-04 01:47:55 +02003127 struct stkctr *stkctr = smp_fetch_sc_stkctr(sess, strm, args, kw);
Willy Tarreau2406db42012-12-09 12:16:43 +01003128
Willy Tarreau563eef42013-07-23 18:32:02 +02003129 if (!stkctr)
Willy Tarreau2406db42012-12-09 12:16:43 +01003130 return 0;
3131
Willy Tarreau563eef42013-07-23 18:32:02 +02003132 smp->flags = SMP_F_VOL_TEST;
3133 smp->type = SMP_T_UINT;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003134 smp->data.uint = stkctr_entry(stkctr)->ref_cnt;
Willy Tarreau563eef42013-07-23 18:32:02 +02003135 return 1;
Willy Tarreaue25c9172013-05-28 18:32:20 +02003136}
3137
Willy Tarreau34db1082012-04-19 17:16:54 +02003138/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003139 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003140 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003141static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003142smp_fetch_table_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003143 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003144{
Willy Tarreau37406352012-04-23 16:16:37 +02003145 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003146 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003147 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003148 return 1;
3149}
3150
Willy Tarreau34db1082012-04-19 17:16:54 +02003151/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003152 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003153 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003154static int
Willy Tarreau192252e2015-04-04 01:47:55 +02003155smp_fetch_table_avl(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +01003156 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003157{
Willy Tarreau24e32d82012-04-23 23:55:44 +02003158 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003159 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003160 smp->type = SMP_T_UINT;
3161 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003162 return 1;
3163}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003164
Willy Tarreau61612d42012-04-19 18:42:05 +02003165/* Note: must not be declared <const> as its list will be overwritten.
3166 * Please take care of keeping this list alphabetically sorted.
3167 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003168static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau281c7992013-01-08 01:23:27 +01003169 { /* END */ },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003170}};
3171
Willy Tarreau281c7992013-01-08 01:23:27 +01003172/* Note: must not be declared <const> as its list will be overwritten.
3173 * Please take care of keeping this list alphabetically sorted.
3174 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003175static struct sample_fetch_kw_list smp_fetch_keywords = {ILH, {
Willy Tarreau0f791d42013-07-23 19:56:43 +02003176 { "sc_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3177 { "sc_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3178 { "sc_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3179 { "sc_conn_cnt", smp_fetch_sc_conn_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3180 { "sc_conn_cur", smp_fetch_sc_conn_cur, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3181 { "sc_conn_rate", smp_fetch_sc_conn_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3182 { "sc_get_gpc0", smp_fetch_sc_get_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3183 { "sc_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3184 { "sc_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3185 { "sc_http_err_rate", smp_fetch_sc_http_err_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3186 { "sc_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3187 { "sc_http_req_rate", smp_fetch_sc_http_req_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3188 { "sc_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3189 { "sc_kbytes_in", smp_fetch_sc_kbytes_in, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3190 { "sc_kbytes_out", smp_fetch_sc_kbytes_out, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3191 { "sc_sess_cnt", smp_fetch_sc_sess_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3192 { "sc_sess_rate", smp_fetch_sc_sess_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3193 { "sc_tracked", smp_fetch_sc_tracked, ARG2(1,UINT,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3194 { "sc_trackers", smp_fetch_sc_trackers, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3195 { "sc0_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3196 { "sc0_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3197 { "sc0_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3198 { "sc0_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3199 { "sc0_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3200 { "sc0_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3201 { "sc0_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3202 { "sc0_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3203 { "sc0_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3204 { "sc0_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3205 { "sc0_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3206 { "sc0_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3207 { "sc0_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3208 { "sc0_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3209 { "sc0_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3210 { "sc0_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3211 { "sc0_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3212 { "sc0_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3213 { "sc0_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3214 { "sc1_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3215 { "sc1_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3216 { "sc1_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3217 { "sc1_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3218 { "sc1_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3219 { "sc1_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3220 { "sc1_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3221 { "sc1_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3222 { "sc1_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3223 { "sc1_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3224 { "sc1_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3225 { "sc1_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3226 { "sc1_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3227 { "sc1_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3228 { "sc1_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3229 { "sc1_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3230 { "sc1_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3231 { "sc1_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3232 { "sc1_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3233 { "sc2_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3234 { "sc2_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3235 { "sc2_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3236 { "sc2_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3237 { "sc2_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3238 { "sc2_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3239 { "sc2_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3240 { "sc2_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3241 { "sc2_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3242 { "sc2_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3243 { "sc2_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3244 { "sc2_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3245 { "sc2_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3246 { "sc2_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3247 { "sc2_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3248 { "sc2_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3249 { "sc2_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3250 { "sc2_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3251 { "sc2_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3252 { "src_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3253 { "src_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3254 { "src_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3255 { "src_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3256 { "src_conn_cur", smp_fetch_sc_conn_cur, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3257 { "src_conn_rate", smp_fetch_sc_conn_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3258 { "src_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3259 { "src_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3260 { "src_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3261 { "src_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3262 { "src_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3263 { "src_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3264 { "src_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3265 { "src_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3266 { "src_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3267 { "src_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3268 { "src_sess_rate", smp_fetch_sc_sess_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3269 { "src_updt_conn_cnt", smp_fetch_src_updt_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3270 { "table_avl", smp_fetch_table_avl, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3271 { "table_cnt", smp_fetch_table_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
Willy Tarreau281c7992013-01-08 01:23:27 +01003272 { /* END */ },
3273}};
3274
Willy Tarreau8b22a712010-06-18 17:46:06 +02003275__attribute__((constructor))
Willy Tarreau87b09662015-04-03 00:22:06 +02003276static void __stream_init(void)
Willy Tarreau8b22a712010-06-18 17:46:06 +02003277{
Willy Tarreau281c7992013-01-08 01:23:27 +01003278 sample_register_fetches(&smp_fetch_keywords);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003279 acl_register_keywords(&acl_kws);
3280}
3281
Willy Tarreaubaaee002006-06-26 02:48:02 +02003282/*
3283 * Local variables:
3284 * c-indent-level: 8
3285 * c-basic-offset: 8
3286 * End:
3287 */