blob: 2dd7141aab206287f6e675f73f641db42fb21ebd [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
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020017#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020018#include <common/config.h>
Willy Tarreau9b28e032012-10-12 23:49:43 +020019#include <common/buffer.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020020#include <common/debug.h>
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020021#include <common/hathreads.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010022#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010023#include <common/initcall.h>
24#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020026#include <types/applet.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <types/capture.h>
William Lallemand4c5b4d52016-11-21 08:51:11 +010028#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020029#include <types/filters.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010030#include <types/global.h>
William Lallemand9ed62032016-11-21 17:49:11 +010031#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020033#include <proto/acl.h>
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020034#include <proto/action.h>
Willy Tarreau609aad92018-11-22 08:31:09 +010035#include <proto/activity.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020036#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010037#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020038#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010039#include <proto/checks.h>
William Lallemand4c5b4d52016-11-21 08:51:11 +010040#include <proto/cli.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020041#include <proto/connection.h>
Frédéric Lécaille03cdf552019-05-20 10:08:27 +020042#include <proto/dict.h>
Baptiste Assmann333939c2019-01-21 08:34:50 +010043#include <proto/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010044#include <proto/stats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020045#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020046#include <proto/filters.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020047#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020048#include <proto/frontend.h>
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010049#include <proto/hlua.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020050#include <proto/http_rules.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020051#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020052#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020053#include <proto/raw_sock.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020054#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020055#include <proto/stream.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010056#include <proto/pipe.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020057#include <proto/http_ana.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020058#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010060#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020061#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010062#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010063#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010064#include <proto/task.h>
Willy Tarreau39713102016-11-25 15:49:32 +010065#include <proto/tcp_rules.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020066#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020067
Willy Tarreau8ceae722018-11-26 11:58:30 +010068DECLARE_POOL(pool_head_stream, "stream", sizeof(struct stream));
69
Willy Tarreaub6b3df32018-11-26 16:31:20 +010070struct list streams = LIST_HEAD_INIT(streams);
Willy Tarreau86abe442018-11-25 20:12:18 +010071__decl_spinlock(streams_lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +020072
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020073/* List of all use-service keywords. */
74static struct list service_keywords = LIST_HEAD_INIT(service_keywords);
75
Willy Tarreau5790eb02017-08-28 17:18:36 +020076
Christopher Fauleteea8fc72019-11-05 16:18:10 +010077/* trace source and events */
78static void strm_trace(enum trace_level level, uint64_t mask,
79 const struct trace_source *src,
80 const struct ist where, const struct ist func,
81 const void *a1, const void *a2, const void *a3, const void *a4);
82
83/* The event representation is split like this :
84 * strm - stream
85 * si - stream interface
86 * http - http analyzis
87 * tcp - tcp analyzis
88 *
89 * STRM_EV_* macros are defined in <proto/stream.h>
90 */
91static const struct trace_event strm_trace_events[] = {
92 { .mask = STRM_EV_STRM_NEW, .name = "strm_new", .desc = "new stream" },
93 { .mask = STRM_EV_STRM_FREE, .name = "strm_free", .desc = "release stream" },
94 { .mask = STRM_EV_STRM_ERR, .name = "strm_err", .desc = "error during stream processing" },
95 { .mask = STRM_EV_STRM_ANA, .name = "strm_ana", .desc = "stream analyzers" },
96 { .mask = STRM_EV_STRM_PROC, .name = "strm_proc", .desc = "stream processing" },
97
98 { .mask = STRM_EV_SI_ST, .name = "si_state", .desc = "processing stream-interface states" },
99
100 { .mask = STRM_EV_HTTP_ANA, .name = "http_ana", .desc = "HTTP analyzers" },
101 { .mask = STRM_EV_HTTP_ERR, .name = "http_err", .desc = "error during HTTP analyzis" },
102
103 { .mask = STRM_EV_TCP_ANA, .name = "tcp_ana", .desc = "TCP analyzers" },
104 { .mask = STRM_EV_TCP_ERR, .name = "tcp_err", .desc = "error during TCP analyzis" },
105 {}
106};
107
108static const struct name_desc strm_trace_lockon_args[4] = {
109 /* arg1 */ { /* already used by the stream */ },
110 /* arg2 */ { },
111 /* arg3 */ { },
112 /* arg4 */ { }
113};
114
115static const struct name_desc strm_trace_decoding[] = {
116#define STRM_VERB_CLEAN 1
117 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
118#define STRM_VERB_MINIMAL 2
119 { .name="minimal", .desc="report info on stream and stream-interfaces" },
120#define STRM_VERB_SIMPLE 3
121 { .name="simple", .desc="add info on request and response channels" },
122#define STRM_VERB_ADVANCED 4
123 { .name="advanced", .desc="add info on channel's buffer for data and developer levels only" },
124#define STRM_VERB_COMPLETE 5
125 { .name="complete", .desc="add info on channel's buffer" },
126 { /* end */ }
127};
128
129struct trace_source trace_strm = {
130 .name = IST("stream"),
131 .desc = "Applicative stream",
132 .arg_def = TRC_ARG1_STRM, // TRACE()'s first argument is always a stream
133 .default_cb = strm_trace,
134 .known_events = strm_trace_events,
135 .lockon_args = strm_trace_lockon_args,
136 .decoding = strm_trace_decoding,
137 .report_events = ~0, // report everything by default
138};
139
140#define TRACE_SOURCE &trace_strm
141INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
142
143/* the stream traces always expect that arg1, if non-null, is of a stream (from
144 * which we can derive everything), that arg2, if non-null, is an http
145 * transaction, that arg3, if non-null, is an http message.
146 */
147static void strm_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
148 const struct ist where, const struct ist func,
149 const void *a1, const void *a2, const void *a3, const void *a4)
150{
151 const struct stream *s = a1;
152 const struct http_txn *txn = a2;
153 const struct http_msg *msg = a3;
154 struct task *task;
155 const struct stream_interface *si_f, *si_b;
156 const struct channel *req, *res;
157 struct htx *htx;
158
159 if (!s || src->verbosity < STRM_VERB_CLEAN)
160 return;
161
162 task = s->task;
163 si_f = &s->si[0];
164 si_b = &s->si[1];
165 req = &s->req;
166 res = &s->res;
167 htx = (msg ? htxbuf(&msg->chn->buf) : NULL);
168
169 /* General info about the stream (htx/tcp, id...) */
170 chunk_appendf(&trace_buf, " : [%u,%s]",
171 s->uniq_id, ((s->flags & SF_HTX) ? "HTX" : "TCP"));
172 if (s->unique_id)
173 chunk_appendf(&trace_buf, " id=%s", s->unique_id);
174
175 /* Front and back stream-int state */
176 chunk_appendf(&trace_buf, " SI=(%s,%s)",
177 si_state_str(si_f->state), si_state_str(si_b->state));
178
179 /* If txn is defined, HTTP req/rep states */
180 if (txn)
181 chunk_appendf(&trace_buf, " HTTP=(%s,%s)",
182 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state));
183 if (msg)
184 chunk_appendf(&trace_buf, " %s", ((msg->chn->flags & CF_ISRESP) ? "RESPONSE" : "REQUEST"));
185
186 if (src->verbosity == STRM_VERB_CLEAN)
187 return;
188
189 /* If msg defined, display status-line if possible (verbosity > MINIMAL) */
190 if (src->verbosity > STRM_VERB_MINIMAL && htx && htx_nbblks(htx)) {
191 const struct htx_blk *blk = htx_get_head_blk(htx);
192 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
193 enum htx_blk_type type = htx_get_blk_type(blk);
194
195 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
196 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
197 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
198 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
199 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
200 }
201
202
203 /* If txn defined info about HTTP msgs, otherwise info about SI. */
204 if (txn) {
205 chunk_appendf(&trace_buf, " - t=%p s=(%p,0x%08x) txn.flags=0x%08x, http.flags=(0x%08x,0x%08x) status=%d",
206 task, s, s->flags, txn->flags, txn->req.flags, txn->rsp.flags, txn->status);
207 }
208 else {
209 chunk_appendf(&trace_buf, " - t=%p s=(%p,0x%08x) si_f=(%p,0x%08x,0x%x) si_b=(%p,0x%08x,0x%x) retries=%d",
210 task, s, s->flags, si_f, si_f->flags, si_f->err_type,
211 si_b, si_b->flags, si_b->err_type, si_b->conn_retries);
212 }
213
214 if (src->verbosity == STRM_VERB_MINIMAL)
215 return;
216
217
218 /* If txn defined, don't display all channel info */
219 if (src->verbosity == STRM_VERB_SIMPLE || txn) {
220 chunk_appendf(&trace_buf, " req=(%p .fl=0x%08x .exp(r,w,a)=(%u,%u,%u))",
221 req, req->flags, req->rex, req->wex, req->analyse_exp);
222 chunk_appendf(&trace_buf, " res=(%p .fl=0x%08x .exp(r,w,a)=(%u,%u,%u))",
223 res, res->flags, res->rex, res->wex, res->analyse_exp);
224 }
225 else {
226 chunk_appendf(&trace_buf, " req=(%p .fl=0x%08x .ana=0x%08x .exp(r,w,a)=(%u,%u,%u) .o=%lu .tot=%llu .to_fwd=%u)",
227 req, req->flags, req->analysers, req->rex, req->wex, req->analyse_exp,
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100228 (long)req->output, req->total, req->to_forward);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100229 chunk_appendf(&trace_buf, " res=(%p .fl=0x%08x .ana=0x%08x .exp(r,w,a)=(%u,%u,%u) .o=%lu .tot=%llu .to_fwd=%u)",
230 res, res->flags, res->analysers, res->rex, res->wex, res->analyse_exp,
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100231 (long)res->output, res->total, res->to_forward);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100232 }
233
234 if (src->verbosity == STRM_VERB_SIMPLE ||
235 (src->verbosity == STRM_VERB_ADVANCED && src->level < TRACE_LEVEL_DATA))
236 return;
237
238 /* channels' buffer info */
239 if (s->flags & SF_HTX) {
240 struct htx *rqhtx = htxbuf(&req->buf);
241 struct htx *rphtx = htxbuf(&res->buf);
242
243 chunk_appendf(&trace_buf, " htx=(%u/%u#%u, %u/%u#%u)",
244 rqhtx->data, rqhtx->size, htx_nbblks(rqhtx),
245 rphtx->data, rphtx->size, htx_nbblks(rphtx));
246 }
247 else {
248 chunk_appendf(&trace_buf, " buf=(%u@%p+%u/%u, %u@%p+%u/%u)",
249 (unsigned int)b_data(&req->buf), b_orig(&req->buf),
250 (unsigned int)b_head_ofs(&req->buf), (unsigned int)b_size(&req->buf),
251 (unsigned int)b_data(&req->buf), b_orig(&req->buf),
252 (unsigned int)b_head_ofs(&req->buf), (unsigned int)b_size(&req->buf));
253 }
254
255 /* If msg defined, display htx info if defined (level > USER) */
256 if (src->level > TRACE_LEVEL_USER && htx && htx_nbblks(htx)) {
257 int full = 0;
258
259 /* Full htx info (level > STATE && verbosity > SIMPLE) */
260 if (src->level > TRACE_LEVEL_STATE) {
261 if (src->verbosity == STRM_VERB_COMPLETE)
262 full = 1;
263 }
264
265 chunk_memcat(&trace_buf, "\n\t", 2);
266 htx_dump(&trace_buf, htx, full);
267 }
268}
269
Willy Tarreau5790eb02017-08-28 17:18:36 +0200270/* Create a new stream for connection <conn>. Return < 0 on error. This is only
271 * valid right after the handshake, before the connection's data layer is
272 * initialized, because it relies on the session to be in conn->owner.
273 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200274int stream_create_from_cs(struct conn_stream *cs)
Willy Tarreau5790eb02017-08-28 17:18:36 +0200275{
276 struct stream *strm;
277
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200278 strm = stream_new(cs->conn->owner, &cs->obj_type);
Willy Tarreau5790eb02017-08-28 17:18:36 +0200279 if (strm == NULL)
280 return -1;
281
282 task_wakeup(strm->task, TASK_WOKEN_INIT);
283 return 0;
284}
285
Willy Tarreaub882dd82018-11-06 15:50:21 +0100286/* Callback used to wake up a stream when an input buffer is available. The
287 * stream <s>'s stream interfaces are checked for a failed buffer allocation
Willy Tarreaud0f5bbc2018-11-14 11:10:26 +0100288 * as indicated by the presence of the SI_FL_RXBLK_ROOM flag and the lack of a
Willy Tarreaub882dd82018-11-06 15:50:21 +0100289 * buffer, and and input buffer is assigned there (at most one). The function
290 * returns 1 and wakes the stream up if a buffer was taken, otherwise zero.
291 * It's designed to be called from __offer_buffer().
292 */
293int stream_buf_available(void *arg)
294{
295 struct stream *s = arg;
296
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100297 if (!s->req.buf.size && !s->req.pipe && (s->si[0].flags & SI_FL_RXBLK_BUFF) &&
Willy Tarreaub882dd82018-11-06 15:50:21 +0100298 b_alloc_margin(&s->req.buf, global.tune.reserved_bufs))
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100299 si_rx_buff_rdy(&s->si[0]);
300 else if (!s->res.buf.size && !s->res.pipe && (s->si[1].flags & SI_FL_RXBLK_BUFF) &&
Willy Tarreaub882dd82018-11-06 15:50:21 +0100301 b_alloc_margin(&s->res.buf, 0))
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100302 si_rx_buff_rdy(&s->si[1]);
Willy Tarreaub882dd82018-11-06 15:50:21 +0100303 else
304 return 0;
305
306 task_wakeup(s->task, TASK_WOKEN_RES);
307 return 1;
308
309}
310
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200311/* This function is called from the session handler which detects the end of
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200312 * handshake, in order to complete initialization of a valid stream. It must be
Joseph Herlant4cc8d0d2018-11-15 09:14:14 -0800313 * called with a completely initialized session. It returns the pointer to
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200314 * the newly created stream, or NULL in case of fatal error. The client-facing
Willy Tarreau87787ac2017-08-28 16:22:54 +0200315 * end point is assigned to <origin>, which must be valid. The stream's task
316 * is configured with a nice value inherited from the listener's nice if any.
317 * The task's context is set to the new stream, and its function is set to
318 * process_stream(). Target and analysers are null.
Willy Tarreau2542b532012-08-31 16:01:23 +0200319 */
Willy Tarreau87787ac2017-08-28 16:22:54 +0200320struct stream *stream_new(struct session *sess, enum obj_type *origin)
Willy Tarreau2542b532012-08-31 16:01:23 +0200321{
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200322 struct stream *s;
Willy Tarreau87787ac2017-08-28 16:22:54 +0200323 struct task *t;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200324 struct conn_stream *cs = objt_cs(origin);
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200325 struct appctx *appctx = objt_appctx(origin);
Christopher Fauletb3484d62018-11-29 15:19:05 +0100326 const struct cs_info *csinfo;
Willy Tarreau2542b532012-08-31 16:01:23 +0200327
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100328 DBG_TRACE_ENTER(STRM_EV_STRM_NEW);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100329 if (unlikely((s = pool_alloc(pool_head_stream)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200330 goto out_fail_alloc;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200331
332 /* minimum stream initialization required for an embryonic stream is
333 * fairly low. We need very little to execute L4 ACLs, then we need a
334 * task to make the client-side connection live on its own.
335 * - flags
336 * - stick-entry tracking
337 */
338 s->flags = 0;
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200339 s->logs.logwait = sess->fe->to_log;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200340 s->logs.level = 0;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200341 tv_zero(&s->logs.tv_request);
342 s->logs.t_queue = -1;
343 s->logs.t_connect = -1;
344 s->logs.t_data = -1;
345 s->logs.t_close = 0;
346 s->logs.bytes_in = s->logs.bytes_out = 0;
Patrick Hemmerffe5e8c2018-05-11 12:52:31 -0400347 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
348 s->logs.srv_queue_pos = 0; /* we will get this number soon */
Baptiste Assmann333939c2019-01-21 08:34:50 +0100349 s->obj_type = OBJ_TYPE_STREAM;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200350
Christopher Fauletb3484d62018-11-29 15:19:05 +0100351 csinfo = si_get_cs_info(cs);
352 if (csinfo) {
353 s->logs.accept_date = csinfo->create_date;
354 s->logs.tv_accept = csinfo->tv_create;
355 s->logs.t_handshake = csinfo->t_handshake;
356 s->logs.t_idle = csinfo->t_idle;
357 }
358 else {
359 s->logs.accept_date = sess->accept_date;
360 s->logs.tv_accept = sess->tv_accept;
361 s->logs.t_handshake = sess->t_handshake;
362 s->logs.t_idle = -1;
363 }
364
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200365 /* default logging function */
366 s->do_log = strm_log;
367
368 /* default error reporting function, may be changed by analysers */
369 s->srv_error = default_srv_error;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200370
371 /* Initialise the current rule list pointer to NULL. We are sure that
372 * any rulelist match the NULL pointer.
373 */
374 s->current_rule_list = NULL;
Remi Gacogne7fb9de22015-07-22 17:10:58 +0200375 s->current_rule = NULL;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200376
Willy Tarreaua68f7622015-09-21 17:48:24 +0200377 /* Copy SC counters for the stream. We don't touch refcounts because
378 * any reference we have is inherited from the session. Since the stream
379 * doesn't exist without the session, the session's existence guarantees
380 * we don't lose the entry. During the store operation, the stream won't
381 * touch these ones.
Thierry FOURNIER827752e2015-08-18 11:34:18 +0200382 */
Thierry FOURNIERc8fdb982015-08-16 12:03:39 +0200383 memcpy(s->stkctr, sess->stkctr, sizeof(s->stkctr));
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200384
385 s->sess = sess;
386 s->si[0].flags = SI_FL_NONE;
387 s->si[1].flags = SI_FL_ISBACK;
388
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100389 s->uniq_id = _HA_ATOMIC_XADD(&global.req_count, 1);
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200390
Willy Tarreau87b09662015-04-03 00:22:06 +0200391 /* OK, we're keeping the stream, so let's properly initialize the stream */
Willy Tarreau2542b532012-08-31 16:01:23 +0200392 LIST_INIT(&s->back_refs);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100393
394 LIST_INIT(&s->buffer_wait.list);
395 s->buffer_wait.target = s;
Willy Tarreaub882dd82018-11-06 15:50:21 +0100396 s->buffer_wait.wakeup_cb = stream_buf_available;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200397
Willy Tarreau2e9c1d22019-04-24 08:28:31 +0200398 s->call_rate.curr_sec = s->call_rate.curr_ctr = s->call_rate.prev_ctr = 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +0200399 s->pcli_next_pid = 0;
William Lallemandebf61802018-12-11 16:10:57 +0100400 s->pcli_flags = 0;
Willy Tarreau2542b532012-08-31 16:01:23 +0200401 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200402
Emeric Brunc60def82017-09-27 14:59:38 +0200403 if ((t = task_new(tid_bit)) == NULL)
Willy Tarreau87787ac2017-08-28 16:22:54 +0200404 goto out_fail_alloc;
405
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200406 s->task = t;
Christopher Faulet9d810ca2016-12-08 22:33:52 +0100407 s->pending_events = 0;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200408 t->process = process_stream;
Willy Tarreau2542b532012-08-31 16:01:23 +0200409 t->context = s;
410 t->expire = TICK_ETERNITY;
Willy Tarreau87787ac2017-08-28 16:22:54 +0200411 if (sess->listener)
412 t->nice = sess->listener->nice;
Willy Tarreau2542b532012-08-31 16:01:23 +0200413
Willy Tarreau87b09662015-04-03 00:22:06 +0200414 /* Note: initially, the stream's backend points to the frontend.
Willy Tarreau2542b532012-08-31 16:01:23 +0200415 * This changes later when switching rules are executed or
416 * when the default backend is assigned.
417 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200418 s->be = sess->fe;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200419 s->req.buf = BUF_NULL;
420 s->res.buf = BUF_NULL;
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200421 s->req_cap = NULL;
422 s->res_cap = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200423
Willy Tarreauebcd4842015-06-19 11:59:02 +0200424 /* Initialise all the variables contexts even if not used.
425 * This permits to prune these contexts without errors.
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200426 */
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200427 vars_init(&s->vars_txn, SCOPE_TXN);
428 vars_init(&s->vars_reqres, SCOPE_REQ);
429
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200430 /* this part should be common with other protocols */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200431 if (si_reset(&s->si[0]) < 0)
432 goto out_fail_alloc;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200433 si_set_state(&s->si[0], SI_ST_EST);
Hongbo Longe39683c2017-03-10 18:41:51 +0100434 s->si[0].hcto = sess->fe->timeout.clientfin;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200435
Christopher Faulet0e160ff2019-04-03 10:01:07 +0200436 if (cs && cs->conn->mux) {
437 if (cs->conn->mux->flags & MX_FL_CLEAN_ABRT)
438 s->si[0].flags |= SI_FL_CLEAN_ABRT;
439 if (cs->conn->mux->flags & MX_FL_HTX)
440 s->flags |= SF_HTX;
441 }
Christopher Faulet3494c632019-07-15 14:58:26 +0200442 /* Set SF_HTX flag for HTTP frontends. */
443 if (sess->fe->mode == PR_MODE_HTTP)
Christopher Faulet0e160ff2019-04-03 10:01:07 +0200444 s->flags |= SF_HTX;
Willy Tarreau984fca92017-12-20 16:31:43 +0100445
Willy Tarreau1f52bb22015-04-04 14:28:46 +0200446 /* attach the incoming connection to the stream interface now. */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200447 if (cs)
448 si_attach_cs(&s->si[0], cs);
Willy Tarreau470280e2015-04-05 01:33:13 +0200449 else if (appctx)
450 si_attach_appctx(&s->si[0], appctx);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200451
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200452 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200453 s->si[0].flags |= SI_FL_INDEP_STR;
454
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200455 /* pre-initialize the other side's stream interface to an INIT state. The
456 * callbacks will be initialized before attempting to connect.
457 */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200458 if (si_reset(&s->si[1]) < 0)
459 goto out_fail_alloc_si1;
Hongbo Longe39683c2017-03-10 18:41:51 +0100460 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200461
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200462 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200463 s->si[1].flags |= SI_FL_INDEP_STR;
464
Willy Tarreau87b09662015-04-03 00:22:06 +0200465 stream_init_srv_conn(s);
Willy Tarreau9b82d942016-12-05 00:26:31 +0100466 s->target = sess->listener ? sess->listener->default_target : NULL;
Willy Tarreau90420602019-07-18 15:09:57 +0200467 s->target_addr = NULL;
Willy Tarreau9b82d942016-12-05 00:26:31 +0100468
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200469 s->pend_pos = NULL;
Patrick Hemmer268a7072018-05-11 12:52:31 -0400470 s->priority_class = 0;
471 s->priority_offset = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200472
473 /* init store persistence */
474 s->store_count = 0;
475
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100476 channel_init(&s->req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100477 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau9b82d942016-12-05 00:26:31 +0100478 s->req.analysers = sess->listener ? sess->listener->analysers : 0;
Willy Tarreaue223e3b2017-11-18 15:39:10 +0100479
480 if (!sess->fe->fe_req_ana) {
481 channel_auto_connect(&s->req); /* don't wait to establish connection */
482 channel_auto_close(&s->req); /* let the producer forward close requests */
483 }
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200484
485 s->req.rto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100486 s->req.wto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100487 s->req.rex = TICK_ETERNITY;
488 s->req.wex = TICK_ETERNITY;
489 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200490
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100491 channel_init(&s->res);
Willy Tarreauef573c02014-11-28 14:17:09 +0100492 s->res.flags |= CF_ISRESP;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100493 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200494
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200495 if (sess->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100496 s->req.flags |= CF_NEVER_WAIT;
497 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200498 }
499
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200500 s->res.wto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100501 s->res.rto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100502 s->res.rex = TICK_ETERNITY;
503 s->res.wex = TICK_ETERNITY;
504 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200505
Willy Tarreaueee5b512015-04-03 23:46:31 +0200506 s->txn = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100507 s->hlua = NULL;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100508
Frédéric Lécaillebed883a2019-04-23 17:26:33 +0200509 s->dns_ctx.dns_requester = NULL;
510 s->dns_ctx.hostname_dn = NULL;
511 s->dns_ctx.hostname_dn_len = 0;
512 s->dns_ctx.parent = NULL;
513
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100514 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200515 LIST_ADDQ(&streams, &s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100516 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200517
Christopher Faulet92d36382015-11-05 13:35:03 +0100518 if (flt_stream_init(s) < 0 || flt_stream_start(s) < 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200519 goto out_fail_accept;
520
Olivier Houcharda254a372019-04-05 15:30:12 +0200521 s->si[1].l7_buffer = BUF_NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200522 /* finish initialization of the accepted file descriptor */
Olivier Houchard53216e72018-10-10 15:46:36 +0200523 if (appctx)
Willy Tarreau0cd3bd62018-11-06 18:46:37 +0100524 si_want_get(&s->si[0]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200525
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200526 if (sess->fe->accept && sess->fe->accept(s) < 0)
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200527 goto out_fail_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200528
529 /* it is important not to call the wakeup function directly but to
530 * pass through task_wakeup(), because this one knows how to apply
Emeric Brun5f77fef2017-05-29 15:26:51 +0200531 * priorities to tasks. Using multi thread we must be sure that
532 * stream is fully initialized before calling task_wakeup. So
533 * the caller must handle the task_wakeup
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200534 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100535 DBG_TRACE_LEAVE(STRM_EV_STRM_NEW, s);
Willy Tarreau02d86382015-04-05 12:00:52 +0200536 return s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200537
538 /* Error unrolling */
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200539 out_fail_accept:
Christopher Faulet92d36382015-11-05 13:35:03 +0100540 flt_stream_release(s, 0);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200541 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200542 tasklet_free(s->si[1].wait_event.tasklet);
Willy Tarreaue5f229e2018-10-15 11:08:55 +0200543 LIST_DEL(&s->list);
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200544out_fail_alloc_si1:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200545 tasklet_free(s->si[0].wait_event.tasklet);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200546 out_fail_alloc:
Willy Tarreaubafbe012017-11-24 17:34:44 +0100547 pool_free(pool_head_stream, s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100548 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_NEW|STRM_EV_STRM_ERR);
Willy Tarreau02d86382015-04-05 12:00:52 +0200549 return NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200550}
551
Willy Tarreaubaaee002006-06-26 02:48:02 +0200552/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200553 * frees the context associated to a stream. It must have been removed first.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200555static void stream_free(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200556{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200557 struct session *sess = strm_sess(s);
558 struct proxy *fe = sess->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100559 struct bref *bref, *back;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200560 struct conn_stream *cli_cs = objt_cs(s->si[0].end);
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100561 int must_free_sess;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200562 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100563
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100564 DBG_TRACE_POINT(STRM_EV_STRM_FREE, s);
565
Willy Tarreau0ad46fa2019-05-17 14:20:05 +0200566 /* detach the stream from its own task before even releasing it so
567 * that walking over a task list never exhibits a dying stream.
568 */
569 s->task->context = NULL;
570 __ha_barrier_store();
571
Willy Tarreaud0ad4a82018-07-25 11:13:53 +0200572 pendconn_free(s);
Willy Tarreau922a8062008-12-04 09:33:58 +0100573
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100574 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200575 if (s->flags & SF_CURR_SESS) {
576 s->flags &= ~SF_CURR_SESS;
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100577 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
Willy Tarreau1e62de62008-11-11 20:20:02 +0100578 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100579 if (may_dequeue_tasks(objt_server(s->target), s->be))
580 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100581 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100582
Willy Tarreau7c669d72008-06-20 15:04:11 +0200583 if (unlikely(s->srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200584 /* the stream still has a reserved slot on a server, but
Willy Tarreau7c669d72008-06-20 15:04:11 +0200585 * it should normally be only the same as the one above,
586 * so this should not happen in fact.
587 */
588 sess_change_server(s, NULL);
589 }
590
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100591 if (s->req.pipe)
592 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100593
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100594 if (s->res.pipe)
595 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100596
Willy Tarreaubf883e02014-11-25 21:10:35 +0100597 /* We may still be present in the buffer wait queue */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100598 if (!LIST_ISEMPTY(&s->buffer_wait.list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100599 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100600 LIST_DEL(&s->buffer_wait.list);
601 LIST_INIT(&s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100602 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100603 }
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200604 if (s->req.buf.size || s->res.buf.size) {
Willy Tarreaue0d0b402019-08-08 08:06:27 +0200605 b_free(&s->req.buf);
606 b_free(&s->res.buf);
Olivier Houchard673867c2018-05-25 16:58:52 +0200607 offer_buffers(NULL, tasks_run_queue);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100608 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200609
Olivier Houchard32211a12019-02-01 18:10:46 +0100610 pool_free(pool_head_uniqueid, s->unique_id);
Willy Tarreau09c4bab2019-02-10 18:49:37 +0100611 s->unique_id = NULL;
Olivier Houchard32211a12019-02-01 18:10:46 +0100612
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100613 hlua_ctx_destroy(s->hlua);
614 s->hlua = NULL;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200615 if (s->txn)
616 http_end_txn(s);
Willy Tarreau46023632010-01-07 22:51:47 +0100617
Willy Tarreau1e954912012-10-12 17:50:05 +0200618 /* ensure the client-side transport layer is destroyed */
Willy Tarreau32560732017-10-08 11:33:44 +0200619 if (cli_cs)
620 cs_close(cli_cs);
Willy Tarreau1e954912012-10-12 17:50:05 +0200621
Willy Tarreaua4cda672010-06-06 18:28:49 +0200622 for (i = 0; i < s->store_count; i++) {
623 if (!s->store[i].ts)
624 continue;
625 stksess_free(s->store[i].table, s->store[i].ts);
626 s->store[i].ts = NULL;
627 }
628
Willy Tarreaueee5b512015-04-03 23:46:31 +0200629 if (s->txn) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100630 pool_free(pool_head_http_txn, s->txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +0200631 s->txn = NULL;
632 }
633
Baptiste Assmann333939c2019-01-21 08:34:50 +0100634 if (s->dns_ctx.dns_requester) {
635 free(s->dns_ctx.hostname_dn); s->dns_ctx.hostname_dn = NULL;
636 s->dns_ctx.hostname_dn_len = 0;
637 dns_unlink_resolution(s->dns_ctx.dns_requester);
638
639 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
640 s->dns_ctx.dns_requester = NULL;
641 }
642
Christopher Fauletd7c91962015-04-30 11:48:27 +0200643 flt_stream_stop(s);
Christopher Faulet92d36382015-11-05 13:35:03 +0100644 flt_stream_release(s, 0);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200645
Willy Tarreau92fb9832007-10-16 17:34:28 +0200646 if (fe) {
Christopher Faulet59399252019-11-07 14:27:52 +0100647 if (s->req_cap) {
648 struct cap_hdr *h;
649 for (h = fe->req_cap; h; h = h->next)
650 pool_free(h->pool, s->req_cap[h->index]);
651 }
652
653 if (s->res_cap) {
654 struct cap_hdr *h;
655 for (h = fe->rsp_cap; h; h = h->next)
656 pool_free(h->pool, s->res_cap[h->index]);
657 }
658
Willy Tarreaubafbe012017-11-24 17:34:44 +0100659 pool_free(fe->rsp_cap_pool, s->res_cap);
660 pool_free(fe->req_cap_pool, s->req_cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200661 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100662
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200663 /* Cleanup all variable contexts. */
Willy Tarreaucda7f3f2018-10-28 13:44:36 +0100664 if (!LIST_ISEMPTY(&s->vars_txn.head))
665 vars_prune(&s->vars_txn, s->sess, s);
666 if (!LIST_ISEMPTY(&s->vars_reqres.head))
667 vars_prune(&s->vars_reqres, s->sess, s);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200668
Willy Tarreau87b09662015-04-03 00:22:06 +0200669 stream_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200670
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100671 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100672 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100673 /* we have to unlink all watchers. We must not relink them if
Willy Tarreau87b09662015-04-03 00:22:06 +0200674 * this stream was the last one in the list.
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100675 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100676 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100677 LIST_INIT(&bref->users);
Willy Tarreau87b09662015-04-03 00:22:06 +0200678 if (s->list.n != &streams)
679 LIST_ADDQ(&LIST_ELEM(s->list.n, struct stream *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100680 bref->ref = s->list.n;
681 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100682 LIST_DEL(&s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100683 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200684
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100685 /* applets do not release session yet */
686 must_free_sess = objt_appctx(sess->origin) && sess->origin == s->si[0].end;
687
Olivier Houchard4fdec7a2018-10-11 17:09:14 +0200688
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200689 si_release_endpoint(&s->si[1]);
690 si_release_endpoint(&s->si[0]);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200691
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200692 tasklet_free(s->si[0].wait_event.tasklet);
693 tasklet_free(s->si[1].wait_event.tasklet);
Olivier Houchardd7bd3e32018-10-18 16:22:02 +0200694
Olivier Houcharda254a372019-04-05 15:30:12 +0200695 b_free(&s->si[1].l7_buffer);
Olivier Houchard25607af2018-11-23 14:50:47 +0100696 if (must_free_sess) {
697 sess->origin = NULL;
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100698 session_free(sess);
Olivier Houchard25607af2018-11-23 14:50:47 +0100699 }
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100700
Willy Tarreau90420602019-07-18 15:09:57 +0200701 sockaddr_free(&s->target_addr);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100702 pool_free(pool_head_stream, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200703
704 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200705 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100706 pool_flush(pool_head_buffer);
707 pool_flush(pool_head_http_txn);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100708 pool_flush(pool_head_requri);
709 pool_flush(pool_head_capture);
710 pool_flush(pool_head_stream);
711 pool_flush(pool_head_session);
712 pool_flush(pool_head_connection);
713 pool_flush(pool_head_pendconn);
714 pool_flush(fe->req_cap_pool);
715 pool_flush(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200716 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200717}
718
Willy Tarreau656859d2014-11-25 19:46:36 +0100719
Willy Tarreau87b09662015-04-03 00:22:06 +0200720/* Allocates a work buffer for stream <s>. It is meant to be called inside
721 * process_stream(). It will only allocate the side needed for the function
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200722 * to work fine, which is the response buffer so that an error message may be
723 * built and returned. Response buffers may be allocated from the reserve, this
724 * is critical to ensure that a response may always flow and will never block a
725 * server from releasing a connection. Returns 0 in case of failure, non-zero
726 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100727 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100728static int stream_alloc_work_buffer(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100729{
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100730 if (!LIST_ISEMPTY(&s->buffer_wait.list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100731 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100732 LIST_DEL(&s->buffer_wait.list);
733 LIST_INIT(&s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100734 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100735 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100736
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200737 if (b_alloc_margin(&s->res.buf, 0))
Willy Tarreau656859d2014-11-25 19:46:36 +0100738 return 1;
739
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100740 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100741 LIST_ADDQ(&buffer_wq, &s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100742 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau656859d2014-11-25 19:46:36 +0100743 return 0;
744}
745
746/* releases unused buffers after processing. Typically used at the end of the
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100747 * update() functions. It will try to wake up as many tasks/applets as the
748 * number of buffers that it releases. In practice, most often streams are
749 * blocked on a single buffer, so it makes sense to try to wake two up when two
750 * buffers are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100751 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200752void stream_release_buffers(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100753{
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100754 int offer = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100755
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200756 if (c_size(&s->req) && c_empty(&s->req)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100757 offer = 1;
758 b_free(&s->req.buf);
759 }
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200760 if (c_size(&s->res) && c_empty(&s->res)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100761 offer = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100762 b_free(&s->res.buf);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100763 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100764
Willy Tarreaubf883e02014-11-25 21:10:35 +0100765 /* if we're certain to have at least 1 buffer available, and there is
766 * someone waiting, we can wake up a waiter and offer them.
767 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100768 if (offer)
Olivier Houchard673867c2018-05-25 16:58:52 +0200769 offer_buffers(s, tasks_run_queue);
Willy Tarreau656859d2014-11-25 19:46:36 +0100770}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200771
Willy Tarreau87b09662015-04-03 00:22:06 +0200772void stream_process_counters(struct stream *s)
Willy Tarreau30e71012007-11-26 20:15:35 +0100773{
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200774 struct session *sess = s->sess;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100775 unsigned long long bytes;
Emeric Brun57056f02015-06-15 18:29:57 +0200776 void *ptr1,*ptr2;
Emeric Brun819fc6f2017-06-13 19:37:32 +0200777 struct stksess *ts;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100778 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100779
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100780 bytes = s->req.total - s->logs.bytes_in;
781 s->logs.bytes_in = s->req.total;
782 if (bytes) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100783 _HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_in, bytes);
784 _HA_ATOMIC_ADD(&s->be->be_counters.bytes_in, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100785
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100786 if (objt_server(s->target))
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100787 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_in, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200788
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200789 if (sess->listener && sess->listener->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100790 _HA_ATOMIC_ADD(&sess->listener->counters->bytes_in, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200791
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100792 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200793 struct stkctr *stkctr = &s->stkctr[i];
794
Emeric Brun819fc6f2017-06-13 19:37:32 +0200795 ts = stkctr_entry(stkctr);
796 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200797 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200798 ts = stkctr_entry(stkctr);
799 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200800 continue;
801 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200802
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100803 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200804 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200805 if (ptr1)
806 stktable_data_cast(ptr1, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200807
Emeric Brun819fc6f2017-06-13 19:37:32 +0200808 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200809 if (ptr2)
810 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_in_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200811 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100812 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200813
814 /* If data was modified, we need to touch to re-schedule sync */
815 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200816 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100817 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100818 }
819
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100820 bytes = s->res.total - s->logs.bytes_out;
821 s->logs.bytes_out = s->res.total;
822 if (bytes) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100823 _HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_out, bytes);
824 _HA_ATOMIC_ADD(&s->be->be_counters.bytes_out, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100825
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100826 if (objt_server(s->target))
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100827 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_out, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200828
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200829 if (sess->listener && sess->listener->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100830 _HA_ATOMIC_ADD(&sess->listener->counters->bytes_out, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200831
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100832 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200833 struct stkctr *stkctr = &s->stkctr[i];
834
Emeric Brun819fc6f2017-06-13 19:37:32 +0200835 ts = stkctr_entry(stkctr);
836 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200837 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200838 ts = stkctr_entry(stkctr);
839 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200840 continue;
841 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200842
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100843 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200844 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200845 if (ptr1)
846 stktable_data_cast(ptr1, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200847
Emeric Brun819fc6f2017-06-13 19:37:32 +0200848 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200849 if (ptr2)
850 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_out_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200851 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100852 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200853
854 /* If data was modified, we need to touch to re-schedule sync */
855 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200856 stktable_touch_local(stkctr->table, stkctr_entry(stkctr), 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100857 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100858 }
859}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200860
Willy Tarreaud66ed882019-06-05 18:02:04 +0200861/* This function is called with (si->state == SI_ST_CON) meaning that a
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100862 * connection was attempted and that the file descriptor is already allocated.
Willy Tarreaud66ed882019-06-05 18:02:04 +0200863 * We must check for timeout, error and abort. Possible output states are
864 * SI_ST_CER (error), SI_ST_DIS (abort), and SI_ST_CON (no change). This only
865 * works with connection-based streams. We know that there were no I/O event
866 * when reaching this function. Timeouts and errors are *not* cleared.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100867 */
Willy Tarreaud66ed882019-06-05 18:02:04 +0200868static void sess_update_st_con_tcp(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100869{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100870 struct stream_interface *si = &s->si[1];
871 struct channel *req = &s->req;
872 struct channel *rep = &s->res;
Olivier Houchard14547b22018-11-29 18:01:46 +0100873 struct conn_stream *srv_cs = objt_cs(si->end);
Willy Tarreaubf66bd12019-01-23 15:15:09 +0100874 struct connection *conn = srv_cs ? srv_cs->conn : objt_conn(si->end);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100875
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100876 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
877
Willy Tarreaud66ed882019-06-05 18:02:04 +0200878 /* the client might want to abort */
879 if ((rep->flags & CF_SHUTW) ||
880 ((req->flags & CF_SHUTW_NOW) &&
881 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
882 si->flags |= SI_FL_NOLINGER;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200883 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100884 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau84455332009-03-15 22:34:05 +0100885 if (s->srv_error)
886 s->srv_error(s, si);
Willy Tarreaud66ed882019-06-05 18:02:04 +0200887 /* Note: state = SI_ST_DIS now */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100888 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100889 }
890
Willy Tarreaud66ed882019-06-05 18:02:04 +0200891 /* retryable error ? */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100892 else if (si->flags & (SI_FL_EXP|SI_FL_ERR)) {
Willy Tarreaud66ed882019-06-05 18:02:04 +0200893 if (!(s->flags & SF_SRV_REUSED) && conn) {
894 conn_stop_tracking(conn);
895 conn_full_close(conn);
896 }
Christopher Faulet7a3367c2019-05-09 11:46:52 +0200897
Willy Tarreaud66ed882019-06-05 18:02:04 +0200898 if (!si->err_type) {
899 if (si->flags & SI_FL_ERR)
900 si->err_type = SI_ET_CONN_ERR;
901 else
902 si->err_type = SI_ET_CONN_TO;
903 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100904
Willy Tarreaud66ed882019-06-05 18:02:04 +0200905 si->state = SI_ST_CER;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100906 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +0200907 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100908
909 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100910}
911
912/* This function is called with (si->state == SI_ST_CER) meaning that a
913 * previous connection attempt has failed and that the file descriptor
914 * has already been released. Possible causes include asynchronous error
915 * notification and time out. Possible output states are SI_ST_CLO when
916 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
917 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
918 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
Willy Tarreaud66ed882019-06-05 18:02:04 +0200919 * marked as in error state. Timeouts and errors are cleared before retrying.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920 */
Willy Tarreaud66ed882019-06-05 18:02:04 +0200921static void sess_update_st_cer(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100922{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100923 struct stream_interface *si = &s->si[1];
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200924 struct conn_stream *cs = objt_cs(si->end);
925 struct connection *conn = cs_conn(cs);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100926
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100927 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
928
Willy Tarreaud66ed882019-06-05 18:02:04 +0200929 si->exp = TICK_ETERNITY;
930 si->flags &= ~SI_FL_EXP;
931
Willy Tarreau87b09662015-04-03 00:22:06 +0200932 /* we probably have to release last stream from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100933 if (objt_server(s->target)) {
934 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100935
Willy Tarreaue7dff022015-04-03 01:14:29 +0200936 if (s->flags & SF_CURR_SESS) {
937 s->flags &= ~SF_CURR_SESS;
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100938 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100939 }
Willy Tarreau46d5b082017-07-26 20:13:37 +0200940
941 if ((si->flags & SI_FL_ERR) &&
942 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
943 /* We tried to connect to a server which is configured
944 * with "verify required" and which doesn't have the
945 * "verifyhost" directive. The server presented a wrong
946 * certificate (a certificate for an unexpected name),
947 * which implies that we have used SNI in the handshake,
948 * and that the server doesn't have the associated cert
949 * and presented a default one.
950 *
951 * This is a serious enough issue not to retry. It's
952 * especially important because this wrong name might
953 * either be the result of a configuration error, and
954 * retrying will only hammer the server, or is caused
955 * by the use of a wrong SNI value, most likely
956 * provided by the client and we don't want to let the
957 * client provoke retries.
958 */
959 si->conn_retries = 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100960 DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau46d5b082017-07-26 20:13:37 +0200961 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100962 }
963
964 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200965 si->conn_retries--;
Olivier Houcharda254a372019-04-05 15:30:12 +0200966 if (si->conn_retries < 0 || !(s->be->retry_type & PR_RE_CONN_FAILED)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100967 if (!si->err_type) {
968 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100969 }
970
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100971 if (objt_server(s->target))
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100972 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
973 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100974 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100975 if (may_dequeue_tasks(objt_server(s->target), s->be))
976 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100977
978 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200979 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100980 s->req.flags |= CF_WRITE_ERROR;
981 s->res.flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100982
983 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100984 if (s->srv_error)
985 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100986
987 DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
988 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100989 }
990
Olivier Houchard4bd58672019-07-12 16:16:59 +0200991 stream_choose_redispatch(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100992
993 if (si->flags & SI_FL_ERR) {
994 /* The error was an asynchronous connection error, and we will
995 * likely have to retry connecting to the same server, most
996 * likely leading to the same result. To avoid this, we wait
Willy Tarreauf7a259d2019-01-23 16:29:53 +0100997 * MIN(one second, connect timeout) before retrying. We don't
998 * do it when the failure happened on a reused connection
999 * though.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001000 */
1001
Willy Tarreaub0290662014-06-13 17:04:44 +02001002 int delay = 1000;
1003
1004 if (s->be->timeout.connect && s->be->timeout.connect < delay)
1005 delay = s->be->timeout.connect;
1006
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001007 if (!si->err_type)
1008 si->err_type = SI_ET_CONN_ERR;
1009
Willy Tarreaudb6d0122014-06-13 17:40:15 +02001010 /* only wait when we're retrying on the same server */
Willy Tarreauf7a259d2019-01-23 16:29:53 +01001011 if ((si->state == SI_ST_ASS ||
1012 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
1013 (s->be->srv_act <= 1)) && !(s->flags & SF_SRV_REUSED)) {
Willy Tarreaudb6d0122014-06-13 17:40:15 +02001014 si->state = SI_ST_TAR;
1015 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
1016 }
Olivier Houchard39cc0202019-04-09 19:12:51 +02001017 si->flags &= ~SI_FL_ERR;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001018 DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001019 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001020
1021 end:
1022 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001023}
1024
1025/* This function is called with (si->state == SI_ST_RDY) meaning that a
1026 * connection was attempted, that the file descriptor is already allocated,
1027 * and that it has succeeded. We must still check for errors and aborts.
1028 * Possible output states are SI_ST_EST (established), SI_ST_CER (error),
1029 * and SI_ST_DIS (abort). This only works with connection-based streams.
1030 * Timeouts and errors are *not* cleared.
1031 */
1032static void sess_update_st_rdy_tcp(struct stream *s)
1033{
1034 struct stream_interface *si = &s->si[1];
1035 struct channel *req = &s->req;
1036 struct channel *rep = &s->res;
1037 struct conn_stream *srv_cs = objt_cs(si->end);
1038 struct connection *conn = srv_cs ? srv_cs->conn : objt_conn(si->end);
1039
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001040 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001041 /* We know the connection at least succeeded, though it could have
1042 * since met an error for any other reason. At least it didn't time out
1043 * eventhough the timeout might have been reported right after success.
1044 * We need to take care of various situations here :
1045 * - everything might be OK. We have to switch to established.
1046 * - an I/O error might have been reported after a successful transfer,
1047 * which is not retryable and needs to be logged correctly, and needs
1048 * established as well
1049 * - SI_ST_CON implies !CF_WROTE_DATA but not conversely as we could
1050 * have validated a connection with incoming data (e.g. TCP with a
1051 * banner protocol), or just a successful connect() probe.
1052 * - the client might have requested a connection abort, this needs to
1053 * be checked before we decide to retry anything.
1054 */
1055
1056 /* it's still possible to handle client aborts or connection retries
1057 * before any data were sent.
1058 */
1059 if (!(req->flags & CF_WROTE_DATA)) {
1060 /* client abort ? */
1061 if ((rep->flags & CF_SHUTW) ||
1062 ((req->flags & CF_SHUTW_NOW) &&
1063 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) {
1064 /* give up */
1065 si->flags |= SI_FL_NOLINGER;
1066 si_shutw(si);
1067 si->err_type |= SI_ET_CONN_ABRT;
1068 if (s->srv_error)
1069 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001070 DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1071 goto end;
Willy Tarreaud66ed882019-06-05 18:02:04 +02001072 }
1073
1074 /* retryable error ? */
1075 if (si->flags & SI_FL_ERR) {
1076 if (!(s->flags & SF_SRV_REUSED) && conn) {
1077 conn_stop_tracking(conn);
1078 conn_full_close(conn);
1079 }
1080
1081 if (!si->err_type)
1082 si->err_type = SI_ET_CONN_ERR;
1083 si->state = SI_ST_CER;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001084 DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1085 goto end;
Willy Tarreaud66ed882019-06-05 18:02:04 +02001086 }
1087 }
1088
1089 /* data were sent and/or we had no error, sess_establish() will
1090 * now take over.
1091 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001092 DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001093 si->err_type = SI_ET_NONE;
1094 si->state = SI_ST_EST;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001095
1096 end:
1097 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001098}
1099
1100/*
1101 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +02001102 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001103 * SI_ST_INI or SI_ST_RDY) to SI_ST_EST, but only when a ->proto is defined.
Olivier Houchardaacc4052019-05-21 17:43:50 +02001104 * Note that it will switch the interface to SI_ST_DIS if we already have
1105 * the CF_SHUTR flag, it means we were able to forward the request, and
1106 * receive the response, before process_stream() had the opportunity to
1107 * make the switch from SI_ST_CON to SI_ST_EST. When that happens, we want
1108 * to go through sess_establish() anyway, to make sure the analysers run.
Willy Tarreaud66ed882019-06-05 18:02:04 +02001109 * Timeouts are cleared. Error are reported on the channel so that analysers
1110 * can handle them.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001111 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001112static void sess_establish(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001113{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001114 struct stream_interface *si = &s->si[1];
Willy Tarreaud66ed882019-06-05 18:02:04 +02001115 struct conn_stream *srv_cs = objt_cs(si->end);
1116 struct connection *conn = srv_cs ? srv_cs->conn : objt_conn(si->end);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001117 struct channel *req = &s->req;
1118 struct channel *rep = &s->res;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001119
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001120 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001121 /* First, centralize the timers information, and clear any irrelevant
1122 * timeout.
1123 */
Willy Tarreau0e37f1c2013-12-31 23:06:46 +01001124 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001125 si->exp = TICK_ETERNITY;
1126 si->flags &= ~SI_FL_EXP;
1127
1128 /* errors faced after sending data need to be reported */
1129 if (si->flags & SI_FL_ERR && req->flags & CF_WROTE_DATA) {
1130 /* Don't add CF_WRITE_ERROR if we're here because
1131 * early data were rejected by the server, or
1132 * http_wait_for_response() will never be called
1133 * to send a 425.
1134 */
1135 if (conn && conn->err_code != CO_ER_SSL_EARLY_FAILED)
1136 req->flags |= CF_WRITE_ERROR;
1137 rep->flags |= CF_READ_ERROR;
1138 si->err_type = SI_ET_DATA_ERR;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001139 DBG_TRACE_STATE("read/write error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001140 }
1141
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001142 if (objt_server(s->target))
1143 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001144
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001145 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001146 /* if the user wants to log as soon as possible, without counting
1147 * bytes from the server, then this is the right moment. */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001148 if (!LIST_ISEMPTY(&strm_fe(s)->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau66425e32018-07-25 06:55:12 +02001149 /* note: no pend_pos here, session is established */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001150 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +01001151 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001152 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001153 }
1154 else {
Willy Tarreaud81ca042013-12-31 22:33:13 +01001155 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001156 }
1157
Willy Tarreau0007d0a2018-12-11 18:01:38 +01001158 rep->analysers |= strm_fe(s)->fe_rsp_ana | s->be->be_rsp_ana;
Christopher Faulet309c6412015-12-02 09:57:32 +01001159
Willy Tarreau0007d0a2018-12-11 18:01:38 +01001160 /* Be sure to filter response headers if the backend is an HTTP proxy
1161 * and if there are filters attached to the stream. */
1162 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
1163 rep->analysers |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01001164
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001165 si_rx_endp_more(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001166 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001167 if (objt_cs(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +02001168 /* real connections have timeouts */
1169 req->wto = s->be->timeout.server;
1170 rep->rto = s->be->timeout.server;
Olivier Houchard47e9a1a2018-11-07 17:55:19 +01001171 /* The connection is now established, try to read data from the
1172 * underlying layer, and subscribe to recv events. We use a
1173 * delayed recv here to give a chance to the data to flow back
1174 * by the time we process other tasks.
1175 */
1176 si_chk_rcv(si);
Willy Tarreaud04e8582010-05-31 12:31:35 +02001177 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001178 req->wex = TICK_ETERNITY;
Olivier Houchard78595262019-07-26 14:54:34 +02001179 /* If we managed to get the whole response, and we don't have anything
1180 * left to send, or can't, switch to SI_ST_DIS now. */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001181 if (rep->flags & (CF_SHUTR | CF_SHUTW)) {
Olivier Houchardaacc4052019-05-21 17:43:50 +02001182 si->state = SI_ST_DIS;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001183 DBG_TRACE_STATE("response channel shutdwn for read/write", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1184 }
1185
1186 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001187}
1188
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001189/* Check if the connection request is in such a state that it can be aborted. */
1190static int check_req_may_abort(struct channel *req, struct stream *s)
1191{
1192 return ((req->flags & (CF_READ_ERROR)) ||
Willy Tarreaud651ba12018-01-12 10:42:12 +01001193 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
Christopher Faulet769d0e92019-03-22 14:23:18 +01001194 (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE))));
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001195}
1196
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001197/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
1198 * SI_ST_TAR. Other input states are simply ignored.
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01001199 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
1200 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
1201 * conditions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001202 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001203static void sess_update_stream_int(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001204{
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001205 struct server *srv = objt_server(s->target);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001206 struct stream_interface *si = &s->si[1];
Willy Tarreau103197d2014-11-28 15:26:12 +01001207 struct channel *req = &s->req;
Willy Tarreau827aee92011-03-10 16:55:02 +01001208
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001209 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001210
1211 if (si->state == SI_ST_ASS) {
1212 /* Server assigned to connection request, we have to try to connect now */
1213 int conn_err;
1214
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001215 /* Before we try to initiate the connection, see if the
1216 * request may be aborted instead.
1217 */
1218 if (check_req_may_abort(req, s)) {
1219 si->err_type |= SI_ET_CONN_ABRT;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001220 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001221 goto abort_connection;
1222 }
1223
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001224 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001225 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001226
Willy Tarreaue7dff022015-04-03 01:14:29 +02001227 if (conn_err == SF_ERR_NONE) {
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01001228 /* state = SI_ST_CON or SI_ST_EST now */
Willy Tarreau827aee92011-03-10 16:55:02 +01001229 if (srv)
1230 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001231 if (srv)
1232 srv_set_sess_last(srv);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001233 DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1234 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001235 }
1236
1237 /* We have received a synchronous error. We might have to
1238 * abort, retry immediately or redispatch.
1239 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001240 if (conn_err == SF_ERR_INTERNAL) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001241 if (!si->err_type) {
1242 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001243 }
1244
Willy Tarreau827aee92011-03-10 16:55:02 +01001245 if (srv)
1246 srv_inc_sess_ctr(srv);
1247 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001248 srv_set_sess_last(srv);
1249 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001250 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1251 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001252
Willy Tarreau87b09662015-04-03 00:22:06 +02001253 /* release other streams waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +01001254 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001255 if (may_dequeue_tasks(srv, s->be))
1256 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001257
1258 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001259 si_shutr(si);
1260 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001261 req->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001262
1263 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1264
Willy Tarreau66425e32018-07-25 06:55:12 +02001265 /* we may need to know the position in the queue for logging */
1266 pendconn_cond_unlink(s->pend_pos);
1267
Willy Tarreau87b09662015-04-03 00:22:06 +02001268 /* no stream was ever accounted for this server */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001269 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001270 if (s->srv_error)
1271 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001272 DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1273 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001274 }
1275
1276 /* We are facing a retryable error, but we don't want to run a
1277 * turn-around now, as the problem is likely a source port
1278 * allocation problem, so we want to retry now.
1279 */
1280 si->state = SI_ST_CER;
1281 si->flags &= ~SI_FL_ERR;
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001282 sess_update_st_cer(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001283
1284 DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001285 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001286 }
1287 else if (si->state == SI_ST_QUE) {
1288 /* connection request was queued, check for any update */
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +01001289 if (!pendconn_dequeue(s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001290 /* The connection is not in the queue anymore. Either
1291 * we have a server connection slot available and we
1292 * go directly to the assigned state, or we need to
1293 * load-balance first and go to the INI state.
1294 */
1295 si->exp = TICK_ETERNITY;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001296 if (unlikely(!(s->flags & SF_ASSIGNED)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001297 si->state = SI_ST_REQ;
1298 else {
1299 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1300 si->state = SI_ST_ASS;
1301 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001302 DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1303 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001304 }
1305
1306 /* Connection request still in queue... */
1307 if (si->flags & SI_FL_EXP) {
1308 /* ... and timeout expired */
1309 si->exp = TICK_ETERNITY;
Willy Tarreaud66ed882019-06-05 18:02:04 +02001310 si->flags &= ~SI_FL_EXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001311 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau66425e32018-07-25 06:55:12 +02001312
1313 /* we may need to know the position in the queue for logging */
1314 pendconn_cond_unlink(s->pend_pos);
1315
Willy Tarreau827aee92011-03-10 16:55:02 +01001316 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001317 _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
1318 _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau73b013b2012-05-21 16:31:45 +02001319 si_shutr(si);
1320 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001321 req->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001322 if (!si->err_type)
1323 si->err_type = SI_ET_QUEUE_TO;
1324 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001325 if (s->srv_error)
1326 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001327 DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1328 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001329 }
1330
1331 /* Connection remains in queue, check if we have to abort it */
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001332 if (check_req_may_abort(req, s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001333 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau66425e32018-07-25 06:55:12 +02001334
1335 /* we may need to know the position in the queue for logging */
1336 pendconn_cond_unlink(s->pend_pos);
1337
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001338 si->err_type |= SI_ET_QUEUE_ABRT;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001339 DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001340 goto abort_connection;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001341 }
1342
1343 /* Nothing changed */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001344 }
1345 else if (si->state == SI_ST_TAR) {
1346 /* Connection request might be aborted */
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001347 if (check_req_may_abort(req, s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001348 si->err_type |= SI_ET_CONN_ABRT;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001349 DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001350 goto abort_connection;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001351 }
1352
1353 if (!(si->flags & SI_FL_EXP))
1354 return; /* still in turn-around */
1355
Olivier Houchard86dcad62019-04-09 19:17:41 +02001356 si->flags &= ~SI_FL_EXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001357 si->exp = TICK_ETERNITY;
1358
Willy Tarreau87b09662015-04-03 00:22:06 +02001359 /* we keep trying on the same server as long as the stream is
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001360 * marked "assigned".
1361 * FIXME: Should we force a redispatch attempt when the server is down ?
1362 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001363 if (s->flags & SF_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001364 si->state = SI_ST_ASS;
1365 else
1366 si->state = SI_ST_REQ;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001367
1368 DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001369 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001370
1371 end:
1372 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001373 return;
1374
1375abort_connection:
1376 /* give up */
1377 si->exp = TICK_ETERNITY;
Willy Tarreaud66ed882019-06-05 18:02:04 +02001378 si->flags &= ~SI_FL_EXP;
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001379 si_shutr(si);
1380 si_shutw(si);
1381 si->state = SI_ST_CLO;
1382 if (s->srv_error)
1383 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001384 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001385 return;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001386}
1387
Willy Tarreau87b09662015-04-03 00:22:06 +02001388/* Set correct stream termination flags in case no analyser has done it. It
Simon Hormandec5be42011-06-08 09:19:07 +09001389 * also counts a failed request if the server state has not reached the request
1390 * stage.
1391 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001392static void sess_set_term_flags(struct stream *s)
Simon Hormandec5be42011-06-08 09:19:07 +09001393{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001394 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001395 if (s->si[1].state == SI_ST_INI) {
1396 /* anything before REQ in fact */
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001397 _HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.failed_req, 1);
Willy Tarreau2c1068c2015-09-23 12:21:21 +02001398 if (strm_li(s) && strm_li(s)->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001399 _HA_ATOMIC_ADD(&strm_li(s)->counters->failed_req, 1);
Simon Hormandec5be42011-06-08 09:19:07 +09001400
Willy Tarreaue7dff022015-04-03 01:14:29 +02001401 s->flags |= SF_FINST_R;
Simon Hormandec5be42011-06-08 09:19:07 +09001402 }
1403 else if (s->si[1].state == SI_ST_QUE)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001404 s->flags |= SF_FINST_Q;
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001405 else if (si_state_in(s->si[1].state, SI_SB_REQ|SI_SB_TAR|SI_SB_ASS|SI_SB_CON|SI_SB_CER|SI_SB_RDY))
Willy Tarreaue7dff022015-04-03 01:14:29 +02001406 s->flags |= SF_FINST_C;
Simon Hormandec5be42011-06-08 09:19:07 +09001407 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001408 s->flags |= SF_FINST_D;
Simon Hormandec5be42011-06-08 09:19:07 +09001409 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001410 s->flags |= SF_FINST_L;
Simon Hormandec5be42011-06-08 09:19:07 +09001411 }
1412}
1413
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001414/* This function initiates a server connection request on a stream interface
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001415 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1416 * a real connection to a server, indicating that a server has been assigned,
1417 * or SI_ST_EST for a successful connection to an applet. It may also return
1418 * SI_ST_QUE, or SI_ST_CLO upon error.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001419 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001420static void sess_prepare_conn_req(struct stream *s)
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001421{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001422 struct stream_interface *si = &s->si[1];
1423
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001424 if (si->state != SI_ST_REQ)
1425 return;
1426
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001427 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1428
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001429 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1430 /* the applet directly goes to the EST state */
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001431 struct appctx *appctx = objt_appctx(si->end);
1432
1433 if (!appctx || appctx->applet != __objt_applet(s->target))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001434 appctx = si_register_handler(si, objt_applet(s->target));
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001435
1436 if (!appctx) {
1437 /* No more memory, let's immediately abort. Force the
1438 * error code to ignore the ERR_LOCAL which is not a
1439 * real error.
1440 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001441 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001442
1443 si_shutr(si);
1444 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001445 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau6bbb2f62013-12-09 17:14:23 +01001446 si->err_type = SI_ET_CONN_RES;
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001447 si->state = SI_ST_CLO;
1448 if (s->srv_error)
1449 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001450 DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1451 goto end;
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001452 }
1453
Willy Tarreauee8269e2017-11-23 17:34:29 +01001454 if (tv_iszero(&s->logs.tv_request))
1455 s->logs.tv_request = now;
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001456 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001457 si->state = SI_ST_EST;
1458 si->err_type = SI_ET_NONE;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001459 be_set_sess_last(s->be);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001460
1461 DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01001462 /* let sess_establish() finish the job */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001463 goto end;
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001464 }
1465
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001466 /* Try to assign a server */
1467 if (srv_redispatch_connect(s) != 0) {
1468 /* We did not get a server. Either we queued the
1469 * connection request, or we encountered an error.
1470 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001471 if (si->state == SI_ST_QUE) {
1472 DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1473 goto end;
1474 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001475
1476 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001477 si_shutr(si);
1478 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001479 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001480 if (!si->err_type)
1481 si->err_type = SI_ET_CONN_OTHER;
1482 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001483 if (s->srv_error)
1484 s->srv_error(s, si);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001485 DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
1486 goto end;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001487 }
1488
1489 /* The server is assigned */
1490 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1491 si->state = SI_ST_ASS;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001492 be_set_sess_last(s->be);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001493 DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
1494
1495 end:
1496 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001497}
1498
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001499/* This function parses the use-service action ruleset. It executes
1500 * the associated ACL and set an applet as a stream or txn final node.
1501 * it returns ACT_RET_ERR if an error occurs, the proxy left in
1502 * consistent state. It returns ACT_RET_STOP in succes case because
1503 * use-service must be a terminal action. Returns ACT_RET_YIELD
1504 * if the initialisation function require more data.
1505 */
1506enum act_return process_use_service(struct act_rule *rule, struct proxy *px,
1507 struct session *sess, struct stream *s, int flags)
1508
1509{
1510 struct appctx *appctx;
1511
1512 /* Initialises the applet if it is required. */
1513 if (flags & ACT_FLAG_FIRST) {
1514 /* Register applet. this function schedules the applet. */
1515 s->target = &rule->applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001516 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target))))
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001517 return ACT_RET_ERR;
1518
1519 /* Initialise the context. */
1520 appctx = si_appctx(&s->si[1]);
1521 memset(&appctx->ctx, 0, sizeof(appctx->ctx));
1522 appctx->rule = rule;
1523 }
1524 else
1525 appctx = si_appctx(&s->si[1]);
1526
1527 /* Stops the applet sheduling, in case of the init function miss
1528 * some data.
1529 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001530 si_stop_get(&s->si[1]);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001531
1532 /* Call initialisation. */
1533 if (rule->applet.init)
1534 switch (rule->applet.init(appctx, px, s)) {
1535 case 0: return ACT_RET_ERR;
1536 case 1: break;
1537 default: return ACT_RET_YIELD;
1538 }
1539
Christopher Faulet2571bc62019-03-01 11:44:26 +01001540 if (rule->from != ACT_F_HTTP_REQ) {
1541 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
1542 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
1543
1544 /* The flag SF_ASSIGNED prevent from server assignment. */
1545 s->flags |= SF_ASSIGNED;
1546 }
1547
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001548 /* Now we can schedule the applet. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001549 si_cant_get(&s->si[1]);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001550 appctx_wakeup(appctx);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001551 return ACT_RET_STOP;
1552}
1553
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001554/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001555 * if appropriate. The default_backend rule is also considered, then the
1556 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001557 * It returns 1 if the processing can continue on next analysers, or zero if it
1558 * either needs more data or wants to immediately abort the request.
1559 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001560static int process_switching_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001561{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001562 struct persist_rule *prst_rule;
Willy Tarreau192252e2015-04-04 01:47:55 +02001563 struct session *sess = s->sess;
1564 struct proxy *fe = sess->fe;
Willy Tarreau4de91492010-01-22 19:10:05 +01001565
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001566 req->analysers &= ~an_bit;
1567 req->analyse_exp = TICK_ETERNITY;
1568
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001569 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001570
1571 /* now check whether we have some switching rules for this request */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001572 if (!(s->flags & SF_BE_ASSIGNED)) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001573 struct switching_rule *rule;
1574
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001575 list_for_each_entry(rule, &fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001576 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001577
Willy Tarreauf51658d2014-04-23 01:21:56 +02001578 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001579 ret = acl_exec_cond(rule->cond, fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001580 ret = acl_pass(ret);
1581 if (rule->cond->pol == ACL_COND_UNLESS)
1582 ret = !ret;
1583 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001584
1585 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001586 /* If the backend name is dynamic, try to resolve the name.
1587 * If we can't resolve the name, or if any error occurs, break
1588 * the loop and fallback to the default backend.
1589 */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001590 struct proxy *backend = NULL;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001591
1592 if (rule->dynamic) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001593 struct buffer *tmp;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001594
1595 tmp = alloc_trash_chunk();
1596 if (!tmp)
1597 goto sw_failed;
1598
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001599 if (build_logline(s, tmp->area, tmp->size, &rule->be.expr))
1600 backend = proxy_be_by_name(tmp->area);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001601
1602 free_trash_chunk(tmp);
1603 tmp = NULL;
1604
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001605 if (!backend)
1606 break;
1607 }
1608 else
1609 backend = rule->be.backend;
1610
Willy Tarreau87b09662015-04-03 00:22:06 +02001611 if (!stream_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001612 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001613 break;
1614 }
1615 }
1616
1617 /* To ensure correct connection accounting on the backend, we
1618 * have to assign one if it was not set (eg: a listen). This
1619 * measure also takes care of correctly setting the default
1620 * backend if any.
1621 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001622 if (!(s->flags & SF_BE_ASSIGNED))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001623 if (!stream_set_backend(s, fe->defbe.be ? fe->defbe.be : s->be))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001624 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001625 }
1626
Willy Tarreaufb356202010-08-03 14:02:05 +02001627 /* 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 +02001628 if (fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001629 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1630 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001631 s->req.analysers &= ~AN_REQ_FLT_START_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001632 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001633
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001634 /* 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 +02001635 * persistence rule, and report that in the stream.
Willy Tarreau4de91492010-01-22 19:10:05 +01001636 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001637 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001638 int ret = 1;
1639
1640 if (prst_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001641 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 +01001642 ret = acl_pass(ret);
1643 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1644 ret = !ret;
1645 }
1646
1647 if (ret) {
1648 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001649 if (prst_rule->type == PERSIST_TYPE_FORCE) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001650 s->flags |= SF_FORCE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001651 } else {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001652 s->flags |= SF_IGNORE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001653 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001654 break;
1655 }
1656 }
1657
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001658 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001659 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001660
1661 sw_failed:
1662 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001663 channel_abort(&s->req);
1664 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001665
Willy Tarreaue7dff022015-04-03 01:14:29 +02001666 if (!(s->flags & SF_ERR_MASK))
1667 s->flags |= SF_ERR_RESOURCE;
1668 if (!(s->flags & SF_FINST_MASK))
1669 s->flags |= SF_FINST_R;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001670
Willy Tarreaueee5b512015-04-03 23:46:31 +02001671 if (s->txn)
1672 s->txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001673 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001674 s->req.analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001675 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_ANA|STRM_EV_STRM_ERR, s);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001676 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001677}
1678
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001679/* This stream analyser works on a request. It applies all use-server rules on
1680 * it then returns 1. The data must already be present in the buffer otherwise
1681 * they won't match. It always returns 1.
1682 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001683static int process_server_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001684{
1685 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001686 struct session *sess = s->sess;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001687 struct server_rule *rule;
1688
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001689 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001690
Willy Tarreaue7dff022015-04-03 01:14:29 +02001691 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001692 list_for_each_entry(rule, &px->server_rules, list) {
1693 int ret;
1694
Willy Tarreau192252e2015-04-04 01:47:55 +02001695 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001696 ret = acl_pass(ret);
1697 if (rule->cond->pol == ACL_COND_UNLESS)
1698 ret = !ret;
1699
1700 if (ret) {
1701 struct server *srv = rule->srv.ptr;
1702
Emeric Brun52a91d32017-08-31 14:41:55 +02001703 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001704 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001705 (s->flags & SF_FORCE_PRST)) {
1706 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001707 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001708 break;
1709 }
1710 /* if the server is not UP, let's go on with next rules
1711 * just in case another one is suited.
1712 */
1713 }
1714 }
1715 }
1716
1717 req->analysers &= ~an_bit;
1718 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001719 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001720 return 1;
1721}
1722
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001723static inline void sticking_rule_find_target(struct stream *s,
1724 struct stktable *t, struct stksess *ts)
1725{
1726 struct proxy *px = s->be;
1727 struct eb32_node *node;
1728 struct dict_entry *de;
1729 void *ptr;
1730 struct server *srv;
1731
1732 /* Look for the server name previously stored in <t> stick-table */
1733 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
1734 ptr = __stktable_data_ptr(t, ts, STKTABLE_DT_SERVER_NAME);
1735 de = stktable_data_cast(ptr, server_name);
1736 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
1737
1738 if (de) {
1739 struct ebpt_node *name;
1740
1741 name = ebis_lookup(&px->conf.used_server_name, de->value.key);
1742 if (name) {
1743 srv = container_of(name, struct server, conf.name);
1744 goto found;
1745 }
1746 }
1747
1748 /* Look for the server ID */
1749 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
1750 ptr = __stktable_data_ptr(t, ts, STKTABLE_DT_SERVER_ID);
1751 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
1752 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
1753
1754 if (!node)
1755 return;
1756
1757 srv = container_of(node, struct server, conf.id);
1758 found:
1759 if ((srv->cur_state != SRV_ST_STOPPED) ||
1760 (px->options & PR_O_PERSIST) || (s->flags & SF_FORCE_PRST)) {
1761 s->flags |= SF_DIRECT | SF_ASSIGNED;
1762 s->target = &srv->obj_type;
1763 }
1764}
1765
Emeric Brun1d33b292010-01-04 15:47:17 +01001766/* This stream analyser works on a request. It applies all sticking rules on
1767 * it then returns 1. The data must already be present in the buffer otherwise
1768 * they won't match. It always returns 1.
1769 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001770static int process_sticking_rules(struct stream *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001771{
1772 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001773 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001774 struct sticking_rule *rule;
1775
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001776 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001777
1778 list_for_each_entry(rule, &px->sticking_rules, list) {
1779 int ret = 1 ;
1780 int i;
1781
Willy Tarreau9667a802013-12-09 12:52:13 +01001782 /* Only the first stick store-request of each table is applied
1783 * and other ones are ignored. The purpose is to allow complex
1784 * configurations which look for multiple entries by decreasing
1785 * order of precision and to stop at the first which matches.
1786 * An example could be a store of the IP address from an HTTP
1787 * header first, then from the source if not found.
1788 */
Jerome Magninbee00ad2020-01-16 17:37:21 +01001789 if (rule->flags & STK_IS_STORE) {
1790 for (i = 0; i < s->store_count; i++) {
1791 if (rule->table.t == s->store[i].table)
1792 break;
1793 }
Emeric Brun1d33b292010-01-04 15:47:17 +01001794
Jerome Magninbee00ad2020-01-16 17:37:21 +01001795 if (i != s->store_count)
1796 continue;
1797 }
Emeric Brun1d33b292010-01-04 15:47:17 +01001798
1799 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001800 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001801 ret = acl_pass(ret);
1802 if (rule->cond->pol == ACL_COND_UNLESS)
1803 ret = !ret;
1804 }
1805
1806 if (ret) {
1807 struct stktable_key *key;
1808
Willy Tarreau192252e2015-04-04 01:47:55 +02001809 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 +01001810 if (!key)
1811 continue;
1812
1813 if (rule->flags & STK_IS_MATCH) {
1814 struct stksess *ts;
1815
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001816 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001817 if (!(s->flags & SF_ASSIGNED))
1818 sticking_rule_find_target(s, rule->table.t, ts);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001819 stktable_touch_local(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001820 }
1821 }
1822 if (rule->flags & STK_IS_STORE) {
1823 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1824 struct stksess *ts;
1825
1826 ts = stksess_new(rule->table.t, key);
1827 if (ts) {
1828 s->store[s->store_count].table = rule->table.t;
1829 s->store[s->store_count++].ts = ts;
1830 }
1831 }
1832 }
1833 }
1834 }
1835
1836 req->analysers &= ~an_bit;
1837 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001838 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001839 return 1;
1840}
1841
1842/* This stream analyser works on a response. It applies all store rules on it
1843 * then returns 1. The data must already be present in the buffer otherwise
1844 * they won't match. It always returns 1.
1845 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001846static int process_store_rules(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001847{
1848 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001849 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001850 struct sticking_rule *rule;
1851 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001852 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001853
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001854 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001855
1856 list_for_each_entry(rule, &px->storersp_rules, list) {
1857 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001858
Willy Tarreau9667a802013-12-09 12:52:13 +01001859 /* Only the first stick store-response of each table is applied
1860 * and other ones are ignored. The purpose is to allow complex
1861 * configurations which look for multiple entries by decreasing
1862 * order of precision and to stop at the first which matches.
1863 * An example could be a store of a set-cookie value, with a
1864 * fallback to a parameter found in a 302 redirect.
1865 *
1866 * The store-response rules are not allowed to override the
1867 * store-request rules for the same table, but they may coexist.
1868 * Thus we can have up to one store-request entry and one store-
1869 * response entry for the same table at any time.
1870 */
1871 for (i = nbreq; i < s->store_count; i++) {
1872 if (rule->table.t == s->store[i].table)
1873 break;
1874 }
1875
1876 /* skip existing entries for this table */
1877 if (i < s->store_count)
1878 continue;
1879
Emeric Brun1d33b292010-01-04 15:47:17 +01001880 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001881 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001882 ret = acl_pass(ret);
1883 if (rule->cond->pol == ACL_COND_UNLESS)
1884 ret = !ret;
1885 }
1886
1887 if (ret) {
1888 struct stktable_key *key;
1889
Willy Tarreau192252e2015-04-04 01:47:55 +02001890 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 +01001891 if (!key)
1892 continue;
1893
Willy Tarreau37e340c2013-12-06 23:05:21 +01001894 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001895 struct stksess *ts;
1896
1897 ts = stksess_new(rule->table.t, key);
1898 if (ts) {
1899 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001900 s->store[s->store_count++].ts = ts;
1901 }
1902 }
1903 }
1904 }
1905
1906 /* process store request and store response */
1907 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001908 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001909 void *ptr;
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001910 struct dict_entry *de;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001911
Willy Tarreauc93cd162014-05-13 15:54:22 +02001912 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001913 stksess_free(s->store[i].table, s->store[i].ts);
1914 s->store[i].ts = NULL;
1915 continue;
1916 }
1917
Emeric Brun819fc6f2017-06-13 19:37:32 +02001918 ts = stktable_set_entry(s->store[i].table, s->store[i].ts);
1919 if (ts != s->store[i].ts) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001920 /* the entry already existed, we can free ours */
Emeric Brun1d33b292010-01-04 15:47:17 +01001921 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001922 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001923 s->store[i].ts = NULL;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001924
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001925 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreaub8d42d02018-09-20 11:11:15 +02001926 ptr = __stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
1927 stktable_data_cast(ptr, server_id) = __objt_server(s->target)->puid;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001928 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001929
1930 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1931 de = dict_insert(&server_name_dict, __objt_server(s->target)->id);
1932 if (de) {
1933 ptr = __stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_NAME);
1934 stktable_data_cast(ptr, server_name) = de;
1935 }
1936 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1937
Emeric Brun819fc6f2017-06-13 19:37:32 +02001938 stktable_touch_local(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001939 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001940 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001941
1942 rep->analysers &= ~an_bit;
1943 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001944
1945 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001946 return 1;
1947}
1948
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001949/* This macro is very specific to the function below. See the comments in
Willy Tarreau87b09662015-04-03 00:22:06 +02001950 * process_stream() below to understand the logic and the tests.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001951 */
1952#define UPDATE_ANALYSERS(real, list, back, flag) { \
1953 list = (((list) & ~(flag)) | ~(back)) & (real); \
1954 back = real; \
1955 if (!(list)) \
1956 break; \
1957 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1958 continue; \
1959}
1960
Christopher Fauleta9215b72016-05-11 17:06:28 +02001961/* These 2 following macros call an analayzer for the specified channel if the
1962 * right flag is set. The first one is used for "filterable" analyzers. If a
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001963 * stream has some registered filters, pre and post analyaze callbacks are
Christopher Faulet0184ea72017-01-05 14:06:34 +01001964 * called. The second are used for other analyzers (AN_REQ/RES_FLT_* and
Christopher Fauleta9215b72016-05-11 17:06:28 +02001965 * AN_REQ/RES_HTTP_XFER_BODY) */
1966#define FLT_ANALYZE(strm, chn, fun, list, back, flag, ...) \
1967 { \
1968 if ((list) & (flag)) { \
1969 if (HAS_FILTERS(strm)) { \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001970 if (!flt_pre_analyze((strm), (chn), (flag))) \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001971 break; \
1972 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1973 break; \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001974 if (!flt_post_analyze((strm), (chn), (flag))) \
1975 break; \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001976 } \
1977 else { \
1978 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1979 break; \
1980 } \
1981 UPDATE_ANALYSERS((chn)->analysers, (list), \
1982 (back), (flag)); \
1983 } \
1984 }
1985
1986#define ANALYZE(strm, chn, fun, list, back, flag, ...) \
1987 { \
1988 if ((list) & (flag)) { \
1989 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1990 break; \
1991 UPDATE_ANALYSERS((chn)->analysers, (list), \
1992 (back), (flag)); \
1993 } \
1994 }
1995
Willy Tarreau87b09662015-04-03 00:22:06 +02001996/* Processes the client, server, request and response jobs of a stream task,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001997 * then puts it back to the wait queue in a clean state, or cleans up its
1998 * resources if it must be deleted. Returns in <next> the date the task wants
1999 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
2000 * nothing too many times, the request and response buffers flags are monitored
2001 * and each function is called only if at least another function has changed at
2002 * least one flag it is interested in.
2003 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002004struct task *process_stream(struct task *t, void *context, unsigned short state)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002005{
Willy Tarreau827aee92011-03-10 16:55:02 +01002006 struct server *srv;
Olivier Houchard9f6af332018-05-25 14:04:04 +02002007 struct stream *s = context;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002008 struct session *sess = s->sess;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002009 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002010 unsigned int rq_prod_last, rq_cons_last;
2011 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01002012 unsigned int req_ana_back;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002013 struct channel *req, *res;
2014 struct stream_interface *si_f, *si_b;
Willy Tarreau3d07a162019-04-25 19:15:20 +02002015 unsigned int rate;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002016
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002017 DBG_TRACE_ENTER(STRM_EV_STRM_PROC, s);
2018
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002019 activity[tid].stream++;
2020
Willy Tarreau8f128b42014-11-28 15:07:47 +01002021 req = &s->req;
2022 res = &s->res;
2023
2024 si_f = &s->si[0];
2025 si_b = &s->si[1];
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002026
Willy Tarreau0f8d3ab2018-10-25 10:42:39 +02002027 /* First, attempt to receive pending data from I/O layers */
Willy Tarreauade64782018-11-17 19:51:07 +01002028 si_sync_recv(si_f);
2029 si_sync_recv(si_b);
Willy Tarreau0f8d3ab2018-10-25 10:42:39 +02002030
Willy Tarreau3d07a162019-04-25 19:15:20 +02002031 rate = update_freq_ctr(&s->call_rate, 1);
2032 if (rate >= 100000 && s->call_rate.prev_ctr) { // make sure to wait at least a full second
2033 stream_dump_and_crash(&s->obj_type, read_freq_ctr(&s->call_rate));
2034 }
Olivier Houchardc2aa7112018-09-11 18:27:21 +02002035
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002036 /* this data may be no longer valid, clear it */
Willy Tarreaueee5b512015-04-03 23:46:31 +02002037 if (s->txn)
2038 memset(&s->txn->auth, 0, sizeof(s->txn->auth));
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002039
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002040 /* This flag must explicitly be set every time */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002041 req->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
2042 res->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002043
2044 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002045 rqf_last = req->flags & ~CF_MASK_ANALYSER;
2046 rpf_last = res->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002047
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002048 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002049 si_f->flags |= SI_FL_DONT_WAKE;
2050 si_b->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002051
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002052 /* update pending events */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002053 s->pending_events |= (state & TASK_WOKEN_ANY);
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002054
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002055 /* 1a: Check for low level timeouts if needed. We just set a flag on
2056 * stream interfaces when their timeouts have expired.
2057 */
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002058 if (unlikely(s->pending_events & TASK_WOKEN_TIMER)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002059 si_check_timeouts(si_f);
2060 si_check_timeouts(si_b);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002061
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002062 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002063 * for future reads or writes. Note: this will also concern upper layers
2064 * but we do not touch any other flag. We must be careful and correctly
2065 * detect state changes when calling them.
2066 */
2067
Willy Tarreau8f128b42014-11-28 15:07:47 +01002068 channel_check_timeouts(req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002069
Willy Tarreau8f128b42014-11-28 15:07:47 +01002070 if (unlikely((req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
2071 si_b->flags |= SI_FL_NOLINGER;
2072 si_shutw(si_b);
Willy Tarreau14641402009-12-29 14:49:56 +01002073 }
2074
Willy Tarreau8f128b42014-11-28 15:07:47 +01002075 if (unlikely((req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
2076 if (si_f->flags & SI_FL_NOHALF)
2077 si_f->flags |= SI_FL_NOLINGER;
2078 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002079 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002080
Willy Tarreau8f128b42014-11-28 15:07:47 +01002081 channel_check_timeouts(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002082
Willy Tarreau8f128b42014-11-28 15:07:47 +01002083 if (unlikely((res->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
2084 si_f->flags |= SI_FL_NOLINGER;
2085 si_shutw(si_f);
Willy Tarreau14641402009-12-29 14:49:56 +01002086 }
2087
Willy Tarreau8f128b42014-11-28 15:07:47 +01002088 if (unlikely((res->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
2089 if (si_b->flags & SI_FL_NOHALF)
2090 si_b->flags |= SI_FL_NOLINGER;
2091 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002092 }
Willy Tarreau798f4322012-11-08 14:49:17 +01002093
Christopher Fauleta00d8172016-11-10 14:58:05 +01002094 if (HAS_FILTERS(s))
2095 flt_stream_check_timeouts(s);
2096
Willy Tarreau798f4322012-11-08 14:49:17 +01002097 /* Once in a while we're woken up because the task expires. But
2098 * this does not necessarily mean that a timeout has been reached.
Willy Tarreau87b09662015-04-03 00:22:06 +02002099 * So let's not run a whole stream processing if only an expiration
Willy Tarreau798f4322012-11-08 14:49:17 +01002100 * timeout needs to be refreshed.
2101 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002102 if (!((req->flags | res->flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01002103 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
Willy Tarreauede3d882018-10-24 17:17:56 +02002104 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002105 !((si_f->flags | si_b->flags) & (SI_FL_EXP|SI_FL_ERR)) &&
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002106 ((s->pending_events & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER)) {
Willy Tarreau5fb04712016-05-04 10:18:37 +02002107 si_f->flags &= ~SI_FL_DONT_WAKE;
2108 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau798f4322012-11-08 14:49:17 +01002109 goto update_exp_and_leave;
Willy Tarreau5fb04712016-05-04 10:18:37 +02002110 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02002111 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002112
Willy Tarreau829bd472019-06-06 09:17:23 +02002113 resync_stream_interface:
Willy Tarreau10fc09e2014-11-25 19:46:36 +01002114 /* below we may emit error messages so we have to ensure that we have
2115 * our buffers properly allocated.
2116 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002117 if (!stream_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01002118 /* No buffer available, we've been subscribed to the list of
2119 * buffer waiters, let's wait for our turn.
2120 */
Willy Tarreau5fb04712016-05-04 10:18:37 +02002121 si_f->flags &= ~SI_FL_DONT_WAKE;
2122 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01002123 goto update_exp_and_leave;
2124 }
2125
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002126 /* 1b: check for low-level errors reported at the stream interface.
2127 * First we check if it's a retryable error (in which case we don't
2128 * want to tell the buffer). Otherwise we report the error one level
2129 * upper by setting flags into the buffers. Note that the side towards
2130 * the client cannot have connect (hence retryable) errors. Also, the
2131 * connection setup code must be able to deal with any type of abort.
2132 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002133 srv = objt_server(s->target);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002134 if (unlikely(si_f->flags & SI_FL_ERR)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002135 if (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002136 si_shutr(si_f);
2137 si_shutw(si_f);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002138 si_report_error(si_f);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002139 if (!(req->analysers) && !(res->analysers)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002140 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2141 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002142 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002143 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002144 if (!(s->flags & SF_ERR_MASK))
2145 s->flags |= SF_ERR_CLICL;
2146 if (!(s->flags & SF_FINST_MASK))
2147 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01002148 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002149 }
2150 }
2151
Willy Tarreau8f128b42014-11-28 15:07:47 +01002152 if (unlikely(si_b->flags & SI_FL_ERR)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002153 if (si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002154 si_shutr(si_b);
2155 si_shutw(si_b);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002156 si_report_error(si_b);
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002157 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002158 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002159 _HA_ATOMIC_ADD(&srv->counters.failed_resp, 1);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002160 if (!(req->analysers) && !(res->analysers)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002161 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2162 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002163 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002164 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002165 if (!(s->flags & SF_ERR_MASK))
2166 s->flags |= SF_ERR_SRVCL;
2167 if (!(s->flags & SF_FINST_MASK))
2168 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01002169 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002170 }
2171 /* note: maybe we should process connection errors here ? */
2172 }
2173
Willy Tarreau4f283fa2019-06-05 14:34:03 +02002174 if (si_state_in(si_b->state, SI_SB_CON|SI_SB_RDY)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002175 /* we were trying to establish a connection on the server side,
2176 * maybe it succeeded, maybe it failed, maybe we timed out, ...
2177 */
Willy Tarreaud66ed882019-06-05 18:02:04 +02002178 if (si_b->state == SI_ST_RDY)
2179 sess_update_st_rdy_tcp(s);
2180 else if (si_b->state == SI_ST_CON)
2181 sess_update_st_con_tcp(s);
2182
2183 if (si_b->state == SI_ST_CER)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002184 sess_update_st_cer(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002185 else if (si_b->state == SI_ST_EST)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002186 sess_establish(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002187
2188 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
2189 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
2190 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
2191 */
2192 }
2193
Willy Tarreau8f128b42014-11-28 15:07:47 +01002194 rq_prod_last = si_f->state;
2195 rq_cons_last = si_b->state;
2196 rp_cons_last = si_f->state;
2197 rp_prod_last = si_b->state;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002198
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002199 /* Check for connection closure */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002200 DBG_TRACE_POINT(STRM_EV_STRM_PROC, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002201
2202 /* nothing special to be done on client side */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002203 if (unlikely(si_f->state == SI_ST_DIS))
2204 si_f->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002205
2206 /* When a server-side connection is released, we have to count it and
2207 * check for pending connections on this server.
2208 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002209 if (unlikely(si_b->state == SI_ST_DIS)) {
2210 si_b->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002211 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01002212 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002213 if (s->flags & SF_CURR_SESS) {
2214 s->flags &= ~SF_CURR_SESS;
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002215 _HA_ATOMIC_SUB(&srv->cur_sess, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002216 }
2217 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01002218 if (may_dequeue_tasks(srv, s->be))
2219 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002220 }
2221 }
2222
2223 /*
2224 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
2225 * at this point.
2226 */
2227
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002228 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002229 /* Analyse request */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002230 if (((req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
2231 ((req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01002232 (req->analysers && (req->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01002233 si_f->state != rq_prod_last ||
2234 si_b->state != rq_cons_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002235 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002236 unsigned int flags = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002237
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002238 if (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01002239 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002240 unsigned int ana_list;
2241 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02002242
Willy Tarreau90deb182010-01-07 00:20:41 +01002243 /* it's up to the analysers to stop new connections,
2244 * disable reading or closing. Note: if an analyser
2245 * disables any of these bits, it is responsible for
2246 * enabling them again when it disables itself, so
2247 * that other analysers are called in similar conditions.
2248 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002249 channel_auto_read(req);
2250 channel_auto_connect(req);
2251 channel_auto_close(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01002252
2253 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01002254 * req->analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01002255 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02002256 * the list when not needed. Any analyser may return 0
2257 * to break out of the loop, either because of missing
2258 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02002259 * kill the stream. We loop at least once through each
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02002260 * analyser, and we may loop again if other analysers
2261 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002262 *
2263 * We build a list of analysers to run. We evaluate all
2264 * of these analysers in the order of the lower bit to
2265 * the higher bit. This ordering is very important.
2266 * An analyser will often add/remove other analysers,
2267 * including itself. Any changes to itself have no effect
2268 * on the loop. If it removes any other analysers, we
2269 * want those analysers not to be called anymore during
2270 * this loop. If it adds an analyser that is located
2271 * after itself, we want it to be scheduled for being
2272 * processed during the loop. If it adds an analyser
2273 * which is located before it, we want it to switch to
2274 * it immediately, even if it has already been called
2275 * once but removed since.
2276 *
2277 * In order to achieve this, we compare the analyser
2278 * list after the call with a copy of it before the
2279 * call. The work list is fed with analyser bits that
2280 * appeared during the call. Then we compare previous
2281 * work list with the new one, and check the bits that
2282 * appeared. If the lowest of these bits is lower than
2283 * the current bit, it means we have enabled a previous
2284 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01002285 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002286
Willy Tarreau8f128b42014-11-28 15:07:47 +01002287 ana_list = ana_back = req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01002288 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002289 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01002290 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_FE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002291 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_FE);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002292 FLT_ANALYZE(s, req, http_wait_for_request, ana_list, ana_back, AN_REQ_WAIT_HTTP);
2293 FLT_ANALYZE(s, req, http_wait_for_request_body, ana_list, ana_back, AN_REQ_HTTP_BODY);
2294 FLT_ANALYZE(s, req, http_process_req_common, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE, sess->fe);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002295 FLT_ANALYZE(s, req, process_switching_rules, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002296 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002297 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_BE);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002298 FLT_ANALYZE(s, req, http_process_req_common, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE, s->be);
2299 FLT_ANALYZE(s, req, http_process_tarpit, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002300 FLT_ANALYZE(s, req, process_server_rules, ana_list, ana_back, AN_REQ_SRV_RULES);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002301 FLT_ANALYZE(s, req, http_process_request, ana_list, ana_back, AN_REQ_HTTP_INNER);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002302 FLT_ANALYZE(s, req, tcp_persist_rdp_cookie, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
2303 FLT_ANALYZE(s, req, process_sticking_rules, ana_list, ana_back, AN_REQ_STICKING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002304 ANALYZE (s, req, flt_analyze_http_headers, ana_list, ana_back, AN_REQ_FLT_HTTP_HDRS);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002305 ANALYZE (s, req, http_request_forward_body, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002306 ANALYZE (s, req, pcli_wait_for_request, ana_list, ana_back, AN_REQ_WAIT_CLI);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002307 ANALYZE (s, req, flt_xfer_data, ana_list, ana_back, AN_REQ_FLT_XFER_DATA);
2308 ANALYZE (s, req, flt_end_analyze, ana_list, ana_back, AN_REQ_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01002309 break;
2310 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002311 }
Willy Tarreau84455332009-03-15 22:34:05 +01002312
Willy Tarreau8f128b42014-11-28 15:07:47 +01002313 rq_prod_last = si_f->state;
2314 rq_cons_last = si_b->state;
2315 req->flags &= ~CF_WAKE_ONCE;
2316 rqf_last = req->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002317
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02002318 if ((req->flags ^ flags) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002319 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002320 }
2321
Willy Tarreau576507f2010-01-07 00:09:04 +01002322 /* we'll monitor the request analysers while parsing the response,
2323 * because some response analysers may indirectly enable new request
2324 * analysers (eg: HTTP keep-alive).
2325 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002326 req_ana_back = req->analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01002327
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002328 resync_response:
2329 /* Analyse response */
2330
Willy Tarreau8f128b42014-11-28 15:07:47 +01002331 if (((res->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
2332 (res->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01002333 (res->analysers && (res->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01002334 si_f->state != rp_cons_last ||
2335 si_b->state != rp_prod_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002336 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002337 unsigned int flags = res->flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002338
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002339 if (si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01002340 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002341 unsigned int ana_list;
2342 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002343
Willy Tarreau90deb182010-01-07 00:20:41 +01002344 /* it's up to the analysers to stop disable reading or
2345 * closing. Note: if an analyser disables any of these
2346 * bits, it is responsible for enabling them again when
2347 * it disables itself, so that other analysers are called
2348 * in similar conditions.
2349 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002350 channel_auto_read(res);
2351 channel_auto_close(res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002352
2353 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01002354 * res->analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002355 * to MSB. The analysers must remove themselves from
2356 * the list when not needed. Any analyser may return 0
2357 * to break out of the loop, either because of missing
2358 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02002359 * kill the stream. We loop at least once through each
Willy Tarreaub37c27e2009-10-18 22:53:08 +02002360 * analyser, and we may loop again if other analysers
2361 * are added in the middle.
2362 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002363
Willy Tarreau8f128b42014-11-28 15:07:47 +01002364 ana_list = ana_back = res->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01002365 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01002366 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01002367 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_FE);
2368 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002369 FLT_ANALYZE(s, res, tcp_inspect_response, ana_list, ana_back, AN_RES_INSPECT);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002370 FLT_ANALYZE(s, res, http_wait_for_response, ana_list, ana_back, AN_RES_WAIT_HTTP);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002371 FLT_ANALYZE(s, res, process_store_rules, ana_list, ana_back, AN_RES_STORE_RULES);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002372 FLT_ANALYZE(s, res, http_process_res_common, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE, s->be);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002373 ANALYZE (s, res, flt_analyze_http_headers, ana_list, ana_back, AN_RES_FLT_HTTP_HDRS);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002374 ANALYZE (s, res, http_response_forward_body, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002375 ANALYZE (s, res, pcli_wait_for_response, ana_list, ana_back, AN_RES_WAIT_CLI);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002376 ANALYZE (s, res, flt_xfer_data, ana_list, ana_back, AN_RES_FLT_XFER_DATA);
2377 ANALYZE (s, res, flt_end_analyze, ana_list, ana_back, AN_RES_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01002378 break;
2379 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002380 }
2381
Willy Tarreau8f128b42014-11-28 15:07:47 +01002382 rp_cons_last = si_f->state;
2383 rp_prod_last = si_b->state;
Christopher Fauletcdaea892017-07-06 15:49:30 +02002384 res->flags &= ~CF_WAKE_ONCE;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002385 rpf_last = res->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002386
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02002387 if ((res->flags ^ flags) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002388 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002389 }
2390
Willy Tarreau576507f2010-01-07 00:09:04 +01002391 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002392 if (req->analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01002393 goto resync_request;
2394
Willy Tarreau8f128b42014-11-28 15:07:47 +01002395 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01002396 goto resync_request;
2397
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002398 /* FIXME: here we should call protocol handlers which rely on
2399 * both buffers.
2400 */
2401
2402
2403 /*
Willy Tarreau87b09662015-04-03 00:22:06 +02002404 * Now we propagate unhandled errors to the stream. Normally
Willy Tarreauae526782010-03-04 20:34:23 +01002405 * we're just in a data phase here since it means we have not
2406 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002407 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002408 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002409 if (unlikely(!(s->flags & SF_ERR_MASK))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002410 if (req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002411 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002412 req->analysers = 0;
2413 if (req->flags & CF_READ_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002414 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2415 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002416 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002417 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002418 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002419 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002420 else if (req->flags & CF_READ_TIMEOUT) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002421 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2422 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002423 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002424 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002425 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002426 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002427 else if (req->flags & CF_WRITE_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002428 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2429 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002430 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002431 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002432 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002433 }
2434 else {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002435 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2436 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002437 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002438 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002439 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002440 }
Willy Tarreau84455332009-03-15 22:34:05 +01002441 sess_set_term_flags(s);
Christopher Faulet5e1a9d72019-04-23 17:34:22 +02002442
2443 /* Abort the request if a client error occurred while
2444 * the backend stream-interface is in the SI_ST_INI
2445 * state. It is switched into the SI_ST_CLO state and
2446 * the request channel is erased. */
2447 if (si_b->state == SI_ST_INI) {
2448 si_b->state = SI_ST_CLO;
2449 channel_abort(req);
2450 if (IS_HTX_STRM(s))
2451 channel_htx_erase(req, htxbuf(&req->buf));
2452 else
2453 channel_erase(req);
2454 }
Willy Tarreau84455332009-03-15 22:34:05 +01002455 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002456 else if (res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002457 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002458 res->analysers = 0;
2459 if (res->flags & CF_READ_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002460 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2461 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002462 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002463 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002464 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002465 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002466 else if (res->flags & CF_READ_TIMEOUT) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002467 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2468 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002469 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002470 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002471 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002472 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002473 else if (res->flags & CF_WRITE_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002474 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2475 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002476 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002477 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002478 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002479 }
2480 else {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002481 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2482 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002483 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002484 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002485 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002486 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002487 sess_set_term_flags(s);
2488 }
Willy Tarreau84455332009-03-15 22:34:05 +01002489 }
2490
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002491 /*
2492 * Here we take care of forwarding unhandled data. This also includes
2493 * connection establishments and shutdown requests.
2494 */
2495
2496
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002497 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002498 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002499 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002500 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002501 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02002502 if (unlikely((!req->analysers || (req->analysers == AN_REQ_FLT_END && !(req->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002503 !(req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002504 (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002505 (req->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002506 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002507 * attached to it. If any data are left in, we'll permit them to
2508 * move.
2509 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002510 channel_auto_read(req);
2511 channel_auto_connect(req);
2512 channel_auto_close(req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002513
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002514 if (IS_HTX_STRM(s)) {
2515 struct htx *htx = htxbuf(&req->buf);
2516
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002517 /* We'll let data flow between the producer (if still connected)
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002518 * to the consumer.
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002519 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002520 co_set_data(req, htx->data);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002521 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002522 channel_htx_forward_forever(req, htx);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002523 }
2524 else {
2525 /* We'll let data flow between the producer (if still connected)
2526 * to the consumer (which might possibly not be connected yet).
2527 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002528 c_adv(req, ci_data(req));
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002529 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2530 channel_forward_forever(req);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002531 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002532 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002533
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002534 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002535 if (!(req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2536 req->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002537 (global.tune.options & GTUNE_USE_SPLICE) &&
Christopher Faulet276c1e02019-11-05 16:49:23 +01002538 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->rcv_pipe &&
2539 __objt_cs(si_f->end)->conn->mux && __objt_cs(si_f->end)->conn->mux->rcv_pipe) &&
2540 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->snd_pipe &&
2541 __objt_cs(si_b->end)->conn->mux && __objt_cs(si_b->end)->conn->mux->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002542 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002543 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2544 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002545 (req->flags & CF_STREAMER_FAST)))) {
2546 req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002547 }
2548
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002549 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002550 rqf_last = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002551
Willy Tarreau520d95e2009-09-19 21:04:57 +02002552 /* it's possible that an upper layer has requested a connection setup or abort.
2553 * There are 2 situations where we decide to establish a new connection :
2554 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002555 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002556 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002557 if (si_b->state == SI_ST_INI) {
Christopher Faulet5e1a9d72019-04-23 17:34:22 +02002558 if (!(req->flags & CF_SHUTW)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002559 if ((req->flags & CF_AUTO_CONNECT) || !channel_is_empty(req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002560 /* If we have an appctx, there is no connect method, so we
2561 * immediately switch to the connected state, otherwise we
2562 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002563 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002564 si_b->state = SI_ST_REQ; /* new connection requested */
2565 si_b->conn_retries = s->be->conn_retries;
Olivier Houchard602bf7d2019-05-10 13:59:15 +02002566 if ((s->be->retry_type &~ PR_RE_CONN_FAILED) &&
2567 !(si_b->flags & SI_FL_D_L7_RETRY))
Olivier Houcharda254a372019-04-05 15:30:12 +02002568 si_b->flags |= SI_FL_L7_RETRY;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002569 }
Willy Tarreau73201222009-08-16 18:27:24 +02002570 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002571 else {
Willy Tarreau0542c8b2017-11-24 15:01:10 +01002572 si_release_endpoint(si_b);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002573 si_b->state = SI_ST_CLO; /* shutw+ini = abort */
2574 channel_shutw_now(req); /* fix buffer flags upon abort */
2575 channel_shutr_now(res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002576 }
Willy Tarreau92795622009-03-06 12:51:23 +01002577 }
2578
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002579
2580 /* we may have a pending connection request, or a connection waiting
2581 * for completion.
2582 */
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002583 if (si_state_in(si_b->state, SI_SB_REQ|SI_SB_QUE|SI_SB_TAR|SI_SB_ASS)) {
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002584 /* prune the request variables and swap to the response variables. */
2585 if (s->vars_reqres.scope != SCOPE_RES) {
Jerome Magnin2f44e882019-11-09 18:00:47 +01002586 if (!LIST_ISEMPTY(&s->vars_reqres.head))
Willy Tarreaucda7f3f2018-10-28 13:44:36 +01002587 vars_prune(&s->vars_reqres, s->sess, s);
Jerome Magnin2f44e882019-11-09 18:00:47 +01002588 vars_init(&s->vars_reqres, SCOPE_RES);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002589 }
2590
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002591 do {
2592 /* nb: step 1 might switch from QUE to ASS, but we first want
2593 * to give a chance to step 2 to perform a redirect if needed.
2594 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002595 if (si_b->state != SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002596 sess_update_stream_int(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002597 if (si_b->state == SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002598 sess_prepare_conn_req(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002599
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002600 /* applets directly go to the ESTABLISHED state. Similarly,
2601 * servers experience the same fate when their connection
2602 * is reused.
2603 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002604 if (unlikely(si_b->state == SI_ST_EST))
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002605 sess_establish(s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002606
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002607 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002608 if (si_b->state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SF_REDIRECTABLE))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002609 http_perform_server_redirect(s, si_b);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002610 } while (si_b->state == SI_ST_ASS);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002611 }
2612
Willy Tarreau829bd472019-06-06 09:17:23 +02002613 /* Let's see if we can send the pending request now */
2614 si_sync_send(si_b);
2615
2616 /*
2617 * Now forward all shutdown requests between both sides of the request buffer
2618 */
2619
2620 /* first, let's check if the request buffer needs to shutdown(write), which may
2621 * happen either because the input is closed or because we want to force a close
2622 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2623 * the other side's timeout as well.
2624 */
2625 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
2626 (CF_AUTO_CLOSE|CF_SHUTR))) {
2627 channel_shutw_now(req);
2628 }
2629
2630 /* shutdown(write) pending */
2631 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2632 channel_is_empty(req))) {
2633 if (req->flags & CF_READ_ERROR)
2634 si_b->flags |= SI_FL_NOLINGER;
2635 si_shutw(si_b);
2636 }
2637
2638 /* shutdown(write) done on server side, we must stop the client too */
2639 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2640 !req->analysers))
2641 channel_shutr_now(req);
2642
2643 /* shutdown(read) pending */
2644 if (unlikely((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2645 if (si_f->flags & SI_FL_NOHALF)
2646 si_f->flags |= SI_FL_NOLINGER;
2647 si_shutr(si_f);
2648 }
2649
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002650 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau829bd472019-06-06 09:17:23 +02002651 if (si_f->state == SI_ST_DIS ||
2652 si_state_in(si_b->state, SI_SB_RDY|SI_SB_DIS) ||
2653 (si_f->flags & SI_FL_ERR && si_f->state != SI_ST_CLO) ||
2654 (si_b->flags & SI_FL_ERR && si_b->state != SI_ST_CLO))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002655 goto resync_stream_interface;
2656
Willy Tarreau815a9b22010-07-27 17:15:12 +02002657 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02002658 if ((req->flags ^ rqf_last) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002659 goto resync_request;
2660
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002661 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002662
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002663 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002664 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002665 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002666 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002667 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02002668 if (unlikely((!res->analysers || (res->analysers == AN_RES_FLT_END && !(res->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002669 !(res->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002670 si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002671 (res->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002672 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002673 * attached to it. If any data are left in, we'll permit them to
2674 * move.
2675 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002676 channel_auto_read(res);
2677 channel_auto_close(res);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002678
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002679 if (IS_HTX_STRM(s)) {
2680 struct htx *htx = htxbuf(&res->buf);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002681
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002682 /* We'll let data flow between the producer (if still connected)
2683 * to the consumer.
2684 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002685 co_set_data(res, htx->data);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002686 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002687 channel_htx_forward_forever(res, htx);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002688 }
2689 else {
2690 /* We'll let data flow between the producer (if still connected)
2691 * to the consumer.
2692 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002693 c_adv(res, ci_data(res));
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002694 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2695 channel_forward_forever(res);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002696 }
Willy Tarreau42529c32015-07-09 18:38:57 +02002697
Willy Tarreauce887fd2012-05-12 12:50:00 +02002698 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002699 * tunnel timeout set, use it now. Note that we must respect
2700 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002701 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002702 if (!req->analysers && s->be->timeout.tunnel) {
2703 req->rto = req->wto = res->rto = res->wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002704 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002705
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002706 if ((req->flags & CF_SHUTR) && tick_isset(sess->fe->timeout.clientfin))
2707 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002708 if ((req->flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2709 res->rto = s->be->timeout.serverfin;
2710 if ((res->flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2711 req->wto = s->be->timeout.serverfin;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002712 if ((res->flags & CF_SHUTW) && tick_isset(sess->fe->timeout.clientfin))
2713 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002714
Willy Tarreau8f128b42014-11-28 15:07:47 +01002715 req->rex = tick_add(now_ms, req->rto);
2716 req->wex = tick_add(now_ms, req->wto);
2717 res->rex = tick_add(now_ms, res->rto);
2718 res->wex = tick_add(now_ms, res->wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002719 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002720 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002721
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002722 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002723 if (!(res->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2724 res->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002725 (global.tune.options & GTUNE_USE_SPLICE) &&
Christopher Faulet276c1e02019-11-05 16:49:23 +01002726 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->snd_pipe &&
2727 __objt_cs(si_f->end)->conn->mux && __objt_cs(si_f->end)->conn->mux->snd_pipe) &&
2728 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->rcv_pipe &&
2729 __objt_cs(si_b->end)->conn->mux && __objt_cs(si_b->end)->conn->mux->rcv_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002730 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002731 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2732 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002733 (res->flags & CF_STREAMER_FAST)))) {
2734 res->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002735 }
2736
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002737 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002738 rpf_last = res->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002739
Willy Tarreau829bd472019-06-06 09:17:23 +02002740 /* Let's see if we can send the pending response now */
2741 si_sync_send(si_f);
2742
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002743 /*
2744 * Now forward all shutdown requests between both sides of the buffer
2745 */
2746
2747 /*
2748 * FIXME: this is probably where we should produce error responses.
2749 */
2750
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002751 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002752 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002753 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002754 channel_shutw_now(res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002755 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002756
2757 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002758 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2759 channel_is_empty(res))) {
2760 si_shutw(si_f);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002761 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002762
2763 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002764 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2765 !res->analysers)
2766 channel_shutr_now(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002767
2768 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002769 if (unlikely((res->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2770 if (si_b->flags & SI_FL_NOHALF)
2771 si_b->flags |= SI_FL_NOLINGER;
2772 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002773 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002774
Willy Tarreau829bd472019-06-06 09:17:23 +02002775 if (si_f->state == SI_ST_DIS ||
2776 si_state_in(si_b->state, SI_SB_RDY|SI_SB_DIS) ||
2777 (si_f->flags & SI_FL_ERR && si_f->state != SI_ST_CLO) ||
2778 (si_b->flags & SI_FL_ERR && si_b->state != SI_ST_CLO))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002779 goto resync_stream_interface;
2780
Willy Tarreau3c5c0662019-06-06 14:32:49 +02002781 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002782 goto resync_request;
2783
Willy Tarreau8f128b42014-11-28 15:07:47 +01002784 if ((res->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002785 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002786
Willy Tarreau829bd472019-06-06 09:17:23 +02002787 if (((req->flags ^ rqf_last) | (res->flags ^ rpf_last)) & CF_MASK_ANALYSER)
2788 goto resync_request;
2789
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002790 /* we're interested in getting wakeups again */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002791 si_f->flags &= ~SI_FL_DONT_WAKE;
2792 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002793
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002794 /* This is needed only when debugging is enabled, to indicate
2795 * client-side or server-side close. Please note that in the unlikely
2796 * event where both sides would close at once, the sequence is reported
2797 * on the server side first.
2798 */
2799 if (unlikely((global.mode & MODE_DEBUG) &&
2800 (!(global.mode & MODE_QUIET) ||
2801 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002802 if (si_b->state == SI_ST_CLO &&
2803 si_b->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002804 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002805 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002806 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2807 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002808 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002809 }
2810
Willy Tarreau8f128b42014-11-28 15:07:47 +01002811 if (si_f->state == SI_ST_CLO &&
2812 si_f->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002813 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002814 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002815 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2816 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002817 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002818 }
2819 }
2820
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002821 if (likely((si_f->state != SI_ST_CLO) || !si_state_in(si_b->state, SI_SB_INI|SI_SB_CLO))) {
Olivier Houchard4c18f942019-07-31 18:05:26 +02002822 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED) && !(s->flags & SF_IGNORE))
Willy Tarreau87b09662015-04-03 00:22:06 +02002823 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002824
Willy Tarreaud14844a2018-11-08 18:15:29 +01002825 si_update_both(si_f, si_b);
Olivier Houchard53216e72018-10-10 15:46:36 +02002826
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002827 /* Trick: if a request is being waiting for the server to respond,
2828 * and if we know the server can timeout, we don't want the timeout
2829 * to expire on the client side first, but we're still interested
2830 * in passing data from the client to the server (eg: POST). Thus,
2831 * we can cancel the client's request timeout if the server's
2832 * request timeout is set and the server has not yet sent a response.
2833 */
2834
Willy Tarreau8f128b42014-11-28 15:07:47 +01002835 if ((res->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2836 (tick_isset(req->wex) || tick_isset(res->rex))) {
2837 req->flags |= CF_READ_NOEXP;
2838 req->rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002839 }
2840
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002841 /* Reset pending events now */
2842 s->pending_events = 0;
2843
Willy Tarreau798f4322012-11-08 14:49:17 +01002844 update_exp_and_leave:
Willy Tarreau5fb04712016-05-04 10:18:37 +02002845 /* Note: please ensure that if you branch here you disable SI_FL_DONT_WAKE */
Christopher Fauleta00d8172016-11-10 14:58:05 +01002846 t->expire = tick_first((tick_is_expired(t->expire, now_ms) ? 0 : t->expire),
2847 tick_first(tick_first(req->rex, req->wex),
2848 tick_first(res->rex, res->wex)));
Willy Tarreaudef0d222016-11-08 22:03:00 +01002849 if (!req->analysers)
2850 req->analyse_exp = TICK_ETERNITY;
2851
2852 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED) &&
2853 (!tick_isset(req->analyse_exp) || tick_is_expired(req->analyse_exp, now_ms)))
2854 req->analyse_exp = tick_add(now_ms, 5000);
2855
2856 t->expire = tick_first(t->expire, req->analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002857
Willy Tarreau9a398be2017-11-10 17:14:23 +01002858 t->expire = tick_first(t->expire, res->analyse_exp);
2859
Willy Tarreau8f128b42014-11-28 15:07:47 +01002860 if (si_f->exp)
2861 t->expire = tick_first(t->expire, si_f->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002862
Willy Tarreau8f128b42014-11-28 15:07:47 +01002863 if (si_b->exp)
2864 t->expire = tick_first(t->expire, si_b->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002865
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002866 s->pending_events &= ~(TASK_WOKEN_TIMER | TASK_WOKEN_RES);
Willy Tarreau87b09662015-04-03 00:22:06 +02002867 stream_release_buffers(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002868
2869 DBG_TRACE_DEVEL("queuing", STRM_EV_STRM_PROC, s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002870 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002871 }
2872
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002873 DBG_TRACE_DEVEL("releasing", STRM_EV_STRM_PROC, s);
2874
Willy Tarreaue7dff022015-04-03 01:14:29 +02002875 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002876 _HA_ATOMIC_SUB(&s->be->beconn, 1);
Willy Tarreau6f5e4b92017-09-15 09:07:56 +02002877
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002878 if (unlikely((global.mode & MODE_DEBUG) &&
2879 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002880 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002881 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002882 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2883 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002884 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002885 }
2886
2887 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Olivier Houchard4c18f942019-07-31 18:05:26 +02002888 if (!(s->flags & SF_IGNORE))
2889 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002890
Willy Tarreaueee5b512015-04-03 23:46:31 +02002891 if (s->txn && s->txn->status) {
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002892 int n;
2893
Willy Tarreaueee5b512015-04-03 23:46:31 +02002894 n = s->txn->status / 100;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002895 if (n < 1 || n > 5)
2896 n = 0;
2897
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002898 if (sess->fe->mode == PR_MODE_HTTP) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002899 _HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[n], 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002900 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002901 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002902 (s->be->mode == PR_MODE_HTTP)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002903 _HA_ATOMIC_ADD(&s->be->be_counters.p.http.rsp[n], 1);
2904 _HA_ATOMIC_ADD(&s->be->be_counters.p.http.cum_req, 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002905 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002906 }
2907
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002908 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002909 if (!LIST_ISEMPTY(&sess->fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02002910 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002911 (!(sess->fe->options & PR_O_NULLNOLOG) || req->total)) {
Willy Tarreau66425e32018-07-25 06:55:12 +02002912 /* we may need to know the position in the queue */
2913 pendconn_free(s);
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002914 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002915 }
2916
Willy Tarreau87b09662015-04-03 00:22:06 +02002917 /* update time stats for this stream */
2918 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002919
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002920 /* the task MUST not be in the run queue anymore */
Willy Tarreau87b09662015-04-03 00:22:06 +02002921 stream_free(s);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002922 task_destroy(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002923 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002924}
2925
Willy Tarreau87b09662015-04-03 00:22:06 +02002926/* Update the stream's backend and server time stats */
2927void stream_update_time_stats(struct stream *s)
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002928{
2929 int t_request;
2930 int t_queue;
2931 int t_connect;
2932 int t_data;
2933 int t_close;
2934 struct server *srv;
2935
2936 t_request = 0;
2937 t_queue = s->logs.t_queue;
2938 t_connect = s->logs.t_connect;
2939 t_close = s->logs.t_close;
2940 t_data = s->logs.t_data;
2941
2942 if (s->be->mode != PR_MODE_HTTP)
2943 t_data = t_connect;
2944
2945 if (t_connect < 0 || t_data < 0)
2946 return;
2947
2948 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2949 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2950
2951 t_data -= t_connect;
2952 t_connect -= t_queue;
2953 t_queue -= t_request;
2954
2955 srv = objt_server(s->target);
2956 if (srv) {
2957 swrate_add(&srv->counters.q_time, TIME_STATS_SAMPLES, t_queue);
2958 swrate_add(&srv->counters.c_time, TIME_STATS_SAMPLES, t_connect);
2959 swrate_add(&srv->counters.d_time, TIME_STATS_SAMPLES, t_data);
2960 swrate_add(&srv->counters.t_time, TIME_STATS_SAMPLES, t_close);
Christopher Fauletefb41f02019-11-08 14:53:15 +01002961 HA_ATOMIC_UPDATE_MAX(&srv->counters.qtime_max, t_queue);
2962 HA_ATOMIC_UPDATE_MAX(&srv->counters.ctime_max, t_connect);
2963 HA_ATOMIC_UPDATE_MAX(&srv->counters.dtime_max, t_data);
2964 HA_ATOMIC_UPDATE_MAX(&srv->counters.ttime_max, t_close);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002965 }
2966 swrate_add(&s->be->be_counters.q_time, TIME_STATS_SAMPLES, t_queue);
2967 swrate_add(&s->be->be_counters.c_time, TIME_STATS_SAMPLES, t_connect);
2968 swrate_add(&s->be->be_counters.d_time, TIME_STATS_SAMPLES, t_data);
2969 swrate_add(&s->be->be_counters.t_time, TIME_STATS_SAMPLES, t_close);
Christopher Fauletefb41f02019-11-08 14:53:15 +01002970 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.qtime_max, t_queue);
2971 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.ctime_max, t_connect);
2972 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.dtime_max, t_data);
2973 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.ttime_max, t_close);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002974}
2975
Willy Tarreau7c669d72008-06-20 15:04:11 +02002976/*
2977 * This function adjusts sess->srv_conn and maintains the previous and new
Willy Tarreau87b09662015-04-03 00:22:06 +02002978 * server's served stream counts. Setting newsrv to NULL is enough to release
Willy Tarreau7c669d72008-06-20 15:04:11 +02002979 * current connection slot. This function also notifies any LB algo which might
Willy Tarreau87b09662015-04-03 00:22:06 +02002980 * expect to be informed about any change in the number of active streams on a
Willy Tarreau7c669d72008-06-20 15:04:11 +02002981 * server.
2982 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002983void sess_change_server(struct stream *sess, struct server *newsrv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02002984{
2985 if (sess->srv_conn == newsrv)
2986 return;
2987
2988 if (sess->srv_conn) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002989 _HA_ATOMIC_SUB(&sess->srv_conn->served, 1);
2990 _HA_ATOMIC_SUB(&sess->srv_conn->proxy->served, 1);
2991 __ha_barrier_atomic_store();
Willy Tarreau7c669d72008-06-20 15:04:11 +02002992 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2993 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Willy Tarreau87b09662015-04-03 00:22:06 +02002994 stream_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002995 }
2996
2997 if (newsrv) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002998 _HA_ATOMIC_ADD(&newsrv->served, 1);
2999 _HA_ATOMIC_ADD(&newsrv->proxy->served, 1);
3000 __ha_barrier_atomic_store();
Willy Tarreau7c669d72008-06-20 15:04:11 +02003001 if (newsrv->proxy->lbprm.server_take_conn)
3002 newsrv->proxy->lbprm.server_take_conn(newsrv);
Willy Tarreau87b09662015-04-03 00:22:06 +02003003 stream_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02003004 }
3005}
3006
Willy Tarreau84455332009-03-15 22:34:05 +01003007/* Handle server-side errors for default protocols. It is called whenever a a
3008 * connection setup is aborted or a request is aborted in queue. It sets the
Willy Tarreau87b09662015-04-03 00:22:06 +02003009 * stream termination flags so that the caller does not have to worry about
Willy Tarreau84455332009-03-15 22:34:05 +01003010 * them. It's installed as ->srv_error for the server-side stream_interface.
3011 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003012void default_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreau84455332009-03-15 22:34:05 +01003013{
3014 int err_type = si->err_type;
3015 int err = 0, fin = 0;
3016
3017 if (err_type & SI_ET_QUEUE_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003018 err = SF_ERR_CLICL;
3019 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01003020 }
3021 else if (err_type & SI_ET_CONN_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003022 err = SF_ERR_CLICL;
3023 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01003024 }
3025 else if (err_type & SI_ET_QUEUE_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003026 err = SF_ERR_SRVTO;
3027 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01003028 }
3029 else if (err_type & SI_ET_QUEUE_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003030 err = SF_ERR_SRVCL;
3031 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01003032 }
3033 else if (err_type & SI_ET_CONN_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003034 err = SF_ERR_SRVTO;
3035 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01003036 }
3037 else if (err_type & SI_ET_CONN_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003038 err = SF_ERR_SRVCL;
3039 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01003040 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02003041 else if (err_type & SI_ET_CONN_RES) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003042 err = SF_ERR_RESOURCE;
3043 fin = SF_FINST_C;
Willy Tarreau2d400bb2012-05-14 12:11:47 +02003044 }
Willy Tarreau84455332009-03-15 22:34:05 +01003045 else /* SI_ET_CONN_OTHER and others */ {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003046 err = SF_ERR_INTERNAL;
3047 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01003048 }
3049
Willy Tarreaue7dff022015-04-03 01:14:29 +02003050 if (!(s->flags & SF_ERR_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01003051 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02003052 if (!(s->flags & SF_FINST_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01003053 s->flags |= fin;
3054}
Willy Tarreau7c669d72008-06-20 15:04:11 +02003055
Willy Tarreaue7dff022015-04-03 01:14:29 +02003056/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +02003057void stream_shutdown(struct stream *stream, int why)
Willy Tarreaua2a64e92011-09-07 23:01:56 +02003058{
Willy Tarreau87b09662015-04-03 00:22:06 +02003059 if (stream->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02003060 return;
3061
Willy Tarreau87b09662015-04-03 00:22:06 +02003062 channel_shutw_now(&stream->req);
3063 channel_shutr_now(&stream->res);
3064 stream->task->nice = 1024;
Willy Tarreaue7dff022015-04-03 01:14:29 +02003065 if (!(stream->flags & SF_ERR_MASK))
Willy Tarreau87b09662015-04-03 00:22:06 +02003066 stream->flags |= why;
3067 task_wakeup(stream->task, TASK_WOKEN_OTHER);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02003068}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02003069
Willy Tarreau5484d582019-05-22 09:33:03 +02003070/* Appends a dump of the state of stream <s> into buffer <buf> which must have
3071 * preliminary be prepared by its caller, with each line prepended by prefix
3072 * <pfx>, and each line terminated by character <eol>.
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003073 */
Willy Tarreau5484d582019-05-22 09:33:03 +02003074void stream_dump(struct buffer *buf, const struct stream *s, const char *pfx, char eol)
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003075{
3076 const struct conn_stream *csf, *csb;
3077 const struct connection *cof, *cob;
3078 const struct appctx *acf, *acb;
3079 const struct server *srv;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003080 const char *src = "unknown";
3081 const char *dst = "unknown";
3082 char pn[INET6_ADDRSTRLEN];
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003083 const struct channel *req, *res;
3084 const struct stream_interface *si_f, *si_b;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003085
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003086 if (!s) {
Willy Tarreau5484d582019-05-22 09:33:03 +02003087 chunk_appendf(buf, "%sstrm=%p%c", pfx, s, eol);
3088 return;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003089 }
3090
Willy Tarreau5484d582019-05-22 09:33:03 +02003091 if (s->obj_type != OBJ_TYPE_STREAM) {
3092 chunk_appendf(buf, "%sstrm=%p [invalid type=%d(%s)]%c",
3093 pfx, s, s->obj_type, obj_type_name(&s->obj_type), eol);
3094 return;
3095 }
3096
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003097 si_f = &s->si[0];
3098 si_b = &s->si[1];
3099 req = &s->req;
3100 res = &s->res;
3101
3102 csf = objt_cs(si_f->end);
3103 cof = cs_conn(csf);
3104 acf = objt_appctx(si_f->end);
Willy Tarreau71e34c12019-07-17 15:07:06 +02003105 if (cof && cof->src && addr_to_str(cof->src, pn, sizeof(pn)) >= 0)
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003106 src = pn;
3107 else if (acf)
3108 src = acf->applet->name;
3109
3110 csb = objt_cs(si_b->end);
3111 cob = cs_conn(csb);
3112 acb = objt_appctx(si_b->end);
3113 srv = objt_server(s->target);
3114 if (srv)
3115 dst = srv->id;
3116 else if (acb)
3117 dst = acb->applet->name;
3118
Willy Tarreau5484d582019-05-22 09:33:03 +02003119 chunk_appendf(buf,
3120 "%sstrm=%p src=%s fe=%s be=%s dst=%s%c"
3121 "%srqf=%x rqa=%x rpf=%x rpa=%x sif=%s,%x sib=%s,%x%c"
3122 "%saf=%p,%u csf=%p,%x%c"
3123 "%sab=%p,%u csb=%p,%x%c"
3124 "%scof=%p,%x:%s(%p)/%s(%p)/%s(%d)%c"
3125 "%scob=%p,%x:%s(%p)/%s(%p)/%s(%d)%c"
3126 "",
3127 pfx, s, src, s->sess->fe->id, s->be->id, dst, eol,
3128 pfx, req->flags, req->analysers, res->flags, res->analysers,
3129 si_state_str(si_f->state), si_f->flags,
3130 si_state_str(si_b->state), si_b->flags, eol,
3131 pfx, acf, acf ? acf->st0 : 0, csf, csf ? csf->flags : 0, eol,
3132 pfx, acb, acb ? acb->st0 : 0, csb, csb ? csb->flags : 0, eol,
3133 pfx, cof, cof ? cof->flags : 0, conn_get_mux_name(cof), cof?cof->ctx:0, conn_get_xprt_name(cof),
3134 cof ? cof->xprt_ctx : 0, conn_get_ctrl_name(cof), cof ? cof->handle.fd : 0, eol,
3135 pfx, cob, cob ? cob->flags : 0, conn_get_mux_name(cob), cob?cob->ctx:0, conn_get_xprt_name(cob),
3136 cob ? cob->xprt_ctx : 0, conn_get_ctrl_name(cob), cob ? cob->handle.fd : 0, eol);
3137}
3138
3139/* dumps an error message for type <type> at ptr <ptr> related to stream <s>,
Willy Tarreaub106ce12019-05-22 08:57:01 +02003140 * having reached loop rate <rate>, then aborts hoping to retrieve a core.
Willy Tarreau5484d582019-05-22 09:33:03 +02003141 */
3142void stream_dump_and_crash(enum obj_type *obj, int rate)
3143{
3144 const struct stream *s;
Willy Tarreau5484d582019-05-22 09:33:03 +02003145 char *msg = NULL;
3146 const void *ptr;
3147
3148 ptr = s = objt_stream(obj);
3149 if (!s) {
3150 const struct appctx *appctx = objt_appctx(obj);
3151 if (!appctx)
3152 return;
3153 ptr = appctx;
3154 s = si_strm(appctx->owner);
3155 if (!s)
3156 return;
3157 }
3158
Willy Tarreau5484d582019-05-22 09:33:03 +02003159 chunk_reset(&trash);
3160 stream_dump(&trash, s, "", ' ');
Willy Tarreaub106ce12019-05-22 08:57:01 +02003161 memprintf(&msg,
3162 "A bogus %s [%p] is spinning at %d calls per second and refuses to die, "
3163 "aborting now! Please report this error to developers "
3164 "[%s]\n",
Willy Tarreau5484d582019-05-22 09:33:03 +02003165 obj_type_name(obj), ptr, rate, trash.area);
Willy Tarreau71c07ac2019-04-25 19:08:48 +02003166
3167 ha_alert("%s", msg);
3168 send_log(NULL, LOG_EMERG, "%s", msg);
3169 abort();
3170}
3171
Willy Tarreau8b22a712010-06-18 17:46:06 +02003172/************************************************************************/
3173/* All supported ACL keywords must be declared here. */
3174/************************************************************************/
3175
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003176/* 0=OK, <0=Alert, >0=Warning */
3177static enum act_parse_ret stream_parse_use_service(const char **args, int *cur_arg,
3178 struct proxy *px, struct act_rule *rule,
3179 char **err)
3180{
3181 struct action_kw *kw;
3182
3183 /* Check if the service name exists. */
3184 if (*(args[*cur_arg]) == 0) {
3185 memprintf(err, "'%s' expects a service name.", args[0]);
Thierry FOURNIER337eae12015-11-26 19:48:04 +01003186 return ACT_RET_PRS_ERR;
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003187 }
3188
3189 /* lookup for keyword corresponding to a service. */
3190 kw = action_lookup(&service_keywords, args[*cur_arg]);
3191 if (!kw) {
3192 memprintf(err, "'%s' unknown service name.", args[1]);
3193 return ACT_RET_PRS_ERR;
3194 }
3195 (*cur_arg)++;
3196
3197 /* executes specific rule parser. */
3198 rule->kw = kw;
3199 if (kw->parse((const char **)args, cur_arg, px, rule, err) == ACT_RET_PRS_ERR)
3200 return ACT_RET_PRS_ERR;
3201
3202 /* Register processing function. */
3203 rule->action_ptr = process_use_service;
3204 rule->action = ACT_CUSTOM;
3205
3206 return ACT_RET_PRS_OK;
3207}
3208
3209void service_keywords_register(struct action_kw_list *kw_list)
3210{
3211 LIST_ADDQ(&service_keywords, &kw_list->list);
3212}
3213
Willy Tarreau679bba12019-03-19 08:08:10 +01003214/* Lists the known services on <out> */
3215void list_services(FILE *out)
3216{
3217 struct action_kw_list *kw_list;
3218 int found = 0;
3219 int i;
3220
3221 fprintf(out, "Available services :");
3222 list_for_each_entry(kw_list, &service_keywords, list) {
3223 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
3224 if (!found)
3225 fputc('\n', out);
3226 found = 1;
3227 fprintf(out, "\t%s\n", kw_list->kw[i].kw);
3228 }
3229 }
3230 if (!found)
3231 fprintf(out, " none\n");
3232}
William Lallemand4c5b4d52016-11-21 08:51:11 +01003233
3234/* This function dumps a complete stream state onto the stream interface's
3235 * read buffer. The stream has to be set in strm. It returns 0 if the output
3236 * buffer is full and it needs to be called again, otherwise non-zero. It is
3237 * designed to be called from stats_dump_strm_to_buffer() below.
3238 */
3239static int stats_dump_full_strm_to_buffer(struct stream_interface *si, struct stream *strm)
3240{
3241 struct appctx *appctx = __objt_appctx(si->end);
3242 struct tm tm;
3243 extern const char *monthname[12];
3244 char pn[INET6_ADDRSTRLEN];
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003245 struct conn_stream *cs;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003246 struct connection *conn;
3247 struct appctx *tmpctx;
3248
3249 chunk_reset(&trash);
3250
3251 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != strm->uniq_id) {
3252 /* stream changed, no need to go any further */
3253 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreaue6e52362019-01-04 17:42:57 +01003254 if (ci_putchk(si_ic(si), &trash) == -1)
3255 goto full;
3256 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003257 }
3258
3259 switch (appctx->ctx.sess.section) {
3260 case 0: /* main status of the stream */
3261 appctx->ctx.sess.uid = strm->uniq_id;
3262 appctx->ctx.sess.section = 1;
3263 /* fall through */
3264
3265 case 1:
3266 get_localtime(strm->logs.accept_date.tv_sec, &tm);
3267 chunk_appendf(&trash,
3268 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
3269 strm,
3270 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3271 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(strm->logs.accept_date.tv_usec),
3272 strm->uniq_id,
3273 strm_li(strm) ? strm_li(strm)->proto->name : "?");
3274
3275 conn = objt_conn(strm_orig(strm));
Willy Tarreau71e34c12019-07-17 15:07:06 +02003276 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003277 case AF_INET:
3278 case AF_INET6:
3279 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02003280 pn, get_host_port(conn->src));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003281 break;
3282 case AF_UNIX:
3283 chunk_appendf(&trash, " source=unix:%d\n", strm_li(strm)->luid);
3284 break;
3285 default:
3286 /* no more information to print right now */
3287 chunk_appendf(&trash, "\n");
3288 break;
3289 }
3290
3291 chunk_appendf(&trash,
Willy Tarreauadf7a152019-01-07 10:10:07 +01003292 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p waiting=%d\n",
3293 strm->flags, strm->si[1].conn_retries, strm->srv_conn, strm->pend_pos,
3294 !LIST_ISEMPTY(&strm->buffer_wait.list));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003295
3296 chunk_appendf(&trash,
3297 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
3298 strm_fe(strm)->id, strm_fe(strm)->uuid, strm_fe(strm)->mode ? "http" : "tcp",
3299 strm_li(strm) ? strm_li(strm)->name ? strm_li(strm)->name : "?" : "?",
3300 strm_li(strm) ? strm_li(strm)->luid : 0);
3301
Willy Tarreau71e34c12019-07-17 15:07:06 +02003302 switch (conn && conn_get_dst(conn) ? addr_to_str(conn->dst, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003303 case AF_INET:
3304 case AF_INET6:
3305 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02003306 pn, get_host_port(conn->dst));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003307 break;
3308 case AF_UNIX:
3309 chunk_appendf(&trash, " addr=unix:%d\n", strm_li(strm)->luid);
3310 break;
3311 default:
3312 /* no more information to print right now */
3313 chunk_appendf(&trash, "\n");
3314 break;
3315 }
3316
3317 if (strm->be->cap & PR_CAP_BE)
3318 chunk_appendf(&trash,
3319 " backend=%s (id=%u mode=%s)",
3320 strm->be->id,
3321 strm->be->uuid, strm->be->mode ? "http" : "tcp");
3322 else
3323 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
3324
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003325 cs = objt_cs(strm->si[1].end);
3326 conn = cs_conn(cs);
3327
Willy Tarreau71e34c12019-07-17 15:07:06 +02003328 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003329 case AF_INET:
3330 case AF_INET6:
3331 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02003332 pn, get_host_port(conn->src));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003333 break;
3334 case AF_UNIX:
3335 chunk_appendf(&trash, " addr=unix\n");
3336 break;
3337 default:
3338 /* no more information to print right now */
3339 chunk_appendf(&trash, "\n");
3340 break;
3341 }
3342
3343 if (strm->be->cap & PR_CAP_BE)
3344 chunk_appendf(&trash,
3345 " server=%s (id=%u)",
3346 objt_server(strm->target) ? objt_server(strm->target)->id : "<none>",
3347 objt_server(strm->target) ? objt_server(strm->target)->puid : 0);
3348 else
3349 chunk_appendf(&trash, " server=<NONE> (id=-1)");
3350
Willy Tarreau71e34c12019-07-17 15:07:06 +02003351 switch (conn && conn_get_dst(conn) ? addr_to_str(conn->dst, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003352 case AF_INET:
3353 case AF_INET6:
3354 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02003355 pn, get_host_port(conn->dst));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003356 break;
3357 case AF_UNIX:
3358 chunk_appendf(&trash, " addr=unix\n");
3359 break;
3360 default:
3361 /* no more information to print right now */
3362 chunk_appendf(&trash, "\n");
3363 break;
3364 }
3365
3366 chunk_appendf(&trash,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003367 " task=%p (state=0x%02x nice=%d calls=%u rate=%u exp=%s tmask=0x%lx%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003368 strm->task,
3369 strm->task->state,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003370 strm->task->nice, strm->task->calls, read_freq_ctr(&strm->call_rate),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003371 strm->task->expire ?
3372 tick_is_expired(strm->task->expire, now_ms) ? "<PAST>" :
3373 human_time(TICKS_TO_MS(strm->task->expire - now_ms),
3374 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Fauletf0205062017-11-15 20:56:43 +01003375 strm->task->thread_mask,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003376 task_in_rq(strm->task) ? ", running" : "");
3377
3378 chunk_appendf(&trash,
3379 " age=%s)\n",
3380 human_time(now.tv_sec - strm->logs.accept_date.tv_sec, 1));
3381
3382 if (strm->txn)
3383 chunk_appendf(&trash,
Christopher Fauletbcac7862019-07-17 10:46:50 +02003384 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s req.f=0x%02x rsp.f=0x%02x\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003385 strm->txn, strm->txn->flags, strm->txn->meth, strm->txn->status,
Willy Tarreau7778b592019-01-07 10:38:10 +01003386 h1_msg_state_str(strm->txn->req.msg_state), h1_msg_state_str(strm->txn->rsp.msg_state),
Christopher Fauletbcac7862019-07-17 10:46:50 +02003387 strm->txn->req.flags, strm->txn->rsp.flags);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003388
3389 chunk_appendf(&trash,
Christopher Faulet224a2d72019-01-04 15:06:13 +01003390 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s et=0x%03x sub=%d)\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003391 &strm->si[0],
3392 si_state_str(strm->si[0].state),
3393 strm->si[0].flags,
3394 obj_type_name(strm->si[0].end),
3395 obj_base_ptr(strm->si[0].end),
3396 strm->si[0].exp ?
3397 tick_is_expired(strm->si[0].exp, now_ms) ? "<PAST>" :
3398 human_time(TICKS_TO_MS(strm->si[0].exp - now_ms),
3399 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Faulet224a2d72019-01-04 15:06:13 +01003400 strm->si[0].err_type, strm->si[0].wait_event.events);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003401
3402 chunk_appendf(&trash,
Christopher Faulet224a2d72019-01-04 15:06:13 +01003403 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s et=0x%03x sub=%d)\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003404 &strm->si[1],
3405 si_state_str(strm->si[1].state),
3406 strm->si[1].flags,
3407 obj_type_name(strm->si[1].end),
3408 obj_base_ptr(strm->si[1].end),
3409 strm->si[1].exp ?
3410 tick_is_expired(strm->si[1].exp, now_ms) ? "<PAST>" :
3411 human_time(TICKS_TO_MS(strm->si[1].exp - now_ms),
3412 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Faulet224a2d72019-01-04 15:06:13 +01003413 strm->si[1].err_type, strm->si[1].wait_event.events);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003414
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003415 if ((cs = objt_cs(strm->si[0].end)) != NULL) {
3416 conn = cs->conn;
3417
William Lallemand4c5b4d52016-11-21 08:51:11 +01003418 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02003419 " co0=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003420 conn,
3421 conn_get_ctrl_name(conn),
3422 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02003423 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003424 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003425 obj_type_name(conn->target),
3426 obj_base_ptr(conn->target));
3427
3428 chunk_appendf(&trash,
Willy Tarreau76913d32019-08-30 14:33:11 +02003429 " flags=0x%08x fd=%d fd.state=%02x updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003430 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003431 conn->handle.fd,
3432 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01003433 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01003434 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
Willy Tarreaufb3b1b02018-12-18 14:28:24 +01003435
3436 chunk_appendf(&trash, " cs=%p csf=0x%08x ctx=%p\n", cs, cs->flags, cs->ctx);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003437 }
3438 else if ((tmpctx = objt_appctx(strm->si[0].end)) != NULL) {
3439 chunk_appendf(&trash,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003440 " app0=%p st0=%d st1=%d st2=%d applet=%s tmask=0x%lx nice=%d calls=%u rate=%u cpu=%llu lat=%llu\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003441 tmpctx,
3442 tmpctx->st0,
3443 tmpctx->st1,
3444 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01003445 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02003446 tmpctx->thread_mask,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003447 tmpctx->t->nice, tmpctx->t->calls, read_freq_ctr(&tmpctx->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003448 (unsigned long long)tmpctx->t->cpu_time, (unsigned long long)tmpctx->t->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003449 }
3450
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003451 if ((cs = objt_cs(strm->si[1].end)) != NULL) {
3452 conn = cs->conn;
3453
William Lallemand4c5b4d52016-11-21 08:51:11 +01003454 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02003455 " co1=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003456 conn,
3457 conn_get_ctrl_name(conn),
3458 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02003459 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003460 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003461 obj_type_name(conn->target),
3462 obj_base_ptr(conn->target));
3463
3464 chunk_appendf(&trash,
Willy Tarreau76913d32019-08-30 14:33:11 +02003465 " flags=0x%08x fd=%d fd.state=%02x updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003466 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003467 conn->handle.fd,
3468 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01003469 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01003470 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
Willy Tarreaufb3b1b02018-12-18 14:28:24 +01003471
3472 chunk_appendf(&trash, " cs=%p csf=0x%08x ctx=%p\n", cs, cs->flags, cs->ctx);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003473 }
3474 else if ((tmpctx = objt_appctx(strm->si[1].end)) != NULL) {
3475 chunk_appendf(&trash,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003476 " app1=%p st0=%d st1=%d st2=%d applet=%s tmask=0x%lx nice=%d calls=%u rate=%u cpu=%llu lat=%llu\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003477 tmpctx,
3478 tmpctx->st0,
3479 tmpctx->st1,
3480 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01003481 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02003482 tmpctx->thread_mask,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003483 tmpctx->t->nice, tmpctx->t->calls, read_freq_ctr(&tmpctx->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003484 (unsigned long long)tmpctx->t->cpu_time, (unsigned long long)tmpctx->t->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003485 }
3486
3487 chunk_appendf(&trash,
3488 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
3489 " an_exp=%s",
3490 &strm->req,
3491 strm->req.flags, strm->req.analysers,
3492 strm->req.pipe ? strm->req.pipe->data : 0,
3493 strm->req.to_forward, strm->req.total,
3494 strm->req.analyse_exp ?
3495 human_time(TICKS_TO_MS(strm->req.analyse_exp - now_ms),
3496 TICKS_TO_MS(1000)) : "<NEVER>");
3497
3498 chunk_appendf(&trash,
3499 " rex=%s",
3500 strm->req.rex ?
3501 human_time(TICKS_TO_MS(strm->req.rex - now_ms),
3502 TICKS_TO_MS(1000)) : "<NEVER>");
3503
3504 chunk_appendf(&trash,
3505 " wex=%s\n"
Christopher Fauletbcac7862019-07-17 10:46:50 +02003506 " buf=%p data=%p o=%u p=%u i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003507 strm->req.wex ?
3508 human_time(TICKS_TO_MS(strm->req.wex - now_ms),
3509 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003510 &strm->req.buf,
3511 b_orig(&strm->req.buf), (unsigned int)co_data(&strm->req),
Christopher Fauletbcac7862019-07-17 10:46:50 +02003512 (unsigned int)ci_head_ofs(&strm->req), (unsigned int)ci_data(&strm->req),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003513 (unsigned int)strm->req.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003514
Christopher Fauletb9af8812019-01-04 14:30:44 +01003515 if (IS_HTX_STRM(strm)) {
3516 struct htx *htx = htxbuf(&strm->req.buf);
3517
3518 chunk_appendf(&trash,
Willy Tarreaub84e67f2019-01-07 10:01:34 +01003519 " htx=%p flags=0x%x size=%u data=%u used=%u wrap=%s extra=%llu\n",
Christopher Faulet192c6a22019-06-11 16:32:24 +02003520 htx, htx->flags, htx->size, htx->data, htx_nbblks(htx),
Christopher Faulet28f29c72019-04-30 17:55:45 +02003521 (htx->tail >= htx->head) ? "NO" : "YES",
Christopher Fauletb9af8812019-01-04 14:30:44 +01003522 (unsigned long long)htx->extra);
3523 }
3524
William Lallemand4c5b4d52016-11-21 08:51:11 +01003525 chunk_appendf(&trash,
3526 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
3527 " an_exp=%s",
3528 &strm->res,
3529 strm->res.flags, strm->res.analysers,
3530 strm->res.pipe ? strm->res.pipe->data : 0,
3531 strm->res.to_forward, strm->res.total,
3532 strm->res.analyse_exp ?
3533 human_time(TICKS_TO_MS(strm->res.analyse_exp - now_ms),
3534 TICKS_TO_MS(1000)) : "<NEVER>");
3535
3536 chunk_appendf(&trash,
3537 " rex=%s",
3538 strm->res.rex ?
3539 human_time(TICKS_TO_MS(strm->res.rex - now_ms),
3540 TICKS_TO_MS(1000)) : "<NEVER>");
3541
3542 chunk_appendf(&trash,
3543 " wex=%s\n"
Christopher Fauletbcac7862019-07-17 10:46:50 +02003544 " buf=%p data=%p o=%u p=%u i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003545 strm->res.wex ?
3546 human_time(TICKS_TO_MS(strm->res.wex - now_ms),
3547 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003548 &strm->res.buf,
3549 b_orig(&strm->res.buf), (unsigned int)co_data(&strm->res),
Christopher Fauletbcac7862019-07-17 10:46:50 +02003550 (unsigned int)ci_head_ofs(&strm->res), (unsigned int)ci_data(&strm->res),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003551 (unsigned int)strm->res.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003552
Christopher Fauletb9af8812019-01-04 14:30:44 +01003553 if (IS_HTX_STRM(strm)) {
3554 struct htx *htx = htxbuf(&strm->res.buf);
3555
3556 chunk_appendf(&trash,
3557 " htx=%p flags=0x%x size=%u data=%u used=%u wrap=%s extra=%llu\n",
Christopher Faulet192c6a22019-06-11 16:32:24 +02003558 htx, htx->flags, htx->size, htx->data, htx_nbblks(htx),
Christopher Faulet28f29c72019-04-30 17:55:45 +02003559 (htx->tail >= htx->head) ? "NO" : "YES",
Christopher Fauletb9af8812019-01-04 14:30:44 +01003560 (unsigned long long)htx->extra);
3561 }
3562
Willy Tarreaue6e52362019-01-04 17:42:57 +01003563 if (ci_putchk(si_ic(si), &trash) == -1)
3564 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003565
3566 /* use other states to dump the contents */
3567 }
3568 /* end of dump */
Willy Tarreaue6e52362019-01-04 17:42:57 +01003569 done:
William Lallemand4c5b4d52016-11-21 08:51:11 +01003570 appctx->ctx.sess.uid = 0;
3571 appctx->ctx.sess.section = 0;
3572 return 1;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003573 full:
3574 return 0;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003575}
3576
3577
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003578static int cli_parse_show_sess(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand4c5b4d52016-11-21 08:51:11 +01003579{
William Lallemand4c5b4d52016-11-21 08:51:11 +01003580 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
3581 return 1;
3582
3583 if (*args[2] && strcmp(args[2], "all") == 0)
3584 appctx->ctx.sess.target = (void *)-1;
3585 else if (*args[2])
3586 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
3587 else
3588 appctx->ctx.sess.target = NULL;
3589 appctx->ctx.sess.section = 0; /* start with stream status */
3590 appctx->ctx.sess.pos = 0;
3591
3592 return 0;
3593}
3594
3595/* This function dumps all streams' states onto the stream interface's
3596 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreaue6e52362019-01-04 17:42:57 +01003597 * to be called again, otherwise non-zero. It proceeds in an isolated
3598 * thread so there is no thread safety issue here.
William Lallemand4c5b4d52016-11-21 08:51:11 +01003599 */
3600static int cli_io_handler_dump_sess(struct appctx *appctx)
3601{
3602 struct stream_interface *si = appctx->owner;
3603 struct connection *conn;
3604
Willy Tarreaue6e52362019-01-04 17:42:57 +01003605 thread_isolate();
3606
William Lallemand4c5b4d52016-11-21 08:51:11 +01003607 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
3608 /* If we're forced to shut down, we might have to remove our
3609 * reference to the last stream being dumped.
3610 */
3611 if (appctx->st2 == STAT_ST_LIST) {
3612 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3613 LIST_DEL(&appctx->ctx.sess.bref.users);
3614 LIST_INIT(&appctx->ctx.sess.bref.users);
3615 }
3616 }
Willy Tarreaue6e52362019-01-04 17:42:57 +01003617 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003618 }
3619
3620 chunk_reset(&trash);
3621
3622 switch (appctx->st2) {
3623 case STAT_ST_INIT:
3624 /* the function had not been called yet, let's prepare the
3625 * buffer for a response. We initialize the current stream
3626 * pointer to the first in the global list. When a target
3627 * stream is being destroyed, it is responsible for updating
3628 * this pointer. We know we have reached the end when this
3629 * pointer points back to the head of the streams list.
3630 */
3631 LIST_INIT(&appctx->ctx.sess.bref.users);
3632 appctx->ctx.sess.bref.ref = streams.n;
3633 appctx->st2 = STAT_ST_LIST;
3634 /* fall through */
3635
3636 case STAT_ST_LIST:
3637 /* first, let's detach the back-ref from a possible previous stream */
3638 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3639 LIST_DEL(&appctx->ctx.sess.bref.users);
3640 LIST_INIT(&appctx->ctx.sess.bref.users);
3641 }
3642
3643 /* and start from where we stopped */
3644 while (appctx->ctx.sess.bref.ref != &streams) {
3645 char pn[INET6_ADDRSTRLEN];
3646 struct stream *curr_strm;
3647
3648 curr_strm = LIST_ELEM(appctx->ctx.sess.bref.ref, struct stream *, list);
3649
3650 if (appctx->ctx.sess.target) {
3651 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_strm)
3652 goto next_sess;
3653
3654 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
3655 /* call the proper dump() function and return if we're missing space */
Willy Tarreaue6e52362019-01-04 17:42:57 +01003656 if (!stats_dump_full_strm_to_buffer(si, curr_strm))
3657 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003658
3659 /* stream dump complete */
3660 LIST_DEL(&appctx->ctx.sess.bref.users);
3661 LIST_INIT(&appctx->ctx.sess.bref.users);
3662 if (appctx->ctx.sess.target != (void *)-1) {
3663 appctx->ctx.sess.target = NULL;
3664 break;
3665 }
3666 else
3667 goto next_sess;
3668 }
3669
3670 chunk_appendf(&trash,
3671 "%p: proto=%s",
3672 curr_strm,
3673 strm_li(curr_strm) ? strm_li(curr_strm)->proto->name : "?");
3674
3675 conn = objt_conn(strm_orig(curr_strm));
Willy Tarreau71e34c12019-07-17 15:07:06 +02003676 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003677 case AF_INET:
3678 case AF_INET6:
3679 chunk_appendf(&trash,
3680 " src=%s:%d fe=%s be=%s srv=%s",
3681 pn,
Willy Tarreau71e34c12019-07-17 15:07:06 +02003682 get_host_port(conn->src),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003683 strm_fe(curr_strm)->id,
3684 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3685 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3686 );
3687 break;
3688 case AF_UNIX:
3689 chunk_appendf(&trash,
3690 " src=unix:%d fe=%s be=%s srv=%s",
3691 strm_li(curr_strm)->luid,
3692 strm_fe(curr_strm)->id,
3693 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3694 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3695 );
3696 break;
3697 }
3698
3699 chunk_appendf(&trash,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003700 " ts=%02x age=%s calls=%u rate=%u cpu=%llu lat=%llu",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003701 curr_strm->task->state,
3702 human_time(now.tv_sec - curr_strm->logs.tv_accept.tv_sec, 1),
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003703 curr_strm->task->calls, read_freq_ctr(&curr_strm->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003704 (unsigned long long)curr_strm->task->cpu_time, (unsigned long long)curr_strm->task->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003705
3706 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003707 " rq[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003708 curr_strm->req.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003709 (unsigned int)ci_data(&curr_strm->req),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003710 curr_strm->req.analysers,
3711 curr_strm->req.rex ?
3712 human_time(TICKS_TO_MS(curr_strm->req.rex - now_ms),
3713 TICKS_TO_MS(1000)) : "");
3714
3715 chunk_appendf(&trash,
3716 ",wx=%s",
3717 curr_strm->req.wex ?
3718 human_time(TICKS_TO_MS(curr_strm->req.wex - now_ms),
3719 TICKS_TO_MS(1000)) : "");
3720
3721 chunk_appendf(&trash,
3722 ",ax=%s]",
3723 curr_strm->req.analyse_exp ?
3724 human_time(TICKS_TO_MS(curr_strm->req.analyse_exp - now_ms),
3725 TICKS_TO_MS(1000)) : "");
3726
3727 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003728 " rp[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003729 curr_strm->res.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003730 (unsigned int)ci_data(&curr_strm->res),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003731 curr_strm->res.analysers,
3732 curr_strm->res.rex ?
3733 human_time(TICKS_TO_MS(curr_strm->res.rex - now_ms),
3734 TICKS_TO_MS(1000)) : "");
3735
3736 chunk_appendf(&trash,
3737 ",wx=%s",
3738 curr_strm->res.wex ?
3739 human_time(TICKS_TO_MS(curr_strm->res.wex - now_ms),
3740 TICKS_TO_MS(1000)) : "");
3741
3742 chunk_appendf(&trash,
3743 ",ax=%s]",
3744 curr_strm->res.analyse_exp ?
3745 human_time(TICKS_TO_MS(curr_strm->res.analyse_exp - now_ms),
3746 TICKS_TO_MS(1000)) : "");
3747
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003748 conn = cs_conn(objt_cs(curr_strm->si[0].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003749 chunk_appendf(&trash,
3750 " s0=[%d,%1xh,fd=%d,ex=%s]",
3751 curr_strm->si[0].state,
3752 curr_strm->si[0].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003753 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003754 curr_strm->si[0].exp ?
3755 human_time(TICKS_TO_MS(curr_strm->si[0].exp - now_ms),
3756 TICKS_TO_MS(1000)) : "");
3757
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003758 conn = cs_conn(objt_cs(curr_strm->si[1].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003759 chunk_appendf(&trash,
3760 " s1=[%d,%1xh,fd=%d,ex=%s]",
3761 curr_strm->si[1].state,
3762 curr_strm->si[1].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003763 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003764 curr_strm->si[1].exp ?
3765 human_time(TICKS_TO_MS(curr_strm->si[1].exp - now_ms),
3766 TICKS_TO_MS(1000)) : "");
3767
3768 chunk_appendf(&trash,
3769 " exp=%s",
3770 curr_strm->task->expire ?
3771 human_time(TICKS_TO_MS(curr_strm->task->expire - now_ms),
3772 TICKS_TO_MS(1000)) : "");
3773 if (task_in_rq(curr_strm->task))
3774 chunk_appendf(&trash, " run(nice=%d)", curr_strm->task->nice);
3775
3776 chunk_appendf(&trash, "\n");
3777
Willy Tarreau06d80a92017-10-19 14:32:15 +02003778 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003779 /* let's try again later from this stream. We add ourselves into
3780 * this stream's users so that it can remove us upon termination.
3781 */
William Lallemand4c5b4d52016-11-21 08:51:11 +01003782 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreaue6e52362019-01-04 17:42:57 +01003783 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003784 }
3785
3786 next_sess:
3787 appctx->ctx.sess.bref.ref = curr_strm->list.n;
3788 }
3789
3790 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
3791 /* specified stream not found */
3792 if (appctx->ctx.sess.section > 0)
3793 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
3794 else
3795 chunk_appendf(&trash, "Session not found.\n");
3796
Willy Tarreaue6e52362019-01-04 17:42:57 +01003797 if (ci_putchk(si_ic(si), &trash) == -1)
3798 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003799
3800 appctx->ctx.sess.target = NULL;
3801 appctx->ctx.sess.uid = 0;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003802 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003803 }
William Lallemand4c5b4d52016-11-21 08:51:11 +01003804 /* fall through */
3805
3806 default:
3807 appctx->st2 = STAT_ST_FIN;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003808 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003809 }
Willy Tarreaue6e52362019-01-04 17:42:57 +01003810 done:
3811 thread_release();
3812 return 1;
3813 full:
3814 thread_release();
3815 si_rx_room_blk(si);
3816 return 0;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003817}
3818
3819static void cli_release_show_sess(struct appctx *appctx)
3820{
3821 if (appctx->st2 == STAT_ST_LIST) {
Willy Tarreau7ce3f092017-11-10 16:24:41 +01003822 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003823 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
3824 LIST_DEL(&appctx->ctx.sess.bref.users);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003825 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003826 }
3827}
3828
Willy Tarreau61b65212016-11-24 11:09:25 +01003829/* Parses the "shutdown session" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003830static int cli_parse_shutdown_session(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau61b65212016-11-24 11:09:25 +01003831{
3832 struct stream *strm, *ptr;
3833
3834 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3835 return 1;
3836
Willy Tarreau9d008692019-08-09 11:21:01 +02003837 if (!*args[2])
3838 return cli_err(appctx, "Session pointer expected (use 'show sess').\n");
Willy Tarreau61b65212016-11-24 11:09:25 +01003839
3840 ptr = (void *)strtoul(args[2], NULL, 0);
3841
3842 /* first, look for the requested stream in the stream table */
3843 list_for_each_entry(strm, &streams, list) {
3844 if (strm == ptr)
3845 break;
3846 }
3847
3848 /* do we have the stream ? */
Willy Tarreau9d008692019-08-09 11:21:01 +02003849 if (strm != ptr)
3850 return cli_err(appctx, "No such session (use 'show sess').\n");
Willy Tarreau61b65212016-11-24 11:09:25 +01003851
3852 stream_shutdown(strm, SF_ERR_KILLED);
3853 return 1;
3854}
3855
Willy Tarreau4e46b622016-11-23 16:50:48 +01003856/* Parses the "shutdown session server" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003857static int cli_parse_shutdown_sessions_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau4e46b622016-11-23 16:50:48 +01003858{
3859 struct server *sv;
Willy Tarreau4e46b622016-11-23 16:50:48 +01003860
3861 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3862 return 1;
3863
3864 sv = cli_find_server(appctx, args[3]);
3865 if (!sv)
3866 return 1;
3867
3868 /* kill all the stream that are on this server */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003869 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreaud9e26a72019-11-14 16:37:16 +01003870 srv_shutdown_streams(sv, SF_ERR_KILLED);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003871 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau4e46b622016-11-23 16:50:48 +01003872 return 1;
3873}
3874
William Lallemand4c5b4d52016-11-21 08:51:11 +01003875/* register cli keywords */
3876static struct cli_kw_list cli_kws = {{ },{
3877 { { "show", "sess", NULL }, "show sess [id] : report the list of current sessions or dump this session", cli_parse_show_sess, cli_io_handler_dump_sess, cli_release_show_sess },
Willy Tarreau61b65212016-11-24 11:09:25 +01003878 { { "shutdown", "session", NULL }, "shutdown session : kill a specific session", cli_parse_shutdown_session, NULL, NULL },
Willy Tarreau4e46b622016-11-23 16:50:48 +01003879 { { "shutdown", "sessions", "server" }, "shutdown sessions server : kill sessions on a server", cli_parse_shutdown_sessions_server, NULL, NULL },
William Lallemand4c5b4d52016-11-21 08:51:11 +01003880 {{},}
3881}};
3882
Willy Tarreau0108d902018-11-25 19:14:37 +01003883INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3884
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003885/* main configuration keyword registration. */
3886static struct action_kw_list stream_tcp_keywords = { ILH, {
3887 { "use-service", stream_parse_use_service },
3888 { /* END */ }
3889}};
3890
Willy Tarreau0108d902018-11-25 19:14:37 +01003891INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &stream_tcp_keywords);
3892
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003893static struct action_kw_list stream_http_keywords = { ILH, {
3894 { "use-service", stream_parse_use_service },
3895 { /* END */ }
3896}};
3897
Willy Tarreau0108d902018-11-25 19:14:37 +01003898INITCALL1(STG_REGISTER, http_req_keywords_register, &stream_http_keywords);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003899
Willy Tarreaubaaee002006-06-26 02:48:02 +02003900/*
3901 * Local variables:
3902 * c-indent-level: 8
3903 * c-basic-offset: 8
3904 * End:
3905 */