blob: d7b8e9f5d2a9d2fa5ce3b4262d5f88a652e828f2 [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 Tarreau8a8d83b2015-04-13 13:24:54 +020022#include <types/applet.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010024#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020026#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020027#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010028#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010030#include <proto/checks.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020031#include <proto/connection.h>
Willy Tarreau5ca791d2009-08-16 19:06:42 +020032#include <proto/dumpstats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020033#include <proto/fd.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020034#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020035#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010036#include <proto/hdr_idx.h>
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010037#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020038#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020039#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020040#include <proto/raw_sock.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020041#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020042#include <proto/stream.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010043#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010044#include <proto/proto_http.h>
45#include <proto/proto_tcp.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020046#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010048#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020049#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010050#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010051#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010052#include <proto/task.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020053#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreau87b09662015-04-03 00:22:06 +020055struct pool_head *pool2_stream;
56struct list streams;
Willy Tarreaubaaee002006-06-26 02:48:02 +020057
Willy Tarreau87b09662015-04-03 00:22:06 +020058/* list of streams waiting for at least one buffer */
Willy Tarreaubf883e02014-11-25 21:10:35 +010059struct list buffer_wq = LIST_HEAD_INIT(buffer_wq);
60
Willy Tarreau9903f0e2015-04-04 18:50:31 +020061/* This function is called from the session handler which detects the end of
Willy Tarreau73b65ac2015-04-08 18:26:29 +020062 * handshake, in order to complete initialization of a valid stream. It must be
63 * called with a session (which may be embryonic). It returns the pointer to
64 * the newly created stream, or NULL in case of fatal error. The client-facing
65 * end point is assigned to <origin>, which must be valid. The task's context
66 * is set to the new stream, and its function is set to process_stream().
67 * Target and analysers are null.
Willy Tarreau2542b532012-08-31 16:01:23 +020068 */
Willy Tarreau73b65ac2015-04-08 18:26:29 +020069struct stream *stream_new(struct session *sess, struct task *t, enum obj_type *origin)
Willy Tarreau2542b532012-08-31 16:01:23 +020070{
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020071 struct stream *s;
Willy Tarreau73b65ac2015-04-08 18:26:29 +020072 struct connection *conn = objt_conn(origin);
73 struct appctx *appctx = objt_appctx(origin);
Willy Tarreau2542b532012-08-31 16:01:23 +020074
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020075 if (unlikely((s = pool_alloc2(pool2_stream)) == NULL))
Willy Tarreau02d86382015-04-05 12:00:52 +020076 return s;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020077
78 /* minimum stream initialization required for an embryonic stream is
79 * fairly low. We need very little to execute L4 ACLs, then we need a
80 * task to make the client-side connection live on its own.
81 * - flags
82 * - stick-entry tracking
83 */
84 s->flags = 0;
Willy Tarreaufb9f5842015-04-05 18:19:23 +020085 s->logs.logwait = sess->fe->to_log;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020086 s->logs.level = 0;
Willy Tarreau99eb0f12015-04-05 12:03:54 +020087 s->logs.accept_date = sess->accept_date; /* user-visible date for logging */
88 s->logs.tv_accept = sess->tv_accept; /* corrected date for internal use */
89 tv_zero(&s->logs.tv_request);
90 s->logs.t_queue = -1;
91 s->logs.t_connect = -1;
92 s->logs.t_data = -1;
93 s->logs.t_close = 0;
94 s->logs.bytes_in = s->logs.bytes_out = 0;
95 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
96 s->logs.srv_queue_size = 0; /* we will get this number soon */
97
98 /* default logging function */
99 s->do_log = strm_log;
100
101 /* default error reporting function, may be changed by analysers */
102 s->srv_error = default_srv_error;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200103
104 /* Initialise the current rule list pointer to NULL. We are sure that
105 * any rulelist match the NULL pointer.
106 */
107 s->current_rule_list = NULL;
108
109 memset(s->stkctr, 0, sizeof(s->stkctr));
110
111 s->sess = sess;
112 s->si[0].flags = SI_FL_NONE;
113 s->si[1].flags = SI_FL_ISBACK;
114
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200115 s->uniq_id = global.req_count++;
116
Willy Tarreau87b09662015-04-03 00:22:06 +0200117 /* OK, we're keeping the stream, so let's properly initialize the stream */
118 LIST_ADDQ(&streams, &s->list);
Willy Tarreau2542b532012-08-31 16:01:23 +0200119 LIST_INIT(&s->back_refs);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100120 LIST_INIT(&s->buffer_wait);
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200121
Willy Tarreaue7dff022015-04-03 01:14:29 +0200122 s->flags |= SF_INITIALIZED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200123 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200124
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200125 s->task = t;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200126 t->process = process_stream;
Willy Tarreau2542b532012-08-31 16:01:23 +0200127 t->context = s;
128 t->expire = TICK_ETERNITY;
129
Willy Tarreau87b09662015-04-03 00:22:06 +0200130 /* Note: initially, the stream's backend points to the frontend.
Willy Tarreau2542b532012-08-31 16:01:23 +0200131 * This changes later when switching rules are executed or
132 * when the default backend is assigned.
133 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200134 s->be = sess->fe;
William Lallemand82fe75c2012-10-23 10:25:10 +0200135 s->comp_algo = NULL;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100136 s->req.buf = s->res.buf = NULL;
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200137 s->req_cap = NULL;
138 s->res_cap = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200139
Willy Tarreauebcd4842015-06-19 11:59:02 +0200140 /* Initialise all the variables contexts even if not used.
141 * This permits to prune these contexts without errors.
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200142 */
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200143 vars_init(&s->vars_txn, SCOPE_TXN);
144 vars_init(&s->vars_reqres, SCOPE_REQ);
145
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200146 /* this part should be common with other protocols */
Willy Tarreau819d3322014-11-28 12:12:34 +0100147 si_reset(&s->si[0]);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200148 si_set_state(&s->si[0], SI_ST_EST);
149
Willy Tarreau1f52bb22015-04-04 14:28:46 +0200150 /* attach the incoming connection to the stream interface now. */
Willy Tarreauf2b98742015-04-05 01:30:42 +0200151 if (conn)
152 si_attach_conn(&s->si[0], conn);
Willy Tarreau470280e2015-04-05 01:33:13 +0200153 else if (appctx)
154 si_attach_appctx(&s->si[0], appctx);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200155
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200156 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200157 s->si[0].flags |= SI_FL_INDEP_STR;
158
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200159 /* pre-initialize the other side's stream interface to an INIT state. The
160 * callbacks will be initialized before attempting to connect.
161 */
Willy Tarreau819d3322014-11-28 12:12:34 +0100162 si_reset(&s->si[1]);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200163
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200164 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200165 s->si[1].flags |= SI_FL_INDEP_STR;
166
Willy Tarreau87b09662015-04-03 00:22:06 +0200167 stream_init_srv_conn(s);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200168 s->target = NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200169 s->pend_pos = NULL;
170
171 /* init store persistence */
172 s->store_count = 0;
173
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100174 channel_init(&s->req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100175 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreaud1769b82015-04-06 00:25:48 +0200176 s->req.analysers = 0;
177 channel_auto_connect(&s->req); /* don't wait to establish connection */
178 channel_auto_close(&s->req); /* let the producer forward close requests */
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200179
180 s->req.rto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100181 s->req.wto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100182 s->req.rex = TICK_ETERNITY;
183 s->req.wex = TICK_ETERNITY;
184 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200185
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100186 channel_init(&s->res);
Willy Tarreauef573c02014-11-28 14:17:09 +0100187 s->res.flags |= CF_ISRESP;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100188 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200189
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200190 if (sess->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100191 s->req.flags |= CF_NEVER_WAIT;
192 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200193 }
194
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200195 s->res.wto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100196 s->res.rto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100197 s->res.rex = TICK_ETERNITY;
198 s->res.wex = TICK_ETERNITY;
199 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200200
Willy Tarreaueee5b512015-04-03 23:46:31 +0200201 s->txn = NULL;
Willy Tarreau62f791e2012-03-09 11:32:30 +0100202
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100203 HLUA_INIT(&s->hlua);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100204
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200205 /* finish initialization of the accepted file descriptor */
Willy Tarreauf2b98742015-04-05 01:30:42 +0200206 if (conn)
207 conn_data_want_recv(conn);
Willy Tarreau470280e2015-04-05 01:33:13 +0200208 else if (appctx)
Willy Tarreaufe127932015-04-21 19:23:39 +0200209 si_applet_want_get(&s->si[0]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200210
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200211 if (sess->fe->accept && sess->fe->accept(s) < 0)
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200212 goto out_fail_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200213
214 /* it is important not to call the wakeup function directly but to
215 * pass through task_wakeup(), because this one knows how to apply
216 * priorities to tasks.
217 */
218 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreau02d86382015-04-05 12:00:52 +0200219 return s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200220
221 /* Error unrolling */
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200222 out_fail_accept:
Willy Tarreau3b246412014-11-25 17:10:33 +0100223 LIST_DEL(&s->list);
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200224 pool_free2(pool2_stream, s);
Willy Tarreau02d86382015-04-05 12:00:52 +0200225 return NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200226}
227
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200229 * frees the context associated to a stream. It must have been removed first.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200231static void stream_free(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200232{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200233 struct session *sess = strm_sess(s);
234 struct proxy *fe = sess->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100235 struct bref *bref, *back;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200236 struct connection *cli_conn = objt_conn(sess->origin);
Willy Tarreaua4cda672010-06-06 18:28:49 +0200237 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100238
Willy Tarreaubaaee002006-06-26 02:48:02 +0200239 if (s->pend_pos)
240 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +0100241
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100242 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200243 if (s->flags & SF_CURR_SESS) {
244 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100245 objt_server(s->target)->cur_sess--;
Willy Tarreau1e62de62008-11-11 20:20:02 +0100246 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100247 if (may_dequeue_tasks(objt_server(s->target), s->be))
248 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100249 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100250
Willy Tarreau7c669d72008-06-20 15:04:11 +0200251 if (unlikely(s->srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200252 /* the stream still has a reserved slot on a server, but
Willy Tarreau7c669d72008-06-20 15:04:11 +0200253 * it should normally be only the same as the one above,
254 * so this should not happen in fact.
255 */
256 sess_change_server(s, NULL);
257 }
258
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100259 if (s->req.pipe)
260 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100261
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100262 if (s->res.pipe)
263 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100264
Willy Tarreaubf883e02014-11-25 21:10:35 +0100265 /* We may still be present in the buffer wait queue */
266 if (!LIST_ISEMPTY(&s->buffer_wait)) {
267 LIST_DEL(&s->buffer_wait);
268 LIST_INIT(&s->buffer_wait);
269 }
270
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100271 b_drop(&s->req.buf);
272 b_drop(&s->res.buf);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100273 if (!LIST_ISEMPTY(&buffer_wq))
Willy Tarreau87b09662015-04-03 00:22:06 +0200274 stream_offer_buffers();
Willy Tarreau9b28e032012-10-12 23:49:43 +0200275
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100276 hlua_ctx_destroy(&s->hlua);
Willy Tarreaueee5b512015-04-03 23:46:31 +0200277 if (s->txn)
278 http_end_txn(s);
Willy Tarreau46023632010-01-07 22:51:47 +0100279
Willy Tarreau1e954912012-10-12 17:50:05 +0200280 /* ensure the client-side transport layer is destroyed */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200281 if (cli_conn)
282 conn_force_close(cli_conn);
Willy Tarreau1e954912012-10-12 17:50:05 +0200283
Willy Tarreaua4cda672010-06-06 18:28:49 +0200284 for (i = 0; i < s->store_count; i++) {
285 if (!s->store[i].ts)
286 continue;
287 stksess_free(s->store[i].table, s->store[i].ts);
288 s->store[i].ts = NULL;
289 }
290
Willy Tarreaueee5b512015-04-03 23:46:31 +0200291 if (s->txn) {
292 pool_free2(pool2_hdr_idx, s->txn->hdr_idx.v);
293 pool_free2(pool2_http_txn, s->txn);
294 s->txn = NULL;
295 }
296
Willy Tarreau92fb9832007-10-16 17:34:28 +0200297 if (fe) {
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200298 pool_free2(fe->rsp_cap_pool, s->res_cap);
299 pool_free2(fe->req_cap_pool, s->req_cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200300 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100301
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200302 /* Cleanup all variable contexts. */
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200303 vars_prune(&s->vars_txn, s);
304 vars_prune(&s->vars_reqres, s);
305
Willy Tarreau87b09662015-04-03 00:22:06 +0200306 stream_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200307
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100308 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100309 /* we have to unlink all watchers. We must not relink them if
Willy Tarreau87b09662015-04-03 00:22:06 +0200310 * this stream was the last one in the list.
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100311 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100312 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100313 LIST_INIT(&bref->users);
Willy Tarreau87b09662015-04-03 00:22:06 +0200314 if (s->list.n != &streams)
315 LIST_ADDQ(&LIST_ELEM(s->list.n, struct stream *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100316 bref->ref = s->list.n;
317 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100318 LIST_DEL(&s->list);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200319 si_release_endpoint(&s->si[1]);
320 si_release_endpoint(&s->si[0]);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200321
322 /* FIXME: for now we have a 1:1 relation between stream and session so
323 * the stream must free the session.
324 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200325 pool_free2(pool2_stream, s);
Willy Tarreau11c36242015-04-04 15:54:03 +0200326 session_free(sess);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200327
328 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200329 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200330 pool_flush2(pool2_buffer);
Willy Tarreau63986c72015-04-03 22:55:33 +0200331 pool_flush2(pool2_http_txn);
Willy Tarreau34eb6712011-10-24 18:15:04 +0200332 pool_flush2(pool2_hdr_idx);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200333 pool_flush2(pool2_requri);
334 pool_flush2(pool2_capture);
Willy Tarreau87b09662015-04-03 00:22:06 +0200335 pool_flush2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200336 pool_flush2(pool2_session);
Willy Tarreau3a5e0602014-11-13 16:46:28 +0100337 pool_flush2(pool2_connection);
338 pool_flush2(pool2_pendconn);
Willy Tarreau48d63db2008-08-03 17:41:33 +0200339 pool_flush2(fe->req_cap_pool);
340 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200341 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200342}
343
Willy Tarreau78955f42014-12-28 13:09:02 +0100344/* Allocates a receive buffer for channel <chn>, but only if it's guaranteed
345 * that it's not the last available buffer or it's the response buffer. Unless
346 * the buffer is the response buffer, an extra control is made so that we always
347 * keep <tune.buffers.reserved> buffers available after this allocation. To be
348 * called at the beginning of recv() callbacks to ensure that the required
349 * buffers are properly allocated. Returns 0 in case of failure, non-zero
350 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100351 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200352int stream_alloc_recv_buffer(struct channel *chn)
Willy Tarreau656859d2014-11-25 19:46:36 +0100353{
Willy Tarreau87b09662015-04-03 00:22:06 +0200354 struct stream *s;
Willy Tarreau656859d2014-11-25 19:46:36 +0100355 struct buffer *b;
Willy Tarreaua24adf02014-11-27 01:11:56 +0100356 int margin = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100357
Willy Tarreau78955f42014-12-28 13:09:02 +0100358 if (!(chn->flags & CF_ISRESP))
Willy Tarreaua24adf02014-11-27 01:11:56 +0100359 margin = global.tune.reserved_bufs;
360
Willy Tarreau78955f42014-12-28 13:09:02 +0100361 s = chn_sess(chn);
362
363 b = b_alloc_margin(&chn->buf, margin);
Willy Tarreau656859d2014-11-25 19:46:36 +0100364 if (b)
365 return 1;
366
Willy Tarreaubf883e02014-11-25 21:10:35 +0100367 if (LIST_ISEMPTY(&s->buffer_wait))
368 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100369 return 0;
370}
371
Willy Tarreau87b09662015-04-03 00:22:06 +0200372/* Allocates a work buffer for stream <s>. It is meant to be called inside
373 * process_stream(). It will only allocate the side needed for the function
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200374 * to work fine, which is the response buffer so that an error message may be
375 * built and returned. Response buffers may be allocated from the reserve, this
376 * is critical to ensure that a response may always flow and will never block a
377 * server from releasing a connection. Returns 0 in case of failure, non-zero
378 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100379 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200380int stream_alloc_work_buffer(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100381{
Willy Tarreaubf883e02014-11-25 21:10:35 +0100382 if (!LIST_ISEMPTY(&s->buffer_wait)) {
383 LIST_DEL(&s->buffer_wait);
384 LIST_INIT(&s->buffer_wait);
385 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100386
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200387 if (b_alloc_margin(&s->res.buf, 0))
Willy Tarreau656859d2014-11-25 19:46:36 +0100388 return 1;
389
Willy Tarreaubf883e02014-11-25 21:10:35 +0100390 LIST_ADDQ(&buffer_wq, &s->buffer_wait);
Willy Tarreau656859d2014-11-25 19:46:36 +0100391 return 0;
392}
393
394/* releases unused buffers after processing. Typically used at the end of the
Willy Tarreaubf883e02014-11-25 21:10:35 +0100395 * update() functions. It will try to wake up as many tasks as the number of
Willy Tarreau87b09662015-04-03 00:22:06 +0200396 * buffers that it releases. In practice, most often streams are blocked on
Willy Tarreaubf883e02014-11-25 21:10:35 +0100397 * a single buffer, so it makes sense to try to wake two up when two buffers
398 * are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100399 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200400void stream_release_buffers(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100401{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100402 if (s->req.buf->size && buffer_empty(s->req.buf))
403 b_free(&s->req.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100404
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100405 if (s->res.buf->size && buffer_empty(s->res.buf))
406 b_free(&s->res.buf);
Willy Tarreau656859d2014-11-25 19:46:36 +0100407
Willy Tarreaubf883e02014-11-25 21:10:35 +0100408 /* if we're certain to have at least 1 buffer available, and there is
409 * someone waiting, we can wake up a waiter and offer them.
410 */
Willy Tarreaua24adf02014-11-27 01:11:56 +0100411 if (!LIST_ISEMPTY(&buffer_wq))
Willy Tarreau87b09662015-04-03 00:22:06 +0200412 stream_offer_buffers();
Willy Tarreaubf883e02014-11-25 21:10:35 +0100413}
414
Willy Tarreau87b09662015-04-03 00:22:06 +0200415/* Runs across the list of pending streams waiting for a buffer and wakes one
Willy Tarreaua24adf02014-11-27 01:11:56 +0100416 * up if buffers are available. Will stop when the run queue reaches <rqlimit>.
Willy Tarreau87b09662015-04-03 00:22:06 +0200417 * Should not be called directly, use stream_offer_buffers() instead.
Willy Tarreaubf883e02014-11-25 21:10:35 +0100418 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200419void __stream_offer_buffers(int rqlimit)
Willy Tarreaubf883e02014-11-25 21:10:35 +0100420{
Willy Tarreau87b09662015-04-03 00:22:06 +0200421 struct stream *sess, *bak;
Willy Tarreaubf883e02014-11-25 21:10:35 +0100422
423 list_for_each_entry_safe(sess, bak, &buffer_wq, buffer_wait) {
Willy Tarreaua24adf02014-11-27 01:11:56 +0100424 if (rqlimit <= run_queue)
425 break;
426
Willy Tarreaubf883e02014-11-25 21:10:35 +0100427 if (sess->task->state & TASK_RUNNING)
428 continue;
429
430 LIST_DEL(&sess->buffer_wait);
431 LIST_INIT(&sess->buffer_wait);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100432 task_wakeup(sess->task, TASK_WOKEN_RES);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100433 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100434}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200435
436/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau87b09662015-04-03 00:22:06 +0200437int init_stream()
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200438{
Willy Tarreau87b09662015-04-03 00:22:06 +0200439 LIST_INIT(&streams);
440 pool2_stream = create_pool("stream", sizeof(struct stream), MEM_F_SHARED);
441 return pool2_stream != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200442}
443
Willy Tarreau87b09662015-04-03 00:22:06 +0200444void stream_process_counters(struct stream *s)
Willy Tarreau30e71012007-11-26 20:15:35 +0100445{
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200446 struct session *sess = s->sess;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100447 unsigned long long bytes;
Emeric Brun57056f02015-06-15 18:29:57 +0200448 void *ptr1,*ptr2;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100449 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100450
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100451 bytes = s->req.total - s->logs.bytes_in;
452 s->logs.bytes_in = s->req.total;
453 if (bytes) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200454 sess->fe->fe_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100455
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100456 s->be->be_counters.bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100457
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100458 if (objt_server(s->target))
459 objt_server(s->target)->counters.bytes_in += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200460
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200461 if (sess->listener && sess->listener->counters)
462 sess->listener->counters->bytes_in += bytes;
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200463
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100464 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200465 struct stkctr *stkctr = &s->stkctr[i];
466
467 if (!stkctr_entry(stkctr)) {
468 stkctr = &sess->stkctr[i];
469 if (!stkctr_entry(stkctr))
470 continue;
471 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200472
Emeric Brun57056f02015-06-15 18:29:57 +0200473 ptr1 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_CNT);
474 if (ptr1)
475 stktable_data_cast(ptr1, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200476
Emeric Brun57056f02015-06-15 18:29:57 +0200477 ptr2 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_RATE);
478 if (ptr2)
479 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_in_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200480 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Emeric Brun57056f02015-06-15 18:29:57 +0200481
482 /* If data was modified, we need to touch to re-schedule sync */
483 if (ptr1 || ptr2)
484 stktable_touch(stkctr->table, stkctr_entry(stkctr), 1);
Willy Tarreau30e71012007-11-26 20:15:35 +0100485 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100486 }
487
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100488 bytes = s->res.total - s->logs.bytes_out;
489 s->logs.bytes_out = s->res.total;
490 if (bytes) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200491 sess->fe->fe_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100492
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100493 s->be->be_counters.bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100494
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100495 if (objt_server(s->target))
496 objt_server(s->target)->counters.bytes_out += bytes;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200497
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200498 if (sess->listener && sess->listener->counters)
499 sess->listener->counters->bytes_out += bytes;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200500
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100501 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200502 struct stkctr *stkctr = &s->stkctr[i];
503
504 if (!stkctr_entry(stkctr)) {
505 stkctr = &sess->stkctr[i];
506 if (!stkctr_entry(stkctr))
507 continue;
508 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200509
Emeric Brun57056f02015-06-15 18:29:57 +0200510 ptr1 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_CNT);
511 if (ptr1)
512 stktable_data_cast(ptr1, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200513
Emeric Brun57056f02015-06-15 18:29:57 +0200514 ptr2 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_RATE);
515 if (ptr2)
516 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_out_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200517 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Emeric Brun57056f02015-06-15 18:29:57 +0200518
519 /* If data was modified, we need to touch to re-schedule sync */
520 if (ptr1 || ptr2)
521 stktable_touch(stkctr->table, stkctr_entry(stkctr), 1);
Willy Tarreau30e71012007-11-26 20:15:35 +0100522 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100523 }
524}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100526/* This function is called with (si->state == SI_ST_CON) meaning that a
527 * connection was attempted and that the file descriptor is already allocated.
528 * We must check for establishment, error and abort. Possible output states
529 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
530 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
Willy Tarreau87b09662015-04-03 00:22:06 +0200531 * otherwise 1. This only works with connection-based streams.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100532 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200533static int sess_update_st_con_tcp(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100534{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100535 struct stream_interface *si = &s->si[1];
536 struct channel *req = &s->req;
537 struct channel *rep = &s->res;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200538 struct connection *srv_conn = __objt_conn(si->end);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100539
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100540 /* If we got an error, or if nothing happened and the connection timed
541 * out, we must give up. The CER state handler will take care of retry
542 * attempts and error reports.
543 */
544 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Willy Tarreau103197d2014-11-28 15:26:12 +0100545 if (unlikely(req->flags & CF_WRITE_PARTIAL)) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100546 /* Some data were sent past the connection establishment,
547 * so we need to pretend we're established to log correctly
548 * and let later states handle the failure.
549 */
Willy Tarreaue3224e82012-10-29 22:41:31 +0100550 si->state = SI_ST_EST;
551 si->err_type = SI_ET_DATA_ERR;
Willy Tarreau103197d2014-11-28 15:26:12 +0100552 rep->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreaue3224e82012-10-29 22:41:31 +0100553 return 1;
554 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100555 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100556 si->state = SI_ST_CER;
Willy Tarreau0ede5a32012-12-08 08:44:02 +0100557
Willy Tarreauf79c8172013-10-21 16:30:56 +0200558 conn_force_close(srv_conn);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100559
560 if (si->err_type)
561 return 0;
562
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100563 if (si->flags & SI_FL_ERR)
564 si->err_type = SI_ET_CONN_ERR;
565 else
566 si->err_type = SI_ET_CONN_TO;
567 return 0;
568 }
569
570 /* OK, maybe we want to abort */
Willy Tarreaua7a7ebc2012-12-30 00:50:35 +0100571 if (!(req->flags & CF_WRITE_PARTIAL) &&
572 unlikely((rep->flags & CF_SHUTW) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200573 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
574 ((!(req->flags & CF_WRITE_ACTIVITY) && channel_is_empty(req)) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100575 s->be->options & PR_O_ABRT_CLOSE)))) {
576 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200577 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100578 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau84455332009-03-15 22:34:05 +0100579 if (s->srv_error)
580 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100581 return 1;
582 }
583
584 /* we need to wait a bit more if there was no activity either */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200585 if (!(req->flags & CF_WRITE_ACTIVITY))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100586 return 1;
587
588 /* OK, this means that a connection succeeded. The caller will be
589 * responsible for handling the transition from CON to EST.
590 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100591 si->state = SI_ST_EST;
592 si->err_type = SI_ET_NONE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100593 return 1;
594}
595
596/* This function is called with (si->state == SI_ST_CER) meaning that a
597 * previous connection attempt has failed and that the file descriptor
598 * has already been released. Possible causes include asynchronous error
599 * notification and time out. Possible output states are SI_ST_CLO when
600 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
601 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
602 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
603 * marked as in error state. It returns 0.
604 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200605static int sess_update_st_cer(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100606{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100607 struct stream_interface *si = &s->si[1];
608
Willy Tarreau87b09662015-04-03 00:22:06 +0200609 /* we probably have to release last stream from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100610 if (objt_server(s->target)) {
611 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100612
Willy Tarreaue7dff022015-04-03 01:14:29 +0200613 if (s->flags & SF_CURR_SESS) {
614 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100615 objt_server(s->target)->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100616 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100617 }
618
619 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200620 si->conn_retries--;
621 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100622 if (!si->err_type) {
623 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100624 }
625
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100626 if (objt_server(s->target))
627 objt_server(s->target)->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100628 s->be->be_counters.failed_conns++;
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100629 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100630 if (may_dequeue_tasks(objt_server(s->target), s->be))
631 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100632
633 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200634 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100635 s->req.flags |= CF_WRITE_ERROR;
636 s->res.flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100637
638 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100639 if (s->srv_error)
640 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100641 return 0;
642 }
643
644 /* If the "redispatch" option is set on the backend, we are allowed to
Joseph Lynch726ab712015-05-11 23:25:34 -0700645 * retry on another server. By default this redispatch occurs on the
646 * last retry, but if configured we allow redispatches to occur on
647 * configurable intervals, e.g. on every retry. In order to achieve this,
Willy Tarreau87b09662015-04-03 00:22:06 +0200648 * we must mark the stream unassigned, and eventually clear the DIRECT
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100649 * bit to ignore any persistence cookie. We won't count a retry nor a
650 * redispatch yet, because this will depend on what server is selected.
Willy Tarreau33a14e52014-06-13 17:49:40 +0200651 * If the connection is not persistent, the balancing algorithm is not
652 * determinist (round robin) and there is more than one active server,
653 * we accept to perform an immediate redispatch without waiting since
654 * we don't care about this particular server.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100655 */
Willy Tarreau33a14e52014-06-13 17:49:40 +0200656 if (objt_server(s->target) &&
Joseph Lynch726ab712015-05-11 23:25:34 -0700657 (s->be->options & PR_O_REDISP) && !(s->flags & SF_FORCE_PRST) &&
658 ((((s->be->redispatch_after > 0) &&
659 ((s->be->conn_retries - si->conn_retries) %
660 s->be->redispatch_after == 0)) ||
661 ((s->be->redispatch_after < 0) &&
662 ((s->be->conn_retries - si->conn_retries) %
663 (s->be->conn_retries + 1 + s->be->redispatch_after) == 0))) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +0200664 (!(s->flags & SF_DIRECT) && s->be->srv_act > 1 &&
Joseph Lynch726ab712015-05-11 23:25:34 -0700665 ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR)))) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100666 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100667 if (may_dequeue_tasks(objt_server(s->target), s->be))
668 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100669
Willy Tarreaue7dff022015-04-03 01:14:29 +0200670 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100671 si->state = SI_ST_REQ;
672 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100673 if (objt_server(s->target))
674 objt_server(s->target)->counters.retries++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100675 s->be->be_counters.retries++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100676 si->state = SI_ST_ASS;
677 }
678
679 if (si->flags & SI_FL_ERR) {
680 /* The error was an asynchronous connection error, and we will
681 * likely have to retry connecting to the same server, most
682 * likely leading to the same result. To avoid this, we wait
Willy Tarreaub0290662014-06-13 17:04:44 +0200683 * MIN(one second, connect timeout) before retrying.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100684 */
685
Willy Tarreaub0290662014-06-13 17:04:44 +0200686 int delay = 1000;
687
688 if (s->be->timeout.connect && s->be->timeout.connect < delay)
689 delay = s->be->timeout.connect;
690
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100691 if (!si->err_type)
692 si->err_type = SI_ET_CONN_ERR;
693
Willy Tarreaudb6d0122014-06-13 17:40:15 +0200694 /* only wait when we're retrying on the same server */
695 if (si->state == SI_ST_ASS ||
696 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
697 (s->be->srv_act <= 1)) {
698 si->state = SI_ST_TAR;
699 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
700 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100701 return 0;
702 }
703 return 0;
704}
705
706/*
707 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200708 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200709 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100710 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200711static void sess_establish(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100712{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100713 struct stream_interface *si = &s->si[1];
714 struct channel *req = &s->req;
715 struct channel *rep = &s->res;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100716
Willy Tarreau0e37f1c2013-12-31 23:06:46 +0100717 /* First, centralize the timers information */
718 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
719 si->exp = TICK_ETERNITY;
720
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100721 if (objt_server(s->target))
722 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100723
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100724 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100725 /* if the user wants to log as soon as possible, without counting
726 * bytes from the server, then this is the right moment. */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200727 if (!LIST_ISEMPTY(&strm_fe(s)->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100728 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100729 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100730 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100731 }
732 else {
Willy Tarreaud81ca042013-12-31 22:33:13 +0100733 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100734 }
735
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200736 rep->analysers |= strm_fe(s)->fe_rsp_ana | s->be->be_rsp_ana;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200737 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau644c1012014-04-30 18:11:11 +0200738 if (req->flags & CF_WAKE_CONNECT) {
739 req->flags |= CF_WAKE_ONCE;
740 req->flags &= ~CF_WAKE_CONNECT;
741 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200742 if (objt_conn(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200743 /* real connections have timeouts */
744 req->wto = s->be->timeout.server;
745 rep->rto = s->be->timeout.server;
746 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100747 req->wex = TICK_ETERNITY;
748}
749
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100750/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
751 * SI_ST_TAR. Other input states are simply ignored.
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100752 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
753 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
754 * conditions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100755 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200756static void sess_update_stream_int(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100757{
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100758 struct server *srv = objt_server(s->target);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100759 struct stream_interface *si = &s->si[1];
Willy Tarreau103197d2014-11-28 15:26:12 +0100760 struct channel *req = &s->req;
Willy Tarreau827aee92011-03-10 16:55:02 +0100761
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100762 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 +0100763 now_ms, __FUNCTION__,
764 s,
CJ Ess6eac32e2015-05-02 16:35:24 -0400765 req, &s->res,
Willy Tarreau103197d2014-11-28 15:26:12 +0100766 req->rex, s->res.wex,
767 req->flags, s->res.flags,
CJ Ess6eac32e2015-05-02 16:35:24 -0400768 req->buf->i, req->buf->o, s->res.buf->i, s->res.buf->o, s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100769
770 if (si->state == SI_ST_ASS) {
771 /* Server assigned to connection request, we have to try to connect now */
772 int conn_err;
773
774 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100775 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100776
Willy Tarreaue7dff022015-04-03 01:14:29 +0200777 if (conn_err == SF_ERR_NONE) {
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100778 /* state = SI_ST_CON or SI_ST_EST now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100779 if (srv)
780 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500781 if (srv)
782 srv_set_sess_last(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100783 return;
784 }
785
786 /* We have received a synchronous error. We might have to
787 * abort, retry immediately or redispatch.
788 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200789 if (conn_err == SF_ERR_INTERNAL) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100790 if (!si->err_type) {
791 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100792 }
793
Willy Tarreau827aee92011-03-10 16:55:02 +0100794 if (srv)
795 srv_inc_sess_ctr(srv);
796 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500797 srv_set_sess_last(srv);
798 if (srv)
Willy Tarreau827aee92011-03-10 16:55:02 +0100799 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100800 s->be->be_counters.failed_conns++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100801
Willy Tarreau87b09662015-04-03 00:22:06 +0200802 /* release other streams waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100803 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100804 if (may_dequeue_tasks(srv, s->be))
805 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100806
807 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200808 si_shutr(si);
809 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100810 req->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100811
812 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
813
Willy Tarreau87b09662015-04-03 00:22:06 +0200814 /* no stream was ever accounted for this server */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100815 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100816 if (s->srv_error)
817 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100818 return;
819 }
820
821 /* We are facing a retryable error, but we don't want to run a
822 * turn-around now, as the problem is likely a source port
823 * allocation problem, so we want to retry now.
824 */
825 si->state = SI_ST_CER;
826 si->flags &= ~SI_FL_ERR;
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100827 sess_update_st_cer(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100828 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
829 return;
830 }
831 else if (si->state == SI_ST_QUE) {
832 /* connection request was queued, check for any update */
833 if (!s->pend_pos) {
834 /* The connection is not in the queue anymore. Either
835 * we have a server connection slot available and we
836 * go directly to the assigned state, or we need to
837 * load-balance first and go to the INI state.
838 */
839 si->exp = TICK_ETERNITY;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200840 if (unlikely(!(s->flags & SF_ASSIGNED)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100841 si->state = SI_ST_REQ;
842 else {
843 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
844 si->state = SI_ST_ASS;
845 }
846 return;
847 }
848
849 /* Connection request still in queue... */
850 if (si->flags & SI_FL_EXP) {
851 /* ... and timeout expired */
852 si->exp = TICK_ETERNITY;
853 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau827aee92011-03-10 16:55:02 +0100854 if (srv)
855 srv->counters.failed_conns++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100856 s->be->be_counters.failed_conns++;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200857 si_shutr(si);
858 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100859 req->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100860 if (!si->err_type)
861 si->err_type = SI_ET_QUEUE_TO;
862 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100863 if (s->srv_error)
864 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100865 return;
866 }
867
868 /* Connection remains in queue, check if we have to abort it */
Willy Tarreau103197d2014-11-28 15:26:12 +0100869 if ((req->flags & (CF_READ_ERROR)) ||
870 ((req->flags & CF_SHUTW_NOW) && /* empty and client aborted */
871 (channel_is_empty(req) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100872 /* give up */
873 si->exp = TICK_ETERNITY;
874 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200875 si_shutr(si);
876 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100877 si->err_type |= SI_ET_QUEUE_ABRT;
878 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100879 if (s->srv_error)
880 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100881 return;
882 }
883
884 /* Nothing changed */
885 return;
886 }
887 else if (si->state == SI_ST_TAR) {
888 /* Connection request might be aborted */
Willy Tarreau103197d2014-11-28 15:26:12 +0100889 if ((req->flags & (CF_READ_ERROR)) ||
890 ((req->flags & CF_SHUTW_NOW) && /* empty and client aborted */
891 (channel_is_empty(req) || s->be->options & PR_O_ABRT_CLOSE))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100892 /* give up */
893 si->exp = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200894 si_shutr(si);
895 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100896 si->err_type |= SI_ET_CONN_ABRT;
897 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100898 if (s->srv_error)
899 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100900 return;
901 }
902
903 if (!(si->flags & SI_FL_EXP))
904 return; /* still in turn-around */
905
906 si->exp = TICK_ETERNITY;
907
Willy Tarreau87b09662015-04-03 00:22:06 +0200908 /* we keep trying on the same server as long as the stream is
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100909 * marked "assigned".
910 * FIXME: Should we force a redispatch attempt when the server is down ?
911 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200912 if (s->flags & SF_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100913 si->state = SI_ST_ASS;
914 else
915 si->state = SI_ST_REQ;
916 return;
917 }
918}
919
Willy Tarreau87b09662015-04-03 00:22:06 +0200920/* Set correct stream termination flags in case no analyser has done it. It
Simon Hormandec5be42011-06-08 09:19:07 +0900921 * also counts a failed request if the server state has not reached the request
922 * stage.
923 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200924static void sess_set_term_flags(struct stream *s)
Simon Hormandec5be42011-06-08 09:19:07 +0900925{
Willy Tarreaue7dff022015-04-03 01:14:29 +0200926 if (!(s->flags & SF_FINST_MASK)) {
Simon Hormandec5be42011-06-08 09:19:07 +0900927 if (s->si[1].state < SI_ST_REQ) {
928
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200929 strm_fe(s)->fe_counters.failed_req++;
930 if (strm_li(s)->counters)
931 strm_li(s)->counters->failed_req++;
Simon Hormandec5be42011-06-08 09:19:07 +0900932
Willy Tarreaue7dff022015-04-03 01:14:29 +0200933 s->flags |= SF_FINST_R;
Simon Hormandec5be42011-06-08 09:19:07 +0900934 }
935 else if (s->si[1].state == SI_ST_QUE)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200936 s->flags |= SF_FINST_Q;
Simon Hormandec5be42011-06-08 09:19:07 +0900937 else if (s->si[1].state < SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200938 s->flags |= SF_FINST_C;
Simon Hormandec5be42011-06-08 09:19:07 +0900939 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200940 s->flags |= SF_FINST_D;
Simon Hormandec5be42011-06-08 09:19:07 +0900941 else
Willy Tarreaue7dff022015-04-03 01:14:29 +0200942 s->flags |= SF_FINST_L;
Simon Hormandec5be42011-06-08 09:19:07 +0900943 }
944}
945
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100946/* This function initiates a server connection request on a stream interface
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100947 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
948 * a real connection to a server, indicating that a server has been assigned,
949 * or SI_ST_EST for a successful connection to an applet. It may also return
950 * SI_ST_QUE, or SI_ST_CLO upon error.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100951 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200952static void sess_prepare_conn_req(struct stream *s)
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100953{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100954 struct stream_interface *si = &s->si[1];
955
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100956 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 +0100957 now_ms, __FUNCTION__,
958 s,
CJ Ess6eac32e2015-05-02 16:35:24 -0400959 &s->req, &s->res,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100960 s->req.rex, s->res.wex,
961 s->req.flags, s->res.flags,
CJ Ess6eac32e2015-05-02 16:35:24 -0400962 s->req.buf->i, s->req.buf->o, s->res.buf->i, s->res.buf->o, s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100963
964 if (si->state != SI_ST_REQ)
965 return;
966
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100967 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
968 /* the applet directly goes to the EST state */
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100969 struct appctx *appctx = objt_appctx(si->end);
970
971 if (!appctx || appctx->applet != __objt_applet(s->target))
972 appctx = stream_int_register_handler(si, objt_applet(s->target));
973
974 if (!appctx) {
975 /* No more memory, let's immediately abort. Force the
976 * error code to ignore the ERR_LOCAL which is not a
977 * real error.
978 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200979 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100980
981 si_shutr(si);
982 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100983 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau6bbb2f62013-12-09 17:14:23 +0100984 si->err_type = SI_ET_CONN_RES;
Willy Tarreau4384ddf2013-12-01 12:25:52 +0100985 si->state = SI_ST_CLO;
986 if (s->srv_error)
987 s->srv_error(s, si);
988 return;
989 }
990
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100991 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100992 si->state = SI_ST_EST;
993 si->err_type = SI_ET_NONE;
Willy Tarreaub9a551e2014-04-23 00:35:17 +0200994 be_set_sess_last(s->be);
Willy Tarreaufac4bd12013-11-30 09:21:49 +0100995 /* let sess_establish() finish the job */
Willy Tarreaud84fb5e2013-11-30 09:06:53 +0100996 return;
997 }
998
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100999 /* Try to assign a server */
1000 if (srv_redispatch_connect(s) != 0) {
1001 /* We did not get a server. Either we queued the
1002 * connection request, or we encountered an error.
1003 */
1004 if (si->state == SI_ST_QUE)
1005 return;
1006
1007 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001008 si_shutr(si);
1009 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001010 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001011 if (!si->err_type)
1012 si->err_type = SI_ET_CONN_OTHER;
1013 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001014 if (s->srv_error)
1015 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001016 return;
1017 }
1018
1019 /* The server is assigned */
1020 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1021 si->state = SI_ST_ASS;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001022 be_set_sess_last(s->be);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001023}
1024
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001025/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001026 * if appropriate. The default_backend rule is also considered, then the
1027 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001028 * It returns 1 if the processing can continue on next analysers, or zero if it
1029 * either needs more data or wants to immediately abort the request.
1030 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001031static int process_switching_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001032{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001033 struct persist_rule *prst_rule;
Willy Tarreau192252e2015-04-04 01:47:55 +02001034 struct session *sess = s->sess;
1035 struct proxy *fe = sess->fe;
Willy Tarreau4de91492010-01-22 19:10:05 +01001036
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001037 req->analysers &= ~an_bit;
1038 req->analyse_exp = TICK_ETERNITY;
1039
Willy Tarreau87b09662015-04-03 00:22:06 +02001040 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 +02001041 now_ms, __FUNCTION__,
1042 s,
1043 req,
1044 req->rex, req->wex,
1045 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001046 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001047 req->analysers);
1048
1049 /* now check whether we have some switching rules for this request */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001050 if (!(s->flags & SF_BE_ASSIGNED)) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001051 struct switching_rule *rule;
1052
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001053 list_for_each_entry(rule, &fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001054 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001055
Willy Tarreauf51658d2014-04-23 01:21:56 +02001056 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001057 ret = acl_exec_cond(rule->cond, fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001058 ret = acl_pass(ret);
1059 if (rule->cond->pol == ACL_COND_UNLESS)
1060 ret = !ret;
1061 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001062
1063 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001064 /* If the backend name is dynamic, try to resolve the name.
1065 * If we can't resolve the name, or if any error occurs, break
1066 * the loop and fallback to the default backend.
1067 */
1068 struct proxy *backend;
1069
1070 if (rule->dynamic) {
1071 struct chunk *tmp = get_trash_chunk();
1072 if (!build_logline(s, tmp->str, tmp->size, &rule->be.expr))
1073 break;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001074 backend = proxy_be_by_name(tmp->str);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001075 if (!backend)
1076 break;
1077 }
1078 else
1079 backend = rule->be.backend;
1080
Willy Tarreau87b09662015-04-03 00:22:06 +02001081 if (!stream_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001082 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001083 break;
1084 }
1085 }
1086
1087 /* To ensure correct connection accounting on the backend, we
1088 * have to assign one if it was not set (eg: a listen). This
1089 * measure also takes care of correctly setting the default
1090 * backend if any.
1091 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001092 if (!(s->flags & SF_BE_ASSIGNED))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001093 if (!stream_set_backend(s, fe->defbe.be ? fe->defbe.be : s->be))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001094 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001095 }
1096
Willy Tarreaufb356202010-08-03 14:02:05 +02001097 /* 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 +02001098 if (fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001099 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1100 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001101 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001102
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001103 /* 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 +02001104 * persistence rule, and report that in the stream.
Willy Tarreau4de91492010-01-22 19:10:05 +01001105 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001106 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001107 int ret = 1;
1108
1109 if (prst_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001110 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 +01001111 ret = acl_pass(ret);
1112 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1113 ret = !ret;
1114 }
1115
1116 if (ret) {
1117 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001118 if (prst_rule->type == PERSIST_TYPE_FORCE) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001119 s->flags |= SF_FORCE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001120 } else {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001121 s->flags |= SF_IGNORE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001122 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001123 break;
1124 }
1125 }
1126
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001127 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001128
1129 sw_failed:
1130 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001131 channel_abort(&s->req);
1132 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001133
Willy Tarreaue7dff022015-04-03 01:14:29 +02001134 if (!(s->flags & SF_ERR_MASK))
1135 s->flags |= SF_ERR_RESOURCE;
1136 if (!(s->flags & SF_FINST_MASK))
1137 s->flags |= SF_FINST_R;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001138
Willy Tarreaueee5b512015-04-03 23:46:31 +02001139 if (s->txn)
1140 s->txn->status = 500;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001141 s->req.analysers = 0;
1142 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001143 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001144}
1145
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001146/* This stream analyser works on a request. It applies all use-server rules on
1147 * it then returns 1. The data must already be present in the buffer otherwise
1148 * they won't match. It always returns 1.
1149 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001150static int process_server_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001151{
1152 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001153 struct session *sess = s->sess;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001154 struct server_rule *rule;
1155
Willy Tarreau87b09662015-04-03 00:22:06 +02001156 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 +02001157 now_ms, __FUNCTION__,
1158 s,
1159 req,
1160 req->rex, req->wex,
1161 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001162 req->buf->i + req->buf->o,
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001163 req->analysers);
1164
Willy Tarreaue7dff022015-04-03 01:14:29 +02001165 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001166 list_for_each_entry(rule, &px->server_rules, list) {
1167 int ret;
1168
Willy Tarreau192252e2015-04-04 01:47:55 +02001169 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001170 ret = acl_pass(ret);
1171 if (rule->cond->pol == ACL_COND_UNLESS)
1172 ret = !ret;
1173
1174 if (ret) {
1175 struct server *srv = rule->srv.ptr;
1176
Willy Tarreau892337c2014-05-13 23:41:20 +02001177 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001178 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001179 (s->flags & SF_FORCE_PRST)) {
1180 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001181 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001182 break;
1183 }
1184 /* if the server is not UP, let's go on with next rules
1185 * just in case another one is suited.
1186 */
1187 }
1188 }
1189 }
1190
1191 req->analysers &= ~an_bit;
1192 req->analyse_exp = TICK_ETERNITY;
1193 return 1;
1194}
1195
Emeric Brun1d33b292010-01-04 15:47:17 +01001196/* This stream analyser works on a request. It applies all sticking rules on
1197 * it then returns 1. The data must already be present in the buffer otherwise
1198 * they won't match. It always returns 1.
1199 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001200static int process_sticking_rules(struct stream *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001201{
1202 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001203 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001204 struct sticking_rule *rule;
1205
Willy Tarreau87b09662015-04-03 00:22:06 +02001206 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 +01001207 now_ms, __FUNCTION__,
1208 s,
1209 req,
1210 req->rex, req->wex,
1211 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001212 req->buf->i,
Emeric Brun1d33b292010-01-04 15:47:17 +01001213 req->analysers);
1214
1215 list_for_each_entry(rule, &px->sticking_rules, list) {
1216 int ret = 1 ;
1217 int i;
1218
Willy Tarreau9667a802013-12-09 12:52:13 +01001219 /* Only the first stick store-request of each table is applied
1220 * and other ones are ignored. The purpose is to allow complex
1221 * configurations which look for multiple entries by decreasing
1222 * order of precision and to stop at the first which matches.
1223 * An example could be a store of the IP address from an HTTP
1224 * header first, then from the source if not found.
1225 */
Emeric Brun1d33b292010-01-04 15:47:17 +01001226 for (i = 0; i < s->store_count; i++) {
1227 if (rule->table.t == s->store[i].table)
1228 break;
1229 }
1230
1231 if (i != s->store_count)
1232 continue;
1233
1234 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001235 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001236 ret = acl_pass(ret);
1237 if (rule->cond->pol == ACL_COND_UNLESS)
1238 ret = !ret;
1239 }
1240
1241 if (ret) {
1242 struct stktable_key *key;
1243
Willy Tarreau192252e2015-04-04 01:47:55 +02001244 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 +01001245 if (!key)
1246 continue;
1247
1248 if (rule->flags & STK_IS_MATCH) {
1249 struct stksess *ts;
1250
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001251 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001252 if (!(s->flags & SF_ASSIGNED)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001253 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001254 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001255
1256 /* srv found in table */
Willy Tarreau13c29de2010-06-06 16:40:39 +02001257 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1258 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Emeric Brun1d33b292010-01-04 15:47:17 +01001259 if (node) {
1260 struct server *srv;
1261
1262 srv = container_of(node, struct server, conf.id);
Willy Tarreau892337c2014-05-13 23:41:20 +02001263 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreau4de91492010-01-22 19:10:05 +01001264 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001265 (s->flags & SF_FORCE_PRST)) {
1266 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001267 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001268 }
1269 }
1270 }
Emeric Brun85e77c72010-09-23 18:16:52 +02001271 stktable_touch(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001272 }
1273 }
1274 if (rule->flags & STK_IS_STORE) {
1275 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1276 struct stksess *ts;
1277
1278 ts = stksess_new(rule->table.t, key);
1279 if (ts) {
1280 s->store[s->store_count].table = rule->table.t;
1281 s->store[s->store_count++].ts = ts;
1282 }
1283 }
1284 }
1285 }
1286 }
1287
1288 req->analysers &= ~an_bit;
1289 req->analyse_exp = TICK_ETERNITY;
1290 return 1;
1291}
1292
1293/* This stream analyser works on a response. It applies all store rules on it
1294 * then returns 1. The data must already be present in the buffer otherwise
1295 * they won't match. It always returns 1.
1296 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001297static int process_store_rules(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001298{
1299 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001300 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001301 struct sticking_rule *rule;
1302 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001303 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001304
Willy Tarreau87b09662015-04-03 00:22:06 +02001305 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 +01001306 now_ms, __FUNCTION__,
1307 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001308 rep,
1309 rep->rex, rep->wex,
1310 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001311 rep->buf->i,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001312 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001313
1314 list_for_each_entry(rule, &px->storersp_rules, list) {
1315 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001316
Willy Tarreau9667a802013-12-09 12:52:13 +01001317 /* Only the first stick store-response of each table is applied
1318 * and other ones are ignored. The purpose is to allow complex
1319 * configurations which look for multiple entries by decreasing
1320 * order of precision and to stop at the first which matches.
1321 * An example could be a store of a set-cookie value, with a
1322 * fallback to a parameter found in a 302 redirect.
1323 *
1324 * The store-response rules are not allowed to override the
1325 * store-request rules for the same table, but they may coexist.
1326 * Thus we can have up to one store-request entry and one store-
1327 * response entry for the same table at any time.
1328 */
1329 for (i = nbreq; i < s->store_count; i++) {
1330 if (rule->table.t == s->store[i].table)
1331 break;
1332 }
1333
1334 /* skip existing entries for this table */
1335 if (i < s->store_count)
1336 continue;
1337
Emeric Brun1d33b292010-01-04 15:47:17 +01001338 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001339 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001340 ret = acl_pass(ret);
1341 if (rule->cond->pol == ACL_COND_UNLESS)
1342 ret = !ret;
1343 }
1344
1345 if (ret) {
1346 struct stktable_key *key;
1347
Willy Tarreau192252e2015-04-04 01:47:55 +02001348 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 +01001349 if (!key)
1350 continue;
1351
Willy Tarreau37e340c2013-12-06 23:05:21 +01001352 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001353 struct stksess *ts;
1354
1355 ts = stksess_new(rule->table.t, key);
1356 if (ts) {
1357 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001358 s->store[s->store_count++].ts = ts;
1359 }
1360 }
1361 }
1362 }
1363
1364 /* process store request and store response */
1365 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001366 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001367 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001368
Willy Tarreauc93cd162014-05-13 15:54:22 +02001369 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001370 stksess_free(s->store[i].table, s->store[i].ts);
1371 s->store[i].ts = NULL;
1372 continue;
1373 }
1374
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001375 ts = stktable_lookup(s->store[i].table, s->store[i].ts);
1376 if (ts) {
1377 /* the entry already existed, we can free ours */
Emeric Brun85e77c72010-09-23 18:16:52 +02001378 stktable_touch(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001379 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001380 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001381 else
Emeric Brun85e77c72010-09-23 18:16:52 +02001382 ts = stktable_store(s->store[i].table, s->store[i].ts, 1);
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001383
1384 s->store[i].ts = NULL;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001385 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001386 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Emeric Brun1d33b292010-01-04 15:47:17 +01001387 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001388 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001389
1390 rep->analysers &= ~an_bit;
1391 rep->analyse_exp = TICK_ETERNITY;
1392 return 1;
1393}
1394
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001395/* This macro is very specific to the function below. See the comments in
Willy Tarreau87b09662015-04-03 00:22:06 +02001396 * process_stream() below to understand the logic and the tests.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001397 */
1398#define UPDATE_ANALYSERS(real, list, back, flag) { \
1399 list = (((list) & ~(flag)) | ~(back)) & (real); \
1400 back = real; \
1401 if (!(list)) \
1402 break; \
1403 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1404 continue; \
1405}
1406
Willy Tarreau87b09662015-04-03 00:22:06 +02001407/* Processes the client, server, request and response jobs of a stream task,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001408 * then puts it back to the wait queue in a clean state, or cleans up its
1409 * resources if it must be deleted. Returns in <next> the date the task wants
1410 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1411 * nothing too many times, the request and response buffers flags are monitored
1412 * and each function is called only if at least another function has changed at
1413 * least one flag it is interested in.
1414 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001415struct task *process_stream(struct task *t)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001416{
Willy Tarreau827aee92011-03-10 16:55:02 +01001417 struct server *srv;
Willy Tarreau87b09662015-04-03 00:22:06 +02001418 struct stream *s = t->context;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001419 struct session *sess = s->sess;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001420 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001421 unsigned int rq_prod_last, rq_cons_last;
1422 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001423 unsigned int req_ana_back;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001424 struct channel *req, *res;
1425 struct stream_interface *si_f, *si_b;
1426
1427 req = &s->req;
1428 res = &s->res;
1429
1430 si_f = &s->si[0];
1431 si_b = &s->si[1];
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001432
1433 //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 +01001434 // si_f->state, si_b->state, si_b->err_type, req->flags, res->flags);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001435
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001436 /* this data may be no longer valid, clear it */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001437 if (s->txn)
1438 memset(&s->txn->auth, 0, sizeof(s->txn->auth));
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001439
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02001440 /* This flag must explicitly be set every time */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001441 req->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
1442 res->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001443
1444 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001445 rqf_last = req->flags & ~CF_MASK_ANALYSER;
1446 rpf_last = res->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001447
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001448 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001449 si_f->flags |= SI_FL_DONT_WAKE;
1450 si_b->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001451
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001452 /* 1a: Check for low level timeouts if needed. We just set a flag on
1453 * stream interfaces when their timeouts have expired.
1454 */
1455 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001456 stream_int_check_timeouts(si_f);
1457 stream_int_check_timeouts(si_b);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001458
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001459 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001460 * for future reads or writes. Note: this will also concern upper layers
1461 * but we do not touch any other flag. We must be careful and correctly
1462 * detect state changes when calling them.
1463 */
1464
Willy Tarreau8f128b42014-11-28 15:07:47 +01001465 channel_check_timeouts(req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001466
Willy Tarreau8f128b42014-11-28 15:07:47 +01001467 if (unlikely((req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1468 si_b->flags |= SI_FL_NOLINGER;
1469 si_shutw(si_b);
Willy Tarreau14641402009-12-29 14:49:56 +01001470 }
1471
Willy Tarreau8f128b42014-11-28 15:07:47 +01001472 if (unlikely((req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1473 if (si_f->flags & SI_FL_NOHALF)
1474 si_f->flags |= SI_FL_NOLINGER;
1475 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001476 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001477
Willy Tarreau8f128b42014-11-28 15:07:47 +01001478 channel_check_timeouts(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001479
Willy Tarreau8f128b42014-11-28 15:07:47 +01001480 if (unlikely((res->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1481 si_f->flags |= SI_FL_NOLINGER;
1482 si_shutw(si_f);
Willy Tarreau14641402009-12-29 14:49:56 +01001483 }
1484
Willy Tarreau8f128b42014-11-28 15:07:47 +01001485 if (unlikely((res->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1486 if (si_b->flags & SI_FL_NOHALF)
1487 si_b->flags |= SI_FL_NOLINGER;
1488 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001489 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001490
1491 /* Once in a while we're woken up because the task expires. But
1492 * this does not necessarily mean that a timeout has been reached.
Willy Tarreau87b09662015-04-03 00:22:06 +02001493 * So let's not run a whole stream processing if only an expiration
Willy Tarreau798f4322012-11-08 14:49:17 +01001494 * timeout needs to be refreshed.
1495 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001496 if (!((req->flags | res->flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01001497 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
1498 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001499 !((si_f->flags | si_b->flags) & (SI_FL_EXP|SI_FL_ERR)) &&
Willy Tarreau798f4322012-11-08 14:49:17 +01001500 ((t->state & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER))
1501 goto update_exp_and_leave;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001502 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001503
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001504 /* below we may emit error messages so we have to ensure that we have
1505 * our buffers properly allocated.
1506 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001507 if (!stream_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001508 /* No buffer available, we've been subscribed to the list of
1509 * buffer waiters, let's wait for our turn.
1510 */
1511 goto update_exp_and_leave;
1512 }
1513
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001514 /* 1b: check for low-level errors reported at the stream interface.
1515 * First we check if it's a retryable error (in which case we don't
1516 * want to tell the buffer). Otherwise we report the error one level
1517 * upper by setting flags into the buffers. Note that the side towards
1518 * the client cannot have connect (hence retryable) errors. Also, the
1519 * connection setup code must be able to deal with any type of abort.
1520 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001521 srv = objt_server(s->target);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001522 if (unlikely(si_f->flags & SI_FL_ERR)) {
1523 if (si_f->state == SI_ST_EST || si_f->state == SI_ST_DIS) {
1524 si_shutr(si_f);
1525 si_shutw(si_f);
1526 stream_int_report_error(si_f);
1527 if (!(req->analysers) && !(res->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001528 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001529 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001530 if (srv)
1531 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001532 if (!(s->flags & SF_ERR_MASK))
1533 s->flags |= SF_ERR_CLICL;
1534 if (!(s->flags & SF_FINST_MASK))
1535 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001536 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001537 }
1538 }
1539
Willy Tarreau8f128b42014-11-28 15:07:47 +01001540 if (unlikely(si_b->flags & SI_FL_ERR)) {
1541 if (si_b->state == SI_ST_EST || si_b->state == SI_ST_DIS) {
1542 si_shutr(si_b);
1543 si_shutw(si_b);
1544 stream_int_report_error(si_b);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001545 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001546 if (srv)
1547 srv->counters.failed_resp++;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001548 if (!(req->analysers) && !(res->analysers)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001549 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001550 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001551 if (srv)
1552 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001553 if (!(s->flags & SF_ERR_MASK))
1554 s->flags |= SF_ERR_SRVCL;
1555 if (!(s->flags & SF_FINST_MASK))
1556 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001557 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001558 }
1559 /* note: maybe we should process connection errors here ? */
1560 }
1561
Willy Tarreau8f128b42014-11-28 15:07:47 +01001562 if (si_b->state == SI_ST_CON) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001563 /* we were trying to establish a connection on the server side,
1564 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1565 */
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001566 if (unlikely(!sess_update_st_con_tcp(s)))
1567 sess_update_st_cer(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001568 else if (si_b->state == SI_ST_EST)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001569 sess_establish(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001570
1571 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1572 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1573 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1574 */
1575 }
1576
Willy Tarreau8f128b42014-11-28 15:07:47 +01001577 rq_prod_last = si_f->state;
1578 rq_cons_last = si_b->state;
1579 rp_cons_last = si_f->state;
1580 rp_prod_last = si_b->state;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001581
1582 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001583 /* Check for connection closure */
1584
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001585 DPRINTF(stderr,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001586 "[%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 +01001587 now_ms, __FUNCTION__, __LINE__,
1588 t,
1589 s, s->flags,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001590 req, res,
1591 req->rex, res->wex,
1592 req->flags, res->flags,
1593 req->buf->i, req->buf->o, res->buf->i, res->buf->o, si_f->state, si_b->state,
1594 si_f->err_type, si_b->err_type,
1595 si_b->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001596
1597 /* nothing special to be done on client side */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001598 if (unlikely(si_f->state == SI_ST_DIS))
1599 si_f->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001600
1601 /* When a server-side connection is released, we have to count it and
1602 * check for pending connections on this server.
1603 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001604 if (unlikely(si_b->state == SI_ST_DIS)) {
1605 si_b->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001606 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001607 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001608 if (s->flags & SF_CURR_SESS) {
1609 s->flags &= ~SF_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01001610 srv->cur_sess--;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001611 }
1612 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001613 if (may_dequeue_tasks(srv, s->be))
1614 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001615 }
1616 }
1617
1618 /*
1619 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1620 * at this point.
1621 */
1622
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001623 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001624 /* Analyse request */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001625 if (((req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1626 ((req->flags ^ rqf_last) & CF_MASK_STATIC) ||
1627 si_f->state != rq_prod_last ||
1628 si_b->state != rq_cons_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01001629 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001630 unsigned int flags = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001631
Willy Tarreau8f128b42014-11-28 15:07:47 +01001632 if (si_f->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001633 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001634 unsigned int ana_list;
1635 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001636
Willy Tarreau90deb182010-01-07 00:20:41 +01001637 /* it's up to the analysers to stop new connections,
1638 * disable reading or closing. Note: if an analyser
1639 * disables any of these bits, it is responsible for
1640 * enabling them again when it disables itself, so
1641 * that other analysers are called in similar conditions.
1642 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001643 channel_auto_read(req);
1644 channel_auto_connect(req);
1645 channel_auto_close(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001646
1647 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001648 * req->analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01001649 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001650 * the list when not needed. Any analyser may return 0
1651 * to break out of the loop, either because of missing
1652 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001653 * kill the stream. We loop at least once through each
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001654 * analyser, and we may loop again if other analysers
1655 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001656 *
1657 * We build a list of analysers to run. We evaluate all
1658 * of these analysers in the order of the lower bit to
1659 * the higher bit. This ordering is very important.
1660 * An analyser will often add/remove other analysers,
1661 * including itself. Any changes to itself have no effect
1662 * on the loop. If it removes any other analysers, we
1663 * want those analysers not to be called anymore during
1664 * this loop. If it adds an analyser that is located
1665 * after itself, we want it to be scheduled for being
1666 * processed during the loop. If it adds an analyser
1667 * which is located before it, we want it to switch to
1668 * it immediately, even if it has already been called
1669 * once but removed since.
1670 *
1671 * In order to achieve this, we compare the analyser
1672 * list after the call with a copy of it before the
1673 * call. The work list is fed with analyser bits that
1674 * appeared during the call. Then we compare previous
1675 * work list with the new one, and check the bits that
1676 * appeared. If the lowest of these bits is lower than
1677 * the current bit, it means we have enabled a previous
1678 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001679 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001680
Willy Tarreau8f128b42014-11-28 15:07:47 +01001681 ana_list = ana_back = req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001682 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001683 /* Warning! ensure that analysers are always placed in ascending order! */
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001684
Willy Tarreaufb356202010-08-03 14:02:05 +02001685 if (ana_list & AN_REQ_INSPECT_FE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001686 if (!tcp_inspect_request(s, req, AN_REQ_INSPECT_FE))
Willy Tarreauedcf6682008-11-30 23:15:34 +01001687 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001688 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_INSPECT_FE);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001689 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001690
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001691 if (ana_list & AN_REQ_WAIT_HTTP) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001692 if (!http_wait_for_request(s, req, AN_REQ_WAIT_HTTP))
Willy Tarreaud787e662009-07-07 10:14:51 +02001693 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001694 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_WAIT_HTTP);
Willy Tarreaud787e662009-07-07 10:14:51 +02001695 }
1696
Willy Tarreau748179e2015-05-01 21:52:31 +02001697 if (ana_list & AN_REQ_HTTP_BODY) {
1698 if (!http_wait_for_request_body(s, req, AN_REQ_HTTP_BODY))
1699 break;
1700 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_BODY);
1701 }
1702
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001703 if (ana_list & AN_REQ_HTTP_PROCESS_FE) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001704 if (!http_process_req_common(s, req, AN_REQ_HTTP_PROCESS_FE, sess->fe))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001705 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001706 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001707 }
1708
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001709 if (ana_list & AN_REQ_SWITCHING_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001710 if (!process_switching_rules(s, req, AN_REQ_SWITCHING_RULES))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001711 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001712 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001713 }
1714
Willy Tarreaufb356202010-08-03 14:02:05 +02001715 if (ana_list & AN_REQ_INSPECT_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001716 if (!tcp_inspect_request(s, req, AN_REQ_INSPECT_BE))
Willy Tarreaufb356202010-08-03 14:02:05 +02001717 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001718 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_INSPECT_BE);
Willy Tarreaufb356202010-08-03 14:02:05 +02001719 }
1720
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001721 if (ana_list & AN_REQ_HTTP_PROCESS_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001722 if (!http_process_req_common(s, req, AN_REQ_HTTP_PROCESS_BE, s->be))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001723 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001724 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001725 }
1726
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001727 if (ana_list & AN_REQ_HTTP_TARPIT) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001728 if (!http_process_tarpit(s, req, AN_REQ_HTTP_TARPIT))
Willy Tarreau60b85b02008-11-30 23:28:40 +01001729 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001730 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001731 }
Willy Tarreau60b85b02008-11-30 23:28:40 +01001732
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001733 if (ana_list & AN_REQ_SRV_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001734 if (!process_server_rules(s, req, AN_REQ_SRV_RULES))
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001735 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001736 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_SRV_RULES);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001737 }
1738
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001739 if (ana_list & AN_REQ_HTTP_INNER) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001740 if (!http_process_request(s, req, AN_REQ_HTTP_INNER))
Willy Tarreauc465fd72009-08-31 00:17:18 +02001741 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001742 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_INNER);
Willy Tarreauc465fd72009-08-31 00:17:18 +02001743 }
1744
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001745 if (ana_list & AN_REQ_PRST_RDP_COOKIE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001746 if (!tcp_persist_rdp_cookie(s, req, AN_REQ_PRST_RDP_COOKIE))
Emeric Brun647caf12009-06-30 17:57:00 +02001747 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001748 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
Emeric Brun647caf12009-06-30 17:57:00 +02001749 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001750
Emeric Brun1d33b292010-01-04 15:47:17 +01001751 if (ana_list & AN_REQ_STICKING_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001752 if (!process_sticking_rules(s, req, AN_REQ_STICKING_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01001753 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001754 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_STICKING_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01001755 }
1756
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001757 if (ana_list & AN_REQ_HTTP_XFER_BODY) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001758 if (!http_request_forward_body(s, req, AN_REQ_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01001759 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001760 UPDATE_ANALYSERS(req->analysers, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001761 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001762 break;
1763 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001764 }
Willy Tarreau84455332009-03-15 22:34:05 +01001765
Willy Tarreau8f128b42014-11-28 15:07:47 +01001766 rq_prod_last = si_f->state;
1767 rq_cons_last = si_b->state;
1768 req->flags &= ~CF_WAKE_ONCE;
1769 rqf_last = req->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001770
Willy Tarreau8f128b42014-11-28 15:07:47 +01001771 if ((req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001772 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001773 }
1774
Willy Tarreau576507f2010-01-07 00:09:04 +01001775 /* we'll monitor the request analysers while parsing the response,
1776 * because some response analysers may indirectly enable new request
1777 * analysers (eg: HTTP keep-alive).
1778 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001779 req_ana_back = req->analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01001780
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001781 resync_response:
1782 /* Analyse response */
1783
Willy Tarreau8f128b42014-11-28 15:07:47 +01001784 if (((res->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1785 (res->flags ^ rpf_last) & CF_MASK_STATIC ||
1786 si_f->state != rp_cons_last ||
1787 si_b->state != rp_prod_last ||
Thierry FOURNIER2e05a8c2014-11-24 14:49:56 +01001788 s->task->state & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001789 unsigned int flags = res->flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001790
Willy Tarreau8f128b42014-11-28 15:07:47 +01001791 if ((res->flags & CF_MASK_ANALYSER) &&
1792 (res->analysers & AN_REQ_ALL)) {
Willy Tarreau0499e352010-12-17 07:13:42 +01001793 /* Due to HTTP pipelining, the HTTP request analyser might be waiting
1794 * for some free space in the response buffer, so we might need to call
1795 * it when something changes in the response buffer, but still we pass
1796 * it the request buffer. Note that the SI state might very well still
1797 * be zero due to us returning a flow of redirects!
1798 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001799 res->analysers &= ~AN_REQ_ALL;
1800 req->flags |= CF_WAKE_ONCE;
Willy Tarreau0499e352010-12-17 07:13:42 +01001801 }
1802
Willy Tarreau8f128b42014-11-28 15:07:47 +01001803 if (si_b->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001804 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001805 unsigned int ana_list;
1806 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001807
Willy Tarreau90deb182010-01-07 00:20:41 +01001808 /* it's up to the analysers to stop disable reading or
1809 * closing. Note: if an analyser disables any of these
1810 * bits, it is responsible for enabling them again when
1811 * it disables itself, so that other analysers are called
1812 * in similar conditions.
1813 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001814 channel_auto_read(res);
1815 channel_auto_close(res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001816
1817 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001818 * res->analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001819 * to MSB. The analysers must remove themselves from
1820 * the list when not needed. Any analyser may return 0
1821 * to break out of the loop, either because of missing
1822 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001823 * kill the stream. We loop at least once through each
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001824 * analyser, and we may loop again if other analysers
1825 * are added in the middle.
1826 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001827
Willy Tarreau8f128b42014-11-28 15:07:47 +01001828 ana_list = ana_back = res->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001829 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001830 /* Warning! ensure that analysers are always placed in ascending order! */
1831
Emeric Brun97679e72010-09-23 17:56:44 +02001832 if (ana_list & AN_RES_INSPECT) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001833 if (!tcp_inspect_response(s, res, AN_RES_INSPECT))
Emeric Brun97679e72010-09-23 17:56:44 +02001834 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001835 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_INSPECT);
Emeric Brun97679e72010-09-23 17:56:44 +02001836 }
1837
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001838 if (ana_list & AN_RES_WAIT_HTTP) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001839 if (!http_wait_for_response(s, res, AN_RES_WAIT_HTTP))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001840 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001841 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_WAIT_HTTP);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001842 }
1843
Emeric Brun1d33b292010-01-04 15:47:17 +01001844 if (ana_list & AN_RES_STORE_RULES) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001845 if (!process_store_rules(s, res, AN_RES_STORE_RULES))
Emeric Brun1d33b292010-01-04 15:47:17 +01001846 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001847 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_STORE_RULES);
Emeric Brun1d33b292010-01-04 15:47:17 +01001848 }
1849
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001850 if (ana_list & AN_RES_HTTP_PROCESS_BE) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001851 if (!http_process_res_common(s, res, AN_RES_HTTP_PROCESS_BE, s->be))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001852 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001853 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001854 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001855
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001856 if (ana_list & AN_RES_HTTP_XFER_BODY) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001857 if (!http_response_forward_body(s, res, AN_RES_HTTP_XFER_BODY))
Willy Tarreaud98cf932009-12-27 22:54:55 +01001858 break;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001859 UPDATE_ANALYSERS(res->analysers, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Willy Tarreaud98cf932009-12-27 22:54:55 +01001860 }
Willy Tarreaue34070e2010-01-08 00:32:27 +01001861 break;
1862 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001863 }
1864
Willy Tarreau8f128b42014-11-28 15:07:47 +01001865 rp_cons_last = si_f->state;
1866 rp_prod_last = si_b->state;
1867 rpf_last = res->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001868
Willy Tarreau8f128b42014-11-28 15:07:47 +01001869 if ((res->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001870 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001871 }
1872
Willy Tarreau576507f2010-01-07 00:09:04 +01001873 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001874 if (req->analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01001875 goto resync_request;
1876
Willy Tarreau8f128b42014-11-28 15:07:47 +01001877 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001878 goto resync_request;
1879
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001880 /* FIXME: here we should call protocol handlers which rely on
1881 * both buffers.
1882 */
1883
1884
1885 /*
Willy Tarreau87b09662015-04-03 00:22:06 +02001886 * Now we propagate unhandled errors to the stream. Normally
Willy Tarreauae526782010-03-04 20:34:23 +01001887 * we're just in a data phase here since it means we have not
1888 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001889 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001890 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001891 if (unlikely(!(s->flags & SF_ERR_MASK))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001892 if (req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001893 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001894 req->analysers = 0;
1895 if (req->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001896 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001897 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001898 if (srv)
1899 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001900 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001901 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001902 else if (req->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001903 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001904 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001905 if (srv)
1906 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001907 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001908 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001909 else if (req->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001910 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001911 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001912 if (srv)
1913 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001914 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001915 }
1916 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001917 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001918 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001919 if (srv)
1920 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001921 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001922 }
Willy Tarreau84455332009-03-15 22:34:05 +01001923 sess_set_term_flags(s);
1924 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001925 else if (res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001926 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001927 res->analysers = 0;
1928 if (res->flags & CF_READ_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001929 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001930 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001931 if (srv)
1932 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001933 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001934 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001935 else if (res->flags & CF_READ_TIMEOUT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001936 s->be->be_counters.srv_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001937 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001938 if (srv)
1939 srv->counters.srv_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001940 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001941 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001942 else if (res->flags & CF_WRITE_ERROR) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001943 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001944 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001945 if (srv)
1946 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001947 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001948 }
1949 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001950 s->be->be_counters.cli_aborts++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001951 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01001952 if (srv)
1953 srv->counters.cli_aborts++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001954 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001955 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001956 sess_set_term_flags(s);
1957 }
Willy Tarreau84455332009-03-15 22:34:05 +01001958 }
1959
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001960 /*
1961 * Here we take care of forwarding unhandled data. This also includes
1962 * connection establishments and shutdown requests.
1963 */
1964
1965
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001966 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001967 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001968 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001969 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001970 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001971 if (unlikely(!req->analysers &&
1972 !(req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
1973 (si_f->state >= SI_ST_EST) &&
1974 (req->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01001975 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001976 * attached to it. If any data are left in, we'll permit them to
1977 * move.
1978 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001979 channel_auto_read(req);
1980 channel_auto_connect(req);
1981 channel_auto_close(req);
1982 buffer_flush(req->buf);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01001983
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01001984 /* We'll let data flow between the producer (if still connected)
1985 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001986 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001987 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
1988 channel_forward(req, CHN_INFINITE_FORWARD);
Willy Tarreau42529c32015-07-09 18:38:57 +02001989
1990 /* Just in order to support fetching HTTP contents after start
1991 * of forwarding when the HTTP forwarding analyser is not used,
1992 * we simply reset msg->sov so that HTTP rewinding points to the
1993 * headers.
1994 */
1995 if (s->txn)
1996 s->txn->req.sov = s->txn->req.eoh + s->txn->req.eol - req->buf->o;
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001997 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01001998
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001999 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002000 if (!(req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2001 req->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002002 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002003 (objt_conn(si_f->end) && __objt_conn(si_f->end)->xprt && __objt_conn(si_f->end)->xprt->rcv_pipe) &&
2004 (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 +01002005 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002006 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2007 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002008 (req->flags & CF_STREAMER_FAST)))) {
2009 req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002010 }
2011
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002012 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002013 rqf_last = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002014
2015 /*
2016 * Now forward all shutdown requests between both sides of the buffer
2017 */
2018
Willy Tarreau520d95e2009-09-19 21:04:57 +02002019 /* first, let's check if the request buffer needs to shutdown(write), which may
2020 * happen either because the input is closed or because we want to force a close
Willy Tarreau05cdd962014-05-10 14:30:07 +02002021 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2022 * the other side's timeout as well.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002023 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002024 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002025 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002026 channel_shutw_now(req);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002027 if (tick_isset(sess->fe->timeout.clientfin)) {
2028 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002029 res->wex = tick_add(now_ms, res->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002030 }
2031 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002032
2033 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002034 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2035 channel_is_empty(req))) {
2036 if (req->flags & CF_READ_ERROR)
2037 si_b->flags |= SI_FL_NOLINGER;
2038 si_shutw(si_b);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002039 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002040 res->rto = s->be->timeout.serverfin;
2041 res->rex = tick_add(now_ms, res->rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002042 }
Willy Tarreau8615c2a2013-06-21 08:20:19 +02002043 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002044
2045 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002046 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2047 !req->analysers))
2048 channel_shutr_now(req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002049
2050 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002051 if (unlikely((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2052 if (si_f->flags & SI_FL_NOHALF)
2053 si_f->flags |= SI_FL_NOLINGER;
2054 si_shutr(si_f);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002055 if (tick_isset(sess->fe->timeout.clientfin)) {
2056 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002057 res->wex = tick_add(now_ms, res->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002058 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002059 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002060
Willy Tarreau520d95e2009-09-19 21:04:57 +02002061 /* it's possible that an upper layer has requested a connection setup or abort.
2062 * There are 2 situations where we decide to establish a new connection :
2063 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002064 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002065 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002066 if (si_b->state == SI_ST_INI) {
2067 if (!(req->flags & CF_SHUTW)) {
2068 if ((req->flags & CF_AUTO_CONNECT) || !channel_is_empty(req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002069 /* If we have an appctx, there is no connect method, so we
2070 * immediately switch to the connected state, otherwise we
2071 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002072 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002073 si_b->state = SI_ST_REQ; /* new connection requested */
2074 si_b->conn_retries = s->be->conn_retries;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002075 }
Willy Tarreau73201222009-08-16 18:27:24 +02002076 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002077 else {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002078 si_b->state = SI_ST_CLO; /* shutw+ini = abort */
2079 channel_shutw_now(req); /* fix buffer flags upon abort */
2080 channel_shutr_now(res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002081 }
Willy Tarreau92795622009-03-06 12:51:23 +01002082 }
2083
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002084
2085 /* we may have a pending connection request, or a connection waiting
2086 * for completion.
2087 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002088 if (si_b->state >= SI_ST_REQ && si_b->state < SI_ST_CON) {
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002089
2090 /* prune the request variables and swap to the response variables. */
2091 if (s->vars_reqres.scope != SCOPE_RES) {
2092 vars_prune(&s->vars_reqres, s);
2093 vars_init(&s->vars_reqres, SCOPE_RES);
2094 }
2095
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002096 do {
2097 /* nb: step 1 might switch from QUE to ASS, but we first want
2098 * to give a chance to step 2 to perform a redirect if needed.
2099 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002100 if (si_b->state != SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002101 sess_update_stream_int(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002102 if (si_b->state == SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002103 sess_prepare_conn_req(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002104
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002105 /* applets directly go to the ESTABLISHED state. Similarly,
2106 * servers experience the same fate when their connection
2107 * is reused.
2108 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002109 if (unlikely(si_b->state == SI_ST_EST))
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002110 sess_establish(s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002111
Willy Tarreaub44c8732013-12-31 23:16:50 +01002112 /* Now we can add the server name to a header (if requested) */
2113 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002114 if ((si_b->state >= SI_ST_CON) &&
Willy Tarreaub44c8732013-12-31 23:16:50 +01002115 (s->be->server_id_hdr_name != NULL) &&
2116 (s->be->mode == PR_MODE_HTTP) &&
2117 objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02002118 http_send_name_header(s->txn, s->be, objt_server(s->target)->id);
Willy Tarreau1e5dfda2013-04-07 18:19:16 +02002119 }
2120
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002121 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002122 if (si_b->state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SF_REDIRECTABLE))
Willy Tarreau8f128b42014-11-28 15:07:47 +01002123 http_perform_server_redirect(s, si_b);
2124 } while (si_b->state == SI_ST_ASS);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002125 }
2126
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002127 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002128 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002129 goto resync_stream_interface;
2130
Willy Tarreau815a9b22010-07-27 17:15:12 +02002131 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002132 if ((req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002133 goto resync_request;
2134
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002135 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002136
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002137 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002138 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002139 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002140 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002141 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002142 if (unlikely(!res->analysers &&
2143 !(res->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2144 (si_b->state >= SI_ST_EST) &&
2145 (res->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002146 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002147 * attached to it. If any data are left in, we'll permit them to
2148 * move.
2149 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002150 channel_auto_read(res);
2151 channel_auto_close(res);
2152 buffer_flush(res->buf);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002153
2154 /* We'll let data flow between the producer (if still connected)
2155 * to the consumer.
2156 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002157 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2158 channel_forward(res, CHN_INFINITE_FORWARD);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002159
Willy Tarreau42529c32015-07-09 18:38:57 +02002160 /* Just in order to support fetching HTTP contents after start
2161 * of forwarding when the HTTP forwarding analyser is not used,
2162 * we simply reset msg->sov so that HTTP rewinding points to the
2163 * headers.
2164 */
2165 if (s->txn)
2166 s->txn->rsp.sov = s->txn->rsp.eoh + s->txn->rsp.eol - res->buf->o;
2167
Willy Tarreauce887fd2012-05-12 12:50:00 +02002168 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002169 * tunnel timeout set, use it now. Note that we must respect
2170 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002171 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002172 if (!req->analysers && s->be->timeout.tunnel) {
2173 req->rto = req->wto = res->rto = res->wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002174 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002175
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002176 if ((req->flags & CF_SHUTR) && tick_isset(sess->fe->timeout.clientfin))
2177 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002178 if ((req->flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2179 res->rto = s->be->timeout.serverfin;
2180 if ((res->flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2181 req->wto = s->be->timeout.serverfin;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002182 if ((res->flags & CF_SHUTW) && tick_isset(sess->fe->timeout.clientfin))
2183 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002184
Willy Tarreau8f128b42014-11-28 15:07:47 +01002185 req->rex = tick_add(now_ms, req->rto);
2186 req->wex = tick_add(now_ms, req->wto);
2187 res->rex = tick_add(now_ms, res->rto);
2188 res->wex = tick_add(now_ms, res->wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002189 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002190 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002191
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002192 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002193 if (!(res->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2194 res->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002195 (global.tune.options & GTUNE_USE_SPLICE) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002196 (objt_conn(si_f->end) && __objt_conn(si_f->end)->xprt && __objt_conn(si_f->end)->xprt->snd_pipe) &&
2197 (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 +01002198 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002199 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2200 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002201 (res->flags & CF_STREAMER_FAST)))) {
2202 res->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002203 }
2204
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002205 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002206 rpf_last = res->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002207
2208 /*
2209 * Now forward all shutdown requests between both sides of the buffer
2210 */
2211
2212 /*
2213 * FIXME: this is probably where we should produce error responses.
2214 */
2215
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002216 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002217 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002218 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002219 channel_shutw_now(res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002220 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002221 req->wto = s->be->timeout.serverfin;
2222 req->wex = tick_add(now_ms, req->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002223 }
2224 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002225
2226 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002227 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2228 channel_is_empty(res))) {
2229 si_shutw(si_f);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002230 if (tick_isset(sess->fe->timeout.clientfin)) {
2231 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002232 req->rex = tick_add(now_ms, req->rto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002233 }
2234 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002235
2236 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002237 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2238 !res->analysers)
2239 channel_shutr_now(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002240
2241 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002242 if (unlikely((res->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2243 if (si_b->flags & SI_FL_NOHALF)
2244 si_b->flags |= SI_FL_NOLINGER;
2245 si_shutr(si_b);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002246 if (tick_isset(s->be->timeout.serverfin)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002247 req->wto = s->be->timeout.serverfin;
2248 req->wex = tick_add(now_ms, req->wto);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002249 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002250 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002251
Willy Tarreau8f128b42014-11-28 15:07:47 +01002252 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002253 goto resync_stream_interface;
2254
Willy Tarreau8f128b42014-11-28 15:07:47 +01002255 if (req->flags != rqf_last)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002256 goto resync_request;
2257
Willy Tarreau8f128b42014-11-28 15:07:47 +01002258 if ((res->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002259 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002260
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002261 /* we're interested in getting wakeups again */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002262 si_f->flags &= ~SI_FL_DONT_WAKE;
2263 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002264
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002265 /* This is needed only when debugging is enabled, to indicate
2266 * client-side or server-side close. Please note that in the unlikely
2267 * event where both sides would close at once, the sequence is reported
2268 * on the server side first.
2269 */
2270 if (unlikely((global.mode & MODE_DEBUG) &&
2271 (!(global.mode & MODE_QUIET) ||
2272 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002273 if (si_b->state == SI_ST_CLO &&
2274 si_b->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002275 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002276 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002277 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2278 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002279 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002280 }
2281
Willy Tarreau8f128b42014-11-28 15:07:47 +01002282 if (si_f->state == SI_ST_CLO &&
2283 si_f->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002284 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002285 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002286 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2287 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002288 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002289 }
2290 }
2291
Willy Tarreau8f128b42014-11-28 15:07:47 +01002292 if (likely((si_f->state != SI_ST_CLO) ||
2293 (si_b->state > SI_ST_INI && si_b->state < SI_ST_CLO))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002294
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002295 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED))
Willy Tarreau87b09662015-04-03 00:22:06 +02002296 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002297
Willy Tarreau563cc372015-04-19 18:13:56 +02002298 if (si_f->state == SI_ST_EST)
Willy Tarreau8f128b42014-11-28 15:07:47 +01002299 si_update(si_f);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002300
Willy Tarreau563cc372015-04-19 18:13:56 +02002301 if (si_b->state == SI_ST_EST)
Willy Tarreau8f128b42014-11-28 15:07:47 +01002302 si_update(si_b);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002303
Willy Tarreau8f128b42014-11-28 15:07:47 +01002304 req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2305 res->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED);
2306 si_f->prev_state = si_f->state;
2307 si_b->prev_state = si_b->state;
2308 si_f->flags &= ~(SI_FL_ERR|SI_FL_EXP);
2309 si_b->flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002310
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002311 /* Trick: if a request is being waiting for the server to respond,
2312 * and if we know the server can timeout, we don't want the timeout
2313 * to expire on the client side first, but we're still interested
2314 * in passing data from the client to the server (eg: POST). Thus,
2315 * we can cancel the client's request timeout if the server's
2316 * request timeout is set and the server has not yet sent a response.
2317 */
2318
Willy Tarreau8f128b42014-11-28 15:07:47 +01002319 if ((res->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2320 (tick_isset(req->wex) || tick_isset(res->rex))) {
2321 req->flags |= CF_READ_NOEXP;
2322 req->rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002323 }
2324
Willy Tarreau798f4322012-11-08 14:49:17 +01002325 update_exp_and_leave:
Willy Tarreau8f128b42014-11-28 15:07:47 +01002326 t->expire = tick_first(tick_first(req->rex, req->wex),
2327 tick_first(res->rex, res->wex));
2328 if (req->analysers)
2329 t->expire = tick_first(t->expire, req->analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002330
Willy Tarreau8f128b42014-11-28 15:07:47 +01002331 if (si_f->exp)
2332 t->expire = tick_first(t->expire, si_f->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002333
Willy Tarreau8f128b42014-11-28 15:07:47 +01002334 if (si_b->exp)
2335 t->expire = tick_first(t->expire, si_b->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002336
2337#ifdef DEBUG_FULL
Willy Tarreau127334e2009-03-28 10:47:26 +01002338 fprintf(stderr,
2339 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2340 " 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 +01002341 now_ms, t->expire, req->rex, req->wex, req->analyse_exp,
2342 res->rex, res->wex, si_f->exp, si_b->exp, si_f->state, si_b->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002343#endif
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002344
2345#ifdef DEBUG_DEV
2346 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002347 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002348 ABORT_NOW();
2349#endif
Willy Tarreau87b09662015-04-03 00:22:06 +02002350 stream_release_buffers(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002351 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002352 }
2353
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002354 sess->fe->feconn--;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002355 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002356 s->be->beconn--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002357 jobs--;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002358 if (sess->listener) {
2359 if (!(sess->listener->options & LI_O_UNLIMITED))
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002360 actconn--;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002361 sess->listener->nbconn--;
2362 if (sess->listener->state == LI_FULL)
2363 resume_listener(sess->listener);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002364
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002365 /* Dequeues all of the listeners waiting for a resource */
2366 if (!LIST_ISEMPTY(&global_listener_queue))
2367 dequeue_all_listeners(&global_listener_queue);
Willy Tarreau08ceb102011-07-24 22:58:00 +02002368
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002369 if (!LIST_ISEMPTY(&sess->fe->listener_queue) &&
2370 (!sess->fe->fe_sps_lim || freq_ctr_remain(&sess->fe->fe_sess_per_sec, sess->fe->fe_sps_lim, 0) > 0))
2371 dequeue_all_listeners(&sess->fe->listener_queue);
Thierry FOURNIERa47a94f2014-03-20 15:42:53 +01002372 }
Willy Tarreau07687c12011-07-24 23:55:06 +02002373
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002374 if (unlikely((global.mode & MODE_DEBUG) &&
2375 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002376 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002377 s->uniq_id, s->be->id,
Willy Tarreau8f128b42014-11-28 15:07:47 +01002378 objt_conn(si_f->end) ? (unsigned short)objt_conn(si_f->end)->t.sock.fd : -1,
2379 objt_conn(si_b->end) ? (unsigned short)objt_conn(si_b->end)->t.sock.fd : -1);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002380 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002381 }
2382
2383 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02002384 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002385
Willy Tarreaueee5b512015-04-03 23:46:31 +02002386 if (s->txn && s->txn->status) {
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002387 int n;
2388
Willy Tarreaueee5b512015-04-03 23:46:31 +02002389 n = s->txn->status / 100;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002390 if (n < 1 || n > 5)
2391 n = 0;
2392
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002393 if (sess->fe->mode == PR_MODE_HTTP) {
2394 sess->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002395 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002396 sess->fe->fe_counters.p.http.comp_rsp++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002397 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002398 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002399 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002400 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002401 s->be->be_counters.p.http.cum_req++;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002402 if (s->comp_algo && (s->flags & SF_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002403 s->be->be_counters.p.http.comp_rsp++;
2404 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002405 }
2406
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002407 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002408 if (!LIST_ISEMPTY(&sess->fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02002409 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002410 (!(sess->fe->options & PR_O_NULLNOLOG) || req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002411 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002412 }
2413
Willy Tarreau87b09662015-04-03 00:22:06 +02002414 /* update time stats for this stream */
2415 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002416
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002417 /* the task MUST not be in the run queue anymore */
Willy Tarreau87b09662015-04-03 00:22:06 +02002418 stream_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002419 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002420 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002421 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002422}
2423
Willy Tarreau87b09662015-04-03 00:22:06 +02002424/* Update the stream's backend and server time stats */
2425void stream_update_time_stats(struct stream *s)
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002426{
2427 int t_request;
2428 int t_queue;
2429 int t_connect;
2430 int t_data;
2431 int t_close;
2432 struct server *srv;
2433
2434 t_request = 0;
2435 t_queue = s->logs.t_queue;
2436 t_connect = s->logs.t_connect;
2437 t_close = s->logs.t_close;
2438 t_data = s->logs.t_data;
2439
2440 if (s->be->mode != PR_MODE_HTTP)
2441 t_data = t_connect;
2442
2443 if (t_connect < 0 || t_data < 0)
2444 return;
2445
2446 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2447 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2448
2449 t_data -= t_connect;
2450 t_connect -= t_queue;
2451 t_queue -= t_request;
2452
2453 srv = objt_server(s->target);
2454 if (srv) {
2455 swrate_add(&srv->counters.q_time, TIME_STATS_SAMPLES, t_queue);
2456 swrate_add(&srv->counters.c_time, TIME_STATS_SAMPLES, t_connect);
2457 swrate_add(&srv->counters.d_time, TIME_STATS_SAMPLES, t_data);
2458 swrate_add(&srv->counters.t_time, TIME_STATS_SAMPLES, t_close);
2459 }
2460 swrate_add(&s->be->be_counters.q_time, TIME_STATS_SAMPLES, t_queue);
2461 swrate_add(&s->be->be_counters.c_time, TIME_STATS_SAMPLES, t_connect);
2462 swrate_add(&s->be->be_counters.d_time, TIME_STATS_SAMPLES, t_data);
2463 swrate_add(&s->be->be_counters.t_time, TIME_STATS_SAMPLES, t_close);
2464}
2465
Willy Tarreau7c669d72008-06-20 15:04:11 +02002466/*
2467 * This function adjusts sess->srv_conn and maintains the previous and new
Willy Tarreau87b09662015-04-03 00:22:06 +02002468 * server's served stream counts. Setting newsrv to NULL is enough to release
Willy Tarreau7c669d72008-06-20 15:04:11 +02002469 * current connection slot. This function also notifies any LB algo which might
Willy Tarreau87b09662015-04-03 00:22:06 +02002470 * expect to be informed about any change in the number of active streams on a
Willy Tarreau7c669d72008-06-20 15:04:11 +02002471 * server.
2472 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002473void sess_change_server(struct stream *sess, struct server *newsrv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02002474{
2475 if (sess->srv_conn == newsrv)
2476 return;
2477
2478 if (sess->srv_conn) {
2479 sess->srv_conn->served--;
2480 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2481 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Willy Tarreau87b09662015-04-03 00:22:06 +02002482 stream_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002483 }
2484
2485 if (newsrv) {
2486 newsrv->served++;
2487 if (newsrv->proxy->lbprm.server_take_conn)
2488 newsrv->proxy->lbprm.server_take_conn(newsrv);
Willy Tarreau87b09662015-04-03 00:22:06 +02002489 stream_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002490 }
2491}
2492
Willy Tarreau84455332009-03-15 22:34:05 +01002493/* Handle server-side errors for default protocols. It is called whenever a a
2494 * connection setup is aborted or a request is aborted in queue. It sets the
Willy Tarreau87b09662015-04-03 00:22:06 +02002495 * stream termination flags so that the caller does not have to worry about
Willy Tarreau84455332009-03-15 22:34:05 +01002496 * them. It's installed as ->srv_error for the server-side stream_interface.
2497 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002498void default_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreau84455332009-03-15 22:34:05 +01002499{
2500 int err_type = si->err_type;
2501 int err = 0, fin = 0;
2502
2503 if (err_type & SI_ET_QUEUE_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002504 err = SF_ERR_CLICL;
2505 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002506 }
2507 else if (err_type & SI_ET_CONN_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002508 err = SF_ERR_CLICL;
2509 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002510 }
2511 else if (err_type & SI_ET_QUEUE_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002512 err = SF_ERR_SRVTO;
2513 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002514 }
2515 else if (err_type & SI_ET_QUEUE_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002516 err = SF_ERR_SRVCL;
2517 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002518 }
2519 else if (err_type & SI_ET_CONN_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002520 err = SF_ERR_SRVTO;
2521 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002522 }
2523 else if (err_type & SI_ET_CONN_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002524 err = SF_ERR_SRVCL;
2525 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002526 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002527 else if (err_type & SI_ET_CONN_RES) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002528 err = SF_ERR_RESOURCE;
2529 fin = SF_FINST_C;
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002530 }
Willy Tarreau84455332009-03-15 22:34:05 +01002531 else /* SI_ET_CONN_OTHER and others */ {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002532 err = SF_ERR_INTERNAL;
2533 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002534 }
2535
Willy Tarreaue7dff022015-04-03 01:14:29 +02002536 if (!(s->flags & SF_ERR_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002537 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002538 if (!(s->flags & SF_FINST_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002539 s->flags |= fin;
2540}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002541
Willy Tarreaue7dff022015-04-03 01:14:29 +02002542/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +02002543void stream_shutdown(struct stream *stream, int why)
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002544{
Willy Tarreau87b09662015-04-03 00:22:06 +02002545 if (stream->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002546 return;
2547
Willy Tarreau87b09662015-04-03 00:22:06 +02002548 channel_shutw_now(&stream->req);
2549 channel_shutr_now(&stream->res);
2550 stream->task->nice = 1024;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002551 if (!(stream->flags & SF_ERR_MASK))
Willy Tarreau87b09662015-04-03 00:22:06 +02002552 stream->flags |= why;
2553 task_wakeup(stream->task, TASK_WOKEN_OTHER);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002554}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002555
Willy Tarreau8b22a712010-06-18 17:46:06 +02002556/************************************************************************/
2557/* All supported ACL keywords must be declared here. */
2558/************************************************************************/
2559
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002560/* Returns a pointer to a stkctr depending on the fetch keyword name.
2561 * It is designed to be called as sc[0-9]_* sc_* or src_* exclusively.
Willy Tarreaua65536c2013-07-22 22:40:11 +02002562 * sc[0-9]_* will return a pointer to the respective field in the
Willy Tarreau87b09662015-04-03 00:22:06 +02002563 * stream <l4>. sc_* requires an UINT argument specifying the stick
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002564 * counter number. src_* will fill a locally allocated structure with
Willy Tarreaua65536c2013-07-22 22:40:11 +02002565 * the table and entry corresponding to what is specified with src_*.
Willy Tarreau0f791d42013-07-23 19:56:43 +02002566 * NULL may be returned if the designated stkctr is not tracked. For
2567 * the sc_* and sc[0-9]_* forms, an optional table argument may be
2568 * passed. When present, the currently tracked key is then looked up
2569 * in the specified table instead of the current table. The purpose is
2570 * to be able to convery multiple values per key (eg: have gpc0 from
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002571 * multiple tables). <strm> is allowed to be NULL, in which case only
2572 * the session will be consulted.
Willy Tarreaua65536c2013-07-22 22:40:11 +02002573 */
Willy Tarreaue12704b2014-07-15 19:06:18 +02002574struct stkctr *
Willy Tarreau192252e2015-04-04 01:47:55 +02002575smp_fetch_sc_stkctr(struct session *sess, struct stream *strm, const struct arg *args, const char *kw)
Willy Tarreaua65536c2013-07-22 22:40:11 +02002576{
2577 static struct stkctr stkctr;
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002578 struct stkctr *stkptr;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002579 struct stksess *stksess;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002580 unsigned int num = kw[2] - '0';
Willy Tarreau0f791d42013-07-23 19:56:43 +02002581 int arg = 0;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002582
Willy Tarreau0f791d42013-07-23 19:56:43 +02002583 if (num == '_' - '0') {
2584 /* sc_* variant, args[0] = ctr# (mandatory) */
2585 num = args[arg++].data.uint;
Willy Tarreau4d4149c2013-07-23 19:33:46 +02002586 if (num >= MAX_SESS_STKCTR)
2587 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002588 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002589 else if (num > 9) { /* src_* variant, args[0] = table */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002590 struct stktable_key *key;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002591 struct connection *conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002592
2593 if (!conn)
2594 return NULL;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002595
Thierry FOURNIER74c219d2014-04-14 14:35:40 +02002596 key = addr_to_stktable_key(&conn->addr.from, args->data.prx->table.type);
Willy Tarreaua65536c2013-07-22 22:40:11 +02002597 if (!key)
2598 return NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002599
Willy Tarreaua65536c2013-07-22 22:40:11 +02002600 stkctr.table = &args->data.prx->table;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002601 stkctr_set_entry(&stkctr, stktable_lookup_key(stkctr.table, key));
Willy Tarreaua65536c2013-07-22 22:40:11 +02002602 return &stkctr;
2603 }
Willy Tarreau0f791d42013-07-23 19:56:43 +02002604
2605 /* Here, <num> contains the counter number from 0 to 9 for
2606 * the sc[0-9]_ form, or even higher using sc_(num) if needed.
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002607 * args[arg] is the first optional argument. We first lookup the
2608 * ctr form the stream, then from the session if it was not there.
Willy Tarreau0f791d42013-07-23 19:56:43 +02002609 */
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002610
2611 stkptr = &strm->stkctr[num];
2612 if (!strm || !stkctr_entry(stkptr)) {
2613 stkptr = &sess->stkctr[num];
2614 if (!stkctr_entry(stkptr))
2615 return NULL;
2616 }
2617
2618 stksess = stkctr_entry(stkptr);
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002619 if (!stksess)
2620 return NULL;
2621
Willy Tarreau0f791d42013-07-23 19:56:43 +02002622 if (unlikely(args[arg].type == ARGT_TAB)) {
2623 /* an alternate table was specified, let's look up the same key there */
2624 stkctr.table = &args[arg].data.prx->table;
Willy Tarreau6a0b6bd2014-04-09 13:25:42 +02002625 stkctr_set_entry(&stkctr, stktable_lookup(stkctr.table, stksess));
Willy Tarreau0f791d42013-07-23 19:56:43 +02002626 return &stkctr;
2627 }
Willy Tarreau8b7f8682015-04-04 16:29:12 +02002628 return stkptr;
Willy Tarreaua65536c2013-07-22 22:40:11 +02002629}
2630
Willy Tarreau87b09662015-04-03 00:22:06 +02002631/* set return a boolean indicating if the requested stream counter is
Willy Tarreau88821242013-07-22 18:29:29 +02002632 * currently being tracked or not.
2633 * Supports being called as "sc[0-9]_tracked" only.
2634 */
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002635static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002636smp_fetch_sc_tracked(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002637{
2638 smp->flags = SMP_F_VOL_TEST;
2639 smp->type = SMP_T_BOOL;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002640 smp->data.uint = !!smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau6f1615f2013-06-03 15:15:22 +02002641 return 1;
2642}
2643
Willy Tarreau87b09662015-04-03 00:22:06 +02002644/* set <smp> to the General Purpose Counter 0 value from the stream's tracked
Willy Tarreau30b20462013-07-22 19:46:52 +02002645 * frontend counters or from the src.
2646 * Supports being called as "sc[0-9]_get_gpc0" or "src_get_gpc0" only. Value
2647 * zero is returned if the key is new.
2648 */
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002649static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002650smp_fetch_sc_get_gpc0(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002651{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002652 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau30b20462013-07-22 19:46:52 +02002653
2654 if (!stkctr)
2655 return 0;
2656
Willy Tarreau37406352012-04-23 16:16:37 +02002657 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002658 smp->type = SMP_T_UINT;
2659 smp->data.uint = 0;
Willy Tarreau30b20462013-07-22 19:46:52 +02002660
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002661 if (stkctr_entry(stkctr) != NULL) {
2662 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002663 if (!ptr)
2664 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002665 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002666 }
2667 return 1;
2668}
2669
Willy Tarreau87b09662015-04-03 00:22:06 +02002670/* set <smp> to the General Purpose Counter 0's event rate from the stream's
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002671 * tracked frontend counters or from the src.
2672 * Supports being called as "sc[0-9]_gpc0_rate" or "src_gpc0_rate" only.
2673 * Value zero is returned if the key is new.
2674 */
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002675static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002676smp_fetch_sc_gpc0_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002677{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002678 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreaub5e0af02013-07-22 23:47:07 +02002679
2680 if (!stkctr)
2681 return 0;
2682
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002683 smp->flags = SMP_F_VOL_TEST;
2684 smp->type = SMP_T_UINT;
2685 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002686 if (stkctr_entry(stkctr) != NULL) {
2687 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002688 if (!ptr)
2689 return 0; /* parameter not stored */
2690 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, gpc0_rate),
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002691 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002692 }
2693 return 1;
2694}
2695
Willy Tarreau87b09662015-04-03 00:22:06 +02002696/* Increment the General Purpose Counter 0 value from the stream's tracked
Willy Tarreau710d38c2013-07-23 00:07:04 +02002697 * frontend counters and return it into temp integer.
2698 * Supports being called as "sc[0-9]_inc_gpc0" or "src_inc_gpc0" only.
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002699 */
2700static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002701smp_fetch_sc_inc_gpc0(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002702{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002703 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau710d38c2013-07-23 00:07:04 +02002704
2705 if (!stkctr)
2706 return 0;
2707
Willy Tarreau37406352012-04-23 16:16:37 +02002708 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002709 smp->type = SMP_T_UINT;
2710 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002711 if (stkctr_entry(stkctr) != NULL) {
Emeric Brun57056f02015-06-15 18:29:57 +02002712 void *ptr1,*ptr2;
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002713
2714 /* First, update gpc0_rate if it's tracked. Second, update its
2715 * gpc0 if tracked. Returns gpc0's value otherwise the curr_ctr.
2716 */
Emeric Brun57056f02015-06-15 18:29:57 +02002717 ptr1 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0_RATE);
2718 if (ptr1) {
2719 update_freq_ctr_period(&stktable_data_cast(ptr1, gpc0_rate),
Willy Tarreau710d38c2013-07-23 00:07:04 +02002720 stkctr->table->data_arg[STKTABLE_DT_GPC0_RATE].u, 1);
Emeric Brun57056f02015-06-15 18:29:57 +02002721 smp->data.uint = (&stktable_data_cast(ptr1, gpc0_rate))->curr_ctr;
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002722 }
2723
Emeric Brun57056f02015-06-15 18:29:57 +02002724 ptr2 = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
2725 if (ptr2)
2726 smp->data.uint = ++stktable_data_cast(ptr2, gpc0);
Willy Tarreauba2ffd12013-05-29 15:54:14 +02002727
Emeric Brun57056f02015-06-15 18:29:57 +02002728 /* If data was modified, we need to touch to re-schedule sync */
2729 if (ptr1 || ptr2)
2730 stktable_touch(stkctr->table, stkctr_entry(stkctr), 1);
Willy Tarreauc3bd9722010-06-20 12:47:25 +02002731 }
2732 return 1;
2733}
2734
Willy Tarreau87b09662015-04-03 00:22:06 +02002735/* Clear the General Purpose Counter 0 value from the stream's tracked
Willy Tarreaub9f441d2013-07-23 00:10:35 +02002736 * frontend counters and return its previous value into temp integer.
2737 * Supports being called as "sc[0-9]_clr_gpc0" or "src_clr_gpc0" only.
Willy Tarreauf73cd112011-08-13 01:45:16 +02002738 */
2739static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002740smp_fetch_sc_clr_gpc0(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf73cd112011-08-13 01:45:16 +02002741{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002742 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreaub9f441d2013-07-23 00:10:35 +02002743
2744 if (!stkctr)
2745 return 0;
2746
Willy Tarreau37406352012-04-23 16:16:37 +02002747 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002748 smp->type = SMP_T_UINT;
2749 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002750 if (stkctr_entry(stkctr) != NULL) {
2751 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_GPC0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002752 if (!ptr)
2753 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002754 smp->data.uint = stktable_data_cast(ptr, gpc0);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002755 stktable_data_cast(ptr, gpc0) = 0;
Emeric Brun57056f02015-06-15 18:29:57 +02002756 /* If data was modified, we need to touch to re-schedule sync */
2757 stktable_touch(stkctr->table, stkctr_entry(stkctr), 1);
Willy Tarreauf73cd112011-08-13 01:45:16 +02002758 }
2759 return 1;
2760}
2761
Willy Tarreau87b09662015-04-03 00:22:06 +02002762/* set <smp> to the cumulated number of connections from the stream's tracked
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02002763 * frontend counters. Supports being called as "sc[0-9]_conn_cnt" or
2764 * "src_conn_cnt" only.
2765 */
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002766static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002767smp_fetch_sc_conn_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002768{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002769 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau3b46c5c2013-07-23 00:22:50 +02002770
2771 if (!stkctr)
2772 return 0;
2773
Willy Tarreau37406352012-04-23 16:16:37 +02002774 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002775 smp->type = SMP_T_UINT;
2776 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002777 if (stkctr_entry(stkctr) != NULL) {
2778 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CNT);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002779 if (!ptr)
2780 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002781 smp->data.uint = stktable_data_cast(ptr, conn_cnt);
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002782 }
Willy Tarreau9a3f8492010-06-18 19:53:25 +02002783 return 1;
2784}
2785
Willy Tarreau87b09662015-04-03 00:22:06 +02002786/* set <smp> to the connection rate from the stream's tracked frontend
Willy Tarreauc8c65702013-07-23 15:09:35 +02002787 * counters. Supports being called as "sc[0-9]_conn_rate" or "src_conn_rate"
2788 * only.
2789 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002790static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002791smp_fetch_sc_conn_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002792{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002793 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreauc8c65702013-07-23 15:09:35 +02002794
2795 if (!stkctr)
2796 return 0;
2797
Willy Tarreau37406352012-04-23 16:16:37 +02002798 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002799 smp->type = SMP_T_UINT;
2800 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002801 if (stkctr_entry(stkctr) != NULL) {
2802 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002803 if (!ptr)
2804 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002805 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
Willy Tarreauc8c65702013-07-23 15:09:35 +02002806 stkctr->table->data_arg[STKTABLE_DT_CONN_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002807 }
2808 return 1;
2809}
2810
Willy Tarreau87b09662015-04-03 00:22:06 +02002811/* set temp integer to the number of connections from the stream's source address
Willy Tarreau8b22a712010-06-18 17:46:06 +02002812 * in the table pointed to by expr, after updating it.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02002813 * Accepts exactly 1 argument of type table.
Willy Tarreau8b22a712010-06-18 17:46:06 +02002814 */
2815static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002816smp_fetch_src_updt_conn_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8b22a712010-06-18 17:46:06 +02002817{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002818 struct connection *conn = objt_conn(smp->sess->origin);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002819 struct stksess *ts;
2820 struct stktable_key *key;
2821 void *ptr;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002822 struct proxy *px;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002823
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002824 if (!conn)
2825 return 0;
2826
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002827 key = addr_to_stktable_key(&conn->addr.from, smp->px->table.type);
Willy Tarreau8b22a712010-06-18 17:46:06 +02002828 if (!key)
David du Colombier4f92d322011-03-24 11:09:31 +01002829 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002830
Willy Tarreau24e32d82012-04-23 23:55:44 +02002831 px = args->data.prx;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002832
Willy Tarreau1f7e9252010-06-20 12:27:21 +02002833 if ((ts = stktable_update_key(&px->table, key)) == NULL)
2834 /* entry does not exist and could not be created */
2835 return 0;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002836
2837 ptr = stktable_data_ptr(&px->table, ts, STKTABLE_DT_CONN_CNT);
2838 if (!ptr)
2839 return 0; /* parameter not stored in this table */
2840
Willy Tarreauf853c462012-04-23 18:53:56 +02002841 smp->type = SMP_T_UINT;
2842 smp->data.uint = ++stktable_data_cast(ptr, conn_cnt);
Emeric Brun57056f02015-06-15 18:29:57 +02002843 /* Touch was previously performed by stktable_update_key */
Willy Tarreau37406352012-04-23 16:16:37 +02002844 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau8b22a712010-06-18 17:46:06 +02002845 return 1;
2846}
2847
Willy Tarreau87b09662015-04-03 00:22:06 +02002848/* set <smp> to the number of concurrent connections from the stream's tracked
Willy Tarreauf44a5532013-07-23 15:17:53 +02002849 * frontend counters. Supports being called as "sc[0-9]_conn_cur" or
2850 * "src_conn_cur" only.
2851 */
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002852static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002853smp_fetch_sc_conn_cur(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002854{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002855 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreauf44a5532013-07-23 15:17:53 +02002856
2857 if (!stkctr)
2858 return 0;
2859
Willy Tarreau37406352012-04-23 16:16:37 +02002860 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002861 smp->type = SMP_T_UINT;
2862 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002863 if (stkctr_entry(stkctr) != NULL) {
2864 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_CONN_CUR);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002865 if (!ptr)
2866 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002867 smp->data.uint = stktable_data_cast(ptr, conn_cur);
Willy Tarreau9b0ddcf2010-06-18 21:14:36 +02002868 }
2869 return 1;
2870}
2871
Willy Tarreau87b09662015-04-03 00:22:06 +02002872/* set <smp> to the cumulated number of streams from the stream's tracked
Willy Tarreau20843082013-07-23 15:35:33 +02002873 * frontend counters. Supports being called as "sc[0-9]_sess_cnt" or
2874 * "src_sess_cnt" only.
2875 */
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002876static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002877smp_fetch_sc_sess_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002878{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002879 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau20843082013-07-23 15:35:33 +02002880
2881 if (!stkctr)
2882 return 0;
2883
Willy Tarreau37406352012-04-23 16:16:37 +02002884 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002885 smp->type = SMP_T_UINT;
2886 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002887 if (stkctr_entry(stkctr) != NULL) {
2888 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002889 if (!ptr)
2890 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002891 smp->data.uint = stktable_data_cast(ptr, sess_cnt);
Willy Tarreauf4d17d92010-06-18 22:10:12 +02002892 }
2893 return 1;
2894}
2895
Willy Tarreau87b09662015-04-03 00:22:06 +02002896/* set <smp> to the stream rate from the stream's tracked frontend counters.
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002897 * Supports being called as "sc[0-9]_sess_rate" or "src_sess_rate" only.
2898 */
Willy Tarreau91c43d72010-06-20 11:19:22 +02002899static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002900smp_fetch_sc_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau91c43d72010-06-20 11:19:22 +02002901{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002902 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002903
2904 if (!stkctr)
2905 return 0;
2906
Willy Tarreau37406352012-04-23 16:16:37 +02002907 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002908 smp->type = SMP_T_UINT;
2909 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002910 if (stkctr_entry(stkctr) != NULL) {
2911 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002912 if (!ptr)
2913 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002914 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
Willy Tarreau3a96f3f2013-07-23 15:48:01 +02002915 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u);
Willy Tarreau91c43d72010-06-20 11:19:22 +02002916 }
2917 return 1;
2918}
2919
Willy Tarreau87b09662015-04-03 00:22:06 +02002920/* set <smp> to the cumulated number of HTTP requests from the stream's tracked
Willy Tarreau91200da2013-07-23 15:55:19 +02002921 * frontend counters. Supports being called as "sc[0-9]_http_req_cnt" or
2922 * "src_http_req_cnt" only.
2923 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002924static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002925smp_fetch_sc_http_req_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002926{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002927 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau91200da2013-07-23 15:55:19 +02002928
2929 if (!stkctr)
2930 return 0;
2931
Willy Tarreau37406352012-04-23 16:16:37 +02002932 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002933 smp->type = SMP_T_UINT;
2934 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002935 if (stkctr_entry(stkctr) != NULL) {
2936 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002937 if (!ptr)
2938 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002939 smp->data.uint = stktable_data_cast(ptr, http_req_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002940 }
2941 return 1;
2942}
2943
Willy Tarreau87b09662015-04-03 00:22:06 +02002944/* set <smp> to the HTTP request rate from the stream's tracked frontend
Willy Tarreaucf477632013-07-23 16:04:37 +02002945 * counters. Supports being called as "sc[0-9]_http_req_rate" or
2946 * "src_http_req_rate" only.
2947 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002948static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002949smp_fetch_sc_http_req_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002950{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002951 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreaucf477632013-07-23 16:04:37 +02002952
2953 if (!stkctr)
2954 return 0;
2955
Willy Tarreau37406352012-04-23 16:16:37 +02002956 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002957 smp->type = SMP_T_UINT;
2958 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002959 if (stkctr_entry(stkctr) != NULL) {
2960 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002961 if (!ptr)
2962 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002963 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreaucf477632013-07-23 16:04:37 +02002964 stkctr->table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002965 }
2966 return 1;
2967}
2968
Willy Tarreau87b09662015-04-03 00:22:06 +02002969/* set <smp> to the cumulated number of HTTP requests errors from the stream's
Willy Tarreau30d07c32013-07-23 16:45:38 +02002970 * tracked frontend counters. Supports being called as "sc[0-9]_http_err_cnt" or
2971 * "src_http_err_cnt" only.
2972 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002973static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002974smp_fetch_sc_http_err_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002975{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002976 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau30d07c32013-07-23 16:45:38 +02002977
2978 if (!stkctr)
2979 return 0;
2980
Willy Tarreau37406352012-04-23 16:16:37 +02002981 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02002982 smp->type = SMP_T_UINT;
2983 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01002984 if (stkctr_entry(stkctr) != NULL) {
2985 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002986 if (!ptr)
2987 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02002988 smp->data.uint = stktable_data_cast(ptr, http_err_cnt);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002989 }
2990 return 1;
2991}
2992
Willy Tarreau87b09662015-04-03 00:22:06 +02002993/* set <smp> to the HTTP request error rate from the stream's tracked frontend
Willy Tarreau9daf2622013-07-23 16:48:54 +02002994 * counters. Supports being called as "sc[0-9]_http_err_rate" or
2995 * "src_http_err_rate" only.
2996 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002997static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002998smp_fetch_sc_http_err_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauda7ff642010-06-23 11:44:09 +02002999{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003000 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->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
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003023smp_fetch_sc_kbytes_in(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003024{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003025 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau5077d4b2013-07-23 17:17:10 +02003026
3027 if (!stkctr)
3028 return 0;
3029
Willy Tarreau37406352012-04-23 16:16:37 +02003030 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003031 smp->type = SMP_T_UINT;
3032 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003033 if (stkctr_entry(stkctr) != NULL) {
3034 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_CNT);
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003035 if (!ptr)
3036 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003037 smp->data.uint = stktable_data_cast(ptr, bytes_in_cnt) >> 10;
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003038 }
3039 return 1;
3040}
3041
Willy Tarreau613fe992013-07-23 17:39:19 +02003042/* set <smp> to the data rate received from clients in bytes/s, as found
Willy Tarreau87b09662015-04-03 00:22:06 +02003043 * in the stream's tracked frontend counters. Supports being called as
Willy Tarreau613fe992013-07-23 17:39:19 +02003044 * "sc[0-9]_bytes_in_rate" or "src_bytes_in_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003045 */
3046static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003047smp_fetch_sc_bytes_in_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003048{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003049 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau613fe992013-07-23 17:39:19 +02003050
3051 if (!stkctr)
3052 return 0;
3053
Willy Tarreau37406352012-04-23 16:16:37 +02003054 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003055 smp->type = SMP_T_UINT;
3056 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003057 if (stkctr_entry(stkctr) != NULL) {
3058 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_IN_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003059 if (!ptr)
3060 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003061 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_in_rate),
Willy Tarreau613fe992013-07-23 17:39:19 +02003062 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003063 }
3064 return 1;
3065}
3066
Willy Tarreau53aea102013-07-23 17:39:02 +02003067/* set <smp> to the number of kbytes sent to clients, as found in the
Willy Tarreau87b09662015-04-03 00:22:06 +02003068 * stream's tracked frontend counters. Supports being called as
Willy Tarreau53aea102013-07-23 17:39:02 +02003069 * "sc[0-9]_kbytes_out" or "src_kbytes_out" only.
3070 */
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003071static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003072smp_fetch_sc_kbytes_out(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau1aa006f2010-06-18 21:52:52 +02003073{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003074 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau53aea102013-07-23 17:39:02 +02003075
3076 if (!stkctr)
3077 return 0;
3078
Willy Tarreau37406352012-04-23 16:16:37 +02003079 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003080 smp->type = SMP_T_UINT;
3081 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003082 if (stkctr_entry(stkctr) != NULL) {
3083 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_CNT);
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003084 if (!ptr)
3085 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003086 smp->data.uint = stktable_data_cast(ptr, bytes_out_cnt) >> 10;
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003087 }
Willy Tarreau855e4bb2010-06-18 18:33:32 +02003088 return 1;
3089}
3090
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003091/* set <smp> to the data rate sent to clients in bytes/s, as found in the
Willy Tarreau87b09662015-04-03 00:22:06 +02003092 * stream's tracked frontend counters. Supports being called as
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003093 * "sc[0-9]_bytes_out_rate" or "src_bytes_out_rate" only.
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003094 */
3095static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003096smp_fetch_sc_bytes_out_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003097{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003098 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003099
3100 if (!stkctr)
3101 return 0;
3102
Willy Tarreau37406352012-04-23 16:16:37 +02003103 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003104 smp->type = SMP_T_UINT;
3105 smp->data.uint = 0;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003106 if (stkctr_entry(stkctr) != NULL) {
3107 void *ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_BYTES_OUT_RATE);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003108 if (!ptr)
3109 return 0; /* parameter not stored */
Willy Tarreauf853c462012-04-23 18:53:56 +02003110 smp->data.uint = read_freq_ctr_period(&stktable_data_cast(ptr, bytes_out_rate),
Willy Tarreaua0b68ed2013-07-23 18:26:32 +02003111 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u);
Willy Tarreau6c59e0a2010-06-20 11:56:30 +02003112 }
3113 return 1;
3114}
3115
Willy Tarreau87b09662015-04-03 00:22:06 +02003116/* set <smp> to the number of active trackers on the SC entry in the stream's
Willy Tarreau563eef42013-07-23 18:32:02 +02003117 * tracked frontend counters. Supports being called as "sc[0-9]_trackers" only.
3118 */
Willy Tarreau2406db42012-12-09 12:16:43 +01003119static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003120smp_fetch_sc_trackers(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2406db42012-12-09 12:16:43 +01003121{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003122 struct stkctr *stkctr = smp_fetch_sc_stkctr(smp->sess, smp->strm, args, kw);
Willy Tarreau2406db42012-12-09 12:16:43 +01003123
Willy Tarreau563eef42013-07-23 18:32:02 +02003124 if (!stkctr)
Willy Tarreau2406db42012-12-09 12:16:43 +01003125 return 0;
3126
Willy Tarreau563eef42013-07-23 18:32:02 +02003127 smp->flags = SMP_F_VOL_TEST;
3128 smp->type = SMP_T_UINT;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01003129 smp->data.uint = stkctr_entry(stkctr)->ref_cnt;
Willy Tarreau563eef42013-07-23 18:32:02 +02003130 return 1;
Willy Tarreaue25c9172013-05-28 18:32:20 +02003131}
3132
Willy Tarreau34db1082012-04-19 17:16:54 +02003133/* set temp integer to the number of used entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003134 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003135 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003136static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003137smp_fetch_table_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003138{
Willy Tarreau37406352012-04-23 16:16:37 +02003139 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003140 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +02003141 smp->data.uint = args->data.prx->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003142 return 1;
3143}
3144
Willy Tarreau34db1082012-04-19 17:16:54 +02003145/* set temp integer to the number of free entries in the table pointed to by expr.
Willy Tarreau0146c2e2012-04-20 11:37:56 +02003146 * Accepts exactly 1 argument of type table.
Willy Tarreau34db1082012-04-19 17:16:54 +02003147 */
Willy Tarreauc735a072011-03-29 00:57:02 +02003148static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003149smp_fetch_table_avl(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauc735a072011-03-29 00:57:02 +02003150{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003151 struct proxy *px;
3152
Willy Tarreau24e32d82012-04-23 23:55:44 +02003153 px = args->data.prx;
Willy Tarreau37406352012-04-23 16:16:37 +02003154 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +02003155 smp->type = SMP_T_UINT;
3156 smp->data.uint = px->table.size - px->table.current;
Willy Tarreauc735a072011-03-29 00:57:02 +02003157 return 1;
3158}
Willy Tarreau8b22a712010-06-18 17:46:06 +02003159
Willy Tarreau61612d42012-04-19 18:42:05 +02003160/* Note: must not be declared <const> as its list will be overwritten.
3161 * Please take care of keeping this list alphabetically sorted.
3162 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003163static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau281c7992013-01-08 01:23:27 +01003164 { /* END */ },
Willy Tarreau8b22a712010-06-18 17:46:06 +02003165}};
3166
Willy Tarreau281c7992013-01-08 01:23:27 +01003167/* Note: must not be declared <const> as its list will be overwritten.
3168 * Please take care of keeping this list alphabetically sorted.
3169 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003170static struct sample_fetch_kw_list smp_fetch_keywords = {ILH, {
Willy Tarreau0f791d42013-07-23 19:56:43 +02003171 { "sc_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3172 { "sc_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3173 { "sc_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3174 { "sc_conn_cnt", smp_fetch_sc_conn_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3175 { "sc_conn_cur", smp_fetch_sc_conn_cur, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3176 { "sc_conn_rate", smp_fetch_sc_conn_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3177 { "sc_get_gpc0", smp_fetch_sc_get_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3178 { "sc_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3179 { "sc_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3180 { "sc_http_err_rate", smp_fetch_sc_http_err_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3181 { "sc_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3182 { "sc_http_req_rate", smp_fetch_sc_http_req_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3183 { "sc_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3184 { "sc_kbytes_in", smp_fetch_sc_kbytes_in, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3185 { "sc_kbytes_out", smp_fetch_sc_kbytes_out, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3186 { "sc_sess_cnt", smp_fetch_sc_sess_cnt, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3187 { "sc_sess_rate", smp_fetch_sc_sess_rate, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3188 { "sc_tracked", smp_fetch_sc_tracked, ARG2(1,UINT,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3189 { "sc_trackers", smp_fetch_sc_trackers, ARG2(1,UINT,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3190 { "sc0_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3191 { "sc0_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3192 { "sc0_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3193 { "sc0_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3194 { "sc0_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3195 { "sc0_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3196 { "sc0_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3197 { "sc0_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3198 { "sc0_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3199 { "sc0_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3200 { "sc0_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3201 { "sc0_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3202 { "sc0_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3203 { "sc0_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3204 { "sc0_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3205 { "sc0_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3206 { "sc0_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3207 { "sc0_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3208 { "sc0_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3209 { "sc1_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3210 { "sc1_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3211 { "sc1_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3212 { "sc1_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3213 { "sc1_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3214 { "sc1_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3215 { "sc1_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3216 { "sc1_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3217 { "sc1_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3218 { "sc1_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3219 { "sc1_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3220 { "sc1_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3221 { "sc1_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3222 { "sc1_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3223 { "sc1_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3224 { "sc1_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3225 { "sc1_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3226 { "sc1_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3227 { "sc1_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3228 { "sc2_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3229 { "sc2_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3230 { "sc2_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3231 { "sc2_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3232 { "sc2_conn_cur", smp_fetch_sc_conn_cur, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3233 { "sc2_conn_rate", smp_fetch_sc_conn_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3234 { "sc2_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3235 { "sc2_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3236 { "sc2_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3237 { "sc2_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3238 { "sc2_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3239 { "sc2_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3240 { "sc2_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3241 { "sc2_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3242 { "sc2_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3243 { "sc2_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3244 { "sc2_sess_rate", smp_fetch_sc_sess_rate, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3245 { "sc2_tracked", smp_fetch_sc_tracked, ARG1(0,TAB), NULL, SMP_T_BOOL, SMP_USE_INTRN, },
3246 { "sc2_trackers", smp_fetch_sc_trackers, ARG1(0,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3247 { "src_bytes_in_rate", smp_fetch_sc_bytes_in_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3248 { "src_bytes_out_rate", smp_fetch_sc_bytes_out_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3249 { "src_clr_gpc0", smp_fetch_sc_clr_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3250 { "src_conn_cnt", smp_fetch_sc_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3251 { "src_conn_cur", smp_fetch_sc_conn_cur, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3252 { "src_conn_rate", smp_fetch_sc_conn_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3253 { "src_get_gpc0", smp_fetch_sc_get_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3254 { "src_gpc0_rate", smp_fetch_sc_gpc0_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3255 { "src_http_err_cnt", smp_fetch_sc_http_err_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3256 { "src_http_err_rate", smp_fetch_sc_http_err_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3257 { "src_http_req_cnt", smp_fetch_sc_http_req_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3258 { "src_http_req_rate", smp_fetch_sc_http_req_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3259 { "src_inc_gpc0", smp_fetch_sc_inc_gpc0, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3260 { "src_kbytes_in", smp_fetch_sc_kbytes_in, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3261 { "src_kbytes_out", smp_fetch_sc_kbytes_out, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3262 { "src_sess_cnt", smp_fetch_sc_sess_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3263 { "src_sess_rate", smp_fetch_sc_sess_rate, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3264 { "src_updt_conn_cnt", smp_fetch_src_updt_conn_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_L4CLI, },
3265 { "table_avl", smp_fetch_table_avl, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
3266 { "table_cnt", smp_fetch_table_cnt, ARG1(1,TAB), NULL, SMP_T_UINT, SMP_USE_INTRN, },
Willy Tarreau281c7992013-01-08 01:23:27 +01003267 { /* END */ },
3268}};
3269
Willy Tarreau8b22a712010-06-18 17:46:06 +02003270__attribute__((constructor))
Willy Tarreau87b09662015-04-03 00:22:06 +02003271static void __stream_init(void)
Willy Tarreau8b22a712010-06-18 17:46:06 +02003272{
Willy Tarreau281c7992013-01-08 01:23:27 +01003273 sample_register_fetches(&smp_fetch_keywords);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003274 acl_register_keywords(&acl_kws);
3275}
3276
Willy Tarreaubaaee002006-06-26 02:48:02 +02003277/*
3278 * Local variables:
3279 * c-indent-level: 8
3280 * c-basic-offset: 8
3281 * End:
3282 */