blob: abef21032a0d039df90efa87a6897ca6ec9aada8 [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
Willy Tarreaua264d962020-06-04 22:29:18 +020017#include <import/ebistree.h>
18
Willy Tarreaudcc048a2020-06-04 19:11:43 +020019#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020020#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/activity.h>
22#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/arg.h>
Willy Tarreau49801602020-06-04 22:50:02 +020025#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020026#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020027#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020028#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020029#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020030#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020031#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020032#include <haproxy/dict.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020033#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020034#include <haproxy/dynbuf.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020036#include <haproxy/filters.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020038#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020039#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +020040#include <haproxy/hlua.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020041#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020042#include <haproxy/http_rules.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020043#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/istbuf.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020045#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/pipe.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020047#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020048#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020049#include <haproxy/queue.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020050#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020051#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020052#include <haproxy/stats-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020053#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020054#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020055#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020056#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020057#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020058#include <haproxy/thread.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020059#include <haproxy/trace.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020060#include <haproxy/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreaubaaee002006-06-26 02:48:02 +020062
Willy Tarreau8ceae722018-11-26 11:58:30 +010063DECLARE_POOL(pool_head_stream, "stream", sizeof(struct stream));
Tim Duesterhus127a74d2020-02-28 15:13:33 +010064DECLARE_POOL(pool_head_uniqueid, "uniqueid", UNIQUEID_LEN);
Willy Tarreau8ceae722018-11-26 11:58:30 +010065
Willy Tarreaub6b3df32018-11-26 16:31:20 +010066struct list streams = LIST_HEAD_INIT(streams);
Willy Tarreau86abe442018-11-25 20:12:18 +010067__decl_spinlock(streams_lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020069/* List of all use-service keywords. */
70static struct list service_keywords = LIST_HEAD_INIT(service_keywords);
71
Willy Tarreau5790eb02017-08-28 17:18:36 +020072
Christopher Fauleteea8fc72019-11-05 16:18:10 +010073/* trace source and events */
74static void strm_trace(enum trace_level level, uint64_t mask,
75 const struct trace_source *src,
76 const struct ist where, const struct ist func,
77 const void *a1, const void *a2, const void *a3, const void *a4);
78
79/* The event representation is split like this :
80 * strm - stream
81 * si - stream interface
82 * http - http analyzis
83 * tcp - tcp analyzis
84 *
85 * STRM_EV_* macros are defined in <proto/stream.h>
86 */
87static const struct trace_event strm_trace_events[] = {
88 { .mask = STRM_EV_STRM_NEW, .name = "strm_new", .desc = "new stream" },
89 { .mask = STRM_EV_STRM_FREE, .name = "strm_free", .desc = "release stream" },
90 { .mask = STRM_EV_STRM_ERR, .name = "strm_err", .desc = "error during stream processing" },
91 { .mask = STRM_EV_STRM_ANA, .name = "strm_ana", .desc = "stream analyzers" },
92 { .mask = STRM_EV_STRM_PROC, .name = "strm_proc", .desc = "stream processing" },
93
94 { .mask = STRM_EV_SI_ST, .name = "si_state", .desc = "processing stream-interface states" },
95
96 { .mask = STRM_EV_HTTP_ANA, .name = "http_ana", .desc = "HTTP analyzers" },
97 { .mask = STRM_EV_HTTP_ERR, .name = "http_err", .desc = "error during HTTP analyzis" },
98
99 { .mask = STRM_EV_TCP_ANA, .name = "tcp_ana", .desc = "TCP analyzers" },
100 { .mask = STRM_EV_TCP_ERR, .name = "tcp_err", .desc = "error during TCP analyzis" },
101 {}
102};
103
104static const struct name_desc strm_trace_lockon_args[4] = {
105 /* arg1 */ { /* already used by the stream */ },
106 /* arg2 */ { },
107 /* arg3 */ { },
108 /* arg4 */ { }
109};
110
111static const struct name_desc strm_trace_decoding[] = {
112#define STRM_VERB_CLEAN 1
113 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
114#define STRM_VERB_MINIMAL 2
115 { .name="minimal", .desc="report info on stream and stream-interfaces" },
116#define STRM_VERB_SIMPLE 3
117 { .name="simple", .desc="add info on request and response channels" },
118#define STRM_VERB_ADVANCED 4
119 { .name="advanced", .desc="add info on channel's buffer for data and developer levels only" },
120#define STRM_VERB_COMPLETE 5
121 { .name="complete", .desc="add info on channel's buffer" },
122 { /* end */ }
123};
124
125struct trace_source trace_strm = {
126 .name = IST("stream"),
127 .desc = "Applicative stream",
128 .arg_def = TRC_ARG1_STRM, // TRACE()'s first argument is always a stream
129 .default_cb = strm_trace,
130 .known_events = strm_trace_events,
131 .lockon_args = strm_trace_lockon_args,
132 .decoding = strm_trace_decoding,
133 .report_events = ~0, // report everything by default
134};
135
136#define TRACE_SOURCE &trace_strm
137INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
138
139/* the stream traces always expect that arg1, if non-null, is of a stream (from
140 * which we can derive everything), that arg2, if non-null, is an http
141 * transaction, that arg3, if non-null, is an http message.
142 */
143static void strm_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
144 const struct ist where, const struct ist func,
145 const void *a1, const void *a2, const void *a3, const void *a4)
146{
147 const struct stream *s = a1;
148 const struct http_txn *txn = a2;
149 const struct http_msg *msg = a3;
150 struct task *task;
151 const struct stream_interface *si_f, *si_b;
152 const struct channel *req, *res;
153 struct htx *htx;
154
155 if (!s || src->verbosity < STRM_VERB_CLEAN)
156 return;
157
158 task = s->task;
159 si_f = &s->si[0];
160 si_b = &s->si[1];
161 req = &s->req;
162 res = &s->res;
163 htx = (msg ? htxbuf(&msg->chn->buf) : NULL);
164
165 /* General info about the stream (htx/tcp, id...) */
166 chunk_appendf(&trace_buf, " : [%u,%s]",
167 s->uniq_id, ((s->flags & SF_HTX) ? "HTX" : "TCP"));
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100168 if (isttest(s->unique_id)) {
169 chunk_appendf(&trace_buf, " id=");
170 b_putist(&trace_buf, s->unique_id);
171 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100172
173 /* Front and back stream-int state */
174 chunk_appendf(&trace_buf, " SI=(%s,%s)",
175 si_state_str(si_f->state), si_state_str(si_b->state));
176
177 /* If txn is defined, HTTP req/rep states */
178 if (txn)
179 chunk_appendf(&trace_buf, " HTTP=(%s,%s)",
180 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state));
181 if (msg)
182 chunk_appendf(&trace_buf, " %s", ((msg->chn->flags & CF_ISRESP) ? "RESPONSE" : "REQUEST"));
183
184 if (src->verbosity == STRM_VERB_CLEAN)
185 return;
186
187 /* If msg defined, display status-line if possible (verbosity > MINIMAL) */
188 if (src->verbosity > STRM_VERB_MINIMAL && htx && htx_nbblks(htx)) {
189 const struct htx_blk *blk = htx_get_head_blk(htx);
190 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
191 enum htx_blk_type type = htx_get_blk_type(blk);
192
193 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
194 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
195 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
196 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
197 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
198 }
199
200
201 /* If txn defined info about HTTP msgs, otherwise info about SI. */
202 if (txn) {
203 chunk_appendf(&trace_buf, " - t=%p s=(%p,0x%08x) txn.flags=0x%08x, http.flags=(0x%08x,0x%08x) status=%d",
204 task, s, s->flags, txn->flags, txn->req.flags, txn->rsp.flags, txn->status);
205 }
206 else {
207 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",
208 task, s, s->flags, si_f, si_f->flags, si_f->err_type,
209 si_b, si_b->flags, si_b->err_type, si_b->conn_retries);
210 }
211
212 if (src->verbosity == STRM_VERB_MINIMAL)
213 return;
214
215
216 /* If txn defined, don't display all channel info */
217 if (src->verbosity == STRM_VERB_SIMPLE || txn) {
218 chunk_appendf(&trace_buf, " req=(%p .fl=0x%08x .exp(r,w,a)=(%u,%u,%u))",
219 req, req->flags, req->rex, req->wex, req->analyse_exp);
220 chunk_appendf(&trace_buf, " res=(%p .fl=0x%08x .exp(r,w,a)=(%u,%u,%u))",
221 res, res->flags, res->rex, res->wex, res->analyse_exp);
222 }
223 else {
224 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)",
225 req, req->flags, req->analysers, req->rex, req->wex, req->analyse_exp,
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100226 (long)req->output, req->total, req->to_forward);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100227 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)",
228 res, res->flags, res->analysers, res->rex, res->wex, res->analyse_exp,
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100229 (long)res->output, res->total, res->to_forward);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100230 }
231
232 if (src->verbosity == STRM_VERB_SIMPLE ||
233 (src->verbosity == STRM_VERB_ADVANCED && src->level < TRACE_LEVEL_DATA))
234 return;
235
236 /* channels' buffer info */
237 if (s->flags & SF_HTX) {
238 struct htx *rqhtx = htxbuf(&req->buf);
239 struct htx *rphtx = htxbuf(&res->buf);
240
241 chunk_appendf(&trace_buf, " htx=(%u/%u#%u, %u/%u#%u)",
242 rqhtx->data, rqhtx->size, htx_nbblks(rqhtx),
243 rphtx->data, rphtx->size, htx_nbblks(rphtx));
244 }
245 else {
246 chunk_appendf(&trace_buf, " buf=(%u@%p+%u/%u, %u@%p+%u/%u)",
247 (unsigned int)b_data(&req->buf), b_orig(&req->buf),
248 (unsigned int)b_head_ofs(&req->buf), (unsigned int)b_size(&req->buf),
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 }
252
253 /* If msg defined, display htx info if defined (level > USER) */
254 if (src->level > TRACE_LEVEL_USER && htx && htx_nbblks(htx)) {
255 int full = 0;
256
257 /* Full htx info (level > STATE && verbosity > SIMPLE) */
258 if (src->level > TRACE_LEVEL_STATE) {
259 if (src->verbosity == STRM_VERB_COMPLETE)
260 full = 1;
261 }
262
263 chunk_memcat(&trace_buf, "\n\t", 2);
264 htx_dump(&trace_buf, htx, full);
265 }
266}
267
Willy Tarreau5790eb02017-08-28 17:18:36 +0200268/* Create a new stream for connection <conn>. Return < 0 on error. This is only
269 * valid right after the handshake, before the connection's data layer is
270 * initialized, because it relies on the session to be in conn->owner.
271 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200272int stream_create_from_cs(struct conn_stream *cs)
Willy Tarreau5790eb02017-08-28 17:18:36 +0200273{
274 struct stream *strm;
275
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200276 strm = stream_new(cs->conn->owner, &cs->obj_type);
Willy Tarreau5790eb02017-08-28 17:18:36 +0200277 if (strm == NULL)
278 return -1;
279
280 task_wakeup(strm->task, TASK_WOKEN_INIT);
281 return 0;
282}
283
Willy Tarreaub882dd82018-11-06 15:50:21 +0100284/* Callback used to wake up a stream when an input buffer is available. The
285 * stream <s>'s stream interfaces are checked for a failed buffer allocation
Willy Tarreaud0f5bbc2018-11-14 11:10:26 +0100286 * as indicated by the presence of the SI_FL_RXBLK_ROOM flag and the lack of a
Willy Tarreaub882dd82018-11-06 15:50:21 +0100287 * buffer, and and input buffer is assigned there (at most one). The function
288 * returns 1 and wakes the stream up if a buffer was taken, otherwise zero.
289 * It's designed to be called from __offer_buffer().
290 */
291int stream_buf_available(void *arg)
292{
293 struct stream *s = arg;
294
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100295 if (!s->req.buf.size && !s->req.pipe && (s->si[0].flags & SI_FL_RXBLK_BUFF) &&
Willy Tarreaub882dd82018-11-06 15:50:21 +0100296 b_alloc_margin(&s->req.buf, global.tune.reserved_bufs))
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100297 si_rx_buff_rdy(&s->si[0]);
298 else if (!s->res.buf.size && !s->res.pipe && (s->si[1].flags & SI_FL_RXBLK_BUFF) &&
Willy Tarreaub882dd82018-11-06 15:50:21 +0100299 b_alloc_margin(&s->res.buf, 0))
Willy Tarreau8be7cd72018-11-14 15:12:08 +0100300 si_rx_buff_rdy(&s->si[1]);
Willy Tarreaub882dd82018-11-06 15:50:21 +0100301 else
302 return 0;
303
304 task_wakeup(s->task, TASK_WOKEN_RES);
305 return 1;
306
307}
308
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200309/* This function is called from the session handler which detects the end of
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200310 * handshake, in order to complete initialization of a valid stream. It must be
Joseph Herlant4cc8d0d2018-11-15 09:14:14 -0800311 * called with a completely initialized session. It returns the pointer to
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200312 * the newly created stream, or NULL in case of fatal error. The client-facing
Willy Tarreau87787ac2017-08-28 16:22:54 +0200313 * end point is assigned to <origin>, which must be valid. The stream's task
314 * is configured with a nice value inherited from the listener's nice if any.
315 * The task's context is set to the new stream, and its function is set to
316 * process_stream(). Target and analysers are null.
Willy Tarreau2542b532012-08-31 16:01:23 +0200317 */
Willy Tarreau87787ac2017-08-28 16:22:54 +0200318struct stream *stream_new(struct session *sess, enum obj_type *origin)
Willy Tarreau2542b532012-08-31 16:01:23 +0200319{
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200320 struct stream *s;
Willy Tarreau87787ac2017-08-28 16:22:54 +0200321 struct task *t;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200322 struct conn_stream *cs = objt_cs(origin);
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200323 struct appctx *appctx = objt_appctx(origin);
Willy Tarreau2542b532012-08-31 16:01:23 +0200324
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100325 DBG_TRACE_ENTER(STRM_EV_STRM_NEW);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100326 if (unlikely((s = pool_alloc(pool_head_stream)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200327 goto out_fail_alloc;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200328
329 /* minimum stream initialization required for an embryonic stream is
330 * fairly low. We need very little to execute L4 ACLs, then we need a
331 * task to make the client-side connection live on its own.
332 * - flags
333 * - stick-entry tracking
334 */
335 s->flags = 0;
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200336 s->logs.logwait = sess->fe->to_log;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200337 s->logs.level = 0;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200338 tv_zero(&s->logs.tv_request);
339 s->logs.t_queue = -1;
340 s->logs.t_connect = -1;
341 s->logs.t_data = -1;
342 s->logs.t_close = 0;
343 s->logs.bytes_in = s->logs.bytes_out = 0;
Patrick Hemmerffe5e8c2018-05-11 12:52:31 -0400344 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
345 s->logs.srv_queue_pos = 0; /* we will get this number soon */
Baptiste Assmann333939c2019-01-21 08:34:50 +0100346 s->obj_type = OBJ_TYPE_STREAM;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200347
Christopher Faulet15e525f2020-09-30 14:03:54 +0200348 s->logs.accept_date = sess->accept_date;
349 s->logs.tv_accept = sess->tv_accept;
350 s->logs.t_handshake = sess->t_handshake;
Christopher Faulet7a6c5132020-09-30 13:49:56 +0200351 s->logs.t_idle = sess->t_idle;
Christopher Fauletb3484d62018-11-29 15:19:05 +0100352
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200353 /* default logging function */
354 s->do_log = strm_log;
355
356 /* default error reporting function, may be changed by analysers */
357 s->srv_error = default_srv_error;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200358
359 /* Initialise the current rule list pointer to NULL. We are sure that
360 * any rulelist match the NULL pointer.
361 */
362 s->current_rule_list = NULL;
Remi Gacogne7fb9de22015-07-22 17:10:58 +0200363 s->current_rule = NULL;
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200364 s->rules_exp = TICK_ETERNITY;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200365
Willy Tarreaua68f7622015-09-21 17:48:24 +0200366 /* Copy SC counters for the stream. We don't touch refcounts because
367 * any reference we have is inherited from the session. Since the stream
368 * doesn't exist without the session, the session's existence guarantees
369 * we don't lose the entry. During the store operation, the stream won't
370 * touch these ones.
Thierry FOURNIER827752e2015-08-18 11:34:18 +0200371 */
Thierry FOURNIERc8fdb982015-08-16 12:03:39 +0200372 memcpy(s->stkctr, sess->stkctr, sizeof(s->stkctr));
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200373
374 s->sess = sess;
375 s->si[0].flags = SI_FL_NONE;
376 s->si[1].flags = SI_FL_ISBACK;
377
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100378 s->uniq_id = _HA_ATOMIC_XADD(&global.req_count, 1);
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200379
Willy Tarreau87b09662015-04-03 00:22:06 +0200380 /* OK, we're keeping the stream, so let's properly initialize the stream */
Willy Tarreau2542b532012-08-31 16:01:23 +0200381 LIST_INIT(&s->back_refs);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100382
Willy Tarreau21046592020-02-26 10:39:36 +0100383 MT_LIST_INIT(&s->buffer_wait.list);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100384 s->buffer_wait.target = s;
Willy Tarreaub882dd82018-11-06 15:50:21 +0100385 s->buffer_wait.wakeup_cb = stream_buf_available;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200386
Willy Tarreau2e9c1d22019-04-24 08:28:31 +0200387 s->call_rate.curr_sec = s->call_rate.curr_ctr = s->call_rate.prev_ctr = 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +0200388 s->pcli_next_pid = 0;
William Lallemandebf61802018-12-11 16:10:57 +0100389 s->pcli_flags = 0;
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100390 s->unique_id = IST_NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200391
Emeric Brunc60def82017-09-27 14:59:38 +0200392 if ((t = task_new(tid_bit)) == NULL)
Willy Tarreau87787ac2017-08-28 16:22:54 +0200393 goto out_fail_alloc;
394
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200395 s->task = t;
Christopher Faulet9d810ca2016-12-08 22:33:52 +0100396 s->pending_events = 0;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200397 t->process = process_stream;
Willy Tarreau2542b532012-08-31 16:01:23 +0200398 t->context = s;
399 t->expire = TICK_ETERNITY;
Willy Tarreau87787ac2017-08-28 16:22:54 +0200400 if (sess->listener)
401 t->nice = sess->listener->nice;
Willy Tarreau2542b532012-08-31 16:01:23 +0200402
Willy Tarreau87b09662015-04-03 00:22:06 +0200403 /* Note: initially, the stream's backend points to the frontend.
Willy Tarreau2542b532012-08-31 16:01:23 +0200404 * This changes later when switching rules are executed or
405 * when the default backend is assigned.
406 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200407 s->be = sess->fe;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200408 s->req.buf = BUF_NULL;
409 s->res.buf = BUF_NULL;
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200410 s->req_cap = NULL;
411 s->res_cap = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200412
Willy Tarreauebcd4842015-06-19 11:59:02 +0200413 /* Initialise all the variables contexts even if not used.
414 * This permits to prune these contexts without errors.
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200415 */
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200416 vars_init(&s->vars_txn, SCOPE_TXN);
417 vars_init(&s->vars_reqres, SCOPE_REQ);
418
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200419 /* this part should be common with other protocols */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200420 if (si_reset(&s->si[0]) < 0)
421 goto out_fail_alloc;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200422 si_set_state(&s->si[0], SI_ST_EST);
Hongbo Longe39683c2017-03-10 18:41:51 +0100423 s->si[0].hcto = sess->fe->timeout.clientfin;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200424
Christopher Faulet0e160ff2019-04-03 10:01:07 +0200425 if (cs && cs->conn->mux) {
426 if (cs->conn->mux->flags & MX_FL_CLEAN_ABRT)
427 s->si[0].flags |= SI_FL_CLEAN_ABRT;
428 if (cs->conn->mux->flags & MX_FL_HTX)
429 s->flags |= SF_HTX;
430 }
Christopher Faulet3494c632019-07-15 14:58:26 +0200431 /* Set SF_HTX flag for HTTP frontends. */
432 if (sess->fe->mode == PR_MODE_HTTP)
Christopher Faulet0e160ff2019-04-03 10:01:07 +0200433 s->flags |= SF_HTX;
Willy Tarreau984fca92017-12-20 16:31:43 +0100434
Willy Tarreau1f52bb22015-04-04 14:28:46 +0200435 /* attach the incoming connection to the stream interface now. */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200436 if (cs)
437 si_attach_cs(&s->si[0], cs);
Willy Tarreau470280e2015-04-05 01:33:13 +0200438 else if (appctx)
439 si_attach_appctx(&s->si[0], appctx);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200440
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200441 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200442 s->si[0].flags |= SI_FL_INDEP_STR;
443
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200444 /* pre-initialize the other side's stream interface to an INIT state. The
445 * callbacks will be initialized before attempting to connect.
446 */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200447 if (si_reset(&s->si[1]) < 0)
448 goto out_fail_alloc_si1;
Hongbo Longe39683c2017-03-10 18:41:51 +0100449 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200450
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200451 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200452 s->si[1].flags |= SI_FL_INDEP_STR;
453
Willy Tarreau87b09662015-04-03 00:22:06 +0200454 stream_init_srv_conn(s);
Willy Tarreau9b82d942016-12-05 00:26:31 +0100455 s->target = sess->listener ? sess->listener->default_target : NULL;
Willy Tarreau90420602019-07-18 15:09:57 +0200456 s->target_addr = NULL;
Willy Tarreau9b82d942016-12-05 00:26:31 +0100457
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200458 s->pend_pos = NULL;
Patrick Hemmer268a7072018-05-11 12:52:31 -0400459 s->priority_class = 0;
460 s->priority_offset = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200461
462 /* init store persistence */
463 s->store_count = 0;
464
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100465 channel_init(&s->req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100466 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau9b82d942016-12-05 00:26:31 +0100467 s->req.analysers = sess->listener ? sess->listener->analysers : 0;
Willy Tarreaue223e3b2017-11-18 15:39:10 +0100468
469 if (!sess->fe->fe_req_ana) {
470 channel_auto_connect(&s->req); /* don't wait to establish connection */
471 channel_auto_close(&s->req); /* let the producer forward close requests */
472 }
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200473
474 s->req.rto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100475 s->req.wto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100476 s->req.rex = TICK_ETERNITY;
477 s->req.wex = TICK_ETERNITY;
478 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200479
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100480 channel_init(&s->res);
Willy Tarreauef573c02014-11-28 14:17:09 +0100481 s->res.flags |= CF_ISRESP;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100482 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200483
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200484 if (sess->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100485 s->req.flags |= CF_NEVER_WAIT;
486 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200487 }
488
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200489 s->res.wto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100490 s->res.rto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100491 s->res.rex = TICK_ETERNITY;
492 s->res.wex = TICK_ETERNITY;
493 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200494
Willy Tarreaueee5b512015-04-03 23:46:31 +0200495 s->txn = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100496 s->hlua = NULL;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100497
Frédéric Lécaillebed883a2019-04-23 17:26:33 +0200498 s->dns_ctx.dns_requester = NULL;
499 s->dns_ctx.hostname_dn = NULL;
500 s->dns_ctx.hostname_dn_len = 0;
501 s->dns_ctx.parent = NULL;
502
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100503 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200504 LIST_ADDQ(&streams, &s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100505 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200506
Christopher Faulet92d36382015-11-05 13:35:03 +0100507 if (flt_stream_init(s) < 0 || flt_stream_start(s) < 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200508 goto out_fail_accept;
509
Olivier Houcharda254a372019-04-05 15:30:12 +0200510 s->si[1].l7_buffer = BUF_NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200511 /* finish initialization of the accepted file descriptor */
Olivier Houchard53216e72018-10-10 15:46:36 +0200512 if (appctx)
Willy Tarreau0cd3bd62018-11-06 18:46:37 +0100513 si_want_get(&s->si[0]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200514
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200515 if (sess->fe->accept && sess->fe->accept(s) < 0)
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200516 goto out_fail_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200517
518 /* it is important not to call the wakeup function directly but to
519 * pass through task_wakeup(), because this one knows how to apply
Emeric Brun5f77fef2017-05-29 15:26:51 +0200520 * priorities to tasks. Using multi thread we must be sure that
521 * stream is fully initialized before calling task_wakeup. So
522 * the caller must handle the task_wakeup
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200523 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100524 DBG_TRACE_LEAVE(STRM_EV_STRM_NEW, s);
Willy Tarreau02d86382015-04-05 12:00:52 +0200525 return s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200526
527 /* Error unrolling */
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200528 out_fail_accept:
Christopher Faulet92d36382015-11-05 13:35:03 +0100529 flt_stream_release(s, 0);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200530 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200531 tasklet_free(s->si[1].wait_event.tasklet);
Willy Tarreaue5f229e2018-10-15 11:08:55 +0200532 LIST_DEL(&s->list);
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200533out_fail_alloc_si1:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200534 tasklet_free(s->si[0].wait_event.tasklet);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200535 out_fail_alloc:
Willy Tarreaubafbe012017-11-24 17:34:44 +0100536 pool_free(pool_head_stream, s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100537 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_NEW|STRM_EV_STRM_ERR);
Willy Tarreau02d86382015-04-05 12:00:52 +0200538 return NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200539}
540
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200542 * frees the context associated to a stream. It must have been removed first.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200544static void stream_free(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200546 struct session *sess = strm_sess(s);
547 struct proxy *fe = sess->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100548 struct bref *bref, *back;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200549 struct conn_stream *cli_cs = objt_cs(s->si[0].end);
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100550 int must_free_sess;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200551 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100552
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100553 DBG_TRACE_POINT(STRM_EV_STRM_FREE, s);
554
Willy Tarreau0ad46fa2019-05-17 14:20:05 +0200555 /* detach the stream from its own task before even releasing it so
556 * that walking over a task list never exhibits a dying stream.
557 */
558 s->task->context = NULL;
559 __ha_barrier_store();
560
Willy Tarreaud0ad4a82018-07-25 11:13:53 +0200561 pendconn_free(s);
Willy Tarreau922a8062008-12-04 09:33:58 +0100562
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100563 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200564 if (s->flags & SF_CURR_SESS) {
565 s->flags &= ~SF_CURR_SESS;
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100566 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
Willy Tarreau1e62de62008-11-11 20:20:02 +0100567 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100568 if (may_dequeue_tasks(objt_server(s->target), s->be))
569 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100570 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100571
Willy Tarreau7c669d72008-06-20 15:04:11 +0200572 if (unlikely(s->srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200573 /* the stream still has a reserved slot on a server, but
Willy Tarreau7c669d72008-06-20 15:04:11 +0200574 * it should normally be only the same as the one above,
575 * so this should not happen in fact.
576 */
577 sess_change_server(s, NULL);
578 }
579
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100580 if (s->req.pipe)
581 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100582
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100583 if (s->res.pipe)
584 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100585
Willy Tarreaubf883e02014-11-25 21:10:35 +0100586 /* We may still be present in the buffer wait queue */
Willy Tarreau21046592020-02-26 10:39:36 +0100587 if (MT_LIST_ADDED(&s->buffer_wait.list))
588 MT_LIST_DEL(&s->buffer_wait.list);
589
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200590 if (s->req.buf.size || s->res.buf.size) {
Willy Tarreaue0d0b402019-08-08 08:06:27 +0200591 b_free(&s->req.buf);
592 b_free(&s->res.buf);
Olivier Houchard673867c2018-05-25 16:58:52 +0200593 offer_buffers(NULL, tasks_run_queue);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100594 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200595
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100596 pool_free(pool_head_uniqueid, s->unique_id.ptr);
597 s->unique_id = IST_NULL;
Olivier Houchard32211a12019-02-01 18:10:46 +0100598
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100599 hlua_ctx_destroy(s->hlua);
600 s->hlua = NULL;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200601 if (s->txn)
602 http_end_txn(s);
Willy Tarreau46023632010-01-07 22:51:47 +0100603
Willy Tarreau1e954912012-10-12 17:50:05 +0200604 /* ensure the client-side transport layer is destroyed */
Willy Tarreau32560732017-10-08 11:33:44 +0200605 if (cli_cs)
606 cs_close(cli_cs);
Willy Tarreau1e954912012-10-12 17:50:05 +0200607
Willy Tarreaua4cda672010-06-06 18:28:49 +0200608 for (i = 0; i < s->store_count; i++) {
609 if (!s->store[i].ts)
610 continue;
611 stksess_free(s->store[i].table, s->store[i].ts);
612 s->store[i].ts = NULL;
613 }
614
Willy Tarreaueee5b512015-04-03 23:46:31 +0200615 if (s->txn) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100616 pool_free(pool_head_http_txn, s->txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +0200617 s->txn = NULL;
618 }
619
Baptiste Assmann333939c2019-01-21 08:34:50 +0100620 if (s->dns_ctx.dns_requester) {
Christopher Faulet5098a082020-07-22 11:46:32 +0200621 __decl_thread(struct dns_resolvers *resolvers = s->dns_ctx.parent->arg.dns.resolvers);
622
623 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann333939c2019-01-21 08:34:50 +0100624 free(s->dns_ctx.hostname_dn); s->dns_ctx.hostname_dn = NULL;
625 s->dns_ctx.hostname_dn_len = 0;
626 dns_unlink_resolution(s->dns_ctx.dns_requester);
Christopher Faulet5098a082020-07-22 11:46:32 +0200627 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann333939c2019-01-21 08:34:50 +0100628
629 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
630 s->dns_ctx.dns_requester = NULL;
631 }
632
Christopher Fauletd7c91962015-04-30 11:48:27 +0200633 flt_stream_stop(s);
Christopher Faulet92d36382015-11-05 13:35:03 +0100634 flt_stream_release(s, 0);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200635
Willy Tarreau92fb9832007-10-16 17:34:28 +0200636 if (fe) {
Christopher Faulet59399252019-11-07 14:27:52 +0100637 if (s->req_cap) {
638 struct cap_hdr *h;
639 for (h = fe->req_cap; h; h = h->next)
640 pool_free(h->pool, s->req_cap[h->index]);
641 }
642
643 if (s->res_cap) {
644 struct cap_hdr *h;
645 for (h = fe->rsp_cap; h; h = h->next)
646 pool_free(h->pool, s->res_cap[h->index]);
647 }
648
Willy Tarreaubafbe012017-11-24 17:34:44 +0100649 pool_free(fe->rsp_cap_pool, s->res_cap);
650 pool_free(fe->req_cap_pool, s->req_cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200651 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100652
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200653 /* Cleanup all variable contexts. */
Willy Tarreaucda7f3f2018-10-28 13:44:36 +0100654 if (!LIST_ISEMPTY(&s->vars_txn.head))
655 vars_prune(&s->vars_txn, s->sess, s);
656 if (!LIST_ISEMPTY(&s->vars_reqres.head))
657 vars_prune(&s->vars_reqres, s->sess, s);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200658
Willy Tarreau87b09662015-04-03 00:22:06 +0200659 stream_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200660
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100661 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100662 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100663 /* we have to unlink all watchers. We must not relink them if
Willy Tarreau87b09662015-04-03 00:22:06 +0200664 * this stream was the last one in the list.
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100665 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100666 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100667 LIST_INIT(&bref->users);
Willy Tarreau87b09662015-04-03 00:22:06 +0200668 if (s->list.n != &streams)
669 LIST_ADDQ(&LIST_ELEM(s->list.n, struct stream *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100670 bref->ref = s->list.n;
671 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100672 LIST_DEL(&s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100673 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200674
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100675 /* applets do not release session yet */
676 must_free_sess = objt_appctx(sess->origin) && sess->origin == s->si[0].end;
677
Olivier Houchard4fdec7a2018-10-11 17:09:14 +0200678
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200679 si_release_endpoint(&s->si[1]);
680 si_release_endpoint(&s->si[0]);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200681
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200682 tasklet_free(s->si[0].wait_event.tasklet);
683 tasklet_free(s->si[1].wait_event.tasklet);
Olivier Houchardd7bd3e32018-10-18 16:22:02 +0200684
Olivier Houcharda254a372019-04-05 15:30:12 +0200685 b_free(&s->si[1].l7_buffer);
Olivier Houchard25607af2018-11-23 14:50:47 +0100686 if (must_free_sess) {
687 sess->origin = NULL;
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100688 session_free(sess);
Olivier Houchard25607af2018-11-23 14:50:47 +0100689 }
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100690
Willy Tarreau90420602019-07-18 15:09:57 +0200691 sockaddr_free(&s->target_addr);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100692 pool_free(pool_head_stream, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200693
694 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreauc3914d42020-09-24 08:39:22 +0200695 if (fe && unlikely(fe->disabled)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100696 pool_flush(pool_head_buffer);
697 pool_flush(pool_head_http_txn);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100698 pool_flush(pool_head_requri);
699 pool_flush(pool_head_capture);
700 pool_flush(pool_head_stream);
701 pool_flush(pool_head_session);
702 pool_flush(pool_head_connection);
703 pool_flush(pool_head_pendconn);
704 pool_flush(fe->req_cap_pool);
705 pool_flush(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200706 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200707}
708
Willy Tarreau656859d2014-11-25 19:46:36 +0100709
Willy Tarreau87b09662015-04-03 00:22:06 +0200710/* Allocates a work buffer for stream <s>. It is meant to be called inside
711 * process_stream(). It will only allocate the side needed for the function
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200712 * to work fine, which is the response buffer so that an error message may be
713 * built and returned. Response buffers may be allocated from the reserve, this
714 * is critical to ensure that a response may always flow and will never block a
715 * server from releasing a connection. Returns 0 in case of failure, non-zero
716 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100717 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100718static int stream_alloc_work_buffer(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100719{
Willy Tarreau21046592020-02-26 10:39:36 +0100720 if (MT_LIST_ADDED(&s->buffer_wait.list))
721 MT_LIST_DEL(&s->buffer_wait.list);
Willy Tarreau656859d2014-11-25 19:46:36 +0100722
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200723 if (b_alloc_margin(&s->res.buf, 0))
Willy Tarreau656859d2014-11-25 19:46:36 +0100724 return 1;
725
Willy Tarreau86891272020-07-10 08:22:26 +0200726 MT_LIST_ADDQ(&buffer_wq, &s->buffer_wait.list);
Willy Tarreau656859d2014-11-25 19:46:36 +0100727 return 0;
728}
729
730/* releases unused buffers after processing. Typically used at the end of the
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100731 * update() functions. It will try to wake up as many tasks/applets as the
732 * number of buffers that it releases. In practice, most often streams are
733 * blocked on a single buffer, so it makes sense to try to wake two up when two
734 * buffers are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100735 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200736void stream_release_buffers(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100737{
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100738 int offer = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100739
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200740 if (c_size(&s->req) && c_empty(&s->req)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100741 offer = 1;
742 b_free(&s->req.buf);
743 }
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200744 if (c_size(&s->res) && c_empty(&s->res)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100745 offer = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100746 b_free(&s->res.buf);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100747 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100748
Willy Tarreaubf883e02014-11-25 21:10:35 +0100749 /* if we're certain to have at least 1 buffer available, and there is
750 * someone waiting, we can wake up a waiter and offer them.
751 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100752 if (offer)
Olivier Houchard673867c2018-05-25 16:58:52 +0200753 offer_buffers(s, tasks_run_queue);
Willy Tarreau656859d2014-11-25 19:46:36 +0100754}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200755
Willy Tarreau87b09662015-04-03 00:22:06 +0200756void stream_process_counters(struct stream *s)
Willy Tarreau30e71012007-11-26 20:15:35 +0100757{
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200758 struct session *sess = s->sess;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100759 unsigned long long bytes;
Emeric Brun57056f02015-06-15 18:29:57 +0200760 void *ptr1,*ptr2;
Emeric Brun819fc6f2017-06-13 19:37:32 +0200761 struct stksess *ts;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100762 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100763
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100764 bytes = s->req.total - s->logs.bytes_in;
765 s->logs.bytes_in = s->req.total;
766 if (bytes) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100767 _HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_in, bytes);
768 _HA_ATOMIC_ADD(&s->be->be_counters.bytes_in, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100769
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100770 if (objt_server(s->target))
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100771 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_in, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200772
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200773 if (sess->listener && sess->listener->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100774 _HA_ATOMIC_ADD(&sess->listener->counters->bytes_in, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200775
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100776 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200777 struct stkctr *stkctr = &s->stkctr[i];
778
Emeric Brun819fc6f2017-06-13 19:37:32 +0200779 ts = stkctr_entry(stkctr);
780 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200781 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200782 ts = stkctr_entry(stkctr);
783 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200784 continue;
785 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200786
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100787 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200788 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200789 if (ptr1)
790 stktable_data_cast(ptr1, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200791
Emeric Brun819fc6f2017-06-13 19:37:32 +0200792 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200793 if (ptr2)
794 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_in_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200795 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100796 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200797
798 /* If data was modified, we need to touch to re-schedule sync */
799 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200800 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100801 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100802 }
803
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100804 bytes = s->res.total - s->logs.bytes_out;
805 s->logs.bytes_out = s->res.total;
806 if (bytes) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100807 _HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_out, bytes);
808 _HA_ATOMIC_ADD(&s->be->be_counters.bytes_out, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100809
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100810 if (objt_server(s->target))
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100811 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_out, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200812
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200813 if (sess->listener && sess->listener->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100814 _HA_ATOMIC_ADD(&sess->listener->counters->bytes_out, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200815
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100816 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200817 struct stkctr *stkctr = &s->stkctr[i];
818
Emeric Brun819fc6f2017-06-13 19:37:32 +0200819 ts = stkctr_entry(stkctr);
820 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200821 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200822 ts = stkctr_entry(stkctr);
823 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200824 continue;
825 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200826
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100827 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200828 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200829 if (ptr1)
830 stktable_data_cast(ptr1, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200831
Emeric Brun819fc6f2017-06-13 19:37:32 +0200832 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200833 if (ptr2)
834 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_out_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200835 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100836 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200837
838 /* If data was modified, we need to touch to re-schedule sync */
839 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200840 stktable_touch_local(stkctr->table, stkctr_entry(stkctr), 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100841 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100842 }
843}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200844
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100845/*
846 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200847 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200848 * 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 +0200849 * Note that it will switch the interface to SI_ST_DIS if we already have
850 * the CF_SHUTR flag, it means we were able to forward the request, and
851 * receive the response, before process_stream() had the opportunity to
852 * make the switch from SI_ST_CON to SI_ST_EST. When that happens, we want
Willy Tarreau3a9312a2020-01-09 18:43:15 +0100853 * to go through back_establish() anyway, to make sure the analysers run.
Willy Tarreaud66ed882019-06-05 18:02:04 +0200854 * Timeouts are cleared. Error are reported on the channel so that analysers
855 * can handle them.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100856 */
Willy Tarreau3a9312a2020-01-09 18:43:15 +0100857static void back_establish(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100859 struct stream_interface *si = &s->si[1];
Willy Tarreaud66ed882019-06-05 18:02:04 +0200860 struct conn_stream *srv_cs = objt_cs(si->end);
861 struct connection *conn = srv_cs ? srv_cs->conn : objt_conn(si->end);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100862 struct channel *req = &s->req;
863 struct channel *rep = &s->res;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100864
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100865 DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreaud66ed882019-06-05 18:02:04 +0200866 /* First, centralize the timers information, and clear any irrelevant
867 * timeout.
868 */
Willy Tarreau0e37f1c2013-12-31 23:06:46 +0100869 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud66ed882019-06-05 18:02:04 +0200870 si->exp = TICK_ETERNITY;
871 si->flags &= ~SI_FL_EXP;
872
873 /* errors faced after sending data need to be reported */
874 if (si->flags & SI_FL_ERR && req->flags & CF_WROTE_DATA) {
875 /* Don't add CF_WRITE_ERROR if we're here because
876 * early data were rejected by the server, or
877 * http_wait_for_response() will never be called
878 * to send a 425.
879 */
880 if (conn && conn->err_code != CO_ER_SSL_EARLY_FAILED)
881 req->flags |= CF_WRITE_ERROR;
882 rep->flags |= CF_READ_ERROR;
883 si->err_type = SI_ET_DATA_ERR;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100884 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 +0200885 }
886
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100887 if (objt_server(s->target))
888 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100889
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100890 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100891 /* if the user wants to log as soon as possible, without counting
892 * bytes from the server, then this is the right moment. */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200893 if (!LIST_ISEMPTY(&strm_fe(s)->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau66425e32018-07-25 06:55:12 +0200894 /* note: no pend_pos here, session is established */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100895 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100896 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100897 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100898 }
899 else {
Willy Tarreaud81ca042013-12-31 22:33:13 +0100900 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100901 }
902
Willy Tarreau0007d0a2018-12-11 18:01:38 +0100903 rep->analysers |= strm_fe(s)->fe_rsp_ana | s->be->be_rsp_ana;
Christopher Faulet309c6412015-12-02 09:57:32 +0100904
Willy Tarreau0007d0a2018-12-11 18:01:38 +0100905 /* Be sure to filter response headers if the backend is an HTTP proxy
906 * and if there are filters attached to the stream. */
907 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
908 rep->analysers |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +0100909
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +0100910 si_rx_endp_more(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200911 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200912 if (objt_cs(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200913 /* real connections have timeouts */
914 req->wto = s->be->timeout.server;
915 rep->rto = s->be->timeout.server;
Olivier Houchard47e9a1a2018-11-07 17:55:19 +0100916 /* The connection is now established, try to read data from the
917 * underlying layer, and subscribe to recv events. We use a
918 * delayed recv here to give a chance to the data to flow back
919 * by the time we process other tasks.
920 */
921 si_chk_rcv(si);
Willy Tarreaud04e8582010-05-31 12:31:35 +0200922 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100923 req->wex = TICK_ETERNITY;
Olivier Houchard78595262019-07-26 14:54:34 +0200924 /* If we managed to get the whole response, and we don't have anything
925 * left to send, or can't, switch to SI_ST_DIS now. */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100926 if (rep->flags & (CF_SHUTR | CF_SHUTW)) {
Olivier Houchardaacc4052019-05-21 17:43:50 +0200927 si->state = SI_ST_DIS;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100928 DBG_TRACE_STATE("response channel shutdwn for read/write", STRM_EV_STRM_PROC|STRM_EV_SI_ST|STRM_EV_STRM_ERR, s);
929 }
930
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100931 DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_SI_ST, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100932}
933
Willy Tarreau87b09662015-04-03 00:22:06 +0200934/* Set correct stream termination flags in case no analyser has done it. It
Simon Hormandec5be42011-06-08 09:19:07 +0900935 * also counts a failed request if the server state has not reached the request
936 * stage.
937 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200938static void sess_set_term_flags(struct stream *s)
Simon Hormandec5be42011-06-08 09:19:07 +0900939{
Willy Tarreaue7dff022015-04-03 01:14:29 +0200940 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +0200941 if (s->si[1].state == SI_ST_INI) {
942 /* anything before REQ in fact */
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100943 _HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.failed_req, 1);
Willy Tarreau2c1068c2015-09-23 12:21:21 +0200944 if (strm_li(s) && strm_li(s)->counters)
Olivier Houcharddc6111e2019-03-08 18:54:51 +0100945 _HA_ATOMIC_ADD(&strm_li(s)->counters->failed_req, 1);
Simon Hormandec5be42011-06-08 09:19:07 +0900946
Willy Tarreaue7dff022015-04-03 01:14:29 +0200947 s->flags |= SF_FINST_R;
Simon Hormandec5be42011-06-08 09:19:07 +0900948 }
949 else if (s->si[1].state == SI_ST_QUE)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200950 s->flags |= SF_FINST_Q;
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200951 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 +0200952 s->flags |= SF_FINST_C;
Simon Hormandec5be42011-06-08 09:19:07 +0900953 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200954 s->flags |= SF_FINST_D;
Simon Hormandec5be42011-06-08 09:19:07 +0900955 else
Willy Tarreaue7dff022015-04-03 01:14:29 +0200956 s->flags |= SF_FINST_L;
Simon Hormandec5be42011-06-08 09:19:07 +0900957 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100958}
959
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200960/* This function parses the use-service action ruleset. It executes
961 * the associated ACL and set an applet as a stream or txn final node.
962 * it returns ACT_RET_ERR if an error occurs, the proxy left in
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500963 * consistent state. It returns ACT_RET_STOP in success case because
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200964 * use-service must be a terminal action. Returns ACT_RET_YIELD
965 * if the initialisation function require more data.
966 */
967enum act_return process_use_service(struct act_rule *rule, struct proxy *px,
968 struct session *sess, struct stream *s, int flags)
969
970{
971 struct appctx *appctx;
972
973 /* Initialises the applet if it is required. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100974 if (flags & ACT_OPT_FIRST) {
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200975 /* Register applet. this function schedules the applet. */
976 s->target = &rule->applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100977 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target))))
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200978 return ACT_RET_ERR;
979
980 /* Initialise the context. */
981 appctx = si_appctx(&s->si[1]);
982 memset(&appctx->ctx, 0, sizeof(appctx->ctx));
983 appctx->rule = rule;
984 }
985 else
986 appctx = si_appctx(&s->si[1]);
987
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500988 /* Stops the applet scheduling, in case of the init function miss
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200989 * some data.
990 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +0100991 si_stop_get(&s->si[1]);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200992
993 /* Call initialisation. */
994 if (rule->applet.init)
995 switch (rule->applet.init(appctx, px, s)) {
996 case 0: return ACT_RET_ERR;
997 case 1: break;
998 default: return ACT_RET_YIELD;
999 }
1000
Christopher Faulet2571bc62019-03-01 11:44:26 +01001001 if (rule->from != ACT_F_HTTP_REQ) {
1002 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
1003 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
1004
1005 /* The flag SF_ASSIGNED prevent from server assignment. */
1006 s->flags |= SF_ASSIGNED;
1007 }
1008
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001009 /* Now we can schedule the applet. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001010 si_cant_get(&s->si[1]);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001011 appctx_wakeup(appctx);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001012 return ACT_RET_STOP;
1013}
1014
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001015/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001016 * if appropriate. The default_backend rule is also considered, then the
1017 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001018 * It returns 1 if the processing can continue on next analysers, or zero if it
1019 * either needs more data or wants to immediately abort the request.
1020 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001021static int process_switching_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001022{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001023 struct persist_rule *prst_rule;
Willy Tarreau192252e2015-04-04 01:47:55 +02001024 struct session *sess = s->sess;
1025 struct proxy *fe = sess->fe;
Willy Tarreau4de91492010-01-22 19:10:05 +01001026
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001027 req->analysers &= ~an_bit;
1028 req->analyse_exp = TICK_ETERNITY;
1029
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001030 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001031
1032 /* now check whether we have some switching rules for this request */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001033 if (!(s->flags & SF_BE_ASSIGNED)) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001034 struct switching_rule *rule;
1035
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001036 list_for_each_entry(rule, &fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001037 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001038
Willy Tarreauf51658d2014-04-23 01:21:56 +02001039 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001040 ret = acl_exec_cond(rule->cond, fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001041 ret = acl_pass(ret);
1042 if (rule->cond->pol == ACL_COND_UNLESS)
1043 ret = !ret;
1044 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001045
1046 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001047 /* If the backend name is dynamic, try to resolve the name.
1048 * If we can't resolve the name, or if any error occurs, break
1049 * the loop and fallback to the default backend.
1050 */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001051 struct proxy *backend = NULL;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001052
1053 if (rule->dynamic) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001054 struct buffer *tmp;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001055
1056 tmp = alloc_trash_chunk();
1057 if (!tmp)
1058 goto sw_failed;
1059
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001060 if (build_logline(s, tmp->area, tmp->size, &rule->be.expr))
1061 backend = proxy_be_by_name(tmp->area);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001062
1063 free_trash_chunk(tmp);
1064 tmp = NULL;
1065
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001066 if (!backend)
1067 break;
1068 }
1069 else
1070 backend = rule->be.backend;
1071
Willy Tarreau87b09662015-04-03 00:22:06 +02001072 if (!stream_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001073 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001074 break;
1075 }
1076 }
1077
1078 /* To ensure correct connection accounting on the backend, we
1079 * have to assign one if it was not set (eg: a listen). This
1080 * measure also takes care of correctly setting the default
1081 * backend if any.
1082 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001083 if (!(s->flags & SF_BE_ASSIGNED))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001084 if (!stream_set_backend(s, fe->defbe.be ? fe->defbe.be : s->be))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001085 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001086 }
1087
Willy Tarreaufb356202010-08-03 14:02:05 +02001088 /* 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 +02001089 if (fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001090 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1091 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001092 s->req.analysers &= ~AN_REQ_FLT_START_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001093 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001094
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001095 /* 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 +02001096 * persistence rule, and report that in the stream.
Willy Tarreau4de91492010-01-22 19:10:05 +01001097 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001098 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001099 int ret = 1;
1100
1101 if (prst_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001102 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 +01001103 ret = acl_pass(ret);
1104 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1105 ret = !ret;
1106 }
1107
1108 if (ret) {
1109 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001110 if (prst_rule->type == PERSIST_TYPE_FORCE) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001111 s->flags |= SF_FORCE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001112 } else {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001113 s->flags |= SF_IGNORE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001114 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001115 break;
1116 }
1117 }
1118
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001119 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001120 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001121
1122 sw_failed:
1123 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001124 channel_abort(&s->req);
1125 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001126
Willy Tarreaue7dff022015-04-03 01:14:29 +02001127 if (!(s->flags & SF_ERR_MASK))
1128 s->flags |= SF_ERR_RESOURCE;
1129 if (!(s->flags & SF_FINST_MASK))
1130 s->flags |= SF_FINST_R;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001131
Willy Tarreaueee5b512015-04-03 23:46:31 +02001132 if (s->txn)
1133 s->txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001134 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001135 s->req.analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001136 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_ANA|STRM_EV_STRM_ERR, s);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001137 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001138}
1139
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001140/* This stream analyser works on a request. It applies all use-server rules on
1141 * it then returns 1. The data must already be present in the buffer otherwise
1142 * they won't match. It always returns 1.
1143 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001144static int process_server_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001145{
1146 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001147 struct session *sess = s->sess;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001148 struct server_rule *rule;
1149
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001150 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001151
Willy Tarreaue7dff022015-04-03 01:14:29 +02001152 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001153 list_for_each_entry(rule, &px->server_rules, list) {
1154 int ret;
1155
Willy Tarreau192252e2015-04-04 01:47:55 +02001156 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001157 ret = acl_pass(ret);
1158 if (rule->cond->pol == ACL_COND_UNLESS)
1159 ret = !ret;
1160
1161 if (ret) {
Jerome Magnin824186b2020-03-29 09:37:12 +02001162 struct server *srv;
1163
1164 if (rule->dynamic) {
1165 struct buffer *tmp = get_trash_chunk();
1166
1167 if (!build_logline(s, tmp->area, tmp->size, &rule->expr))
1168 break;
1169
1170 srv = findserver(s->be, tmp->area);
1171 if (!srv)
1172 break;
1173 }
1174 else
1175 srv = rule->srv.ptr;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001176
Emeric Brun52a91d32017-08-31 14:41:55 +02001177 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001178 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001179 (s->flags & SF_FORCE_PRST)) {
1180 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001181 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001182 break;
1183 }
1184 /* if the server is not UP, let's go on with next rules
1185 * just in case another one is suited.
1186 */
1187 }
1188 }
1189 }
1190
1191 req->analysers &= ~an_bit;
1192 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001193 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001194 return 1;
1195}
1196
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001197static inline void sticking_rule_find_target(struct stream *s,
1198 struct stktable *t, struct stksess *ts)
1199{
1200 struct proxy *px = s->be;
1201 struct eb32_node *node;
1202 struct dict_entry *de;
1203 void *ptr;
1204 struct server *srv;
1205
1206 /* Look for the server name previously stored in <t> stick-table */
1207 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
1208 ptr = __stktable_data_ptr(t, ts, STKTABLE_DT_SERVER_NAME);
1209 de = stktable_data_cast(ptr, server_name);
1210 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
1211
1212 if (de) {
1213 struct ebpt_node *name;
1214
1215 name = ebis_lookup(&px->conf.used_server_name, de->value.key);
1216 if (name) {
1217 srv = container_of(name, struct server, conf.name);
1218 goto found;
1219 }
1220 }
1221
1222 /* Look for the server ID */
1223 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
1224 ptr = __stktable_data_ptr(t, ts, STKTABLE_DT_SERVER_ID);
1225 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
1226 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
1227
1228 if (!node)
1229 return;
1230
1231 srv = container_of(node, struct server, conf.id);
1232 found:
1233 if ((srv->cur_state != SRV_ST_STOPPED) ||
1234 (px->options & PR_O_PERSIST) || (s->flags & SF_FORCE_PRST)) {
1235 s->flags |= SF_DIRECT | SF_ASSIGNED;
1236 s->target = &srv->obj_type;
1237 }
1238}
1239
Emeric Brun1d33b292010-01-04 15:47:17 +01001240/* This stream analyser works on a request. It applies all sticking rules on
1241 * it then returns 1. The data must already be present in the buffer otherwise
1242 * they won't match. It always returns 1.
1243 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001244static int process_sticking_rules(struct stream *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001245{
1246 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001247 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001248 struct sticking_rule *rule;
1249
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001250 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001251
1252 list_for_each_entry(rule, &px->sticking_rules, list) {
1253 int ret = 1 ;
1254 int i;
1255
Willy Tarreau9667a802013-12-09 12:52:13 +01001256 /* Only the first stick store-request of each table is applied
1257 * and other ones are ignored. The purpose is to allow complex
1258 * configurations which look for multiple entries by decreasing
1259 * order of precision and to stop at the first which matches.
1260 * An example could be a store of the IP address from an HTTP
1261 * header first, then from the source if not found.
1262 */
Jerome Magninbee00ad2020-01-16 17:37:21 +01001263 if (rule->flags & STK_IS_STORE) {
1264 for (i = 0; i < s->store_count; i++) {
1265 if (rule->table.t == s->store[i].table)
1266 break;
1267 }
Emeric Brun1d33b292010-01-04 15:47:17 +01001268
Jerome Magninbee00ad2020-01-16 17:37:21 +01001269 if (i != s->store_count)
1270 continue;
1271 }
Emeric Brun1d33b292010-01-04 15:47:17 +01001272
1273 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001274 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001275 ret = acl_pass(ret);
1276 if (rule->cond->pol == ACL_COND_UNLESS)
1277 ret = !ret;
1278 }
1279
1280 if (ret) {
1281 struct stktable_key *key;
1282
Willy Tarreau192252e2015-04-04 01:47:55 +02001283 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 +01001284 if (!key)
1285 continue;
1286
1287 if (rule->flags & STK_IS_MATCH) {
1288 struct stksess *ts;
1289
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001290 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001291 if (!(s->flags & SF_ASSIGNED))
1292 sticking_rule_find_target(s, rule->table.t, ts);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001293 stktable_touch_local(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001294 }
1295 }
1296 if (rule->flags & STK_IS_STORE) {
1297 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1298 struct stksess *ts;
1299
1300 ts = stksess_new(rule->table.t, key);
1301 if (ts) {
1302 s->store[s->store_count].table = rule->table.t;
1303 s->store[s->store_count++].ts = ts;
1304 }
1305 }
1306 }
1307 }
1308 }
1309
1310 req->analysers &= ~an_bit;
1311 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001312 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001313 return 1;
1314}
1315
1316/* This stream analyser works on a response. It applies all store rules on it
1317 * then returns 1. The data must already be present in the buffer otherwise
1318 * they won't match. It always returns 1.
1319 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001320static int process_store_rules(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001321{
1322 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001323 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001324 struct sticking_rule *rule;
1325 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001326 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001327
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001328 DBG_TRACE_ENTER(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001329
1330 list_for_each_entry(rule, &px->storersp_rules, list) {
1331 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001332
Willy Tarreau9667a802013-12-09 12:52:13 +01001333 /* Only the first stick store-response of each table is applied
1334 * and other ones are ignored. The purpose is to allow complex
1335 * configurations which look for multiple entries by decreasing
1336 * order of precision and to stop at the first which matches.
1337 * An example could be a store of a set-cookie value, with a
1338 * fallback to a parameter found in a 302 redirect.
1339 *
1340 * The store-response rules are not allowed to override the
1341 * store-request rules for the same table, but they may coexist.
1342 * Thus we can have up to one store-request entry and one store-
1343 * response entry for the same table at any time.
1344 */
1345 for (i = nbreq; i < s->store_count; i++) {
1346 if (rule->table.t == s->store[i].table)
1347 break;
1348 }
1349
1350 /* skip existing entries for this table */
1351 if (i < s->store_count)
1352 continue;
1353
Emeric Brun1d33b292010-01-04 15:47:17 +01001354 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001355 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001356 ret = acl_pass(ret);
1357 if (rule->cond->pol == ACL_COND_UNLESS)
1358 ret = !ret;
1359 }
1360
1361 if (ret) {
1362 struct stktable_key *key;
1363
Willy Tarreau192252e2015-04-04 01:47:55 +02001364 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 +01001365 if (!key)
1366 continue;
1367
Willy Tarreau37e340c2013-12-06 23:05:21 +01001368 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001369 struct stksess *ts;
1370
1371 ts = stksess_new(rule->table.t, key);
1372 if (ts) {
1373 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001374 s->store[s->store_count++].ts = ts;
1375 }
1376 }
1377 }
1378 }
1379
1380 /* process store request and store response */
1381 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001382 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001383 void *ptr;
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001384 struct dict_entry *de;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001385
Willy Tarreauc93cd162014-05-13 15:54:22 +02001386 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001387 stksess_free(s->store[i].table, s->store[i].ts);
1388 s->store[i].ts = NULL;
1389 continue;
1390 }
1391
Emeric Brun819fc6f2017-06-13 19:37:32 +02001392 ts = stktable_set_entry(s->store[i].table, s->store[i].ts);
1393 if (ts != s->store[i].ts) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001394 /* the entry already existed, we can free ours */
Emeric Brun1d33b292010-01-04 15:47:17 +01001395 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001396 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001397 s->store[i].ts = NULL;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001398
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001399 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreaub8d42d02018-09-20 11:11:15 +02001400 ptr = __stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
1401 stktable_data_cast(ptr, server_id) = __objt_server(s->target)->puid;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001402 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Frédéric Lécaille03cdf552019-05-20 10:08:27 +02001403
1404 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1405 de = dict_insert(&server_name_dict, __objt_server(s->target)->id);
1406 if (de) {
1407 ptr = __stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_NAME);
1408 stktable_data_cast(ptr, server_name) = de;
1409 }
1410 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1411
Emeric Brun819fc6f2017-06-13 19:37:32 +02001412 stktable_touch_local(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001413 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001414 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001415
1416 rep->analysers &= ~an_bit;
1417 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001418
1419 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
Emeric Brun1d33b292010-01-04 15:47:17 +01001420 return 1;
1421}
1422
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001423/* This macro is very specific to the function below. See the comments in
Willy Tarreau87b09662015-04-03 00:22:06 +02001424 * process_stream() below to understand the logic and the tests.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001425 */
1426#define UPDATE_ANALYSERS(real, list, back, flag) { \
1427 list = (((list) & ~(flag)) | ~(back)) & (real); \
1428 back = real; \
1429 if (!(list)) \
1430 break; \
1431 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1432 continue; \
1433}
1434
Christopher Fauleta9215b72016-05-11 17:06:28 +02001435/* These 2 following macros call an analayzer for the specified channel if the
1436 * right flag is set. The first one is used for "filterable" analyzers. If a
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001437 * stream has some registered filters, pre and post analyaze callbacks are
Christopher Faulet0184ea72017-01-05 14:06:34 +01001438 * called. The second are used for other analyzers (AN_REQ/RES_FLT_* and
Christopher Fauleta9215b72016-05-11 17:06:28 +02001439 * AN_REQ/RES_HTTP_XFER_BODY) */
1440#define FLT_ANALYZE(strm, chn, fun, list, back, flag, ...) \
1441 { \
1442 if ((list) & (flag)) { \
1443 if (HAS_FILTERS(strm)) { \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001444 if (!flt_pre_analyze((strm), (chn), (flag))) \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001445 break; \
1446 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1447 break; \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001448 if (!flt_post_analyze((strm), (chn), (flag))) \
1449 break; \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001450 } \
1451 else { \
1452 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1453 break; \
1454 } \
1455 UPDATE_ANALYSERS((chn)->analysers, (list), \
1456 (back), (flag)); \
1457 } \
1458 }
1459
1460#define ANALYZE(strm, chn, fun, list, back, flag, ...) \
1461 { \
1462 if ((list) & (flag)) { \
1463 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1464 break; \
1465 UPDATE_ANALYSERS((chn)->analysers, (list), \
1466 (back), (flag)); \
1467 } \
1468 }
1469
Willy Tarreau87b09662015-04-03 00:22:06 +02001470/* Processes the client, server, request and response jobs of a stream task,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001471 * then puts it back to the wait queue in a clean state, or cleans up its
1472 * resources if it must be deleted. Returns in <next> the date the task wants
1473 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1474 * nothing too many times, the request and response buffers flags are monitored
1475 * and each function is called only if at least another function has changed at
1476 * least one flag it is interested in.
1477 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001478struct task *process_stream(struct task *t, void *context, unsigned short state)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001479{
Willy Tarreau827aee92011-03-10 16:55:02 +01001480 struct server *srv;
Olivier Houchard9f6af332018-05-25 14:04:04 +02001481 struct stream *s = context;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001482 struct session *sess = s->sess;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001483 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001484 unsigned int rq_prod_last, rq_cons_last;
1485 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001486 unsigned int req_ana_back;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001487 struct channel *req, *res;
1488 struct stream_interface *si_f, *si_b;
Willy Tarreau3d07a162019-04-25 19:15:20 +02001489 unsigned int rate;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001490
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001491 DBG_TRACE_ENTER(STRM_EV_STRM_PROC, s);
1492
Willy Tarreau7af4fa92020-06-17 20:49:49 +02001493 activity[tid].stream_calls++;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001494
Willy Tarreau8f128b42014-11-28 15:07:47 +01001495 req = &s->req;
1496 res = &s->res;
1497
1498 si_f = &s->si[0];
1499 si_b = &s->si[1];
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001500
Willy Tarreau0f8d3ab2018-10-25 10:42:39 +02001501 /* First, attempt to receive pending data from I/O layers */
Willy Tarreauade64782018-11-17 19:51:07 +01001502 si_sync_recv(si_f);
1503 si_sync_recv(si_b);
Willy Tarreau0f8d3ab2018-10-25 10:42:39 +02001504
Willy Tarreau3d07a162019-04-25 19:15:20 +02001505 rate = update_freq_ctr(&s->call_rate, 1);
1506 if (rate >= 100000 && s->call_rate.prev_ctr) { // make sure to wait at least a full second
1507 stream_dump_and_crash(&s->obj_type, read_freq_ctr(&s->call_rate));
1508 }
Olivier Houchardc2aa7112018-09-11 18:27:21 +02001509
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001510 /* this data may be no longer valid, clear it */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001511 if (s->txn)
1512 memset(&s->txn->auth, 0, sizeof(s->txn->auth));
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001513
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02001514 /* This flag must explicitly be set every time */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001515 req->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
1516 res->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001517
1518 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001519 rqf_last = req->flags & ~CF_MASK_ANALYSER;
1520 rpf_last = res->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001521
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001522 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001523 si_f->flags |= SI_FL_DONT_WAKE;
1524 si_b->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001525
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001526 /* update pending events */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001527 s->pending_events |= (state & TASK_WOKEN_ANY);
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001528
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001529 /* 1a: Check for low level timeouts if needed. We just set a flag on
1530 * stream interfaces when their timeouts have expired.
1531 */
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001532 if (unlikely(s->pending_events & TASK_WOKEN_TIMER)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001533 si_check_timeouts(si_f);
1534 si_check_timeouts(si_b);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001535
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001536 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001537 * for future reads or writes. Note: this will also concern upper layers
1538 * but we do not touch any other flag. We must be careful and correctly
1539 * detect state changes when calling them.
1540 */
1541
Willy Tarreau8f128b42014-11-28 15:07:47 +01001542 channel_check_timeouts(req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001543
Willy Tarreau8f128b42014-11-28 15:07:47 +01001544 if (unlikely((req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1545 si_b->flags |= SI_FL_NOLINGER;
1546 si_shutw(si_b);
Willy Tarreau14641402009-12-29 14:49:56 +01001547 }
1548
Willy Tarreau8f128b42014-11-28 15:07:47 +01001549 if (unlikely((req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1550 if (si_f->flags & SI_FL_NOHALF)
1551 si_f->flags |= SI_FL_NOLINGER;
1552 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001553 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001554
Willy Tarreau8f128b42014-11-28 15:07:47 +01001555 channel_check_timeouts(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001556
Willy Tarreau8f128b42014-11-28 15:07:47 +01001557 if (unlikely((res->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1558 si_f->flags |= SI_FL_NOLINGER;
1559 si_shutw(si_f);
Willy Tarreau14641402009-12-29 14:49:56 +01001560 }
1561
Willy Tarreau8f128b42014-11-28 15:07:47 +01001562 if (unlikely((res->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1563 if (si_b->flags & SI_FL_NOHALF)
1564 si_b->flags |= SI_FL_NOLINGER;
1565 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001566 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001567
Christopher Fauleta00d8172016-11-10 14:58:05 +01001568 if (HAS_FILTERS(s))
1569 flt_stream_check_timeouts(s);
1570
Willy Tarreau798f4322012-11-08 14:49:17 +01001571 /* Once in a while we're woken up because the task expires. But
1572 * this does not necessarily mean that a timeout has been reached.
Willy Tarreau87b09662015-04-03 00:22:06 +02001573 * So let's not run a whole stream processing if only an expiration
Willy Tarreau798f4322012-11-08 14:49:17 +01001574 * timeout needs to be refreshed.
1575 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001576 if (!((req->flags | res->flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01001577 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
Willy Tarreauede3d882018-10-24 17:17:56 +02001578 CF_WRITE_ACTIVITY|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001579 !((si_f->flags | si_b->flags) & (SI_FL_EXP|SI_FL_ERR)) &&
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001580 ((s->pending_events & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER)) {
Willy Tarreau5fb04712016-05-04 10:18:37 +02001581 si_f->flags &= ~SI_FL_DONT_WAKE;
1582 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau798f4322012-11-08 14:49:17 +01001583 goto update_exp_and_leave;
Willy Tarreau5fb04712016-05-04 10:18:37 +02001584 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001585 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001586
Willy Tarreau829bd472019-06-06 09:17:23 +02001587 resync_stream_interface:
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001588 /* below we may emit error messages so we have to ensure that we have
1589 * our buffers properly allocated.
1590 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001591 if (!stream_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001592 /* No buffer available, we've been subscribed to the list of
1593 * buffer waiters, let's wait for our turn.
1594 */
Willy Tarreau5fb04712016-05-04 10:18:37 +02001595 si_f->flags &= ~SI_FL_DONT_WAKE;
1596 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001597 goto update_exp_and_leave;
1598 }
1599
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001600 /* 1b: check for low-level errors reported at the stream interface.
1601 * First we check if it's a retryable error (in which case we don't
1602 * want to tell the buffer). Otherwise we report the error one level
1603 * upper by setting flags into the buffers. Note that the side towards
1604 * the client cannot have connect (hence retryable) errors. Also, the
1605 * connection setup code must be able to deal with any type of abort.
1606 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001607 srv = objt_server(s->target);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001608 if (unlikely(si_f->flags & SI_FL_ERR)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001609 if (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001610 si_shutr(si_f);
1611 si_shutw(si_f);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001612 si_report_error(si_f);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001613 if (!(req->analysers) && !(res->analysers)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001614 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1615 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001616 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001617 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001618 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001619 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001620 if (!(s->flags & SF_ERR_MASK))
1621 s->flags |= SF_ERR_CLICL;
1622 if (!(s->flags & SF_FINST_MASK))
1623 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001624 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001625 }
1626 }
1627
Willy Tarreau8f128b42014-11-28 15:07:47 +01001628 if (unlikely(si_b->flags & SI_FL_ERR)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001629 if (si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001630 si_shutr(si_b);
1631 si_shutw(si_b);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001632 si_report_error(si_b);
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001633 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001634 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001635 _HA_ATOMIC_ADD(&srv->counters.failed_resp, 1);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001636 if (!(req->analysers) && !(res->analysers)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001637 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1638 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001639 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001640 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001641 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001642 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001643 if (!(s->flags & SF_ERR_MASK))
1644 s->flags |= SF_ERR_SRVCL;
1645 if (!(s->flags & SF_FINST_MASK))
1646 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001647 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001648 }
1649 /* note: maybe we should process connection errors here ? */
1650 }
1651
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001652 if (si_state_in(si_b->state, SI_SB_CON|SI_SB_RDY)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001653 /* we were trying to establish a connection on the server side,
1654 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1655 */
Willy Tarreaud66ed882019-06-05 18:02:04 +02001656 if (si_b->state == SI_ST_RDY)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001657 back_handle_st_rdy(s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001658 else if (si_b->state == SI_ST_CON)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001659 back_handle_st_con(s);
Willy Tarreaud66ed882019-06-05 18:02:04 +02001660
1661 if (si_b->state == SI_ST_CER)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001662 back_handle_st_cer(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001663 else if (si_b->state == SI_ST_EST)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01001664 back_establish(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001665
1666 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1667 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1668 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1669 */
1670 }
1671
Willy Tarreau8f128b42014-11-28 15:07:47 +01001672 rq_prod_last = si_f->state;
1673 rq_cons_last = si_b->state;
1674 rp_cons_last = si_f->state;
1675 rp_prod_last = si_b->state;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001676
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001677 /* Check for connection closure */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001678 DBG_TRACE_POINT(STRM_EV_STRM_PROC, s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001679
1680 /* nothing special to be done on client side */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001681 if (unlikely(si_f->state == SI_ST_DIS))
1682 si_f->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001683
1684 /* When a server-side connection is released, we have to count it and
1685 * check for pending connections on this server.
1686 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001687 if (unlikely(si_b->state == SI_ST_DIS)) {
1688 si_b->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001689 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001690 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001691 if (s->flags & SF_CURR_SESS) {
1692 s->flags &= ~SF_CURR_SESS;
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001693 _HA_ATOMIC_SUB(&srv->cur_sess, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001694 }
1695 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001696 if (may_dequeue_tasks(srv, s->be))
1697 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001698 }
1699 }
1700
1701 /*
1702 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1703 * at this point.
1704 */
1705
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001706 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001707 /* Analyse request */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001708 if (((req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1709 ((req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01001710 (req->analysers && (req->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01001711 si_f->state != rq_prod_last ||
1712 si_b->state != rq_cons_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001713 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001714 unsigned int flags = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001715
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001716 if (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001717 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001718 unsigned int ana_list;
1719 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001720
Willy Tarreau90deb182010-01-07 00:20:41 +01001721 /* it's up to the analysers to stop new connections,
1722 * disable reading or closing. Note: if an analyser
1723 * disables any of these bits, it is responsible for
1724 * enabling them again when it disables itself, so
1725 * that other analysers are called in similar conditions.
1726 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001727 channel_auto_read(req);
1728 channel_auto_connect(req);
1729 channel_auto_close(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001730
1731 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001732 * req->analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01001733 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001734 * the list when not needed. Any analyser may return 0
1735 * to break out of the loop, either because of missing
1736 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001737 * kill the stream. We loop at least once through each
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001738 * analyser, and we may loop again if other analysers
1739 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001740 *
1741 * We build a list of analysers to run. We evaluate all
1742 * of these analysers in the order of the lower bit to
1743 * the higher bit. This ordering is very important.
1744 * An analyser will often add/remove other analysers,
1745 * including itself. Any changes to itself have no effect
1746 * on the loop. If it removes any other analysers, we
1747 * want those analysers not to be called anymore during
1748 * this loop. If it adds an analyser that is located
1749 * after itself, we want it to be scheduled for being
1750 * processed during the loop. If it adds an analyser
1751 * which is located before it, we want it to switch to
1752 * it immediately, even if it has already been called
1753 * once but removed since.
1754 *
1755 * In order to achieve this, we compare the analyser
1756 * list after the call with a copy of it before the
1757 * call. The work list is fed with analyser bits that
1758 * appeared during the call. Then we compare previous
1759 * work list with the new one, and check the bits that
1760 * appeared. If the lowest of these bits is lower than
1761 * the current bit, it means we have enabled a previous
1762 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001763 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001764
Willy Tarreau8f128b42014-11-28 15:07:47 +01001765 ana_list = ana_back = req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001766 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001767 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01001768 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_FE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001769 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_FE);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001770 FLT_ANALYZE(s, req, http_wait_for_request, ana_list, ana_back, AN_REQ_WAIT_HTTP);
1771 FLT_ANALYZE(s, req, http_wait_for_request_body, ana_list, ana_back, AN_REQ_HTTP_BODY);
1772 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 +02001773 FLT_ANALYZE(s, req, process_switching_rules, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001774 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001775 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_BE);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001776 FLT_ANALYZE(s, req, http_process_req_common, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE, s->be);
1777 FLT_ANALYZE(s, req, http_process_tarpit, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001778 FLT_ANALYZE(s, req, process_server_rules, ana_list, ana_back, AN_REQ_SRV_RULES);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001779 FLT_ANALYZE(s, req, http_process_request, ana_list, ana_back, AN_REQ_HTTP_INNER);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001780 FLT_ANALYZE(s, req, tcp_persist_rdp_cookie, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
1781 FLT_ANALYZE(s, req, process_sticking_rules, ana_list, ana_back, AN_REQ_STICKING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001782 ANALYZE (s, req, flt_analyze_http_headers, ana_list, ana_back, AN_REQ_FLT_HTTP_HDRS);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001783 ANALYZE (s, req, http_request_forward_body, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
William Lallemandcf62f7e2018-10-26 14:47:40 +02001784 ANALYZE (s, req, pcli_wait_for_request, ana_list, ana_back, AN_REQ_WAIT_CLI);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001785 ANALYZE (s, req, flt_xfer_data, ana_list, ana_back, AN_REQ_FLT_XFER_DATA);
1786 ANALYZE (s, req, flt_end_analyze, ana_list, ana_back, AN_REQ_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01001787 break;
1788 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001789 }
Willy Tarreau84455332009-03-15 22:34:05 +01001790
Willy Tarreau8f128b42014-11-28 15:07:47 +01001791 rq_prod_last = si_f->state;
1792 rq_cons_last = si_b->state;
1793 req->flags &= ~CF_WAKE_ONCE;
1794 rqf_last = req->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001795
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02001796 if ((req->flags ^ flags) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001797 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001798 }
1799
Willy Tarreau576507f2010-01-07 00:09:04 +01001800 /* we'll monitor the request analysers while parsing the response,
1801 * because some response analysers may indirectly enable new request
1802 * analysers (eg: HTTP keep-alive).
1803 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001804 req_ana_back = req->analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01001805
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001806 resync_response:
1807 /* Analyse response */
1808
Willy Tarreau8f128b42014-11-28 15:07:47 +01001809 if (((res->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1810 (res->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01001811 (res->analysers && (res->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01001812 si_f->state != rp_cons_last ||
1813 si_b->state != rp_prod_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001814 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001815 unsigned int flags = res->flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001816
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001817 if (si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001818 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001819 unsigned int ana_list;
1820 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001821
Willy Tarreau90deb182010-01-07 00:20:41 +01001822 /* it's up to the analysers to stop disable reading or
1823 * closing. Note: if an analyser disables any of these
1824 * bits, it is responsible for enabling them again when
1825 * it disables itself, so that other analysers are called
1826 * in similar conditions.
1827 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001828 channel_auto_read(res);
1829 channel_auto_close(res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001830
1831 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001832 * res->analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001833 * to MSB. The analysers must remove themselves from
1834 * the list when not needed. Any analyser may return 0
1835 * to break out of the loop, either because of missing
1836 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001837 * kill the stream. We loop at least once through each
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001838 * analyser, and we may loop again if other analysers
1839 * are added in the middle.
1840 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001841
Willy Tarreau8f128b42014-11-28 15:07:47 +01001842 ana_list = ana_back = res->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001843 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001844 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01001845 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_FE);
1846 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001847 FLT_ANALYZE(s, res, tcp_inspect_response, ana_list, ana_back, AN_RES_INSPECT);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001848 FLT_ANALYZE(s, res, http_wait_for_response, ana_list, ana_back, AN_RES_WAIT_HTTP);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001849 FLT_ANALYZE(s, res, process_store_rules, ana_list, ana_back, AN_RES_STORE_RULES);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001850 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 +01001851 ANALYZE (s, res, flt_analyze_http_headers, ana_list, ana_back, AN_RES_FLT_HTTP_HDRS);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001852 ANALYZE (s, res, http_response_forward_body, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
William Lallemandcf62f7e2018-10-26 14:47:40 +02001853 ANALYZE (s, res, pcli_wait_for_response, ana_list, ana_back, AN_RES_WAIT_CLI);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001854 ANALYZE (s, res, flt_xfer_data, ana_list, ana_back, AN_RES_FLT_XFER_DATA);
1855 ANALYZE (s, res, flt_end_analyze, ana_list, ana_back, AN_RES_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01001856 break;
1857 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001858 }
1859
Willy Tarreau8f128b42014-11-28 15:07:47 +01001860 rp_cons_last = si_f->state;
1861 rp_prod_last = si_b->state;
Christopher Fauletcdaea892017-07-06 15:49:30 +02001862 res->flags &= ~CF_WAKE_ONCE;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001863 rpf_last = res->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001864
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02001865 if ((res->flags ^ flags) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001866 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001867 }
1868
Willy Tarreau576507f2010-01-07 00:09:04 +01001869 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001870 if (req->analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01001871 goto resync_request;
1872
Willy Tarreau8f128b42014-11-28 15:07:47 +01001873 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01001874 goto resync_request;
1875
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001876 /* FIXME: here we should call protocol handlers which rely on
1877 * both buffers.
1878 */
1879
1880
1881 /*
Willy Tarreau87b09662015-04-03 00:22:06 +02001882 * Now we propagate unhandled errors to the stream. Normally
Willy Tarreauae526782010-03-04 20:34:23 +01001883 * we're just in a data phase here since it means we have not
1884 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001885 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001886 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001887 if (unlikely(!(s->flags & SF_ERR_MASK))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001888 if (req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001889 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001890 req->analysers = 0;
1891 if (req->flags & CF_READ_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001892 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1893 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001894 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001895 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001896 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001897 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001898 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001899 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001900 else if (req->flags & CF_READ_TIMEOUT) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001901 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1902 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001903 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001904 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001905 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001906 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001907 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001908 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001909 else if (req->flags & CF_WRITE_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001910 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1911 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001912 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001913 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001914 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001915 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001916 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001917 }
1918 else {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001919 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1920 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001921 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001922 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001923 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001924 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001925 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001926 }
Willy Tarreau84455332009-03-15 22:34:05 +01001927 sess_set_term_flags(s);
Christopher Faulet5e1a9d72019-04-23 17:34:22 +02001928
1929 /* Abort the request if a client error occurred while
1930 * the backend stream-interface is in the SI_ST_INI
1931 * state. It is switched into the SI_ST_CLO state and
1932 * the request channel is erased. */
1933 if (si_b->state == SI_ST_INI) {
1934 si_b->state = SI_ST_CLO;
1935 channel_abort(req);
1936 if (IS_HTX_STRM(s))
1937 channel_htx_erase(req, htxbuf(&req->buf));
1938 else
1939 channel_erase(req);
1940 }
Willy Tarreau84455332009-03-15 22:34:05 +01001941 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001942 else if (res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001943 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001944 res->analysers = 0;
1945 if (res->flags & CF_READ_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001946 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1947 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001948 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001949 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001950 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001951 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001952 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01001953 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001954 else if (res->flags & CF_READ_TIMEOUT) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001955 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1956 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001957 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001958 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001959 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001960 _HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001961 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01001962 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01001963 else if (res->flags & CF_WRITE_ERROR) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001964 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1965 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001966 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001967 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001968 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001969 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001970 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01001971 }
1972 else {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001973 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1974 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Christopher Faulet99ac8a12020-01-24 11:45:05 +01001975 if (sess->listener && sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +01001976 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001977 if (srv)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01001978 _HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001979 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01001980 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001981 sess_set_term_flags(s);
1982 }
Willy Tarreau84455332009-03-15 22:34:05 +01001983 }
1984
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001985 /*
1986 * Here we take care of forwarding unhandled data. This also includes
1987 * connection establishments and shutdown requests.
1988 */
1989
1990
Willy Tarreau7c84bab2009-03-08 21:38:23 +01001991 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02001992 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001993 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001994 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01001995 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02001996 if (unlikely((!req->analysers || (req->analysers == AN_REQ_FLT_END && !(req->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001997 !(req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001998 (si_state_in(si_f->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001999 (req->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002000 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002001 * attached to it. If any data are left in, we'll permit them to
2002 * move.
2003 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002004 channel_auto_read(req);
2005 channel_auto_connect(req);
2006 channel_auto_close(req);
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002007
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002008 if (IS_HTX_STRM(s)) {
2009 struct htx *htx = htxbuf(&req->buf);
2010
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002011 /* We'll let data flow between the producer (if still connected)
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002012 * to the consumer.
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002013 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002014 co_set_data(req, htx->data);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002015 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002016 channel_htx_forward_forever(req, htx);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002017 }
2018 else {
2019 /* We'll let data flow between the producer (if still connected)
2020 * to the consumer (which might possibly not be connected yet).
2021 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002022 c_adv(req, ci_data(req));
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002023 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2024 channel_forward_forever(req);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002025 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002026 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002027
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002028 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002029 if (!(req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2030 req->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002031 (global.tune.options & GTUNE_USE_SPLICE) &&
Christopher Faulet276c1e02019-11-05 16:49:23 +01002032 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->rcv_pipe &&
2033 __objt_cs(si_f->end)->conn->mux && __objt_cs(si_f->end)->conn->mux->rcv_pipe) &&
2034 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->snd_pipe &&
2035 __objt_cs(si_b->end)->conn->mux && __objt_cs(si_b->end)->conn->mux->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002036 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002037 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2038 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002039 (req->flags & CF_STREAMER_FAST)))) {
2040 req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002041 }
2042
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002043 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002044 rqf_last = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002045
Willy Tarreau520d95e2009-09-19 21:04:57 +02002046 /* it's possible that an upper layer has requested a connection setup or abort.
2047 * There are 2 situations where we decide to establish a new connection :
2048 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002049 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002050 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002051 if (si_b->state == SI_ST_INI) {
Christopher Faulet5e1a9d72019-04-23 17:34:22 +02002052 if (!(req->flags & CF_SHUTW)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002053 if ((req->flags & CF_AUTO_CONNECT) || !channel_is_empty(req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002054 /* If we have an appctx, there is no connect method, so we
2055 * immediately switch to the connected state, otherwise we
2056 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002057 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002058 si_b->state = SI_ST_REQ; /* new connection requested */
2059 si_b->conn_retries = s->be->conn_retries;
Olivier Houchard602bf7d2019-05-10 13:59:15 +02002060 if ((s->be->retry_type &~ PR_RE_CONN_FAILED) &&
Olivier Houchard7dd7b902020-05-13 19:07:20 +02002061 (s->be->mode == PR_MODE_HTTP) &&
Olivier Houchard602bf7d2019-05-10 13:59:15 +02002062 !(si_b->flags & SI_FL_D_L7_RETRY))
Olivier Houcharda254a372019-04-05 15:30:12 +02002063 si_b->flags |= SI_FL_L7_RETRY;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002064 }
Willy Tarreau73201222009-08-16 18:27:24 +02002065 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002066 else {
Willy Tarreau0542c8b2017-11-24 15:01:10 +01002067 si_release_endpoint(si_b);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002068 si_b->state = SI_ST_CLO; /* shutw+ini = abort */
2069 channel_shutw_now(req); /* fix buffer flags upon abort */
2070 channel_shutr_now(res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002071 }
Willy Tarreau92795622009-03-06 12:51:23 +01002072 }
2073
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002074
2075 /* we may have a pending connection request, or a connection waiting
2076 * for completion.
2077 */
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002078 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 +02002079 /* prune the request variables and swap to the response variables. */
2080 if (s->vars_reqres.scope != SCOPE_RES) {
Jerome Magnin2f44e882019-11-09 18:00:47 +01002081 if (!LIST_ISEMPTY(&s->vars_reqres.head))
Willy Tarreaucda7f3f2018-10-28 13:44:36 +01002082 vars_prune(&s->vars_reqres, s->sess, s);
Jerome Magnin2f44e882019-11-09 18:00:47 +01002083 vars_init(&s->vars_reqres, SCOPE_RES);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002084 }
2085
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002086 do {
2087 /* nb: step 1 might switch from QUE to ASS, but we first want
2088 * to give a chance to step 2 to perform a redirect if needed.
2089 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002090 if (si_b->state != SI_ST_REQ)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002091 back_try_conn_req(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002092 if (si_b->state == SI_ST_REQ)
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002093 back_handle_st_req(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002094
Willy Tarreauada4c582020-03-04 16:42:03 +01002095 /* get a chance to complete an immediate connection setup */
2096 if (si_b->state == SI_ST_RDY)
2097 goto resync_stream_interface;
2098
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002099 /* applets directly go to the ESTABLISHED state. Similarly,
2100 * servers experience the same fate when their connection
2101 * is reused.
2102 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002103 if (unlikely(si_b->state == SI_ST_EST))
Willy Tarreau3a9312a2020-01-09 18:43:15 +01002104 back_establish(s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002105
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002106 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002107 if (si_b->state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SF_REDIRECTABLE))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002108 http_perform_server_redirect(s, si_b);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002109 } while (si_b->state == SI_ST_ASS);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002110 }
2111
Willy Tarreau829bd472019-06-06 09:17:23 +02002112 /* Let's see if we can send the pending request now */
2113 si_sync_send(si_b);
2114
2115 /*
2116 * Now forward all shutdown requests between both sides of the request buffer
2117 */
2118
2119 /* first, let's check if the request buffer needs to shutdown(write), which may
2120 * happen either because the input is closed or because we want to force a close
2121 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2122 * the other side's timeout as well.
2123 */
2124 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
2125 (CF_AUTO_CLOSE|CF_SHUTR))) {
2126 channel_shutw_now(req);
2127 }
2128
2129 /* shutdown(write) pending */
2130 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2131 channel_is_empty(req))) {
2132 if (req->flags & CF_READ_ERROR)
2133 si_b->flags |= SI_FL_NOLINGER;
2134 si_shutw(si_b);
2135 }
2136
2137 /* shutdown(write) done on server side, we must stop the client too */
2138 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2139 !req->analysers))
2140 channel_shutr_now(req);
2141
2142 /* shutdown(read) pending */
2143 if (unlikely((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2144 if (si_f->flags & SI_FL_NOHALF)
2145 si_f->flags |= SI_FL_NOLINGER;
2146 si_shutr(si_f);
2147 }
2148
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002149 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau829bd472019-06-06 09:17:23 +02002150 if (si_f->state == SI_ST_DIS ||
2151 si_state_in(si_b->state, SI_SB_RDY|SI_SB_DIS) ||
2152 (si_f->flags & SI_FL_ERR && si_f->state != SI_ST_CLO) ||
2153 (si_b->flags & SI_FL_ERR && si_b->state != SI_ST_CLO))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002154 goto resync_stream_interface;
2155
Willy Tarreau815a9b22010-07-27 17:15:12 +02002156 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau1ec9bb52019-06-06 14:45:26 +02002157 if ((req->flags ^ rqf_last) & (CF_SHUTR|CF_SHUTW))
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002158 goto resync_request;
2159
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002160 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002161
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002162 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002163 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002164 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002165 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002166 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02002167 if (unlikely((!res->analysers || (res->analysers == AN_RES_FLT_END && !(res->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002168 !(res->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002169 si_state_in(si_b->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002170 (res->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002171 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002172 * attached to it. If any data are left in, we'll permit them to
2173 * move.
2174 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002175 channel_auto_read(res);
2176 channel_auto_close(res);
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002177
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002178 if (IS_HTX_STRM(s)) {
2179 struct htx *htx = htxbuf(&res->buf);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002180
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002181 /* We'll let data flow between the producer (if still connected)
2182 * to the consumer.
2183 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002184 co_set_data(res, htx->data);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002185 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002186 channel_htx_forward_forever(res, htx);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002187 }
2188 else {
2189 /* We'll let data flow between the producer (if still connected)
2190 * to the consumer.
2191 */
Christopher Faulet2dba1a52018-12-18 21:57:24 +01002192 c_adv(res, ci_data(res));
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002193 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
2194 channel_forward_forever(res);
Christopher Fauletb2aedea2018-12-05 11:56:15 +01002195 }
Willy Tarreau42529c32015-07-09 18:38:57 +02002196
Willy Tarreauce887fd2012-05-12 12:50:00 +02002197 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002198 * tunnel timeout set, use it now. Note that we must respect
2199 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002200 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002201 if (!req->analysers && s->be->timeout.tunnel) {
2202 req->rto = req->wto = res->rto = res->wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002203 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002204
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002205 if ((req->flags & CF_SHUTR) && tick_isset(sess->fe->timeout.clientfin))
2206 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002207 if ((req->flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2208 res->rto = s->be->timeout.serverfin;
2209 if ((res->flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2210 req->wto = s->be->timeout.serverfin;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002211 if ((res->flags & CF_SHUTW) && tick_isset(sess->fe->timeout.clientfin))
2212 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002213
Willy Tarreau8f128b42014-11-28 15:07:47 +01002214 req->rex = tick_add(now_ms, req->rto);
2215 req->wex = tick_add(now_ms, req->wto);
2216 res->rex = tick_add(now_ms, res->rto);
2217 res->wex = tick_add(now_ms, res->wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002218 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002219 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002220
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002221 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002222 if (!(res->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2223 res->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002224 (global.tune.options & GTUNE_USE_SPLICE) &&
Christopher Faulet276c1e02019-11-05 16:49:23 +01002225 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->snd_pipe &&
2226 __objt_cs(si_f->end)->conn->mux && __objt_cs(si_f->end)->conn->mux->snd_pipe) &&
2227 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->rcv_pipe &&
2228 __objt_cs(si_b->end)->conn->mux && __objt_cs(si_b->end)->conn->mux->rcv_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002229 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002230 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2231 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002232 (res->flags & CF_STREAMER_FAST)))) {
2233 res->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002234 }
2235
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002236 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002237 rpf_last = res->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002238
Willy Tarreau829bd472019-06-06 09:17:23 +02002239 /* Let's see if we can send the pending response now */
2240 si_sync_send(si_f);
2241
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002242 /*
2243 * Now forward all shutdown requests between both sides of the buffer
2244 */
2245
2246 /*
2247 * FIXME: this is probably where we should produce error responses.
2248 */
2249
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002250 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002251 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002252 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002253 channel_shutw_now(res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002254 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002255
2256 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002257 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2258 channel_is_empty(res))) {
2259 si_shutw(si_f);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002260 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002261
2262 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002263 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2264 !res->analysers)
2265 channel_shutr_now(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002266
2267 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002268 if (unlikely((res->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2269 if (si_b->flags & SI_FL_NOHALF)
2270 si_b->flags |= SI_FL_NOLINGER;
2271 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002272 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002273
Willy Tarreau829bd472019-06-06 09:17:23 +02002274 if (si_f->state == SI_ST_DIS ||
2275 si_state_in(si_b->state, SI_SB_RDY|SI_SB_DIS) ||
2276 (si_f->flags & SI_FL_ERR && si_f->state != SI_ST_CLO) ||
2277 (si_b->flags & SI_FL_ERR && si_b->state != SI_ST_CLO))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002278 goto resync_stream_interface;
2279
Willy Tarreau3c5c0662019-06-06 14:32:49 +02002280 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002281 goto resync_request;
2282
Willy Tarreau8f128b42014-11-28 15:07:47 +01002283 if ((res->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002284 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002285
Willy Tarreau829bd472019-06-06 09:17:23 +02002286 if (((req->flags ^ rqf_last) | (res->flags ^ rpf_last)) & CF_MASK_ANALYSER)
2287 goto resync_request;
2288
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002289 /* we're interested in getting wakeups again */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002290 si_f->flags &= ~SI_FL_DONT_WAKE;
2291 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002292
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002293 /* This is needed only when debugging is enabled, to indicate
2294 * client-side or server-side close. Please note that in the unlikely
2295 * event where both sides would close at once, the sequence is reported
2296 * on the server side first.
2297 */
2298 if (unlikely((global.mode & MODE_DEBUG) &&
2299 (!(global.mode & MODE_QUIET) ||
2300 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002301 if (si_b->state == SI_ST_CLO &&
2302 si_b->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002303 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002304 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002305 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2306 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01002307 DISGUISE(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002308 }
2309
Willy Tarreau8f128b42014-11-28 15:07:47 +01002310 if (si_f->state == SI_ST_CLO &&
2311 si_f->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002312 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002313 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002314 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2315 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01002316 DISGUISE(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002317 }
2318 }
2319
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02002320 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 +02002321 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED) && !(s->flags & SF_IGNORE))
Willy Tarreau87b09662015-04-03 00:22:06 +02002322 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002323
Willy Tarreaud14844a2018-11-08 18:15:29 +01002324 si_update_both(si_f, si_b);
Olivier Houchard53216e72018-10-10 15:46:36 +02002325
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002326 /* Trick: if a request is being waiting for the server to respond,
2327 * and if we know the server can timeout, we don't want the timeout
2328 * to expire on the client side first, but we're still interested
2329 * in passing data from the client to the server (eg: POST). Thus,
2330 * we can cancel the client's request timeout if the server's
2331 * request timeout is set and the server has not yet sent a response.
2332 */
2333
Willy Tarreau8f128b42014-11-28 15:07:47 +01002334 if ((res->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2335 (tick_isset(req->wex) || tick_isset(res->rex))) {
2336 req->flags |= CF_READ_NOEXP;
2337 req->rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002338 }
2339
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002340 /* Reset pending events now */
2341 s->pending_events = 0;
2342
Willy Tarreau798f4322012-11-08 14:49:17 +01002343 update_exp_and_leave:
Willy Tarreau5fb04712016-05-04 10:18:37 +02002344 /* Note: please ensure that if you branch here you disable SI_FL_DONT_WAKE */
Christopher Fauleta00d8172016-11-10 14:58:05 +01002345 t->expire = tick_first((tick_is_expired(t->expire, now_ms) ? 0 : t->expire),
2346 tick_first(tick_first(req->rex, req->wex),
2347 tick_first(res->rex, res->wex)));
Willy Tarreaudef0d222016-11-08 22:03:00 +01002348 if (!req->analysers)
2349 req->analyse_exp = TICK_ETERNITY;
2350
2351 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED) &&
2352 (!tick_isset(req->analyse_exp) || tick_is_expired(req->analyse_exp, now_ms)))
2353 req->analyse_exp = tick_add(now_ms, 5000);
2354
2355 t->expire = tick_first(t->expire, req->analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002356
Willy Tarreau9a398be2017-11-10 17:14:23 +01002357 t->expire = tick_first(t->expire, res->analyse_exp);
2358
Willy Tarreau8f128b42014-11-28 15:07:47 +01002359 if (si_f->exp)
2360 t->expire = tick_first(t->expire, si_f->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002361
Willy Tarreau8f128b42014-11-28 15:07:47 +01002362 if (si_b->exp)
2363 t->expire = tick_first(t->expire, si_b->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002364
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002365 s->pending_events &= ~(TASK_WOKEN_TIMER | TASK_WOKEN_RES);
Willy Tarreau87b09662015-04-03 00:22:06 +02002366 stream_release_buffers(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002367
2368 DBG_TRACE_DEVEL("queuing", STRM_EV_STRM_PROC, s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002369 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002370 }
2371
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002372 DBG_TRACE_DEVEL("releasing", STRM_EV_STRM_PROC, s);
2373
Willy Tarreaue7dff022015-04-03 01:14:29 +02002374 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002375 _HA_ATOMIC_SUB(&s->be->beconn, 1);
Willy Tarreau6f5e4b92017-09-15 09:07:56 +02002376
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002377 if (unlikely((global.mode & MODE_DEBUG) &&
2378 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002379 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002380 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002381 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2382 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01002383 DISGUISE(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002384 }
2385
2386 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Olivier Houchard4c18f942019-07-31 18:05:26 +02002387 if (!(s->flags & SF_IGNORE))
2388 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002389
Willy Tarreaueee5b512015-04-03 23:46:31 +02002390 if (s->txn && s->txn->status) {
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002391 int n;
2392
Willy Tarreaueee5b512015-04-03 23:46:31 +02002393 n = s->txn->status / 100;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002394 if (n < 1 || n > 5)
2395 n = 0;
2396
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002397 if (sess->fe->mode == PR_MODE_HTTP) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002398 _HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[n], 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002399 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002400 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002401 (s->be->mode == PR_MODE_HTTP)) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002402 _HA_ATOMIC_ADD(&s->be->be_counters.p.http.rsp[n], 1);
2403 _HA_ATOMIC_ADD(&s->be->be_counters.p.http.cum_req, 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002404 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002405 }
2406
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002407 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002408 if (!LIST_ISEMPTY(&sess->fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02002409 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002410 (!(sess->fe->options & PR_O_NULLNOLOG) || req->total)) {
Willy Tarreau66425e32018-07-25 06:55:12 +02002411 /* we may need to know the position in the queue */
2412 pendconn_free(s);
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002413 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002414 }
2415
Willy Tarreau87b09662015-04-03 00:22:06 +02002416 /* update time stats for this stream */
2417 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002418
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002419 /* the task MUST not be in the run queue anymore */
Willy Tarreau87b09662015-04-03 00:22:06 +02002420 stream_free(s);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002421 task_destroy(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002422 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002423}
2424
Willy Tarreau87b09662015-04-03 00:22:06 +02002425/* Update the stream's backend and server time stats */
2426void stream_update_time_stats(struct stream *s)
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002427{
2428 int t_request;
2429 int t_queue;
2430 int t_connect;
2431 int t_data;
2432 int t_close;
2433 struct server *srv;
Marcin Deraneka8dbdf32020-05-15 20:02:40 +02002434 unsigned int samples_window;
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002435
2436 t_request = 0;
2437 t_queue = s->logs.t_queue;
2438 t_connect = s->logs.t_connect;
2439 t_close = s->logs.t_close;
2440 t_data = s->logs.t_data;
2441
2442 if (s->be->mode != PR_MODE_HTTP)
2443 t_data = t_connect;
2444
2445 if (t_connect < 0 || t_data < 0)
2446 return;
2447
2448 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2449 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2450
2451 t_data -= t_connect;
2452 t_connect -= t_queue;
2453 t_queue -= t_request;
2454
2455 srv = objt_server(s->target);
2456 if (srv) {
Marcin Deraneka8dbdf32020-05-15 20:02:40 +02002457 samples_window = (((s->be->mode == PR_MODE_HTTP) ?
2458 srv->counters.p.http.cum_req : srv->counters.cum_lbconn) > TIME_STATS_SAMPLES) ? TIME_STATS_SAMPLES : 0;
2459 swrate_add_dynamic(&srv->counters.q_time, samples_window, t_queue);
2460 swrate_add_dynamic(&srv->counters.c_time, samples_window, t_connect);
2461 swrate_add_dynamic(&srv->counters.d_time, samples_window, t_data);
2462 swrate_add_dynamic(&srv->counters.t_time, samples_window, t_close);
Christopher Fauletefb41f02019-11-08 14:53:15 +01002463 HA_ATOMIC_UPDATE_MAX(&srv->counters.qtime_max, t_queue);
2464 HA_ATOMIC_UPDATE_MAX(&srv->counters.ctime_max, t_connect);
2465 HA_ATOMIC_UPDATE_MAX(&srv->counters.dtime_max, t_data);
2466 HA_ATOMIC_UPDATE_MAX(&srv->counters.ttime_max, t_close);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002467 }
Marcin Deraneka8dbdf32020-05-15 20:02:40 +02002468 samples_window = (((s->be->mode == PR_MODE_HTTP) ?
2469 s->be->be_counters.p.http.cum_req : s->be->be_counters.cum_lbconn) > TIME_STATS_SAMPLES) ? TIME_STATS_SAMPLES : 0;
2470 swrate_add_dynamic(&s->be->be_counters.q_time, samples_window, t_queue);
2471 swrate_add_dynamic(&s->be->be_counters.c_time, samples_window, t_connect);
2472 swrate_add_dynamic(&s->be->be_counters.d_time, samples_window, t_data);
2473 swrate_add_dynamic(&s->be->be_counters.t_time, samples_window, t_close);
Christopher Fauletefb41f02019-11-08 14:53:15 +01002474 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.qtime_max, t_queue);
2475 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.ctime_max, t_connect);
2476 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.dtime_max, t_data);
2477 HA_ATOMIC_UPDATE_MAX(&s->be->be_counters.ttime_max, t_close);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002478}
2479
Willy Tarreau7c669d72008-06-20 15:04:11 +02002480/*
2481 * This function adjusts sess->srv_conn and maintains the previous and new
Willy Tarreau87b09662015-04-03 00:22:06 +02002482 * server's served stream counts. Setting newsrv to NULL is enough to release
Willy Tarreau7c669d72008-06-20 15:04:11 +02002483 * current connection slot. This function also notifies any LB algo which might
Willy Tarreau87b09662015-04-03 00:22:06 +02002484 * expect to be informed about any change in the number of active streams on a
Willy Tarreau7c669d72008-06-20 15:04:11 +02002485 * server.
2486 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002487void sess_change_server(struct stream *sess, struct server *newsrv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02002488{
2489 if (sess->srv_conn == newsrv)
2490 return;
2491
2492 if (sess->srv_conn) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002493 _HA_ATOMIC_SUB(&sess->srv_conn->served, 1);
2494 _HA_ATOMIC_SUB(&sess->srv_conn->proxy->served, 1);
2495 __ha_barrier_atomic_store();
Christopher Faulet26a52af2020-10-16 16:27:17 +02002496 if (sess->srv_conn->proxy->lbprm.server_drop_conn) {
2497 HA_SPIN_LOCK(SERVER_LOCK, &sess->srv_conn->lock);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002498 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Christopher Faulet26a52af2020-10-16 16:27:17 +02002499 HA_SPIN_UNLOCK(SERVER_LOCK, &sess->srv_conn->lock);
2500 }
Willy Tarreau87b09662015-04-03 00:22:06 +02002501 stream_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002502 }
2503
2504 if (newsrv) {
Olivier Houcharddc6111e2019-03-08 18:54:51 +01002505 _HA_ATOMIC_ADD(&newsrv->served, 1);
2506 _HA_ATOMIC_ADD(&newsrv->proxy->served, 1);
2507 __ha_barrier_atomic_store();
Christopher Faulet26a52af2020-10-16 16:27:17 +02002508 if (newsrv->proxy->lbprm.server_take_conn) {
2509 HA_SPIN_LOCK(SERVER_LOCK, &newsrv->lock);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002510 newsrv->proxy->lbprm.server_take_conn(newsrv);
Christopher Faulet26a52af2020-10-16 16:27:17 +02002511 HA_SPIN_UNLOCK(SERVER_LOCK, &newsrv->lock);
2512 }
Willy Tarreau87b09662015-04-03 00:22:06 +02002513 stream_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002514 }
2515}
2516
Willy Tarreau84455332009-03-15 22:34:05 +01002517/* Handle server-side errors for default protocols. It is called whenever a a
2518 * connection setup is aborted or a request is aborted in queue. It sets the
Willy Tarreau87b09662015-04-03 00:22:06 +02002519 * stream termination flags so that the caller does not have to worry about
Willy Tarreau84455332009-03-15 22:34:05 +01002520 * them. It's installed as ->srv_error for the server-side stream_interface.
2521 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002522void default_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreau84455332009-03-15 22:34:05 +01002523{
2524 int err_type = si->err_type;
2525 int err = 0, fin = 0;
2526
2527 if (err_type & SI_ET_QUEUE_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002528 err = SF_ERR_CLICL;
2529 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002530 }
2531 else if (err_type & SI_ET_CONN_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002532 err = SF_ERR_CLICL;
2533 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002534 }
2535 else if (err_type & SI_ET_QUEUE_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002536 err = SF_ERR_SRVTO;
2537 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002538 }
2539 else if (err_type & SI_ET_QUEUE_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002540 err = SF_ERR_SRVCL;
2541 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002542 }
2543 else if (err_type & SI_ET_CONN_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002544 err = SF_ERR_SRVTO;
2545 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002546 }
2547 else if (err_type & SI_ET_CONN_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002548 err = SF_ERR_SRVCL;
2549 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002550 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002551 else if (err_type & SI_ET_CONN_RES) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002552 err = SF_ERR_RESOURCE;
2553 fin = SF_FINST_C;
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002554 }
Willy Tarreau84455332009-03-15 22:34:05 +01002555 else /* SI_ET_CONN_OTHER and others */ {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002556 err = SF_ERR_INTERNAL;
2557 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002558 }
2559
Willy Tarreaue7dff022015-04-03 01:14:29 +02002560 if (!(s->flags & SF_ERR_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002561 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002562 if (!(s->flags & SF_FINST_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002563 s->flags |= fin;
2564}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002565
Willy Tarreaue7dff022015-04-03 01:14:29 +02002566/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +02002567void stream_shutdown(struct stream *stream, int why)
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002568{
Willy Tarreau87b09662015-04-03 00:22:06 +02002569 if (stream->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002570 return;
2571
Willy Tarreau87b09662015-04-03 00:22:06 +02002572 channel_shutw_now(&stream->req);
2573 channel_shutr_now(&stream->res);
2574 stream->task->nice = 1024;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002575 if (!(stream->flags & SF_ERR_MASK))
Willy Tarreau87b09662015-04-03 00:22:06 +02002576 stream->flags |= why;
2577 task_wakeup(stream->task, TASK_WOKEN_OTHER);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002578}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002579
Willy Tarreau5484d582019-05-22 09:33:03 +02002580/* Appends a dump of the state of stream <s> into buffer <buf> which must have
2581 * preliminary be prepared by its caller, with each line prepended by prefix
2582 * <pfx>, and each line terminated by character <eol>.
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002583 */
Willy Tarreau5484d582019-05-22 09:33:03 +02002584void stream_dump(struct buffer *buf, const struct stream *s, const char *pfx, char eol)
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002585{
2586 const struct conn_stream *csf, *csb;
2587 const struct connection *cof, *cob;
2588 const struct appctx *acf, *acb;
2589 const struct server *srv;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002590 const char *src = "unknown";
2591 const char *dst = "unknown";
2592 char pn[INET6_ADDRSTRLEN];
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002593 const struct channel *req, *res;
2594 const struct stream_interface *si_f, *si_b;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002595
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002596 if (!s) {
Willy Tarreau5484d582019-05-22 09:33:03 +02002597 chunk_appendf(buf, "%sstrm=%p%c", pfx, s, eol);
2598 return;
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002599 }
2600
Willy Tarreau5484d582019-05-22 09:33:03 +02002601 if (s->obj_type != OBJ_TYPE_STREAM) {
2602 chunk_appendf(buf, "%sstrm=%p [invalid type=%d(%s)]%c",
2603 pfx, s, s->obj_type, obj_type_name(&s->obj_type), eol);
2604 return;
2605 }
2606
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002607 si_f = &s->si[0];
2608 si_b = &s->si[1];
2609 req = &s->req;
2610 res = &s->res;
2611
2612 csf = objt_cs(si_f->end);
2613 cof = cs_conn(csf);
2614 acf = objt_appctx(si_f->end);
Willy Tarreau71e34c12019-07-17 15:07:06 +02002615 if (cof && cof->src && addr_to_str(cof->src, pn, sizeof(pn)) >= 0)
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002616 src = pn;
2617 else if (acf)
2618 src = acf->applet->name;
2619
2620 csb = objt_cs(si_b->end);
2621 cob = cs_conn(csb);
2622 acb = objt_appctx(si_b->end);
2623 srv = objt_server(s->target);
2624 if (srv)
2625 dst = srv->id;
2626 else if (acb)
2627 dst = acb->applet->name;
2628
Willy Tarreau5484d582019-05-22 09:33:03 +02002629 chunk_appendf(buf,
2630 "%sstrm=%p src=%s fe=%s be=%s dst=%s%c"
2631 "%srqf=%x rqa=%x rpf=%x rpa=%x sif=%s,%x sib=%s,%x%c"
2632 "%saf=%p,%u csf=%p,%x%c"
2633 "%sab=%p,%u csb=%p,%x%c"
2634 "%scof=%p,%x:%s(%p)/%s(%p)/%s(%d)%c"
2635 "%scob=%p,%x:%s(%p)/%s(%p)/%s(%d)%c"
2636 "",
2637 pfx, s, src, s->sess->fe->id, s->be->id, dst, eol,
2638 pfx, req->flags, req->analysers, res->flags, res->analysers,
2639 si_state_str(si_f->state), si_f->flags,
2640 si_state_str(si_b->state), si_b->flags, eol,
2641 pfx, acf, acf ? acf->st0 : 0, csf, csf ? csf->flags : 0, eol,
2642 pfx, acb, acb ? acb->st0 : 0, csb, csb ? csb->flags : 0, eol,
2643 pfx, cof, cof ? cof->flags : 0, conn_get_mux_name(cof), cof?cof->ctx:0, conn_get_xprt_name(cof),
2644 cof ? cof->xprt_ctx : 0, conn_get_ctrl_name(cof), cof ? cof->handle.fd : 0, eol,
2645 pfx, cob, cob ? cob->flags : 0, conn_get_mux_name(cob), cob?cob->ctx:0, conn_get_xprt_name(cob),
2646 cob ? cob->xprt_ctx : 0, conn_get_ctrl_name(cob), cob ? cob->handle.fd : 0, eol);
2647}
2648
2649/* dumps an error message for type <type> at ptr <ptr> related to stream <s>,
Willy Tarreaub106ce12019-05-22 08:57:01 +02002650 * having reached loop rate <rate>, then aborts hoping to retrieve a core.
Willy Tarreau5484d582019-05-22 09:33:03 +02002651 */
2652void stream_dump_and_crash(enum obj_type *obj, int rate)
2653{
2654 const struct stream *s;
Willy Tarreau5484d582019-05-22 09:33:03 +02002655 char *msg = NULL;
2656 const void *ptr;
2657
2658 ptr = s = objt_stream(obj);
2659 if (!s) {
2660 const struct appctx *appctx = objt_appctx(obj);
2661 if (!appctx)
2662 return;
2663 ptr = appctx;
2664 s = si_strm(appctx->owner);
2665 if (!s)
2666 return;
2667 }
2668
Willy Tarreau5484d582019-05-22 09:33:03 +02002669 chunk_reset(&trash);
2670 stream_dump(&trash, s, "", ' ');
Willy Tarreau9753d612020-05-01 16:57:02 +02002671
2672 chunk_appendf(&trash, "filters={");
2673 if (HAS_FILTERS(s)) {
2674 struct filter *filter;
2675
2676 list_for_each_entry(filter, &s->strm_flt.filters, list) {
2677 if (filter->list.p != &s->strm_flt.filters)
2678 chunk_appendf(&trash, ", ");
2679 chunk_appendf(&trash, "%p=\"%s\"", filter, FLT_ID(filter));
2680 }
2681 }
2682 chunk_appendf(&trash, "}");
2683
Willy Tarreaub106ce12019-05-22 08:57:01 +02002684 memprintf(&msg,
2685 "A bogus %s [%p] is spinning at %d calls per second and refuses to die, "
2686 "aborting now! Please report this error to developers "
2687 "[%s]\n",
Willy Tarreau5484d582019-05-22 09:33:03 +02002688 obj_type_name(obj), ptr, rate, trash.area);
Willy Tarreau71c07ac2019-04-25 19:08:48 +02002689
2690 ha_alert("%s", msg);
2691 send_log(NULL, LOG_EMERG, "%s", msg);
2692 abort();
2693}
2694
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002695/* Generates a unique ID based on the given <format>, stores it in the given <strm> and
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002696 * returns the unique ID.
2697
2698 * If this function fails to allocate memory IST_NULL is returned.
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002699 *
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002700 * If an ID is already stored within the stream nothing happens existing unique ID is
2701 * returned.
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002702 */
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002703struct ist stream_generate_unique_id(struct stream *strm, struct list *format)
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002704{
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002705 if (isttest(strm->unique_id)) {
2706 return strm->unique_id;
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002707 }
2708 else {
2709 char *unique_id;
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002710 int length;
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002711 if ((unique_id = pool_alloc(pool_head_uniqueid)) == NULL)
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002712 return IST_NULL;
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002713
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002714 length = build_logline(strm, unique_id, UNIQUEID_LEN, format);
2715 strm->unique_id = ist2(unique_id, length);
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002716
Tim Duesterhusa17e6622020-03-05 20:19:02 +01002717 return strm->unique_id;
Tim Duesterhus127a74d2020-02-28 15:13:33 +01002718 }
2719}
2720
Willy Tarreau8b22a712010-06-18 17:46:06 +02002721/************************************************************************/
2722/* All supported ACL keywords must be declared here. */
2723/************************************************************************/
2724
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02002725/* 0=OK, <0=Alert, >0=Warning */
2726static enum act_parse_ret stream_parse_use_service(const char **args, int *cur_arg,
2727 struct proxy *px, struct act_rule *rule,
2728 char **err)
2729{
2730 struct action_kw *kw;
2731
2732 /* Check if the service name exists. */
2733 if (*(args[*cur_arg]) == 0) {
2734 memprintf(err, "'%s' expects a service name.", args[0]);
Thierry FOURNIER337eae12015-11-26 19:48:04 +01002735 return ACT_RET_PRS_ERR;
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02002736 }
2737
2738 /* lookup for keyword corresponding to a service. */
2739 kw = action_lookup(&service_keywords, args[*cur_arg]);
2740 if (!kw) {
2741 memprintf(err, "'%s' unknown service name.", args[1]);
2742 return ACT_RET_PRS_ERR;
2743 }
2744 (*cur_arg)++;
2745
2746 /* executes specific rule parser. */
2747 rule->kw = kw;
2748 if (kw->parse((const char **)args, cur_arg, px, rule, err) == ACT_RET_PRS_ERR)
2749 return ACT_RET_PRS_ERR;
2750
2751 /* Register processing function. */
2752 rule->action_ptr = process_use_service;
2753 rule->action = ACT_CUSTOM;
2754
2755 return ACT_RET_PRS_OK;
2756}
2757
2758void service_keywords_register(struct action_kw_list *kw_list)
2759{
2760 LIST_ADDQ(&service_keywords, &kw_list->list);
2761}
2762
Thierry Fournier87e53992020-11-28 19:32:14 +01002763struct action_kw *service_find(const char *kw)
2764{
2765 return action_lookup(&service_keywords, kw);
2766}
2767
Willy Tarreau679bba12019-03-19 08:08:10 +01002768/* Lists the known services on <out> */
2769void list_services(FILE *out)
2770{
2771 struct action_kw_list *kw_list;
2772 int found = 0;
2773 int i;
2774
2775 fprintf(out, "Available services :");
2776 list_for_each_entry(kw_list, &service_keywords, list) {
2777 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
2778 if (!found)
2779 fputc('\n', out);
2780 found = 1;
2781 fprintf(out, "\t%s\n", kw_list->kw[i].kw);
2782 }
2783 }
2784 if (!found)
2785 fprintf(out, " none\n");
2786}
William Lallemand4c5b4d52016-11-21 08:51:11 +01002787
2788/* This function dumps a complete stream state onto the stream interface's
2789 * read buffer. The stream has to be set in strm. It returns 0 if the output
2790 * buffer is full and it needs to be called again, otherwise non-zero. It is
2791 * designed to be called from stats_dump_strm_to_buffer() below.
2792 */
2793static int stats_dump_full_strm_to_buffer(struct stream_interface *si, struct stream *strm)
2794{
2795 struct appctx *appctx = __objt_appctx(si->end);
2796 struct tm tm;
2797 extern const char *monthname[12];
2798 char pn[INET6_ADDRSTRLEN];
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002799 struct conn_stream *cs;
William Lallemand4c5b4d52016-11-21 08:51:11 +01002800 struct connection *conn;
2801 struct appctx *tmpctx;
2802
2803 chunk_reset(&trash);
2804
2805 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != strm->uniq_id) {
2806 /* stream changed, no need to go any further */
2807 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreaue6e52362019-01-04 17:42:57 +01002808 if (ci_putchk(si_ic(si), &trash) == -1)
2809 goto full;
2810 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01002811 }
2812
2813 switch (appctx->ctx.sess.section) {
2814 case 0: /* main status of the stream */
2815 appctx->ctx.sess.uid = strm->uniq_id;
2816 appctx->ctx.sess.section = 1;
2817 /* fall through */
2818
2819 case 1:
2820 get_localtime(strm->logs.accept_date.tv_sec, &tm);
2821 chunk_appendf(&trash,
2822 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
2823 strm,
2824 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2825 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(strm->logs.accept_date.tv_usec),
2826 strm->uniq_id,
Willy Tarreaub7436612020-08-28 19:51:44 +02002827 strm_li(strm) ? strm_li(strm)->rx.proto->name : "?");
William Lallemand4c5b4d52016-11-21 08:51:11 +01002828
2829 conn = objt_conn(strm_orig(strm));
Willy Tarreau71e34c12019-07-17 15:07:06 +02002830 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01002831 case AF_INET:
2832 case AF_INET6:
2833 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02002834 pn, get_host_port(conn->src));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002835 break;
2836 case AF_UNIX:
2837 chunk_appendf(&trash, " source=unix:%d\n", strm_li(strm)->luid);
2838 break;
2839 default:
2840 /* no more information to print right now */
2841 chunk_appendf(&trash, "\n");
2842 break;
2843 }
2844
2845 chunk_appendf(&trash,
Willy Tarreauadf7a152019-01-07 10:10:07 +01002846 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p waiting=%d\n",
2847 strm->flags, strm->si[1].conn_retries, strm->srv_conn, strm->pend_pos,
Willy Tarreau21046592020-02-26 10:39:36 +01002848 MT_LIST_ADDED(&strm->buffer_wait.list));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002849
2850 chunk_appendf(&trash,
2851 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
2852 strm_fe(strm)->id, strm_fe(strm)->uuid, strm_fe(strm)->mode ? "http" : "tcp",
2853 strm_li(strm) ? strm_li(strm)->name ? strm_li(strm)->name : "?" : "?",
2854 strm_li(strm) ? strm_li(strm)->luid : 0);
2855
Willy Tarreau71e34c12019-07-17 15:07:06 +02002856 switch (conn && conn_get_dst(conn) ? addr_to_str(conn->dst, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01002857 case AF_INET:
2858 case AF_INET6:
2859 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02002860 pn, get_host_port(conn->dst));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002861 break;
2862 case AF_UNIX:
2863 chunk_appendf(&trash, " addr=unix:%d\n", strm_li(strm)->luid);
2864 break;
2865 default:
2866 /* no more information to print right now */
2867 chunk_appendf(&trash, "\n");
2868 break;
2869 }
2870
2871 if (strm->be->cap & PR_CAP_BE)
2872 chunk_appendf(&trash,
2873 " backend=%s (id=%u mode=%s)",
2874 strm->be->id,
2875 strm->be->uuid, strm->be->mode ? "http" : "tcp");
2876 else
2877 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
2878
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002879 cs = objt_cs(strm->si[1].end);
2880 conn = cs_conn(cs);
2881
Willy Tarreau71e34c12019-07-17 15:07:06 +02002882 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01002883 case AF_INET:
2884 case AF_INET6:
2885 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02002886 pn, get_host_port(conn->src));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002887 break;
2888 case AF_UNIX:
2889 chunk_appendf(&trash, " addr=unix\n");
2890 break;
2891 default:
2892 /* no more information to print right now */
2893 chunk_appendf(&trash, "\n");
2894 break;
2895 }
2896
2897 if (strm->be->cap & PR_CAP_BE)
2898 chunk_appendf(&trash,
2899 " server=%s (id=%u)",
2900 objt_server(strm->target) ? objt_server(strm->target)->id : "<none>",
2901 objt_server(strm->target) ? objt_server(strm->target)->puid : 0);
2902 else
2903 chunk_appendf(&trash, " server=<NONE> (id=-1)");
2904
Willy Tarreau71e34c12019-07-17 15:07:06 +02002905 switch (conn && conn_get_dst(conn) ? addr_to_str(conn->dst, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01002906 case AF_INET:
2907 case AF_INET6:
2908 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreau71e34c12019-07-17 15:07:06 +02002909 pn, get_host_port(conn->dst));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002910 break;
2911 case AF_UNIX:
2912 chunk_appendf(&trash, " addr=unix\n");
2913 break;
2914 default:
2915 /* no more information to print right now */
2916 chunk_appendf(&trash, "\n");
2917 break;
2918 }
2919
2920 chunk_appendf(&trash,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02002921 " task=%p (state=0x%02x nice=%d calls=%u rate=%u exp=%s tmask=0x%lx%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002922 strm->task,
2923 strm->task->state,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02002924 strm->task->nice, strm->task->calls, read_freq_ctr(&strm->call_rate),
William Lallemand4c5b4d52016-11-21 08:51:11 +01002925 strm->task->expire ?
2926 tick_is_expired(strm->task->expire, now_ms) ? "<PAST>" :
2927 human_time(TICKS_TO_MS(strm->task->expire - now_ms),
2928 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Fauletf0205062017-11-15 20:56:43 +01002929 strm->task->thread_mask,
William Lallemand4c5b4d52016-11-21 08:51:11 +01002930 task_in_rq(strm->task) ? ", running" : "");
2931
2932 chunk_appendf(&trash,
2933 " age=%s)\n",
2934 human_time(now.tv_sec - strm->logs.accept_date.tv_sec, 1));
2935
2936 if (strm->txn)
2937 chunk_appendf(&trash,
Christopher Fauletbcac7862019-07-17 10:46:50 +02002938 " 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 +01002939 strm->txn, strm->txn->flags, strm->txn->meth, strm->txn->status,
Willy Tarreau7778b592019-01-07 10:38:10 +01002940 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 +02002941 strm->txn->req.flags, strm->txn->rsp.flags);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002942
2943 chunk_appendf(&trash,
Christopher Faulet224a2d72019-01-04 15:06:13 +01002944 " 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 +01002945 &strm->si[0],
2946 si_state_str(strm->si[0].state),
2947 strm->si[0].flags,
2948 obj_type_name(strm->si[0].end),
2949 obj_base_ptr(strm->si[0].end),
2950 strm->si[0].exp ?
2951 tick_is_expired(strm->si[0].exp, now_ms) ? "<PAST>" :
2952 human_time(TICKS_TO_MS(strm->si[0].exp - now_ms),
2953 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Faulet224a2d72019-01-04 15:06:13 +01002954 strm->si[0].err_type, strm->si[0].wait_event.events);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002955
2956 chunk_appendf(&trash,
Christopher Faulet224a2d72019-01-04 15:06:13 +01002957 " 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 +01002958 &strm->si[1],
2959 si_state_str(strm->si[1].state),
2960 strm->si[1].flags,
2961 obj_type_name(strm->si[1].end),
2962 obj_base_ptr(strm->si[1].end),
2963 strm->si[1].exp ?
2964 tick_is_expired(strm->si[1].exp, now_ms) ? "<PAST>" :
2965 human_time(TICKS_TO_MS(strm->si[1].exp - now_ms),
2966 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Faulet224a2d72019-01-04 15:06:13 +01002967 strm->si[1].err_type, strm->si[1].wait_event.events);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002968
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002969 if ((cs = objt_cs(strm->si[0].end)) != NULL) {
2970 conn = cs->conn;
2971
William Lallemand4c5b4d52016-11-21 08:51:11 +01002972 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02002973 " co0=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002974 conn,
2975 conn_get_ctrl_name(conn),
2976 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02002977 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002978 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01002979 obj_type_name(conn->target),
2980 obj_base_ptr(conn->target));
2981
2982 chunk_appendf(&trash,
Willy Tarreau76913d32019-08-30 14:33:11 +02002983 " flags=0x%08x fd=%d fd.state=%02x updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002984 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02002985 conn->handle.fd,
2986 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01002987 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01002988 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
Willy Tarreaufb3b1b02018-12-18 14:28:24 +01002989
2990 chunk_appendf(&trash, " cs=%p csf=0x%08x ctx=%p\n", cs, cs->flags, cs->ctx);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002991 }
2992 else if ((tmpctx = objt_appctx(strm->si[0].end)) != NULL) {
2993 chunk_appendf(&trash,
Willy Tarreau22d63a22019-04-24 08:41:29 +02002994 " 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 +01002995 tmpctx,
2996 tmpctx->st0,
2997 tmpctx->st1,
2998 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01002999 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02003000 tmpctx->thread_mask,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003001 tmpctx->t->nice, tmpctx->t->calls, read_freq_ctr(&tmpctx->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003002 (unsigned long long)tmpctx->t->cpu_time, (unsigned long long)tmpctx->t->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003003 }
3004
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003005 if ((cs = objt_cs(strm->si[1].end)) != NULL) {
3006 conn = cs->conn;
3007
William Lallemand4c5b4d52016-11-21 08:51:11 +01003008 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02003009 " co1=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003010 conn,
3011 conn_get_ctrl_name(conn),
3012 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02003013 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003014 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003015 obj_type_name(conn->target),
3016 obj_base_ptr(conn->target));
3017
3018 chunk_appendf(&trash,
Willy Tarreau76913d32019-08-30 14:33:11 +02003019 " flags=0x%08x fd=%d fd.state=%02x updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003020 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003021 conn->handle.fd,
3022 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01003023 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01003024 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
Willy Tarreaufb3b1b02018-12-18 14:28:24 +01003025
3026 chunk_appendf(&trash, " cs=%p csf=0x%08x ctx=%p\n", cs, cs->flags, cs->ctx);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003027 }
3028 else if ((tmpctx = objt_appctx(strm->si[1].end)) != NULL) {
3029 chunk_appendf(&trash,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003030 " 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 +01003031 tmpctx,
3032 tmpctx->st0,
3033 tmpctx->st1,
3034 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01003035 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02003036 tmpctx->thread_mask,
Willy Tarreau22d63a22019-04-24 08:41:29 +02003037 tmpctx->t->nice, tmpctx->t->calls, read_freq_ctr(&tmpctx->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003038 (unsigned long long)tmpctx->t->cpu_time, (unsigned long long)tmpctx->t->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003039 }
3040
3041 chunk_appendf(&trash,
3042 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
3043 " an_exp=%s",
3044 &strm->req,
3045 strm->req.flags, strm->req.analysers,
3046 strm->req.pipe ? strm->req.pipe->data : 0,
3047 strm->req.to_forward, strm->req.total,
3048 strm->req.analyse_exp ?
3049 human_time(TICKS_TO_MS(strm->req.analyse_exp - now_ms),
3050 TICKS_TO_MS(1000)) : "<NEVER>");
3051
3052 chunk_appendf(&trash,
3053 " rex=%s",
3054 strm->req.rex ?
3055 human_time(TICKS_TO_MS(strm->req.rex - now_ms),
3056 TICKS_TO_MS(1000)) : "<NEVER>");
3057
3058 chunk_appendf(&trash,
3059 " wex=%s\n"
Christopher Fauletbcac7862019-07-17 10:46:50 +02003060 " buf=%p data=%p o=%u p=%u i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003061 strm->req.wex ?
3062 human_time(TICKS_TO_MS(strm->req.wex - now_ms),
3063 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003064 &strm->req.buf,
3065 b_orig(&strm->req.buf), (unsigned int)co_data(&strm->req),
Christopher Fauletbcac7862019-07-17 10:46:50 +02003066 (unsigned int)ci_head_ofs(&strm->req), (unsigned int)ci_data(&strm->req),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003067 (unsigned int)strm->req.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003068
Christopher Fauletb9af8812019-01-04 14:30:44 +01003069 if (IS_HTX_STRM(strm)) {
3070 struct htx *htx = htxbuf(&strm->req.buf);
3071
3072 chunk_appendf(&trash,
Willy Tarreaub84e67f2019-01-07 10:01:34 +01003073 " htx=%p flags=0x%x size=%u data=%u used=%u wrap=%s extra=%llu\n",
Christopher Faulet192c6a22019-06-11 16:32:24 +02003074 htx, htx->flags, htx->size, htx->data, htx_nbblks(htx),
Christopher Faulet28f29c72019-04-30 17:55:45 +02003075 (htx->tail >= htx->head) ? "NO" : "YES",
Christopher Fauletb9af8812019-01-04 14:30:44 +01003076 (unsigned long long)htx->extra);
3077 }
3078
William Lallemand4c5b4d52016-11-21 08:51:11 +01003079 chunk_appendf(&trash,
3080 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
3081 " an_exp=%s",
3082 &strm->res,
3083 strm->res.flags, strm->res.analysers,
3084 strm->res.pipe ? strm->res.pipe->data : 0,
3085 strm->res.to_forward, strm->res.total,
3086 strm->res.analyse_exp ?
3087 human_time(TICKS_TO_MS(strm->res.analyse_exp - now_ms),
3088 TICKS_TO_MS(1000)) : "<NEVER>");
3089
3090 chunk_appendf(&trash,
3091 " rex=%s",
3092 strm->res.rex ?
3093 human_time(TICKS_TO_MS(strm->res.rex - now_ms),
3094 TICKS_TO_MS(1000)) : "<NEVER>");
3095
3096 chunk_appendf(&trash,
3097 " wex=%s\n"
Christopher Fauletbcac7862019-07-17 10:46:50 +02003098 " buf=%p data=%p o=%u p=%u i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003099 strm->res.wex ?
3100 human_time(TICKS_TO_MS(strm->res.wex - now_ms),
3101 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003102 &strm->res.buf,
3103 b_orig(&strm->res.buf), (unsigned int)co_data(&strm->res),
Christopher Fauletbcac7862019-07-17 10:46:50 +02003104 (unsigned int)ci_head_ofs(&strm->res), (unsigned int)ci_data(&strm->res),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003105 (unsigned int)strm->res.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003106
Christopher Fauletb9af8812019-01-04 14:30:44 +01003107 if (IS_HTX_STRM(strm)) {
3108 struct htx *htx = htxbuf(&strm->res.buf);
3109
3110 chunk_appendf(&trash,
3111 " htx=%p flags=0x%x size=%u data=%u used=%u wrap=%s extra=%llu\n",
Christopher Faulet192c6a22019-06-11 16:32:24 +02003112 htx, htx->flags, htx->size, htx->data, htx_nbblks(htx),
Christopher Faulet28f29c72019-04-30 17:55:45 +02003113 (htx->tail >= htx->head) ? "NO" : "YES",
Christopher Fauletb9af8812019-01-04 14:30:44 +01003114 (unsigned long long)htx->extra);
3115 }
3116
Willy Tarreaue6e52362019-01-04 17:42:57 +01003117 if (ci_putchk(si_ic(si), &trash) == -1)
3118 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003119
3120 /* use other states to dump the contents */
3121 }
3122 /* end of dump */
Willy Tarreaue6e52362019-01-04 17:42:57 +01003123 done:
William Lallemand4c5b4d52016-11-21 08:51:11 +01003124 appctx->ctx.sess.uid = 0;
3125 appctx->ctx.sess.section = 0;
3126 return 1;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003127 full:
3128 return 0;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003129}
3130
3131
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003132static int cli_parse_show_sess(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand4c5b4d52016-11-21 08:51:11 +01003133{
William Lallemand4c5b4d52016-11-21 08:51:11 +01003134 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
3135 return 1;
3136
3137 if (*args[2] && strcmp(args[2], "all") == 0)
3138 appctx->ctx.sess.target = (void *)-1;
3139 else if (*args[2])
3140 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
3141 else
3142 appctx->ctx.sess.target = NULL;
3143 appctx->ctx.sess.section = 0; /* start with stream status */
3144 appctx->ctx.sess.pos = 0;
3145
Willy Tarreauc6e7a1b2020-06-28 01:24:12 +02003146 /* we need to put an end marker into the streams list. We're just moving
3147 * ourselves there, so that once we found ourselves we know we've reached
3148 * the end. Without this we can run forever if new streams arrive faster
3149 * than we can dump them.
3150 */
3151 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
3152 LIST_DEL(&si_strm(appctx->owner)->list);
3153 LIST_ADDQ(&streams, &si_strm(appctx->owner)->list);
3154 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003155 return 0;
3156}
3157
3158/* This function dumps all streams' states onto the stream interface's
3159 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreaue6e52362019-01-04 17:42:57 +01003160 * to be called again, otherwise non-zero. It proceeds in an isolated
3161 * thread so there is no thread safety issue here.
William Lallemand4c5b4d52016-11-21 08:51:11 +01003162 */
3163static int cli_io_handler_dump_sess(struct appctx *appctx)
3164{
3165 struct stream_interface *si = appctx->owner;
3166 struct connection *conn;
3167
Willy Tarreaue6e52362019-01-04 17:42:57 +01003168 thread_isolate();
3169
William Lallemand4c5b4d52016-11-21 08:51:11 +01003170 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
3171 /* If we're forced to shut down, we might have to remove our
3172 * reference to the last stream being dumped.
3173 */
3174 if (appctx->st2 == STAT_ST_LIST) {
3175 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3176 LIST_DEL(&appctx->ctx.sess.bref.users);
3177 LIST_INIT(&appctx->ctx.sess.bref.users);
3178 }
3179 }
Willy Tarreaue6e52362019-01-04 17:42:57 +01003180 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003181 }
3182
3183 chunk_reset(&trash);
3184
3185 switch (appctx->st2) {
3186 case STAT_ST_INIT:
3187 /* the function had not been called yet, let's prepare the
3188 * buffer for a response. We initialize the current stream
3189 * pointer to the first in the global list. When a target
3190 * stream is being destroyed, it is responsible for updating
3191 * this pointer. We know we have reached the end when this
3192 * pointer points back to the head of the streams list.
3193 */
3194 LIST_INIT(&appctx->ctx.sess.bref.users);
3195 appctx->ctx.sess.bref.ref = streams.n;
3196 appctx->st2 = STAT_ST_LIST;
3197 /* fall through */
3198
3199 case STAT_ST_LIST:
3200 /* first, let's detach the back-ref from a possible previous stream */
3201 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3202 LIST_DEL(&appctx->ctx.sess.bref.users);
3203 LIST_INIT(&appctx->ctx.sess.bref.users);
3204 }
3205
Willy Tarreauc6e7a1b2020-06-28 01:24:12 +02003206 /* and start from where we stopped, never going further than ourselves */
3207 while (appctx->ctx.sess.bref.ref != si_strm(appctx->owner)->list.n) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003208 char pn[INET6_ADDRSTRLEN];
3209 struct stream *curr_strm;
3210
3211 curr_strm = LIST_ELEM(appctx->ctx.sess.bref.ref, struct stream *, list);
3212
3213 if (appctx->ctx.sess.target) {
3214 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_strm)
3215 goto next_sess;
3216
3217 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
3218 /* call the proper dump() function and return if we're missing space */
Willy Tarreaue6e52362019-01-04 17:42:57 +01003219 if (!stats_dump_full_strm_to_buffer(si, curr_strm))
3220 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003221
3222 /* stream dump complete */
3223 LIST_DEL(&appctx->ctx.sess.bref.users);
3224 LIST_INIT(&appctx->ctx.sess.bref.users);
3225 if (appctx->ctx.sess.target != (void *)-1) {
3226 appctx->ctx.sess.target = NULL;
3227 break;
3228 }
3229 else
3230 goto next_sess;
3231 }
3232
3233 chunk_appendf(&trash,
3234 "%p: proto=%s",
3235 curr_strm,
Willy Tarreaub7436612020-08-28 19:51:44 +02003236 strm_li(curr_strm) ? strm_li(curr_strm)->rx.proto->name : "?");
William Lallemand4c5b4d52016-11-21 08:51:11 +01003237
3238 conn = objt_conn(strm_orig(curr_strm));
Willy Tarreau71e34c12019-07-17 15:07:06 +02003239 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003240 case AF_INET:
3241 case AF_INET6:
3242 chunk_appendf(&trash,
3243 " src=%s:%d fe=%s be=%s srv=%s",
3244 pn,
Willy Tarreau71e34c12019-07-17 15:07:06 +02003245 get_host_port(conn->src),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003246 strm_fe(curr_strm)->id,
3247 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3248 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3249 );
3250 break;
3251 case AF_UNIX:
3252 chunk_appendf(&trash,
3253 " src=unix:%d fe=%s be=%s srv=%s",
3254 strm_li(curr_strm)->luid,
3255 strm_fe(curr_strm)->id,
3256 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3257 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3258 );
3259 break;
3260 }
3261
3262 chunk_appendf(&trash,
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003263 " ts=%02x age=%s calls=%u rate=%u cpu=%llu lat=%llu",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003264 curr_strm->task->state,
3265 human_time(now.tv_sec - curr_strm->logs.tv_accept.tv_sec, 1),
Willy Tarreau2e9c1d22019-04-24 08:28:31 +02003266 curr_strm->task->calls, read_freq_ctr(&curr_strm->call_rate),
Willy Tarreau9efd7452018-05-31 14:48:54 +02003267 (unsigned long long)curr_strm->task->cpu_time, (unsigned long long)curr_strm->task->lat_time);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003268
3269 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003270 " rq[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003271 curr_strm->req.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003272 (unsigned int)ci_data(&curr_strm->req),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003273 curr_strm->req.analysers,
3274 curr_strm->req.rex ?
3275 human_time(TICKS_TO_MS(curr_strm->req.rex - now_ms),
3276 TICKS_TO_MS(1000)) : "");
3277
3278 chunk_appendf(&trash,
3279 ",wx=%s",
3280 curr_strm->req.wex ?
3281 human_time(TICKS_TO_MS(curr_strm->req.wex - now_ms),
3282 TICKS_TO_MS(1000)) : "");
3283
3284 chunk_appendf(&trash,
3285 ",ax=%s]",
3286 curr_strm->req.analyse_exp ?
3287 human_time(TICKS_TO_MS(curr_strm->req.analyse_exp - now_ms),
3288 TICKS_TO_MS(1000)) : "");
3289
3290 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003291 " rp[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003292 curr_strm->res.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003293 (unsigned int)ci_data(&curr_strm->res),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003294 curr_strm->res.analysers,
3295 curr_strm->res.rex ?
3296 human_time(TICKS_TO_MS(curr_strm->res.rex - now_ms),
3297 TICKS_TO_MS(1000)) : "");
3298
3299 chunk_appendf(&trash,
3300 ",wx=%s",
3301 curr_strm->res.wex ?
3302 human_time(TICKS_TO_MS(curr_strm->res.wex - now_ms),
3303 TICKS_TO_MS(1000)) : "");
3304
3305 chunk_appendf(&trash,
3306 ",ax=%s]",
3307 curr_strm->res.analyse_exp ?
3308 human_time(TICKS_TO_MS(curr_strm->res.analyse_exp - now_ms),
3309 TICKS_TO_MS(1000)) : "");
3310
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003311 conn = cs_conn(objt_cs(curr_strm->si[0].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003312 chunk_appendf(&trash,
3313 " s0=[%d,%1xh,fd=%d,ex=%s]",
3314 curr_strm->si[0].state,
3315 curr_strm->si[0].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003316 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003317 curr_strm->si[0].exp ?
3318 human_time(TICKS_TO_MS(curr_strm->si[0].exp - now_ms),
3319 TICKS_TO_MS(1000)) : "");
3320
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003321 conn = cs_conn(objt_cs(curr_strm->si[1].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003322 chunk_appendf(&trash,
3323 " s1=[%d,%1xh,fd=%d,ex=%s]",
3324 curr_strm->si[1].state,
3325 curr_strm->si[1].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003326 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003327 curr_strm->si[1].exp ?
3328 human_time(TICKS_TO_MS(curr_strm->si[1].exp - now_ms),
3329 TICKS_TO_MS(1000)) : "");
3330
3331 chunk_appendf(&trash,
3332 " exp=%s",
3333 curr_strm->task->expire ?
3334 human_time(TICKS_TO_MS(curr_strm->task->expire - now_ms),
3335 TICKS_TO_MS(1000)) : "");
3336 if (task_in_rq(curr_strm->task))
3337 chunk_appendf(&trash, " run(nice=%d)", curr_strm->task->nice);
3338
3339 chunk_appendf(&trash, "\n");
3340
Willy Tarreau06d80a92017-10-19 14:32:15 +02003341 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003342 /* let's try again later from this stream. We add ourselves into
3343 * this stream's users so that it can remove us upon termination.
3344 */
William Lallemand4c5b4d52016-11-21 08:51:11 +01003345 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreaue6e52362019-01-04 17:42:57 +01003346 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003347 }
3348
3349 next_sess:
3350 appctx->ctx.sess.bref.ref = curr_strm->list.n;
3351 }
3352
3353 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
3354 /* specified stream not found */
3355 if (appctx->ctx.sess.section > 0)
3356 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
3357 else
3358 chunk_appendf(&trash, "Session not found.\n");
3359
Willy Tarreaue6e52362019-01-04 17:42:57 +01003360 if (ci_putchk(si_ic(si), &trash) == -1)
3361 goto full;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003362
3363 appctx->ctx.sess.target = NULL;
3364 appctx->ctx.sess.uid = 0;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003365 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003366 }
William Lallemand4c5b4d52016-11-21 08:51:11 +01003367 /* fall through */
3368
3369 default:
3370 appctx->st2 = STAT_ST_FIN;
Willy Tarreaue6e52362019-01-04 17:42:57 +01003371 goto done;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003372 }
Willy Tarreaue6e52362019-01-04 17:42:57 +01003373 done:
3374 thread_release();
3375 return 1;
3376 full:
3377 thread_release();
3378 si_rx_room_blk(si);
3379 return 0;
William Lallemand4c5b4d52016-11-21 08:51:11 +01003380}
3381
3382static void cli_release_show_sess(struct appctx *appctx)
3383{
3384 if (appctx->st2 == STAT_ST_LIST) {
Willy Tarreau7ce3f092017-11-10 16:24:41 +01003385 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003386 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
3387 LIST_DEL(&appctx->ctx.sess.bref.users);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003388 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003389 }
3390}
3391
Willy Tarreau61b65212016-11-24 11:09:25 +01003392/* Parses the "shutdown session" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003393static int cli_parse_shutdown_session(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau61b65212016-11-24 11:09:25 +01003394{
3395 struct stream *strm, *ptr;
3396
3397 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3398 return 1;
3399
Willy Tarreau9d008692019-08-09 11:21:01 +02003400 if (!*args[2])
3401 return cli_err(appctx, "Session pointer expected (use 'show sess').\n");
Willy Tarreau61b65212016-11-24 11:09:25 +01003402
3403 ptr = (void *)strtoul(args[2], NULL, 0);
3404
3405 /* first, look for the requested stream in the stream table */
3406 list_for_each_entry(strm, &streams, list) {
3407 if (strm == ptr)
3408 break;
3409 }
3410
3411 /* do we have the stream ? */
Willy Tarreau9d008692019-08-09 11:21:01 +02003412 if (strm != ptr)
3413 return cli_err(appctx, "No such session (use 'show sess').\n");
Willy Tarreau61b65212016-11-24 11:09:25 +01003414
3415 stream_shutdown(strm, SF_ERR_KILLED);
3416 return 1;
3417}
3418
Willy Tarreau4e46b622016-11-23 16:50:48 +01003419/* Parses the "shutdown session server" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003420static int cli_parse_shutdown_sessions_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau4e46b622016-11-23 16:50:48 +01003421{
3422 struct server *sv;
Willy Tarreau4e46b622016-11-23 16:50:48 +01003423
3424 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3425 return 1;
3426
3427 sv = cli_find_server(appctx, args[3]);
3428 if (!sv)
3429 return 1;
3430
3431 /* kill all the stream that are on this server */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003432 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreaud9e26a72019-11-14 16:37:16 +01003433 srv_shutdown_streams(sv, SF_ERR_KILLED);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003434 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau4e46b622016-11-23 16:50:48 +01003435 return 1;
3436}
3437
William Lallemand4c5b4d52016-11-21 08:51:11 +01003438/* register cli keywords */
3439static struct cli_kw_list cli_kws = {{ },{
3440 { { "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 +01003441 { { "shutdown", "session", NULL }, "shutdown session : kill a specific session", cli_parse_shutdown_session, NULL, NULL },
Willy Tarreau4e46b622016-11-23 16:50:48 +01003442 { { "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 +01003443 {{},}
3444}};
3445
Willy Tarreau0108d902018-11-25 19:14:37 +01003446INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3447
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003448/* main configuration keyword registration. */
3449static struct action_kw_list stream_tcp_keywords = { ILH, {
3450 { "use-service", stream_parse_use_service },
3451 { /* END */ }
3452}};
3453
Willy Tarreau0108d902018-11-25 19:14:37 +01003454INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &stream_tcp_keywords);
3455
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003456static struct action_kw_list stream_http_keywords = { ILH, {
3457 { "use-service", stream_parse_use_service },
3458 { /* END */ }
3459}};
3460
Willy Tarreau0108d902018-11-25 19:14:37 +01003461INITCALL1(STG_REGISTER, http_req_keywords_register, &stream_http_keywords);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003462
Willy Tarreaubaaee002006-06-26 02:48:02 +02003463/*
3464 * Local variables:
3465 * c-indent-level: 8
3466 * c-basic-offset: 8
3467 * End:
3468 */