blob: 0d91b1d5d8fe2330e39a56a5d5775fc7909a2e89 [file] [log] [blame]
Christopher Faulet51dbc942018-09-13 09:05:15 +02001/*
2 * HTT/1 mux-demux for connections
3 *
4 * Copyright 2018 Christopher Faulet <cfaulet@haproxy.com>
5 *
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 */
Willy Tarreaub2551052020-06-09 09:07:15 +020012#include <import/ebistree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020013#include <import/ebmbtree.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020014
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020018#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020019#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020020#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/istbuf.h>
24#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020025#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020026#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Christopher Fauletb4c584e2021-11-26 17:37:07 +010028#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020029#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020030#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020031#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020032
33/*
34 * H1 Connection flags (32 bits)
35 */
36#define H1C_F_NONE 0x00000000
37
38/* Flags indicating why writing output data are blocked */
39#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
40#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
41/* 0x00000004 - 0x00000008 unused */
42
43/* Flags indicating why reading input data are blocked. */
44#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
45#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020046#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet51dbc942018-09-13 09:05:15 +020047
Christopher Faulet7b109f22019-12-05 11:18:31 +010048/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010049#define H1C_F_ST_EMBRYONIC 0x00000100 /* Set when a H1 stream with no conn-stream is attached to the connection */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +010050#define H1C_F_ST_ATTACHED 0x00000200 /* Set when a H1 stream with a conn-stream is attached to the connection (may be not READY) */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010051#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
52 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
53#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
54#define H1C_F_ST_SHUTDOWN 0x00001000 /* connection must be shut down ASAP flushing output first (conn-stream may still be attached) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +010055#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
56 * a TCP>H1 upgrade is in progress Thus this flag is only set if ATTACHED is also set */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010057#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Faulet75308302021-11-15 14:51:37 +010058#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed (implied ST_SHUTDOWN) */
Christopher Fauleta85c5222021-10-27 15:36:38 +020059/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020060
Christopher Fauletb385b502021-01-13 18:47:57 +010061#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
62#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
63#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
64#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
65#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
66#define H1C_F_CO_STREAMER 0x00200000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */
Christopher Faulet129817b2018-09-20 16:14:40 +020067
Christopher Faulet10a86702021-04-07 14:18:11 +020068/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010069#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020070
Christopher Faulet51dbc942018-09-13 09:05:15 +020071/*
72 * H1 Stream flags (32 bits)
73 */
Christopher Faulet129817b2018-09-20 16:14:40 +020074#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020075
76#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
77#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020078#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
79
Willy Tarreauc493c9c2019-06-03 14:18:22 +020080#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020081#define H1S_F_WANT_KAL 0x00000010
82#define H1S_F_WANT_TUN 0x00000020
83#define H1S_F_WANT_CLO 0x00000040
84#define H1S_F_WANT_MSK 0x00000070
85#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010086#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020087
Ilya Shipitsinacf84592021-02-06 22:29:08 +050088/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010089#define H1S_F_NOT_IMPL_ERROR 0x00000400 /* Set when a feature is not implemented during the message parsing */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020090#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
91#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
92#define H1S_F_ERROR 0x00001800 /* stream error mask */
93
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020094#define H1S_F_HAVE_SRV_NAME 0x00002000 /* Set during output process if the server name header was added to the request */
Christopher Fauletada34b62019-05-24 16:36:43 +020095#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020096
97/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020098struct h1c {
99 struct connection *conn;
100 struct proxy *px;
101 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200102 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200103 struct buffer ibuf; /* Input buffer to store data before parsing */
104 struct buffer obuf; /* Output buffer to store data after reformatting */
105
106 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
107 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
108
109 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100110 struct task *task; /* timeout management task */
Christopher Faulet563c3452021-11-26 17:37:51 +0100111 struct h1_counters *px_counters; /* h1 counters attached to proxy */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200112 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
113 int timeout; /* client/server timeout duration */
114 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200115};
116
117/* H1 stream descriptor */
118struct h1s {
119 struct h1c *h1c;
120 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100121 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200122
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100123 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200124
Olivier Houchardf502aca2018-12-14 19:42:40 +0100125 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200126 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200127 struct h1m req;
128 struct h1m res;
129
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500130 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200131 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100132
133 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200134};
135
Christopher Faulet98fbe952019-07-22 16:18:24 +0200136/* Map of headers used to convert outgoing headers */
137struct h1_hdrs_map {
138 char *name;
139 struct eb_root map;
140};
141
142/* An entry in a headers map */
143struct h1_hdr_entry {
144 struct ist name;
145 struct ebpt_node node;
146};
147
148/* Declare the headers map */
149static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
150
151
Christopher Faulet6b81df72019-10-01 22:08:43 +0200152/* trace source and events */
153static void h1_trace(enum trace_level level, uint64_t mask,
154 const struct trace_source *src,
155 const struct ist where, const struct ist func,
156 const void *a1, const void *a2, const void *a3, const void *a4);
157
158/* The event representation is split like this :
159 * h1c - internal H1 connection
160 * h1s - internal H1 stream
161 * strm - application layer
162 * rx - data receipt
163 * tx - data transmission
164 *
165 */
166static const struct trace_event h1_trace_events[] = {
167#define H1_EV_H1C_NEW (1ULL << 0)
168 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
169#define H1_EV_H1C_RECV (1ULL << 1)
170 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
171#define H1_EV_H1C_SEND (1ULL << 2)
172 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
173#define H1_EV_H1C_BLK (1ULL << 3)
174 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
175#define H1_EV_H1C_WAKE (1ULL << 4)
176 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
177#define H1_EV_H1C_END (1ULL << 5)
178 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
179#define H1_EV_H1C_ERR (1ULL << 6)
180 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
181
182#define H1_EV_RX_DATA (1ULL << 7)
183 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
184#define H1_EV_RX_EOI (1ULL << 8)
185 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
186#define H1_EV_RX_HDRS (1ULL << 9)
187 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
188#define H1_EV_RX_BODY (1ULL << 10)
189 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
190#define H1_EV_RX_TLRS (1ULL << 11)
191 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
192
193#define H1_EV_TX_DATA (1ULL << 12)
194 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
195#define H1_EV_TX_EOI (1ULL << 13)
196 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
197#define H1_EV_TX_HDRS (1ULL << 14)
198 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
199#define H1_EV_TX_BODY (1ULL << 15)
200 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
201#define H1_EV_TX_TLRS (1ULL << 16)
202 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
203
204#define H1_EV_H1S_NEW (1ULL << 17)
205 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
206#define H1_EV_H1S_BLK (1ULL << 18)
207 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
208#define H1_EV_H1S_END (1ULL << 19)
209 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
210#define H1_EV_H1S_ERR (1ULL << 20)
211 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
212
213#define H1_EV_STRM_NEW (1ULL << 21)
214 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
215#define H1_EV_STRM_RECV (1ULL << 22)
216 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
217#define H1_EV_STRM_SEND (1ULL << 23)
218 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
219#define H1_EV_STRM_WAKE (1ULL << 24)
220 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
221#define H1_EV_STRM_SHUT (1ULL << 25)
222 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
223#define H1_EV_STRM_END (1ULL << 26)
224 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
225#define H1_EV_STRM_ERR (1ULL << 27)
226 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
227
228 { }
229};
230
231static const struct name_desc h1_trace_lockon_args[4] = {
232 /* arg1 */ { /* already used by the connection */ },
233 /* arg2 */ { .name="h1s", .desc="H1 stream" },
234 /* arg3 */ { },
235 /* arg4 */ { }
236};
237
238static const struct name_desc h1_trace_decoding[] = {
239#define H1_VERB_CLEAN 1
240 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
241#define H1_VERB_MINIMAL 2
242 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
243#define H1_VERB_SIMPLE 3
244 { .name="simple", .desc="add request/response status line or htx info when available" },
245#define H1_VERB_ADVANCED 4
246 { .name="advanced", .desc="add header fields or frame decoding when available" },
247#define H1_VERB_COMPLETE 5
248 { .name="complete", .desc="add full data dump when available" },
249 { /* end */ }
250};
251
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200252static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200253 .name = IST("h1"),
254 .desc = "HTTP/1 multiplexer",
255 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
256 .default_cb = h1_trace,
257 .known_events = h1_trace_events,
258 .lockon_args = h1_trace_lockon_args,
259 .decoding = h1_trace_decoding,
260 .report_events = ~0, // report everything by default
261};
262
263#define TRACE_SOURCE &trace_h1
264INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
265
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100266
267/* h1 stats module */
268enum {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100269 H1_ST_OPEN_CONN,
270 H1_ST_OPEN_STREAM,
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100271 H1_STATS_COUNT /* must be the last member of the enum */
272};
273
274
275static struct name_desc h1_stats[] = {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100276 [H1_ST_OPEN_CONN] = { .name = "h1_open_connections",
277 .desc = "Count of currently open connections" },
278 [H1_ST_OPEN_STREAM] = { .name = "h1_open_streams",
279 .desc = "Count of currently open streams" },
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100280};
281
282static struct h1_counters {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100283 long long open_conns; /* count of currently open connections */
284 long long open_streams; /* count of currently open streams */
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100285} h1_counters;
286
287static void h1_fill_stats(void *data, struct field *stats)
288{
Christopher Faulet60fa0512021-11-26 18:10:39 +0100289 struct h1_counters *counters = data;
290
291 stats[H1_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
292 stats[H1_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100293}
294
295static struct stats_module h1_stats_module = {
296 .name = "h1",
297 .fill_stats = h1_fill_stats,
298 .stats = h1_stats,
299 .stats_count = H1_STATS_COUNT,
300 .counters = &h1_counters,
301 .counters_size = sizeof(h1_counters),
302 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
303 .clearable = 1,
304};
305
306INITCALL1(STG_REGISTER, stats_register_module, &h1_stats_module);
307
308
Christopher Faulet51dbc942018-09-13 09:05:15 +0200309/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100310DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
311DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200312
Christopher Faulet51dbc942018-09-13 09:05:15 +0200313static int h1_recv(struct h1c *h1c);
314static int h1_send(struct h1c *h1c);
315static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100316/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100317struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
318struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200319static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200320static void h1_wake_stream_for_recv(struct h1s *h1s);
321static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200322
Christopher Faulet6b81df72019-10-01 22:08:43 +0200323/* the H1 traces always expect that arg1, if non-null, is of type connection
324 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
325 * that arg3, if non-null, is a htx for rx/tx headers.
326 */
327static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
328 const struct ist where, const struct ist func,
329 const void *a1, const void *a2, const void *a3, const void *a4)
330{
331 const struct connection *conn = a1;
332 const struct h1c *h1c = conn ? conn->ctx : NULL;
333 const struct h1s *h1s = a2;
334 const struct htx *htx = a3;
335 const size_t *val = a4;
336
337 if (!h1c)
338 h1c = (h1s ? h1s->h1c : NULL);
339
340 if (!h1c || src->verbosity < H1_VERB_CLEAN)
341 return;
342
343 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200344 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200345
346 /* Display request and response states if h1s is defined */
Christopher Faulet6580f282021-11-26 17:31:35 +0100347 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200348 chunk_appendf(&trace_buf, " [%s, %s]",
349 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
350
Christopher Faulet6580f282021-11-26 17:31:35 +0100351 if (src->verbosity > H1_VERB_SIMPLE) {
352 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
353 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
354 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
355 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
356 }
357
358 }
359
Christopher Faulet6b81df72019-10-01 22:08:43 +0200360 if (src->verbosity == H1_VERB_CLEAN)
361 return;
362
363 /* Display the value to the 4th argument (level > STATE) */
364 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100365 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200366
367 /* Display status-line if possible (verbosity > MINIMAL) */
368 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
369 const struct htx_blk *blk = htx_get_head_blk(htx);
370 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
371 enum htx_blk_type type = htx_get_blk_type(blk);
372
373 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
374 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
375 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
376 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
377 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
378 }
379
380 /* Display h1c info and, if defined, h1s info (pointer + flags) */
381 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100382 if (h1c->conn)
383 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
384 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200385 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100386 if (h1s->cs)
387 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
388 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200389
390 if (src->verbosity == H1_VERB_MINIMAL)
391 return;
392
393 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
394 if (src->level > TRACE_LEVEL_USER) {
395 if (src->verbosity == H1_VERB_COMPLETE ||
396 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
397 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
398 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
399 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
400 if (src->verbosity == H1_VERB_COMPLETE ||
401 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
402 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
403 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
404 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
405 }
406
407 /* Display htx info if defined (level > USER) */
408 if (src->level > TRACE_LEVEL_USER && htx) {
409 int full = 0;
410
411 /* Full htx info (level > STATE && verbosity > SIMPLE) */
412 if (src->level > TRACE_LEVEL_STATE) {
413 if (src->verbosity == H1_VERB_COMPLETE)
414 full = 1;
415 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
416 full = 1;
417 }
418
419 chunk_memcat(&trace_buf, "\n\t", 2);
420 htx_dump(&trace_buf, htx, full);
421 }
422}
423
424
Christopher Faulet51dbc942018-09-13 09:05:15 +0200425/*****************************************************/
426/* functions below are for dynamic buffer management */
427/*****************************************************/
428/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100429 * Indicates whether or not we may receive data. The rules are the following :
430 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200431 * must not attempt to receive
432 * - if we are waiting for the connection establishment, we must not attempt
433 * to receive
434 * - if an error was detected on the stream we must not attempt to receive
435 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100436 * - if the input buffer failed to be allocated or is full , we must not try
437 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200438 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200439 * - otherwise must may not attempt to receive
440 */
441static inline int h1_recv_allowed(const struct h1c *h1c)
442{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100443 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100444 TRACE_DEVEL("recv not allowed because of error on h1c", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200445 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200446 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200447
Willy Tarreau2febb842020-07-31 09:15:43 +0200448 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
449 TRACE_DEVEL("recv not allowed because of (error|read0|waitl4|waitl6) on connection", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletcf56b992018-12-11 16:12:31 +0100450 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200451 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100452
Christopher Faulet119ac872020-09-30 17:33:22 +0200453 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
454 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
455 return 0;
456 }
457
Christopher Fauletd17ad822020-09-24 15:14:29 +0200458 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200459 return 1;
460
Christopher Faulet6b81df72019-10-01 22:08:43 +0200461 TRACE_DEVEL("recv not allowed because input is blocked", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200462 return 0;
463}
464
465/*
466 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
467 * flags are used to figure what buffer was requested. It returns 1 if the
468 * allocation succeeds, in which case the connection is woken up, or 0 if it's
469 * impossible to wake up and we prefer to be woken up later.
470 */
471static int h1_buf_available(void *target)
472{
473 struct h1c *h1c = target;
474
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100475 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200476 TRACE_STATE("unblocking h1c, ibuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200477 h1c->flags &= ~H1C_F_IN_ALLOC;
478 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200479 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480 return 1;
481 }
482
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100483 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200484 TRACE_STATE("unblocking h1s, obuf allocated", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200485 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200486 if (h1c->h1s)
487 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200488 return 1;
489 }
490
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100491 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200492 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
493 h1c->flags &= ~H1C_F_IN_SALLOC;
494 tasklet_wakeup(h1c->wait_event.tasklet);
495 return 1;
496 }
497
Christopher Faulet51dbc942018-09-13 09:05:15 +0200498 return 0;
499}
500
501/*
502 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
503 */
504static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
505{
506 struct buffer *buf = NULL;
507
Willy Tarreau2b718102021-04-21 07:32:39 +0200508 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100509 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200510 h1c->buf_wait.target = h1c;
511 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200512 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200513 }
514 return buf;
515}
516
517/*
518 * Release a buffer, if any, and try to wake up entities waiting in the buffer
519 * wait queue.
520 */
521static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
522{
523 if (bptr->size) {
524 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100525 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200526 }
527}
528
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100529/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100530 * or not. We rely on H1C_F_ST_IDLE to know if the connection is in-use or
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100531 * not. This flag is only set when no H1S is attached and when the previous
532 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100533 */
534static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200535{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100536 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200537
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100538 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200539}
540
Willy Tarreau00f18a32019-01-26 12:19:01 +0100541/* returns the number of streams still available on a connection */
542static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100543{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100544 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100545}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200546
Christopher Faulet7a145d62020-08-05 11:31:16 +0200547/* Refresh the h1c task timeout if necessary */
548static void h1_refresh_timeout(struct h1c *h1c)
549{
550 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100551 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200552 /* half-closed or dead connections : switch to clientfin/serverfin
553 * timeouts so that we don't hang too long on clients that have
554 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200555 */
556 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200557 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
558 }
559 else if (b_data(&h1c->obuf)) {
560 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200561 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200562 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
563 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100564 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
565 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200566 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100567 TRACE_DEVEL("refreshing connection's timeout (alive front h1c but not ready)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200568 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200569 else {
570 /* alive back connections of front connections with a conn-stream attached */
571 h1c->task->expire = TICK_ETERNITY;
572 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
573 }
574
Christopher Fauletdbe57792020-10-05 17:50:58 +0200575 /* Finally set the idle expiration date if shorter */
576 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200577 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
578 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200579 }
580}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200581
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200582static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200583{
584 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
585 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
586 h1c->idle_exp = TICK_ETERNITY;
587 return;
588 }
589
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100590 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200591 if (!tick_isset(h1c->idle_exp)) {
592 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
593 !b_data(&h1c->ibuf) && /* No input data */
594 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
595 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
596 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
597 }
598 else {
599 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
600 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
601 }
602 }
603 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100604 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200605 if (!tick_isset(h1c->idle_exp)) {
606 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
607 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
608 }
609 }
610 else { // CS_ATTACHED or SHUTDOWN
611 h1c->idle_exp = TICK_ETERNITY;
612 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
613 }
614}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200615/*****************************************************************/
616/* functions below are dedicated to the mux setup and management */
617/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200618
619/* returns non-zero if there are input data pending for stream h1s. */
620static inline size_t h1s_data_pending(const struct h1s *h1s)
621{
622 const struct h1m *h1m;
623
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200624 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100625 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200626}
627
Christopher Faulet16df1782020-12-04 16:47:41 +0100628/* Creates a new conn-stream and the associate stream. <input> is used as input
629 * buffer for the stream. On success, it is transferred to the stream and the
630 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
631 * mux must still take care of it. However, there is nothing special to do
632 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
633 * b_free() on it is always safe. This function returns the conn-stream on
634 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200635static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100636{
637 struct conn_stream *cs;
638
Christopher Faulet6b81df72019-10-01 22:08:43 +0200639 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200640 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200641 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100642 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100643 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200644 }
Christopher Faulet47365272018-10-31 17:40:50 +0100645 h1s->cs = cs;
646 cs->ctx = h1s;
647
648 if (h1s->flags & H1S_F_NOT_FIRST)
649 cs->flags |= CS_FL_NOT_FIRST;
650
Amaury Denoyelle90ac6052021-10-18 14:45:49 +0200651 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
652 cs->flags |= CS_FL_WEBSOCKET;
653
Christopher Faulet26256f82020-09-14 11:40:13 +0200654 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200655 TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100656 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200657 }
658
Christopher Faulet60fa0512021-11-26 18:10:39 +0100659 HA_ATOMIC_INC(&h1s->h1c->px_counters->open_streams);
660
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100661 h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200662 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100663 return cs;
664
665 err:
666 cs_free(cs);
667 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100668 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100669 return NULL;
670}
671
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100672static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
673{
674 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
675
676 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100677 TRACE_ERROR("stream upgrade failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100678 goto err;
679 }
680
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100681 h1s->h1c->flags |= H1C_F_ST_READY;
682 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
683 return h1s->cs;
684
685 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100686 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100687 return NULL;
688}
689
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200690static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200691{
692 struct h1s *h1s;
693
Christopher Faulet6b81df72019-10-01 22:08:43 +0200694 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
695
Christopher Faulet51dbc942018-09-13 09:05:15 +0200696 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100697 if (!h1s) {
698 TRACE_ERROR("H1S allocation failure", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100699 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100700 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200701 h1s->h1c = h1c;
702 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200703 h1s->sess = NULL;
704 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100705 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100706 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200707 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100708 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200709
710 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100711 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200712
Christopher Faulet129817b2018-09-20 16:14:40 +0200713 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100714 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200715
716 h1s->status = 0;
717 h1s->meth = HTTP_METH_OTHER;
718
Christopher Faulet47365272018-10-31 17:40:50 +0100719 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
720 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100721 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100722
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200723 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
724 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200725
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200726 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100727 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200728 return NULL;
729}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100730
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200731static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
732{
733 struct session *sess = h1c->conn->owner;
734 struct h1s *h1s;
735
736 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
737
738 h1s = h1s_new(h1c);
739 if (!h1s)
740 goto fail;
741
742 h1s->sess = sess;
743
744 if (h1c->px->options2 & PR_O2_REQBUG_OK)
745 h1s->req.err_pos = -1;
746
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200747 h1c->idle_exp = TICK_ETERNITY;
748 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200749 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200750 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100751
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200752 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100753 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200754 return NULL;
755}
756
757static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
758{
759 struct h1s *h1s;
760
761 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
762
763 h1s = h1s_new(h1c);
764 if (!h1s)
765 goto fail;
766
Christopher Faulet10a86702021-04-07 14:18:11 +0200767 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200768 h1s->cs = cs;
769 h1s->sess = sess;
770 cs->ctx = h1s;
771
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100772 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200773
774 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
775 h1s->res.err_pos = -1;
776
Christopher Faulet60fa0512021-11-26 18:10:39 +0100777 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
778
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200779 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
780 return h1s;
781
782 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100783 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100784 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785}
786
787static void h1s_destroy(struct h1s *h1s)
788{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200789 if (h1s) {
790 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200791
Christopher Faulet6b81df72019-10-01 22:08:43 +0200792 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200793 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200794
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100795 if (h1s->subs)
796 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200797
Christopher Fauletd17ad822020-09-24 15:14:29 +0200798 h1_release_buf(h1c, &h1s->rxbuf);
799
Christopher Faulet10a86702021-04-07 14:18:11 +0200800 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100801 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200802 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
803 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200804 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100805 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100806 TRACE_ERROR("h1s on error, set error on h1c", H1_EV_H1S_END|H1_EV_H1C_ERR, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200807 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100808
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100809 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100810 !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100811 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100812 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100813 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100814 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
815 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200816 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100817 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100818 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200819 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100820
821 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200822 pool_free(pool_head_h1s, h1s);
823 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200824}
825
826/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200827 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500828 * to the existing conn_stream (for outgoing connections or for incoming ones
829 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200830 * establishment). <input> is always used as Input buffer and may contain
831 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
832 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200833 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200834static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
835 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200836{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200837 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100838 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200839 void *conn_ctx = conn->ctx;
840
841 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200842
843 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100844 if (!h1c) {
845 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200846 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100847 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200848 h1c->conn = conn;
849 h1c->px = proxy;
850
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100851 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200852 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200853 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200854 h1c->obuf = BUF_NULL;
855 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200856 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200857
Willy Tarreau90f366b2021-02-20 11:49:49 +0100858 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200859 h1c->wait_event.tasklet = tasklet_new();
860 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200861 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200862 h1c->wait_event.tasklet->process = h1_io_cb;
863 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100864 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200865 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200866
Christopher Faulete9b70722019-04-08 10:46:02 +0200867 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200868 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100869 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
870 if (tick_isset(proxy->timeout.serverfin))
871 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100872
873 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
874 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100875 } else {
876 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
877 if (tick_isset(proxy->timeout.clientfin))
878 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200879
Christopher Faulet563c3452021-11-26 17:37:51 +0100880 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
881 &h1_stats_module);
882
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200883 LIST_APPEND(&mux_stopping_data[tid].list,
884 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100885 }
886 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200887 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100888 if (!t) {
889 TRACE_ERROR("H1C task allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100890 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100891 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100892
893 h1c->task = t;
894 t->process = h1_timeout_task;
895 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200896
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100897 t->expire = tick_add(now_ms, h1c->timeout);
898 }
899
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100900 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200901
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200902 if (h1c->flags & H1C_F_IS_BACK) {
903 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200904 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
905 goto fail;
906 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100907 else if (conn_ctx) {
908 /* Upgraded frontend connection (from TCP) */
909 struct conn_stream *cs = conn_ctx;
910
911 if (!h1c_frt_stream_new(h1c))
912 goto fail;
913
914 h1c->h1s->cs = cs;
915 cs->ctx = h1c->h1s;
916
917 /* Attach the CS but Not ready yet */
918 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
919 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
920 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
921 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100922
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200923 if (t) {
924 h1_set_idle_expiration(h1c);
925 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100926 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200927 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100928
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200929 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100930 if (b_data(&h1c->ibuf))
931 tasklet_wakeup(h1c->wait_event.tasklet);
932 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200933 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200934
Christopher Faulet60fa0512021-11-26 18:10:39 +0100935 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
936
Christopher Faulet51dbc942018-09-13 09:05:15 +0200937 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200938 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200939 return 0;
940
941 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200942 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200943 if (h1c->wait_event.tasklet)
944 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200945 pool_free(pool_head_h1c, h1c);
946 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200947 conn->ctx = conn_ctx; // restore saved context
948 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200949 return -1;
950}
951
Christopher Faulet73c12072019-04-08 11:23:22 +0200952/* release function. This one should be called to free all resources allocated
953 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200954 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200955static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200956{
Christopher Faulet61840e72019-04-15 09:33:32 +0200957 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200958
Christopher Faulet6b81df72019-10-01 22:08:43 +0200959 TRACE_POINT(H1_EV_H1C_END);
960
Christopher Faulet51dbc942018-09-13 09:05:15 +0200961 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200962 /* The connection must be aattached to this mux to be released */
963 if (h1c->conn && h1c->conn->ctx == h1c)
964 conn = h1c->conn;
965
Christopher Faulet6b81df72019-10-01 22:08:43 +0200966 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
967
Christopher Faulet61840e72019-04-15 09:33:32 +0200968 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200969 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200970 /* Make sure we're no longer subscribed to anything */
971 if (h1c->wait_event.events)
972 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
973 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200974 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200975 /* connection successfully upgraded to H2, this
976 * mux was already released */
977 return;
978 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100979 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200980 sess_log(conn->owner); /* Log if the upgrade failed */
981 }
982
Olivier Houchard45c44372019-06-11 14:06:23 +0200983
Willy Tarreau2b718102021-04-21 07:32:39 +0200984 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100985 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200986
987 h1_release_buf(h1c, &h1c->ibuf);
988 h1_release_buf(h1c, &h1c->obuf);
989
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100990 if (h1c->task) {
991 h1c->task->context = NULL;
992 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
993 h1c->task = NULL;
994 }
995
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200996 if (h1c->wait_event.tasklet)
997 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200998
Christopher Fauletf2824e62018-10-01 12:12:37 +0200999 h1s_destroy(h1c->h1s);
Christopher Faulete76b4f02021-10-27 15:42:13 +02001000 if (conn) {
1001 if (h1c->wait_event.events != 0)
1002 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1003 &h1c->wait_event);
1004 h1_shutw_conn(conn);
1005 }
Christopher Faulet60fa0512021-11-26 18:10:39 +01001006
1007 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001008 pool_free(pool_head_h1c, h1c);
1009 }
1010
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001011 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001012 if (!conn_is_back(conn))
1013 LIST_DEL_INIT(&conn->stopping_list);
1014
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001015 conn->mux = NULL;
1016 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001017 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001018
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001019 conn_stop_tracking(conn);
1020 conn_full_close(conn);
1021 if (conn->destroy_cb)
1022 conn->destroy_cb(conn);
1023 conn_free(conn);
1024 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001025}
1026
1027/******************************************************/
1028/* functions below are for the H1 protocol processing */
1029/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001030/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1031 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001032 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001033static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001034{
Christopher Faulet570d1612018-11-26 11:13:57 +01001035 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001036
Christopher Faulet570d1612018-11-26 11:13:57 +01001037 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001038 (*(p + 5) > '1' ||
1039 (*(p + 5) == '1' && *(p + 7) >= '1')))
1040 h1m->flags |= H1_MF_VER_11;
1041}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001042
Christopher Faulet9768c262018-10-22 09:34:31 +02001043/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1044 * greater or equal to 1.1
1045 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001046static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001047{
Christopher Faulet570d1612018-11-26 11:13:57 +01001048 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001049
Christopher Faulet570d1612018-11-26 11:13:57 +01001050 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001051 (*(p + 5) > '1' ||
1052 (*(p + 5) == '1' && *(p + 7) >= '1')))
1053 h1m->flags |= H1_MF_VER_11;
1054}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001055
Christopher Fauletf2824e62018-10-01 12:12:37 +02001056/* Deduce the connection mode of the client connection, depending on the
1057 * configuration and the H1 message flags. This function is called twice, the
1058 * first time when the request is parsed and the second time when the response
1059 * is parsed.
1060 */
1061static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1062{
1063 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001064
1065 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001066 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001067 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001068 h1s->status == 101) {
1069 /* Either we've established an explicit tunnel, or we're
1070 * switching the protocol. In both cases, we're very unlikely to
1071 * understand the next protocols. We have to switch to tunnel
1072 * mode, so that we transfer the request and responses then let
1073 * this protocol pass unmodified. When we later implement
1074 * specific parsers for such protocols, we'll want to check the
1075 * Upgrade header which contains information about that protocol
1076 * for responses with status 101 (eg: see RFC2817 about TLS).
1077 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001078 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001079 TRACE_STATE("set tunnel mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001080 }
1081 else if (h1s->flags & H1S_F_WANT_KAL) {
1082 /* By default the client is in KAL mode. CLOSE mode mean
1083 * it is imposed by the client itself. So only change
1084 * KAL mode here. */
1085 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1086 /* no length known or explicit close => close */
1087 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001088 TRACE_STATE("detect close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001089 }
1090 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1091 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001092 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001093 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001094 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001095 }
1096 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001097 }
1098 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001099 /* Input direction: first pass */
1100 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1101 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001102 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001103 TRACE_STATE("detect close mode (req)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001104 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001105 }
1106
1107 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001108 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001109 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001110 TRACE_STATE("stopping, set close mode", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1111 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001112}
1113
1114/* Deduce the connection mode of the client connection, depending on the
1115 * configuration and the H1 message flags. This function is called twice, the
1116 * first time when the request is parsed and the second time when the response
1117 * is parsed.
1118 */
1119static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1120{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001121 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001122 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001123 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001124
Christopher Fauletf2824e62018-10-01 12:12:37 +02001125 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001126 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001127 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001128 h1s->status == 101) {
1129 /* Either we've established an explicit tunnel, or we're
1130 * switching the protocol. In both cases, we're very unlikely to
1131 * understand the next protocols. We have to switch to tunnel
1132 * mode, so that we transfer the request and responses then let
1133 * this protocol pass unmodified. When we later implement
1134 * specific parsers for such protocols, we'll want to check the
1135 * Upgrade header which contains information about that protocol
1136 * for responses with status 101 (eg: see RFC2817 about TLS).
1137 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001138 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001139 TRACE_STATE("set tunnel mode (resp)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001140 }
1141 else if (h1s->flags & H1S_F_WANT_KAL) {
1142 /* By default the server is in KAL mode. CLOSE mode mean
1143 * it is imposed by haproxy itself. So only change KAL
1144 * mode here. */
1145 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1146 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1147 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1148 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001149 TRACE_STATE("detect close mode (resp)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001150 }
1151 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001152 }
Christopher Faulet70033782018-12-05 13:50:11 +01001153 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001154 /* Output direction: first pass */
1155 if (h1m->flags & H1_MF_CONN_CLO) {
1156 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001157 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001158 TRACE_STATE("detect close mode (req)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001159 }
1160 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1161 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1162 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1163 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1164 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1165 /* no explicit keep-alive option httpclose/server-close => close */
1166 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001167 TRACE_STATE("force close mode (req)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001168 }
Christopher Faulet70033782018-12-05 13:50:11 +01001169 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001170
1171 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001172 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001173 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001174 TRACE_STATE("stopping, set close mode", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1175 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001176}
1177
Christopher Fauletb992af02019-03-28 15:42:24 +01001178static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001179{
1180 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001181
1182 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1183 * token is found
1184 */
1185 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001186 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001187
1188 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001189 if (!(h1m->flags & H1_MF_VER_11)) {
1190 TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001191 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001192 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001193 }
1194 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001195 if (h1m->flags & H1_MF_VER_11) {
1196 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001197 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001198 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001199 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001200}
1201
Christopher Fauletb992af02019-03-28 15:42:24 +01001202static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001203{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001204 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1205 * token is found
1206 */
1207 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001208 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001209
1210 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001211 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001212 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1213 TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001214 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001215 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001216 }
1217 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001218 if (h1m->flags & H1_MF_VER_11) {
1219 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001220 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001221 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001222 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001223}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001224
Christopher Fauletb992af02019-03-28 15:42:24 +01001225static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001226{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001227 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001228 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001229 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001230 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001231}
1232
Christopher Fauletb992af02019-03-28 15:42:24 +01001233static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1234{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001235 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001236 h1_set_cli_conn_mode(h1s, h1m);
1237 else
1238 h1_set_srv_conn_mode(h1s, h1m);
1239
1240 if (!(h1m->flags & H1_MF_RESP))
1241 h1_update_req_conn_value(h1s, h1m, conn_val);
1242 else
1243 h1_update_res_conn_value(h1s, h1m, conn_val);
1244}
Christopher Faulete44769b2018-11-29 23:01:45 +01001245
Christopher Faulet98fbe952019-07-22 16:18:24 +02001246/* Try to adjust the case of the message header name using the global map
1247 * <hdrs_map>.
1248 */
1249static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1250{
1251 struct ebpt_node *node;
1252 struct h1_hdr_entry *entry;
1253
1254 /* No entry in the map, do nothing */
1255 if (eb_is_empty(&hdrs_map.map))
1256 return;
1257
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001258 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001259 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1260 return;
1261
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001262 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001263 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1264 return;
1265
1266 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1267 if (!node)
1268 return;
1269 entry = container_of(node, struct h1_hdr_entry, node);
1270 name->ptr = entry->name.ptr;
1271 name->len = entry->name.len;
1272}
1273
Christopher Faulete44769b2018-11-29 23:01:45 +01001274/* Append the description of what is present in error snapshot <es> into <out>.
1275 * The description must be small enough to always fit in a buffer. The output
1276 * buffer may be the trash so the trash must not be used inside this function.
1277 */
1278static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1279{
1280 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001281 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1282 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1283 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1284 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1285 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1286 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001287}
1288/*
1289 * Capture a bad request or response and archive it in the proxy's structure.
1290 * By default it tries to report the error position as h1m->err_pos. However if
1291 * this one is not set, it will then report h1m->next, which is the last known
1292 * parsing point. The function is able to deal with wrapping buffers. It always
1293 * displays buffers as a contiguous area starting at buf->p. The direction is
1294 * determined thanks to the h1m's flags.
1295 */
1296static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1297 struct h1m *h1m, struct buffer *buf)
1298{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001299 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001300 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001301 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001302 union error_snapshot_ctx ctx;
1303
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001304 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001305 if (sess == NULL)
1306 sess = si_strm(h1s->cs->data)->sess;
1307 if (!(h1m->flags & H1_MF_RESP))
1308 other_end = si_strm(h1s->cs->data)->be;
1309 else
1310 other_end = sess->fe;
1311 } else
1312 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001313
1314 /* http-specific part now */
1315 ctx.h1.state = h1m->state;
1316 ctx.h1.c_flags = h1c->flags;
1317 ctx.h1.s_flags = h1s->flags;
1318 ctx.h1.m_flags = h1m->flags;
1319 ctx.h1.m_clen = h1m->curr_len;
1320 ctx.h1.m_blen = h1m->body_len;
1321
1322 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1323 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001324 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1325 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001326}
1327
Christopher Fauletadb22202018-12-12 10:32:09 +01001328/* Emit the chunksize followed by a CRLF in front of data of the buffer
1329 * <buf>. It goes backwards and starts with the byte before the buffer's
1330 * head. The caller is responsible for ensuring there is enough room left before
1331 * the buffer's head for the string.
1332 */
1333static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1334{
1335 char *beg, *end;
1336
1337 beg = end = b_head(buf);
1338 *--beg = '\n';
1339 *--beg = '\r';
1340 do {
1341 *--beg = hextab[chksz & 0xF];
1342 } while (chksz >>= 4);
1343 buf->head -= (end - beg);
1344 b_add(buf, end - beg);
1345}
1346
1347/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1348 * ensuring there is enough room left in the buffer for the string. */
1349static void h1_emit_chunk_crlf(struct buffer *buf)
1350{
1351 *(b_peek(buf, b_data(buf))) = '\r';
1352 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1353 b_add(buf, 2);
1354}
1355
Christopher Faulet129817b2018-09-20 16:14:40 +02001356/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001357 * Switch the stream to tunnel mode. This function must only be called on 2xx
1358 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001359 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001360static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001361{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001362 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001363
Christopher Faulet5be651d2021-01-22 15:28:03 +01001364 h1s->req.state = H1_MSG_TUNNEL;
1365 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001366
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001367 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001368 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001369
Christopher Faulet5be651d2021-01-22 15:28:03 +01001370 TRACE_STATE("switch H1 stream in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01001371
Christopher Faulet10a86702021-04-07 14:18:11 +02001372 if (h1s->flags & H1S_F_RX_BLK) {
1373 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001374 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001375 TRACE_STATE("Re-enable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001376 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001377 if (h1s->flags & H1S_F_TX_BLK) {
1378 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001379 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001380 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001381 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001382}
1383
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001384/* Search for a websocket key header. The message should have been identified
1385 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001386 *
1387 * On the request side, if found the key is stored in the session. It might be
1388 * needed to calculate response key if the server side is using http/2.
1389 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001390 * On the response side, the key might be verified if haproxy has been
1391 * responsible for the generation of a key. This happens when a h2 client is
1392 * interfaced with a h1 server.
1393 *
1394 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001395 */
1396static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1397{
1398 struct htx_blk *blk;
1399 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001400 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001401 int ws_key_found = 0, idx;
1402
1403 idx = htx_get_head(htx); // returns the SL that we skip
1404 while ((idx = htx_get_next(htx, idx)) != -1) {
1405 blk = htx_get_blk(htx, idx);
1406 type = htx_get_blk_type(blk);
1407
1408 if (type == HTX_BLK_UNUSED)
1409 continue;
1410
1411 if (type != HTX_BLK_HDR)
1412 break;
1413
1414 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001415 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001416
Amaury Denoyellec1938232020-12-11 17:53:03 +01001417 /* Websocket key is base64 encoded of 16 bytes */
1418 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001419 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001420 /* Copy the key on request side
1421 * we might need it if the server is using h2 and does
1422 * not provide the response
1423 */
1424 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001425 ws_key_found = 1;
1426 break;
1427 }
1428 else if (isteqi(n, ist("sec-websocket-accept")) &&
1429 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001430 /* Need to verify the response key if the input was
1431 * generated by haproxy
1432 */
1433 if (h1s->ws_key[0]) {
1434 char key[29];
1435 h1_calculate_ws_output_key(h1s->ws_key, key);
1436 if (!isteqi(ist(key), v))
1437 break;
1438 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001439 ws_key_found = 1;
1440 break;
1441 }
1442 }
1443
1444 /* missing websocket key, reject the message */
1445 if (!ws_key_found) {
1446 htx->flags |= HTX_FL_PARSING_ERROR;
1447 return 0;
1448 }
1449
1450 return 1;
1451}
1452
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001453/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001454 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001455 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001456 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1457 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001458 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001459static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1460 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001461{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001462 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001463 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001464
Willy Tarreau022e5e52020-09-10 09:33:15 +02001465 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s, 0, (size_t[]){max});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001466
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001467 if (h1s->meth == HTTP_METH_CONNECT)
1468 h1m->flags |= H1_MF_METH_CONNECT;
1469 if (h1s->meth == HTTP_METH_HEAD)
1470 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001471
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001472 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001473 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001474 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001475 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001476 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001477 TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001478 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1479 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001480 else if (ret == -2) {
1481 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1482 h1s->flags |= H1S_F_RX_CONGESTED;
1483 }
1484 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001485 goto end;
1486 }
1487
Christopher Faulete136bd12021-09-21 18:44:55 +02001488
1489 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1490 * payload if the c-l is not null or the the payload is chunk-encoded.
1491 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1492 * instead of a 400-Bad-Request.
1493 */
1494 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1495 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1496 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1497 h1s->flags |= H1S_F_PARSING_ERROR;
1498 htx->flags |= HTX_FL_PARSING_ERROR;
1499 h1s->h1c->errcode = 413;
1500 TRACE_ERROR("HTTP/1.0 GET/HEAD/DELETE request with a payload forbidden", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1501 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1502 ret = 0;
1503 goto end;
1504 }
1505
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001506 /* Reject any message with an unknown transfer-encoding. In fact if any
1507 * encoding other than "chunked". A 422-Unprocessable-Content is
1508 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1509 * response.
1510 */
1511 if (h1m->flags & H1_MF_TE_OTHER) {
1512 h1s->flags |= H1S_F_PARSING_ERROR;
1513 htx->flags |= HTX_FL_PARSING_ERROR;
1514 if (!(h1m->flags & H1_MF_RESP))
1515 h1s->h1c->errcode = 422;
1516 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1517 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1518 ret = 0;
1519 goto end;
1520 }
1521
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001522 /* If websocket handshake, search for the websocket key */
1523 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1524 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1525 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1526 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001527 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001528 TRACE_ERROR("missing/invalid websocket key, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001529 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1530
1531 ret = 0;
1532 goto end;
1533 }
1534 }
1535
Christopher Faulet486498c2019-10-11 14:22:00 +02001536 if (h1m->err_pos >= 0) {
1537 /* Maybe we found an error during the parsing while we were
1538 * configured not to block on that, so we have to capture it
1539 * now.
1540 */
1541 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1542 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1543 }
1544
Christopher Faulet5696f542020-12-02 16:08:38 +01001545 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001546 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001547 if (h1s->meth == HTTP_METH_HEAD)
1548 h1s->flags |= H1S_F_BODYLESS_RESP;
1549 }
1550 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001551 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001552 if (h1s->status == 204 || h1s->status == 304)
1553 h1s->flags |= H1S_F_BODYLESS_RESP;
1554 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001555 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001556 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001557
Christopher Faulet129817b2018-09-20 16:14:40 +02001558 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001559 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001560 return ret;
1561}
1562
1563/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001564 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001565 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1566 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001567 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001568static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1569 struct buffer *buf, size_t *ofs, size_t max,
1570 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001571{
Christopher Fauletde471a42021-02-01 16:37:28 +01001572 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001573
Willy Tarreau022e5e52020-09-10 09:33:15 +02001574 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s, 0, (size_t[]){max});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001575 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001576 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001577 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet02a02532019-11-15 09:36:28 +01001578 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001579 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001580 TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001581 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001582 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001583 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001584 }
1585
Christopher Faulet02a02532019-11-15 09:36:28 +01001586 *ofs += ret;
1587
1588 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001589 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1590 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1591 h1s->flags |= H1S_F_RX_CONGESTED;
1592 }
1593
Willy Tarreau022e5e52020-09-10 09:33:15 +02001594 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001595 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001596}
1597
1598/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001599 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1600 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1601 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001602 * responsible to update the parser state <h1m>. If more room is requested,
1603 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001604 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001605static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1606 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001607{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001608 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001609
Willy Tarreau022e5e52020-09-10 09:33:15 +02001610 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s, 0, (size_t[]){max});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001611 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001612 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001613 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001614 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001615 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001616 TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001617 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1618 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001619 else if (ret == -2) {
1620 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1621 h1s->flags |= H1S_F_RX_CONGESTED;
1622 }
1623 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001624 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001625 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001626
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001627 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001628
1629 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001630 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001631 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001632}
1633
1634/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001635 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001636 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1637 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001638 *
1639 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001640 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001641static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001642{
Christopher Faulet539e0292018-11-19 10:40:09 +01001643 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001644 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001645 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001646 size_t data;
1647 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001648 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001649
Christopher Faulet539e0292018-11-19 10:40:09 +01001650 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001651 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001652
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001653 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001654 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001655
Christopher Faulet2eed8002020-12-07 11:26:13 +01001656 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001657 goto end;
1658
Christopher Faulet10a86702021-04-07 14:18:11 +02001659 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001660 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001661
Christopher Faulet46e058d2021-09-20 07:47:27 +02001662 /* Always remove congestion flags and try to process more input data */
1663 h1s->flags &= ~H1S_F_RX_CONGESTED;
1664
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001665 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001666 size_t used = htx_used_space(htx);
1667
Christopher Faulet129817b2018-09-20 16:14:40 +02001668 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001669 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001670 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001671 if (!ret)
1672 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001673
1674 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1675 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1676
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001677 if ((h1m->flags & H1_MF_RESP) &&
1678 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1679 h1m_init_res(&h1s->res);
1680 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001681 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001682 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001683 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001684 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001685 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001686 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001687 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001688 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001689
1690 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1691 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001692 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001693 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001694 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001695 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001696 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001697 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001698
Christopher Faulet76014fd2019-12-10 11:47:22 +01001699 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1700 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001701 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001702 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001703 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1704 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001705
Christopher Faulet5be651d2021-01-22 15:28:03 +01001706 if ((h1m->flags & H1_MF_RESP) &&
1707 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1708 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001709 else {
1710 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1711 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001712 h1s->flags |= H1S_F_RX_BLK;
1713 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001714 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001715 if (h1s->flags & H1S_F_TX_BLK) {
1716 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001717 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001718 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001719 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001720 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001721 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001722 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001723 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001724 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001725 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001726 if (!ret)
1727 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001728
1729 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1730 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001731 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001732 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001733 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001734 break;
1735 }
1736
Christopher Faulet30db3d72019-05-17 15:35:33 +02001737 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001738 } while (!(h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR|H1S_F_RX_BLK|H1S_F_RX_CONGESTED)));
Christopher Faulet5be651d2021-01-22 15:28:03 +01001739
Christopher Faulet129817b2018-09-20 16:14:40 +02001740
Christopher Faulet2eed8002020-12-07 11:26:13 +01001741 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001742 TRACE_ERROR("parsing or not-implemented error", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001743 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001744 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001745
Christopher Faulet539e0292018-11-19 10:40:09 +01001746 b_del(&h1c->ibuf, total);
1747
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001748 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001749 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1750
Christopher Faulet30db3d72019-05-17 15:35:33 +02001751 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001752 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001753 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001754 TRACE_STATE("h1c ibuf not full anymore", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01001755 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001756 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001757
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001758 if (!b_data(&h1c->ibuf))
1759 h1_release_buf(h1c, &h1c->ibuf);
1760
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001761 if (!(h1c->flags & H1C_F_ST_READY)) {
1762 /* The H1 connection is not ready. Most of time, there is no CS
1763 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1764 * cases, it is only possible on the client side.
1765 */
1766 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1767
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001768 if (h1m->state <= H1_MSG_LAST_LF) {
1769 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1770 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1771 goto end;
1772 }
1773
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001774 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1775 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1776 BUG_ON(h1s->cs);
1777 if (!h1s_new_cs(h1s, buf)) {
1778 h1c->flags |= H1C_F_ST_ERROR;
1779 goto err;
1780 }
1781 }
1782 else {
1783 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1784 BUG_ON(h1s->cs == NULL);
1785 if (!h1s_upgrade_cs(h1s, buf)) {
1786 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001787 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001788 goto err;
1789 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001790 }
1791 }
1792
1793 /* Here h1s->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001794 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001795 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1796 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1797 }
1798 else {
1799 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1800 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1801 }
1802
Christopher Fauleta22782b2021-02-08 17:18:01 +01001803 /* Set EOI on conn-stream in DONE state iff:
1804 * - it is a response
1805 * - it is a request but no a protocol upgrade nor a CONNECT
1806 *
1807 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001808 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001809 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001810 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1811 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001812 h1s->cs->flags |= CS_FL_EOI;
1813
Christopher Fauletec4207c2021-04-08 18:34:30 +02001814 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001815 /* When Input data are pending for this message, notify upper layer that
1816 * the mux need more space in the HTX buffer to continue if :
1817 *
1818 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1819 * - Headers or trailers are pending to be copied.
1820 */
1821 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001822 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001823 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1824 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001825 else {
1826 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1827 if (h1s->flags & H1S_F_REOS) {
1828 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001829 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1830 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1831 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001832 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001833 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001834 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001835 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001836 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1837 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001838
Christopher Faulet10a86702021-04-07 14:18:11 +02001839 if (h1s->flags & H1S_F_TX_BLK) {
1840 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001841 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001842 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001843 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001844 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001845 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001846
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001847 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001848 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001849 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001850
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001851 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001852 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001853 if (h1s->cs)
1854 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001855 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001856 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001857}
1858
Christopher Faulet129817b2018-09-20 16:14:40 +02001859/*
1860 * Process outgoing data. It parses data and transfer them from the channel buffer into
1861 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1862 * 0 if it couldn't proceed.
1863 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001864static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001865{
Christopher Faulet129817b2018-09-20 16:14:40 +02001866 struct h1s *h1s = h1c->h1s;
1867 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001869 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001870 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001871 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001872 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001873 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001874
Christopher Faulet94b2c762019-05-24 15:28:57 +02001875 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001876 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1877
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001878 if (htx_is_empty(chn_htx))
1879 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001880
Christopher Faulet10a86702021-04-07 14:18:11 +02001881 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001882 goto end;
1883
Christopher Faulet51dbc942018-09-13 09:05:15 +02001884 if (!h1_get_buf(h1c, &h1c->obuf)) {
1885 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001886 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001887 goto end;
1888 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001889
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001890 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001891
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001892 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001893 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001894
Willy Tarreau3815b222018-12-11 19:50:43 +01001895 /* Perform some optimizations to reduce the number of buffer copies.
1896 * First, if the mux's buffer is empty and the htx area contains
1897 * exactly one data block of the same size as the requested count,
1898 * then it's possible to simply swap the caller's buffer with the
1899 * mux's output buffer and adjust offsets and length to match the
1900 * entire DATA HTX block in the middle. In this case we perform a
1901 * true zero-copy operation from end-to-end. This is the situation
1902 * that happens all the time with large files. Second, if this is not
1903 * possible, but the mux's output buffer is empty, we still have an
1904 * opportunity to avoid the copy to the intermediary buffer, by making
1905 * the intermediary buffer's area point to the output buffer's area.
1906 * In this case we want to skip the HTX header to make sure that copies
1907 * remain aligned and that this operation remains possible all the
1908 * time. This goes for headers, data blocks and any data extracted from
1909 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001910 */
1911 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001912 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001913 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001914 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001915 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001916 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001917 void *old_area;
1918
Christopher Faulet6b81df72019-10-01 22:08:43 +02001919 TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count});
Christopher Faulet140f1a52021-11-26 16:37:55 +01001920 if (h1m->state == H1_MSG_DATA) {
1921 if (h1m->flags & H1_MF_CLEN) {
1922 if (count > h1m->curr_len) {
1923 TRACE_ERROR("too much payload, more than announced",
1924 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1925 goto error;
1926 }
1927 h1m->curr_len -= count;
1928 }
1929 if (chn_htx->flags & HTX_FL_EOM) {
1930 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1931 last_data = 1;
1932 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001933 }
1934
Christopher Faulete5596bf2020-12-02 16:13:22 +01001935 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001936 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001937 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001938 h1c->obuf.data = count;
1939
1940 buf->area = old_area;
1941 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001942
Christopher Faulet6b81df72019-10-01 22:08:43 +02001943 chn_htx = (struct htx *)buf->area;
1944 htx_reset(chn_htx);
1945
Christopher Fauletadb22202018-12-12 10:32:09 +01001946 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001947 * size and eventually the last chunk. We have at least
1948 * the size of the struct htx to write the chunk
1949 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001950 */
1951 if (h1m->flags & H1_MF_CHNK) {
1952 h1_emit_chunk_size(&h1c->obuf, count);
1953 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001954 if (last_data) {
1955 /* Emit the last chunk too at the buffer's end */
1956 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1957 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001958 }
1959
Christopher Faulet6b81df72019-10-01 22:08:43 +02001960 if (h1m->state == H1_MSG_DATA)
1961 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001962 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001963 else
1964 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001965 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001966
Christopher Faulete5596bf2020-12-02 16:13:22 +01001967 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001968 if (last_data) {
1969 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001970 if (h1s->flags & H1S_F_RX_BLK) {
1971 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001972 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001973 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001974 }
1975
1976 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1977 H1_EV_TX_DATA, h1c->conn, h1s);
1978 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001979 goto out;
1980 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001981 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001982 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001983 else
1984 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001985
Christopher Fauletc2518a52019-06-25 21:41:02 +02001986 tmp.data = 0;
1987 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001988 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001989 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001990 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001991 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001992 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001993 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001994
Christopher Fauletb2e84162018-12-06 11:39:49 +01001995 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001996 if (type != HTX_BLK_DATA && vlen > count)
1997 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001998
Christopher Faulet94b2c762019-05-24 15:28:57 +02001999 if (type == HTX_BLK_UNUSED)
2000 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002001
Christopher Faulet94b2c762019-05-24 15:28:57 +02002002 switch (h1m->state) {
2003 case H1_MSG_RQBEFORE:
2004 if (type != HTX_BLK_REQ_SL)
2005 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002006 TRACE_USER("sending request headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02002007 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002008 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002009 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002010 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002011 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002012 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002013 if (sl->flags & HTX_SL_F_BODYLESS)
2014 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002015 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002016 if (h1s->meth == HTTP_METH_HEAD)
2017 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002018 if (h1s->flags & H1S_F_RX_BLK) {
2019 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002020 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002021 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet089acd52020-09-21 10:57:52 +02002022 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002023 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002024
Christopher Faulet94b2c762019-05-24 15:28:57 +02002025 case H1_MSG_RPBEFORE:
2026 if (type != HTX_BLK_RES_SL)
2027 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002028 TRACE_USER("sending response headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02002029 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002030 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002031 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002032 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002033 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002034 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002035 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002036 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002037 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002038 else if (h1s->status == 204 || h1s->status == 304)
2039 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002040 h1m->state = H1_MSG_HDR_FIRST;
2041 break;
2042
Christopher Faulet94b2c762019-05-24 15:28:57 +02002043 case H1_MSG_HDR_FIRST:
2044 case H1_MSG_HDR_NAME:
2045 case H1_MSG_HDR_L2_LWS:
2046 if (type == HTX_BLK_EOH)
2047 goto last_lf;
2048 if (type != HTX_BLK_HDR)
2049 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002050
Christopher Faulet9768c262018-10-22 09:34:31 +02002051 h1m->state = H1_MSG_HDR_NAME;
2052 n = htx_get_blk_name(chn_htx, blk);
2053 v = htx_get_blk_value(chn_htx, blk);
2054
Christopher Faulet86d144c2019-08-14 16:32:25 +02002055 /* Skip all pseudo-headers */
2056 if (*(n.ptr) == ':')
2057 goto skip_hdr;
2058
Christopher Faulet91fcf212020-12-02 16:17:15 +01002059 if (isteq(n, ist("transfer-encoding"))) {
2060 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2061 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002062 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002063 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002064 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002065 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2066 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002067 /* Only skip C-L header with invalid value. */
2068 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002069 goto skip_hdr;
2070 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002071 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002072 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002073 if (!v.len)
2074 goto skip_hdr;
2075 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002076 else if (isteq(n, ist("upgrade"))) {
2077 h1_parse_upgrade_header(h1m, v);
2078 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002079 else if ((isteq(n, ist("sec-websocket-accept")) &&
2080 h1m->flags & H1_MF_RESP) ||
2081 (isteq(n, ist("sec-websocket-key")) &&
2082 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002083 ws_key_found = 1;
2084 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002085 else if (isteq(n, ist("te"))) {
2086 /* "te" may only be sent with "trailers" if this value
2087 * is present, otherwise it must be deleted.
2088 */
2089 v = istist(v, ist("trailers"));
2090 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2091 goto skip_hdr;
2092 v = ist("trailers");
2093 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002094
Christopher Faulet67d58092019-10-02 10:51:38 +02002095 /* Skip header if same name is used to add the server name */
2096 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2097 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2098 goto skip_hdr;
2099
Christopher Faulet98fbe952019-07-22 16:18:24 +02002100 /* Try to adjust the case of the header name */
2101 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2102 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002103 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002104 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002105 skip_hdr:
2106 h1m->state = H1_MSG_HDR_L2_LWS;
2107 break;
2108
Christopher Faulet94b2c762019-05-24 15:28:57 +02002109 case H1_MSG_LAST_LF:
2110 if (type != HTX_BLK_EOH)
2111 goto error;
2112 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002113 h1m->state = H1_MSG_LAST_LF;
2114 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002115 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002116 /* If the reply comes from haproxy while the request is
2117 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002118 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2119 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2120 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002121 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2122 /* T-E + C-L: force close */
2123 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2124 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2125 }
2126 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2127 /* T-E + HTTP/1.0: force close */
2128 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2129 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2130 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002131
2132 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002133 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002134 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002135 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002136 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002137 /* Try to adjust the case of the header name */
2138 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2139 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002140 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002141 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002142 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002143 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002144 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002145
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002146 if ((h1s->meth != HTTP_METH_CONNECT &&
2147 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002148 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002149 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002150 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002151 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2152 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002153 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002154 n = ist("transfer-encoding");
2155 v = ist("chunked");
2156 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2157 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002158 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002159 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002160 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002161 h1m->flags |= H1_MF_CHNK;
2162 }
2163
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002164 /* Now add the server name to a header (if requested) */
2165 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2166 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2167 struct server *srv = objt_server(h1c->conn->target);
2168
2169 if (srv) {
2170 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2171 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002172
2173 /* Try to adjust the case of the header name */
2174 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2175 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002176 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002177 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002178 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002179 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002180 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2181 }
2182
Amaury Denoyellec1938232020-12-11 17:53:03 +01002183 /* Add websocket handshake key if needed */
2184 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2185 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002186 if (!(h1m->flags & H1_MF_RESP)) {
2187 /* generate a random websocket key
2188 * stored in the session to
2189 * verify it on the response side
2190 */
2191 h1_generate_random_ws_input_key(h1s->ws_key);
2192
2193 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2194 ist(h1s->ws_key),
2195 &tmp)) {
2196 goto full;
2197 }
2198 }
2199 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002200 /* add the response header key */
2201 char key[29];
2202 h1_calculate_ws_output_key(h1s->ws_key, key);
2203 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2204 ist(key),
2205 &tmp)) {
2206 goto full;
2207 }
2208 }
2209 }
2210
Christopher Faulet6b81df72019-10-01 22:08:43 +02002211 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2212 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2213
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002214 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002215 if (!chunk_memcat(&tmp, "\r\n", 2))
2216 goto full;
2217 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002218 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002219 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002220 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002221 if (!chunk_memcat(&tmp, "\r\n", 2))
2222 goto full;
2223 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002224 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002225 else if ((h1m->flags & H1_MF_RESP) &&
2226 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002227 if (!chunk_memcat(&tmp, "\r\n", 2))
2228 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002229 h1m_init_res(&h1s->res);
2230 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002231 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002232 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002233 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002234 else {
2235 /* EOM flag is set and it is the last block */
2236 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002237 if (h1m->flags & H1_MF_CHNK) {
2238 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2239 goto full;
2240 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002241 else if (!chunk_memcat(&tmp, "\r\n", 2))
2242 goto full;
2243 goto done;
2244 }
2245 else if (!chunk_memcat(&tmp, "\r\n", 2))
2246 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002247 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002248 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002249 break;
2250
Christopher Faulet94b2c762019-05-24 15:28:57 +02002251 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002252 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002253 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002254 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2255 goto trailers;
2256
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002257 /* If the message is not chunked, never
2258 * add the last chunk. */
2259 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002260 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002261 TRACE_PROTO("sending message trailers", H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s, chn_htx);
Christopher Faulet94b2c762019-05-24 15:28:57 +02002262 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002263 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002264 else if (type != HTX_BLK_DATA)
2265 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002266
2267 TRACE_PROTO("sending message data", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){sz});
Christopher Fauletd9233f02019-10-14 14:01:24 +02002268
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002269 /* It is the last block of this message. After this one,
2270 * only tunneled data may be forwarded. */
2271 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2272 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2273 last_data = 1;
2274 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002275
2276 if (vlen > count) {
2277 /* Get the maximum amount of data we can xferred */
2278 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002279 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002280 }
2281
Christopher Faulet140f1a52021-11-26 16:37:55 +01002282 if (h1m->state == H1_MSG_DATA) {
2283 if (h1m->flags & H1_MF_CLEN) {
2284 if (vlen > h1m->curr_len) {
2285 TRACE_ERROR("too much payload, more than announced",
2286 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2287 goto error;
2288 }
2289 h1m->curr_len -= vlen;
2290 }
2291 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2292 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2293 goto skip_data;
2294 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002295 }
2296
Christopher Fauletd9233f02019-10-14 14:01:24 +02002297 chklen = 0;
2298 if (h1m->flags & H1_MF_CHNK) {
2299 chklen = b_room(&tmp);
2300 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2301 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2302 (chklen < 1048576) ? 5 : 8);
2303 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002304
2305 /* If it is the end of the chunked message (without EOT), reserve the
2306 * last chunk size */
2307 if (last_data)
2308 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002309 }
2310
2311 if (vlen + chklen > b_room(&tmp)) {
2312 /* too large for the buffer */
2313 if (chklen >= b_room(&tmp))
2314 goto full;
2315 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002316 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002317 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002318 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002319 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002320 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002321 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002322
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002323 /* Space already reserved, so it must succeed */
2324 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2325 goto error;
2326
Christopher Faulet6b81df72019-10-01 22:08:43 +02002327 if (h1m->state == H1_MSG_DATA)
2328 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002329 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002330 else
2331 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002332 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002333
2334 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002335 if (last_data)
2336 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002337 break;
2338
Christopher Faulet94b2c762019-05-24 15:28:57 +02002339 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002340 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002341 goto error;
2342 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002343 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002344
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002345 /* If the message is not chunked, ignore
2346 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002347 if (!(h1m->flags & H1_MF_CHNK)) {
2348 if (type == HTX_BLK_EOT)
2349 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002350 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002351 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002352
Christopher Faulete5596bf2020-12-02 16:13:22 +01002353 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2354 TRACE_PROTO("Skip trailers for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002355 if (type == HTX_BLK_EOT)
2356 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002357 break;
2358 }
2359
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002360 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002361 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002362 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002363 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2364 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002365 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002366 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002367 else { // HTX_BLK_TLR
2368 n = htx_get_blk_name(chn_htx, blk);
2369 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002370
2371 /* Try to adjust the case of the header name */
2372 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2373 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002374 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002375 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002376 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002377 break;
2378
Christopher Faulet94b2c762019-05-24 15:28:57 +02002379 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002380 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2381 goto error; /* For now return an error */
2382
Christopher Faulet94b2c762019-05-24 15:28:57 +02002383 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002384 if (!(chn_htx->flags & HTX_FL_EOM)) {
2385 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2386 goto error; /* For now return an error */
2387 }
2388
Christopher Faulet94b2c762019-05-24 15:28:57 +02002389 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002390 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002391 h1s->flags |= H1S_F_TX_BLK;
2392 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002393 }
2394 else if ((h1m->flags & H1_MF_RESP) &&
2395 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2396 /* a successful reply to a CONNECT or a protocol switching is sent
2397 * to the client. Switch the response to tunnel mode.
2398 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002399 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002400 TRACE_STATE("switch H1 response in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletf3158e92019-11-15 11:14:23 +01002401 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002402
Christopher Faulet10a86702021-04-07 14:18:11 +02002403 if (h1s->flags & H1S_F_RX_BLK) {
2404 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002405 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002406 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02002407 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002408
2409 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2410 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002411 break;
2412
Christopher Faulet9768c262018-10-22 09:34:31 +02002413 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002414 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002415 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002416 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002417 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002418 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002419 TRACE_ERROR("processing output error, set error on h1c/h1s",
2420 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01002421 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002422 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002423
2424 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002425 total += vlen;
2426 count -= vlen;
2427 if (sz == vlen)
2428 blk = htx_remove_blk(chn_htx, blk);
2429 else {
2430 htx_cut_data_blk(chn_htx, blk, vlen);
2431 break;
2432 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002433 }
2434
Christopher Faulet9768c262018-10-22 09:34:31 +02002435 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002436 /* when the output buffer is empty, tmp shares the same area so that we
2437 * only have to update pointers and lengths.
2438 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002439 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2440 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002441 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002442 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002443
Willy Tarreau3815b222018-12-11 19:50:43 +01002444 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002445 out:
2446 if (!buf_room_for_htx_data(&h1c->obuf)) {
2447 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002448 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002449 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002450 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002451 /* Both the request and the response reached the DONE state. So set EOI
2452 * flag on the conn-stream. Most of time, the flag will already be set,
2453 * except for protocol upgrades. Report an error if data remains blocked
2454 * in the output buffer.
2455 */
2456 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2457 if (!htx_is_empty(chn_htx)) {
2458 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002459 TRACE_ERROR("txn done but data waiting to be sent, set error on h1c", H1_EV_H1C_ERR, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002460 }
2461 h1s->cs->flags |= CS_FL_EOI;
2462 }
2463
Christopher Faulet6b81df72019-10-01 22:08:43 +02002464 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002465 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002466
2467 full:
2468 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2469 h1c->flags |= H1C_F_OUT_FULL;
2470 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002471}
2472
Christopher Faulet51dbc942018-09-13 09:05:15 +02002473/*********************************************************/
2474/* functions below are I/O callbacks from the connection */
2475/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002476static void h1_wake_stream_for_recv(struct h1s *h1s)
2477{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002478 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002479 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002480 tasklet_wakeup(h1s->subs->tasklet);
2481 h1s->subs->events &= ~SUB_RETRY_RECV;
2482 if (!h1s->subs->events)
2483 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002484 }
2485}
2486static void h1_wake_stream_for_send(struct h1s *h1s)
2487{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002488 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002489 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002490 tasklet_wakeup(h1s->subs->tasklet);
2491 h1s->subs->events &= ~SUB_RETRY_SEND;
2492 if (!h1s->subs->events)
2493 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002494 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002495}
2496
Christopher Fauletad4daf62021-01-21 17:49:01 +01002497/* alerts the data layer following this sequence :
2498 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2499 * - if its subscribed to send, then it's woken up for send
2500 * - if it was subscribed to neither, its ->wake() callback is called
2501 */
2502static void h1_alert(struct h1s *h1s)
2503{
2504 if (h1s->subs) {
2505 h1_wake_stream_for_recv(h1s);
2506 h1_wake_stream_for_send(h1s);
2507 }
2508 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2509 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2510 h1s->cs->data_cb->wake(h1s->cs);
2511 }
2512}
2513
Christopher Fauletc18fc232020-10-06 17:41:36 +02002514/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2515 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2516 * retryable errors (allocation error or buffer full). On success, the error is
2517 * copied in the output buffer.
2518*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002519static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002520{
2521 int rc = http_get_status_idx(h1c->errcode);
2522 int ret = 0;
2523
2524 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2525
2526 /* Verify if the error is mapped on /dev/null or any empty file */
2527 /// XXX: do a function !
2528 if (h1c->px->replies[rc] &&
2529 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2530 h1c->px->replies[rc]->body.errmsg &&
2531 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2532 /* Empty error, so claim a success */
2533 ret = 1;
2534 goto out;
2535 }
2536
2537 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2538 h1c->flags |= H1C_F_ERR_PENDING;
2539 goto out;
2540 }
2541
2542 if (!h1_get_buf(h1c, &h1c->obuf)) {
2543 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2544 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2545 goto out;
2546 }
2547 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2548 if (unlikely(ret <= 0)) {
2549 if (!ret) {
2550 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2551 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2552 goto out;
2553 }
2554 else {
2555 /* we cannot report this error, so claim a success */
2556 ret = 1;
2557 }
2558 }
2559 h1c->flags &= ~H1C_F_ERR_PENDING;
2560 out:
2561 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2562 return ret;
2563}
2564
2565/* Try to send a 500 internal error. It relies on h1_send_error to send the
2566 * error. This function takes care of incrementing stats and tracked counters.
2567 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002568static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002569{
2570 struct session *sess = h1c->conn->owner;
2571 int ret = 1;
2572
2573 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002574 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002575 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2576 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002577 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002578 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002579
2580 h1c->errcode = 500;
2581 ret = h1_send_error(h1c);
2582 sess_log(sess);
2583 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002584}
2585
Christopher Fauletb3230f72021-09-21 18:38:20 +02002586/* Try to send an error because of a parsing error. By default a 400 bad request
2587 * error is returned. But the status code may be specified by setting
2588 * h1c->errcode. It relies on h1_send_error to send the error. This function
2589 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002590 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002591static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002592{
2593 struct session *sess = h1c->conn->owner;
2594 int ret = 1;
2595
2596 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2597 goto end;
2598
2599 session_inc_http_req_ctr(sess);
2600 session_inc_http_err_ctr(sess);
2601 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002602 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2603 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002604 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002605 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002606
Christopher Fauletb3230f72021-09-21 18:38:20 +02002607 if (!h1c->errcode)
2608 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002609 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002610 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2611 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002612
2613 end:
2614 return ret;
2615}
2616
Christopher Faulet2eed8002020-12-07 11:26:13 +01002617/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2618 * the error. This function takes care of incrementing stats and tracked
2619 * counters.
2620 */
2621static int h1_handle_not_impl_err(struct h1c *h1c)
2622{
2623 struct session *sess = h1c->conn->owner;
2624 int ret = 1;
2625
2626 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2627 goto end;
2628
2629 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002630 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002631 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2632 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002633 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002634 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002635
2636 h1c->errcode = 501;
2637 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002638 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2639 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002640
2641 end:
2642 return ret;
2643}
2644
Christopher Fauletc18fc232020-10-06 17:41:36 +02002645/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2646 * error. This function takes care of incrementing stats and tracked counters.
2647 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002648static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002649{
2650 struct session *sess = h1c->conn->owner;
2651 int ret = 1;
2652
2653 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2654 goto end;
2655
2656 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002657 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002658 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2659 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002660 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002661 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002662
2663 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002664 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2665 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002666 sess_log(sess);
2667 end:
2668 return ret;
2669}
2670
2671
Christopher Faulet51dbc942018-09-13 09:05:15 +02002672/*
2673 * Attempt to read data, and subscribe if none available
2674 */
2675static int h1_recv(struct h1c *h1c)
2676{
2677 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002678 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002679 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002680
Christopher Faulet6b81df72019-10-01 22:08:43 +02002681 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2682
2683 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2684 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002685 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002686 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002687
Christopher Fauletae635762020-09-21 11:47:16 +02002688 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2689 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002690 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002691 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002692
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002693 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2694 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002695 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002696 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002697 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002698
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002699 /*
2700 * If we only have a small amount of data, realign it,
2701 * it's probably cheaper than doing 2 recv() calls.
2702 */
2703 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002704 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002705
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002706 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002707 if (!h1c->h1s ||
2708 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2709 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002710 flags |= CO_RFL_READ_ONCE;
2711
Willy Tarreau45f2b892018-12-05 07:59:27 +01002712 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002713 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002714 if (h1c->flags & H1C_F_IN_FULL) {
2715 h1c->flags &= ~H1C_F_IN_FULL;
2716 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2717 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002718
2719 if (!b_data(&h1c->ibuf)) {
2720 /* try to pre-align the buffer like the rxbufs will be
2721 * to optimize memory copies.
2722 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002723 h1c->ibuf.head = sizeof(struct htx);
2724 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002725 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002726 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002727 if (max && !ret && h1_recv_allowed(h1c)) {
2728 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2729 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002730 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002731 else {
2732 h1_wake_stream_for_recv(h1c->h1s);
2733 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002734 }
2735
Christopher Faulet51dbc942018-09-13 09:05:15 +02002736 if (!b_data(&h1c->ibuf))
2737 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002738 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002739 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002740 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2741 }
2742
2743 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002744 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002745}
2746
2747
2748/*
2749 * Try to send data if possible
2750 */
2751static int h1_send(struct h1c *h1c)
2752{
2753 struct connection *conn = h1c->conn;
2754 unsigned int flags = 0;
2755 size_t ret;
2756 int sent = 0;
2757
Christopher Faulet6b81df72019-10-01 22:08:43 +02002758 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2759
2760 if (conn->flags & CO_FL_ERROR) {
2761 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002762 b_reset(&h1c->obuf);
2763 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002764 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002765
2766 if (!b_data(&h1c->obuf))
2767 goto end;
2768
Christopher Faulet46230362019-10-17 16:04:20 +02002769 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002770 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002771 if (h1c->flags & H1C_F_CO_STREAMER)
2772 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002773
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002774 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002775 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002776 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002777 if (h1c->flags & H1C_F_OUT_FULL) {
2778 h1c->flags &= ~H1C_F_OUT_FULL;
2779 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2780 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002781 b_del(&h1c->obuf, ret);
2782 sent = 1;
2783 }
2784
Christopher Faulet145aa472018-12-06 10:56:20 +01002785 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002786 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002787 /* error or output closed, nothing to send, clear the buffer to release it */
2788 b_reset(&h1c->obuf);
2789 }
2790
Christopher Faulet51dbc942018-09-13 09:05:15 +02002791 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002792 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002793 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002794
Christopher Faulet51dbc942018-09-13 09:05:15 +02002795 /* We're done, no more to send */
2796 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002797 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002798 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002799 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002800 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002801 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002802 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002803 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002804 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2805 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002806 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002807 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002808
Christopher Faulet6b81df72019-10-01 22:08:43 +02002809 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002810 return sent;
2811}
2812
Christopher Faulet51dbc942018-09-13 09:05:15 +02002813/* callback called on any event by the connection handler.
2814 * It applies changes and returns zero, or < 0 if it wants immediate
2815 * destruction of the connection.
2816 */
2817static int h1_process(struct h1c * h1c)
2818{
2819 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002820 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002821
Christopher Faulet6b81df72019-10-01 22:08:43 +02002822 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2823
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002824 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002825 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002826 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2827 !(h1c->flags & (H1C_F_IN_SALLOC|H1C_F_ST_ERROR))) { /* No allocation failure on the stream rxbuf and no ERROR on the H1C */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002828 struct buffer *buf;
2829 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002830
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002831 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2832 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002833 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002834
2835 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002836 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002837 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2838 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002839 /* Try to match H2 preface before parsing the request headers. */
2840 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2841 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002842 if (h1c->flags & H1C_F_ST_ATTACHED) {
2843 /* Force the REOS here to be sure to release the CS.
2844 Here ATTACHED implies !READY, and h1s defined
2845 */
2846 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2847 h1s->flags |= H1S_F_REOS;
2848 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002849 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002850 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002851 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002852 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002853
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002854 /* Create the H1 stream if not already there */
2855 if (!h1s) {
2856 h1s = h1c_frt_stream_new(h1c);
2857 if (!h1s) {
2858 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002859 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002860 goto no_parsing;
2861 }
2862 }
2863
2864 if (h1s->sess->t_idle == -1)
2865 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2866
2867 /* Get the stream rxbuf */
2868 buf = h1_get_buf(h1c, &h1s->rxbuf);
2869 if (!buf) {
2870 h1c->flags |= H1C_F_IN_SALLOC;
2871 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2872 return 0;
2873 }
2874
2875 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002876 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002877 h1_release_buf(h1c, &h1s->rxbuf);
2878 h1_set_idle_expiration(h1c);
2879
2880 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002881 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002882 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002883 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002884 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002885 }
2886 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002887 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002888 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002889 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002890 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002891 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2892 h1_handle_not_impl_err(h1c);
2893 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002894 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002895 }
Christopher Fauletae635762020-09-21 11:47:16 +02002896 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002897 h1_send(h1c);
2898
Christopher Faulet75308302021-11-15 14:51:37 +01002899 /* H1 connection must be released ASAP if:
2900 * - an error occurred on the connection or the H1C or
2901 * - a read0 was received or
2902 * - a silent shutdown was emitted and all outgoing data sent
2903 */
2904 if ((conn->flags & CO_FL_ERROR) ||
2905 conn_xprt_read0_pending(conn) ||
2906 (h1c->flags & H1C_F_ST_ERROR) ||
2907 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002908 if (!(h1c->flags & H1C_F_ST_READY)) {
2909 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002910 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01002911 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002912 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002913 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002914 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002915 }
2916
2917 /* Handle pending error, if any (only possible on frontend connection) */
2918 if (h1c->flags & H1C_F_ERR_PENDING) {
2919 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2920 if (h1_send_error(h1c))
2921 h1_send(h1c);
2922 }
Christopher Fauletae635762020-09-21 11:47:16 +02002923
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002924 /* If there is some pending outgoing data or error, just wait */
2925 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2926 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002927
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002928 /* Otherwise we can release the H1 connection */
2929 goto release;
2930 }
2931 else {
2932 /* Here there is still a H1 stream with a conn-stream.
2933 * Report the connection state at the stream level
2934 */
2935 if (conn_xprt_read0_pending(conn)) {
2936 h1s->flags |= H1S_F_REOS;
2937 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2938 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002939 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002940 h1s->cs->flags |= CS_FL_ERROR;
2941 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002942 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002943 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002944 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002945
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002946 if (!b_data(&h1c->ibuf))
2947 h1_release_buf(h1c, &h1c->ibuf);
2948
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002949 /* Check if a soft-stop is in progress.
2950 * Release idling front connection if this is the case.
2951 */
2952 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002953 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002954 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2955 goto release;
2956 }
2957 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002958
2959 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2960 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2961 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002962 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002963
Christopher Faulet47365272018-10-31 17:40:50 +01002964 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002965 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002966 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002967 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002968
2969 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002970 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002971 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002972 * attached CS first. Here, the H1C must not be READY */
2973 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2974
2975 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2976 h1s->cs->flags |= CS_FL_EOS;
2977 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2978 h1s->cs->flags |= CS_FL_ERROR;
2979 h1_alert(h1s);
2980 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2981 }
2982 else {
2983 h1_release(h1c);
2984 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2985 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002986 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002987}
2988
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002989struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002990{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002991 struct connection *conn;
2992 struct tasklet *tl = (struct tasklet *)t;
2993 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002994 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002995 int ret = 0;
2996
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002997 if (state & TASK_F_USR1) {
2998 /* the tasklet was idling on an idle connection, it might have
2999 * been stolen, let's be careful!
3000 */
3001 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3002 if (tl->context == NULL) {
3003 /* The connection has been taken over by another thread,
3004 * we're no longer responsible for it, so just free the
3005 * tasklet, and do nothing.
3006 */
3007 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3008 tasklet_free(tl);
3009 return NULL;
3010 }
3011 conn = h1c->conn;
3012 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003013
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003014 /* Remove the connection from the list, to be sure nobody attempts
3015 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003016 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003017 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3018 if (conn_in_list)
3019 conn_delete_from_tree(&conn->hash_node->node);
3020
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003021 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003022 } else {
3023 /* we're certain the connection was not in an idle list */
3024 conn = h1c->conn;
3025 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3026 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003027 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003028
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003029 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003030 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003031 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003032 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003033 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003034 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003035
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003036 /* If we were in an idle list, we want to add it back into it,
3037 * unless h1_process() returned -1, which mean it has destroyed
3038 * the connection (testing !ret is enough, if h1_process() wasn't
3039 * called then ret will be 0 anyway.
3040 */
Willy Tarreau74163142021-03-13 11:30:19 +01003041 if (ret < 0)
3042 t = NULL;
3043
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003044 if (!ret && conn_in_list) {
3045 struct server *srv = objt_server(conn->target);
3046
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003047 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003048 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003049 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003050 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003051 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003052 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003053 }
Willy Tarreau74163142021-03-13 11:30:19 +01003054 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003055}
3056
Christopher Faulet51dbc942018-09-13 09:05:15 +02003057static int h1_wake(struct connection *conn)
3058{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003059 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003060 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003061
Christopher Faulet6b81df72019-10-01 22:08:43 +02003062 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3063
Christopher Faulet539e0292018-11-19 10:40:09 +01003064 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003065 ret = h1_process(h1c);
3066 if (ret == 0) {
3067 struct h1s *h1s = h1c->h1s;
3068
Christopher Fauletad4daf62021-01-21 17:49:01 +01003069 if (h1c->flags & H1C_F_ST_ATTACHED)
3070 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003071 }
3072 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003073}
3074
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003075/* Connection timeout management. The principle is that if there's no receipt
3076 * nor sending for a certain amount of time, the connection is closed.
3077 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003078struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003079{
3080 struct h1c *h1c = context;
3081 int expired = tick_is_expired(t->expire, now_ms);
3082
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003083 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003084
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003085 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003086 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003087 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003088
3089 /* Somebody already stole the connection from us, so we should not
3090 * free it, we just have to free the task.
3091 */
3092 if (!t->context) {
3093 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003094 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003095 goto do_leave;
3096 }
3097
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003098 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003099 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003100 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003101 return t;
3102 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003103
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003104 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003105 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003106 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003107 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003108 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003109 t->expire = TICK_ETERNITY;
3110 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3111 return t;
3112 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003113
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003114 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003115 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3116 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003117 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003118 if (h1_handle_req_tout(h1c))
3119 h1_send(h1c);
3120 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3121 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003122 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003123 return t;
3124 }
3125 }
3126
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003127 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003128 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003129 * attached CS first. Here, the H1C must not be READY */
3130 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3131 h1_alert(h1c->h1s);
3132 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003133 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003134 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3135 return t;
3136 }
3137
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003138 /* We're about to destroy the connection, so make sure nobody attempts
3139 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003140 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003141 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003142 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003143
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003144 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003145 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003146
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003147 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003148 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003149
3150 if (!h1c) {
3151 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003152 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003153 return NULL;
3154 }
3155
3156 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003157 h1_release(h1c);
3158 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003159 return NULL;
3160}
3161
Christopher Faulet51dbc942018-09-13 09:05:15 +02003162/*******************************************/
3163/* functions below are used by the streams */
3164/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003165
Christopher Faulet51dbc942018-09-13 09:05:15 +02003166/*
3167 * Attach a new stream to a connection
3168 * (Used for outgoing connections)
3169 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003170static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003171{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003172 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003173 struct conn_stream *cs = NULL;
3174 struct h1s *h1s;
3175
Christopher Faulet6b81df72019-10-01 22:08:43 +02003176 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003177 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003178 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3179 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003180 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003181
Christopher Faulet236c93b2020-07-02 09:19:54 +02003182 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003183 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003184 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3185 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003186 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003187
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003188 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003189 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003190 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3191 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003192 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003193
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003194 /* the connection is not idle anymore, let's mark this */
3195 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003196 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003197
Christopher Faulet6b81df72019-10-01 22:08:43 +02003198 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003199 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003200 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003201 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003202 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003203 return NULL;
3204}
3205
3206/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3207 * this mux, it's easy as we can only store a single conn_stream.
3208 */
3209static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3210{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003211 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003212 struct h1s *h1s = h1c->h1s;
3213
3214 if (h1s)
3215 return h1s->cs;
3216
3217 return NULL;
3218}
3219
Christopher Faulet73c12072019-04-08 11:23:22 +02003220static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003221{
Christopher Faulet73c12072019-04-08 11:23:22 +02003222 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003223
Christopher Faulet6b81df72019-10-01 22:08:43 +02003224 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003225 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003226 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003227}
3228
3229/*
3230 * Detach the stream from the connection and possibly release the connection.
3231 */
3232static void h1_detach(struct conn_stream *cs)
3233{
3234 struct h1s *h1s = cs->ctx;
3235 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003236 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003237 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003238
Christopher Faulet6b81df72019-10-01 22:08:43 +02003239 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3240
Christopher Faulet51dbc942018-09-13 09:05:15 +02003241 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003242 if (!h1s) {
3243 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003244 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003245 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003246
Olivier Houchardf502aca2018-12-14 19:42:40 +01003247 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003248 h1c = h1s->h1c;
3249 h1s->cs = NULL;
3250
Christopher Faulet42849b02020-10-05 11:35:17 +02003251 sess->accept_date = date;
3252 sess->tv_accept = now;
3253 sess->t_handshake = 0;
3254 sess->t_idle = -1;
3255
Olivier Houchard8a786902018-12-15 16:05:40 +01003256 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3257 h1s_destroy(h1s);
3258
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003259 if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_IDLE)) == (H1C_F_IS_BACK|H1C_F_ST_IDLE)) {
Christopher Fauletf1204b82019-07-19 14:51:06 +02003260 /* If there are any excess server data in the input buffer,
3261 * release it and close the connection ASAP (some data may
3262 * remain in the output buffer). This happens if a server sends
3263 * invalid responses. So in such case, we don't want to reuse
3264 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003265 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003266 if (b_data(&h1c->ibuf)) {
3267 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003268 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003269 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003270 goto release;
3271 }
Christopher Faulet03627242019-07-19 11:34:08 +02003272
Christopher Faulet08016ab2020-07-01 16:10:06 +02003273 if (h1c->conn->flags & CO_FL_PRIVATE) {
3274 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003275 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3276 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003277 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003278 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003279 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003280 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003281 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003282 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003283 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3284 goto end;
3285 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003286 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003287 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003288 if (h1c->conn->owner == sess)
3289 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003290
3291 /* mark that the tasklet may lose its context to another thread and
3292 * that the handler needs to check it under the idle conns lock.
3293 */
3294 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003295 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003296 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3297
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003298 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003299 /* The server doesn't want it, let's kill the connection right away */
3300 h1c->conn->mux->destroy(h1c);
3301 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3302 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003303 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003304 /* At this point, the connection has been added to the
3305 * server idle list, so another thread may already have
3306 * hijacked it, so we can't do anything with it.
3307 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003308 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003309 }
3310 }
3311
Christopher Fauletf1204b82019-07-19 14:51:06 +02003312 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003313 /* We don't want to close right now unless the connection is in error or shut down for writes */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003314 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003315 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003316 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003317 !h1c->conn->owner) {
3318 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003319 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003320 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003321 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003322 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003323 /* If we have a new request, process it immediately or
3324 * subscribe for reads waiting for new data
3325 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003326 if (unlikely(b_data(&h1c->ibuf))) {
3327 if (h1_process(h1c) == -1)
3328 goto end;
3329 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003330 else
3331 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3332 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003333 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003334 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003335 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003336 end:
3337 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003338}
3339
3340
3341static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3342{
3343 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003344 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003345
3346 if (!h1s)
3347 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003348 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003349
Christopher Faulet99293b02021-11-10 10:30:15 +01003350 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003351
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003352 if (cs->flags & CS_FL_SHR)
3353 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003354 if (cs->flags & CS_FL_KILL_CONN) {
3355 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3356 goto do_shutr;
3357 }
3358 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3359 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003360 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003361 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003362
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003363 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3364 /* Here attached is implicit because there is CS */
3365 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3366 goto end;
3367 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003368 if (h1s->flags & H1S_F_WANT_KAL) {
3369 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003370 goto end;
3371 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003372
Christopher Faulet7f366362019-04-08 10:51:20 +02003373 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003374 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3375 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003376 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003377 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003378 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003379 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003380 end:
3381 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003382}
3383
3384static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3385{
3386 struct h1s *h1s = cs->ctx;
3387 struct h1c *h1c;
3388
3389 if (!h1s)
3390 return;
3391 h1c = h1s->h1c;
3392
Christopher Faulet99293b02021-11-10 10:30:15 +01003393 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003394
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003395 if (cs->flags & CS_FL_SHW)
3396 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003397 if (cs->flags & CS_FL_KILL_CONN) {
3398 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003399 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003400 }
3401 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3402 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3403 goto do_shutw;
3404 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003405
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003406 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3407 /* Here attached is implicit because there is CS */
3408 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3409 goto end;
3410 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003411 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3412 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003413 goto end;
3414 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003415
Christopher Faulet7f366362019-04-08 10:51:20 +02003416 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003417 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauleta85c5222021-10-27 15:36:38 +02003418 if (mode != CS_SHW_NORMAL)
3419 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3420
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003421 if (!b_data(&h1c->obuf))
Christopher Fauleta85c5222021-10-27 15:36:38 +02003422 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003423 end:
3424 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003425}
3426
Christopher Fauleta85c5222021-10-27 15:36:38 +02003427static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003428{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003429 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003430
Willy Tarreau62592ad2021-03-26 09:09:42 +01003431 if (conn->flags & CO_FL_SOCK_WR_SH)
3432 return;
3433
Christopher Fauleta85c5222021-10-27 15:36:38 +02003434 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003435 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003436 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3437 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003438}
3439
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003440/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3441 * The <es> pointer is not allowed to differ from the one passed to the
3442 * subscribe() call. It always returns zero.
3443 */
3444static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003445{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003446 struct h1s *h1s = cs->ctx;
3447
3448 if (!h1s)
3449 return 0;
3450
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003451 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003452 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003453
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003454 es->events &= ~event_type;
3455 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003456 h1s->subs = NULL;
3457
3458 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003459 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003460
3461 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003462 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003463
Christopher Faulet51dbc942018-09-13 09:05:15 +02003464 return 0;
3465}
3466
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003467/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3468 * event subscriber <es> is not allowed to change from a previous call as long
3469 * as at least one event is still subscribed. The <event_type> must only be a
3470 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3471 * the conn_stream <cs> was already detached, in which case it will return -1.
3472 */
3473static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003474{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003475 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003476 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003477
3478 if (!h1s)
3479 return -1;
3480
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003481 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003482 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003483
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003484 es->events |= event_type;
3485 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003486
3487 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003488 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003489
3490
Christopher Faulet6b81df72019-10-01 22:08:43 +02003491 if (event_type & SUB_RETRY_SEND) {
3492 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003493 /*
3494 * If the conn_stream attempt to subscribe, and the
3495 * mux isn't subscribed to the connection, then it
3496 * probably means the connection wasn't established
3497 * yet, so we have to subscribe.
3498 */
3499 h1c = h1s->h1c;
3500 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3501 h1c->conn->xprt->subscribe(h1c->conn,
3502 h1c->conn->xprt_ctx,
3503 SUB_RETRY_SEND,
3504 &h1c->wait_event);
3505 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003506 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003507}
3508
Christopher Faulet564e39c2021-09-21 15:50:55 +02003509/* Called from the upper layer, to receive data.
3510 *
3511 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3512 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3513 * means the caller wants to flush input data (from the mux buffer and the
3514 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3515 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3516 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3517 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3518 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3519 * copy as much data as possible.
3520 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003521static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3522{
3523 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003524 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003525 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003526 size_t ret = 0;
3527
Willy Tarreau022e5e52020-09-10 09:33:15 +02003528 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003529
3530 /* Do nothing for now if not READY */
3531 if (!(h1c->flags & H1C_F_ST_READY)) {
3532 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3533 goto end;
3534 }
3535
Christopher Faulet539e0292018-11-19 10:40:09 +01003536 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003537 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003538 else
3539 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003540
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003541 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3542 h1c->flags |= H1C_F_WANT_SPLICE;
3543 TRACE_STATE("Block xprt rcv_buf to flush stream's buffer (want_splice)", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003544 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003545 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003546 if (((flags & CO_RFL_KEEP_RECV) || (h1m->state != H1_MSG_DONE)) && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01003547 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003548 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003549
3550 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003551 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003552 return ret;
3553}
3554
3555
3556/* Called from the upper layer, to send data */
3557static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3558{
3559 struct h1s *h1s = cs->ctx;
3560 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003561 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003562
3563 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003564 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003565 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003566
Willy Tarreau022e5e52020-09-10 09:33:15 +02003567 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003568
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003569 /* If we're not connected yet, or we're waiting for a handshake, stop
3570 * now, as we don't want to remove everything from the channel buffer
3571 * before we're sure we can send it.
3572 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003573 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003574 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003575 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003576 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003577
Christopher Fauletdea24742021-01-22 15:12:30 +01003578 if (h1c->flags & H1C_F_ST_ERROR) {
3579 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003580 TRACE_ERROR("H1C on error, leaving in error", H1_EV_STRM_SEND|H1_EV_H1C_ERR|H1_EV_H1S_ERR|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01003581 return 0;
3582 }
3583
Christopher Faulet46230362019-10-17 16:04:20 +02003584 /* Inherit some flags from the upper layer */
3585 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3586 if (flags & CO_SFL_MSG_MORE)
3587 h1c->flags |= H1C_F_CO_MSG_MORE;
3588 if (flags & CO_SFL_STREAMER)
3589 h1c->flags |= H1C_F_CO_STREAMER;
3590
Christopher Fauletc31872f2019-06-04 22:09:36 +02003591 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003592 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003593
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003594 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003595 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003596 else
3597 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003598
3599 if ((count - ret) > 0)
3600 h1c->flags |= H1C_F_CO_MSG_MORE;
3601
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003602 if (!ret)
3603 break;
3604 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003605 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003606 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003607 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003608 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003609
3610 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003611 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003612 TRACE_ERROR("reporting error to the app-layer stream", H1_EV_STRM_SEND|H1_EV_H1S_ERR|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01003613 }
3614
Christopher Faulet7a145d62020-08-05 11:31:16 +02003615 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003616 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003617 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003618}
3619
Willy Tarreaue5733232019-05-22 19:24:06 +02003620#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003621/* Send and get, using splicing */
3622static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3623{
3624 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003625 struct h1c *h1c = h1s->h1c;
3626 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003627 int ret = 0;
3628
Willy Tarreau022e5e52020-09-10 09:33:15 +02003629 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003630
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003631 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003632 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003633 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003634 goto end;
3635 }
3636
Christopher Fauletcf307562021-07-26 10:49:39 +02003637 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003638 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003639 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003640 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003641 }
3642
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003643 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003644 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3645 goto end;
3646 }
3647
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003648 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003649 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003650 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003651 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003652 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003653 if (ret > h1m->curr_len) {
3654 h1s->flags |= H1S_F_PARSING_ERROR;
3655 h1c->flags |= H1C_F_ST_ERROR;
3656 cs->flags |= CS_FL_ERROR;
3657 TRACE_ERROR("too much payload, more than announced",
3658 H1_EV_RX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3659 goto end;
3660 }
3661 h1m->curr_len -= ret;
3662 if (!h1m->curr_len) {
3663 h1m->state = H1_MSG_DONE;
3664 h1c->flags &= ~H1C_F_WANT_SPLICE;
3665 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, cs->conn, h1s);
3666 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003667 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003668 }
3669
Christopher Faulet1be55f92018-10-02 15:59:23 +02003670 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003671 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003672 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003673 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003674 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003675 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003676
Christopher Faulet94d35102021-04-09 11:58:49 +02003677 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003678 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003679 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003680 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3681 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3682 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3683 }
Christopher Faulet27182292020-07-03 15:08:49 +02003684 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003685
Willy Tarreau022e5e52020-09-10 09:33:15 +02003686 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003687 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003688}
3689
3690static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3691{
3692 struct h1s *h1s = cs->ctx;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003693 struct h1c *h1c = h1s->h1c;
3694 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003695 int ret = 0;
3696
Willy Tarreau022e5e52020-09-10 09:33:15 +02003697 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003698
Christopher Faulet140f1a52021-11-26 16:37:55 +01003699 if (b_data(&h1c->obuf)) {
3700 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003701 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003702 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003703 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003704 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003705 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003706
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003707 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003708 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003709 if (ret > h1m->curr_len) {
3710 h1s->flags |= H1S_F_PROCESSING_ERROR;
3711 h1c->flags |= H1C_F_ST_ERROR;
3712 cs->flags |= CS_FL_ERROR;
3713 TRACE_ERROR("too much payload, more than announced",
3714 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3715 goto end;
3716 }
3717 h1m->curr_len -= ret;
3718 if (!h1m->curr_len) {
3719 h1m->state = H1_MSG_DONE;
3720 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, cs->conn, h1s);
3721 }
3722 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003723
3724 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003725 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003726 return ret;
3727}
3728#endif
3729
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003730static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3731{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003732 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003733 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003734
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003735 switch (mux_ctl) {
3736 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003737 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003738 ret |= MUX_STATUS_READY;
3739 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003740 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003741 if (output)
3742 *((int *)output) = h1c->errcode;
3743 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3744 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3745 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3746 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003747 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003748 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003749 default:
3750 return -1;
3751 }
3752}
3753
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003754/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003755static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003756{
3757 struct h1c *h1c = conn->ctx;
3758 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003759 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003760
Christopher Fauletf376a312019-01-04 15:16:06 +01003761 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3762 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003763 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3764 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3765 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3766 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3767
3768 if (h1s) {
3769 char *method;
3770
3771 if (h1s->meth < HTTP_METH_OTHER)
3772 method = http_known_methods[h1s->meth].ptr;
3773 else
3774 method = "UNKNOWN";
3775 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3776 " .meth=%s status=%d",
3777 h1s, h1s->flags,
3778 h1m_state_str(h1s->req.state),
3779 h1m_state_str(h1s->res.state), method, h1s->status);
3780 if (h1s->cs)
3781 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3782 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003783
3784 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3785 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003786 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3787 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3788 h1s->subs->tasklet->calls,
3789 h1s->subs->tasklet->context);
3790 if (h1s->subs->tasklet->calls >= 1000000)
3791 ret = 1;
3792 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3793 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003794 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003795 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003796 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003797}
3798
3799
3800/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3801static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3802{
3803 struct h1_hdr_entry *entry;
3804
3805 /* Be sure there is a non-empty <to> */
3806 if (!strlen(to)) {
3807 memprintf(err, "expect <to>");
3808 return -1;
3809 }
3810
3811 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003812 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003813 memprintf(err, "<from> and <to> must not differ execpt the case");
3814 return -1;
3815 }
3816
3817 /* Be sure <from> does not already existsin the tree */
3818 if (ebis_lookup(&hdrs_map.map, from)) {
3819 memprintf(err, "duplicate entry '%s'", from);
3820 return -1;
3821 }
3822
3823 /* Create the entry and insert it in the tree */
3824 entry = malloc(sizeof(*entry));
3825 if (!entry) {
3826 memprintf(err, "out of memory");
3827 return -1;
3828 }
3829
3830 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003831 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003832 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003833 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003834 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003835 free(entry);
3836 memprintf(err, "out of memory");
3837 return -1;
3838 }
3839 ebis_insert(&hdrs_map.map, &entry->node);
3840 return 0;
3841}
3842
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003843/* Migrate the the connection to the current thread.
3844 * Return 0 if successful, non-zero otherwise.
3845 * Expected to be called with the old thread lock held.
3846 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003847static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003848{
3849 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003850 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003851
3852 if (fd_takeover(conn->handle.fd, conn) != 0)
3853 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003854
3855 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3856 /* We failed to takeover the xprt, even if the connection may
3857 * still be valid, flag it as error'd, as we have already
3858 * taken over the fd, and wake the tasklet, so that it will
3859 * destroy it.
3860 */
3861 conn->flags |= CO_FL_ERROR;
3862 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3863 return -1;
3864 }
3865
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003866 if (h1c->wait_event.events)
3867 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3868 h1c->wait_event.events, &h1c->wait_event);
3869 /* To let the tasklet know it should free itself, and do nothing else,
3870 * set its context to NULL.
3871 */
3872 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003873 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003874
3875 task = h1c->task;
3876 if (task) {
3877 task->context = NULL;
3878 h1c->task = NULL;
3879 __ha_barrier_store();
3880 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003881
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003882 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003883 if (!h1c->task) {
3884 h1_release(h1c);
3885 return -1;
3886 }
3887 h1c->task->process = h1_timeout_task;
3888 h1c->task->context = h1c;
3889 }
3890 h1c->wait_event.tasklet = tasklet_new();
3891 if (!h1c->wait_event.tasklet) {
3892 h1_release(h1c);
3893 return -1;
3894 }
3895 h1c->wait_event.tasklet->process = h1_io_cb;
3896 h1c->wait_event.tasklet->context = h1c;
3897 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3898 SUB_RETRY_RECV, &h1c->wait_event);
3899
3900 return 0;
3901}
3902
3903
Christopher Faulet98fbe952019-07-22 16:18:24 +02003904static void h1_hdeaders_case_adjust_deinit()
3905{
3906 struct ebpt_node *node, *next;
3907 struct h1_hdr_entry *entry;
3908
3909 node = ebpt_first(&hdrs_map.map);
3910 while (node) {
3911 next = ebpt_next(node);
3912 ebpt_delete(node);
3913 entry = container_of(node, struct h1_hdr_entry, node);
3914 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003915 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003916 free(entry);
3917 node = next;
3918 }
3919 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003920}
3921
Christopher Faulet98fbe952019-07-22 16:18:24 +02003922static int cfg_h1_headers_case_adjust_postparser()
3923{
3924 FILE *file = NULL;
3925 char *c, *key_beg, *key_end, *value_beg, *value_end;
3926 char *err;
3927 int rc, line = 0, err_code = 0;
3928
3929 if (!hdrs_map.name)
3930 goto end;
3931
3932 file = fopen(hdrs_map.name, "r");
3933 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003934 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003935 hdrs_map.name);
3936 err_code |= ERR_ALERT | ERR_FATAL;
3937 goto end;
3938 }
3939
3940 /* now parse all lines. The file may contain only two header name per
3941 * line, separated by spaces. All heading and trailing spaces will be
3942 * ignored. Lines starting with a # are ignored.
3943 */
3944 while (fgets(trash.area, trash.size, file) != NULL) {
3945 line++;
3946 c = trash.area;
3947
3948 /* strip leading spaces and tabs */
3949 while (*c == ' ' || *c == '\t')
3950 c++;
3951
3952 /* ignore emptu lines, or lines beginning with a dash */
3953 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3954 continue;
3955
3956 /* look for the end of the key */
3957 key_beg = c;
3958 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3959 c++;
3960 key_end = c;
3961
3962 /* strip middle spaces and tabs */
3963 while (*c == ' ' || *c == '\t')
3964 c++;
3965
3966 /* look for the end of the value, it is the end of the line */
3967 value_beg = c;
3968 while (*c && *c != '\n' && *c != '\r')
3969 c++;
3970 value_end = c;
3971
3972 /* trim possibly trailing spaces and tabs */
3973 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3974 value_end--;
3975
3976 /* set final \0 and check entries */
3977 *key_end = '\0';
3978 *value_end = '\0';
3979
3980 err = NULL;
3981 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3982 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003983 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003984 hdrs_map.name, err, line);
3985 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003986 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003987 goto end;
3988 }
3989 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003990 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003991 hdrs_map.name, err, line);
3992 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003993 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003994 }
3995 }
3996
3997 end:
3998 if (file)
3999 fclose(file);
4000 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4001 return err_code;
4002}
4003
4004
4005/* config parser for global "h1-outgoing-header-case-adjust" */
4006static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004007 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004008 char **err)
4009{
4010 if (too_many_args(2, args, err, NULL))
4011 return -1;
4012 if (!*(args[1]) || !*(args[2])) {
4013 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4014 return -1;
4015 }
4016 return add_hdr_case_adjust(args[1], args[2], err);
4017}
4018
4019/* config parser for global "h1-outgoing-headers-case-adjust-file" */
4020static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004021 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004022 char **err)
4023{
4024 if (too_many_args(1, args, err, NULL))
4025 return -1;
4026 if (!*(args[1])) {
4027 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4028 return -1;
4029 }
4030 free(hdrs_map.name);
4031 hdrs_map.name = strdup(args[1]);
4032 return 0;
4033}
4034
4035
4036/* config keyword parsers */
4037static struct cfg_kw_list cfg_kws = {{ }, {
4038 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4039 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4040 { 0, NULL, NULL },
4041 }
4042};
4043
4044INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4045REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4046
4047
Christopher Faulet51dbc942018-09-13 09:05:15 +02004048/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004049/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004050/****************************************/
4051
4052/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004053static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004054 .init = h1_init,
4055 .wake = h1_wake,
4056 .attach = h1_attach,
4057 .get_first_cs = h1_get_first_cs,
4058 .detach = h1_detach,
4059 .destroy = h1_destroy,
4060 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004061 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004062 .rcv_buf = h1_rcv_buf,
4063 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004064#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004065 .rcv_pipe = h1_rcv_pipe,
4066 .snd_pipe = h1_snd_pipe,
4067#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004068 .subscribe = h1_subscribe,
4069 .unsubscribe = h1_unsubscribe,
4070 .shutr = h1_shutr,
4071 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004072 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004073 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004074 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004075 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004076 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004077};
4078
Christopher Faulet3f612f72021-02-05 16:44:21 +01004079static const struct mux_ops mux_h1_ops = {
4080 .init = h1_init,
4081 .wake = h1_wake,
4082 .attach = h1_attach,
4083 .get_first_cs = h1_get_first_cs,
4084 .detach = h1_detach,
4085 .destroy = h1_destroy,
4086 .avail_streams = h1_avail_streams,
4087 .used_streams = h1_used_streams,
4088 .rcv_buf = h1_rcv_buf,
4089 .snd_buf = h1_snd_buf,
4090#if defined(USE_LINUX_SPLICE)
4091 .rcv_pipe = h1_rcv_pipe,
4092 .snd_pipe = h1_snd_pipe,
4093#endif
4094 .subscribe = h1_subscribe,
4095 .unsubscribe = h1_unsubscribe,
4096 .shutr = h1_shutr,
4097 .shutw = h1_shutw,
4098 .show_fd = h1_show_fd,
4099 .ctl = h1_ctl,
4100 .takeover = h1_takeover,
4101 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4102 .name = "H1",
4103};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004104
Christopher Faulet3f612f72021-02-05 16:44:21 +01004105/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4106static struct mux_proto_list mux_proto_h1 =
4107 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4108static struct mux_proto_list mux_proto_http =
4109 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004110
Christopher Faulet3f612f72021-02-05 16:44:21 +01004111INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4112INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004113
Christopher Faulet51dbc942018-09-13 09:05:15 +02004114/*
4115 * Local variables:
4116 * c-indent-level: 8
4117 * c-basic-offset: 8
4118 * End:
4119 */