blob: c5f0b03201705a40874e08dfa4d83e72a82ac186 [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>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010018#include <haproxy/conn_stream.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020019#include <haproxy/dynbuf.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020020#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020021#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020022#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020024#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/istbuf.h>
26#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020027#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020028#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020029#include <haproxy/session-t.h>
Christopher Fauletb4c584e2021-11-26 17:37:07 +010030#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020031#include <haproxy/stream.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020032#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020033
34/*
35 * H1 Connection flags (32 bits)
36 */
37#define H1C_F_NONE 0x00000000
38
39/* Flags indicating why writing output data are blocked */
40#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
41#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
42/* 0x00000004 - 0x00000008 unused */
43
44/* Flags indicating why reading input data are blocked. */
45#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
46#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020047#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet51dbc942018-09-13 09:05:15 +020048
Christopher Faulet7b109f22019-12-05 11:18:31 +010049/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010050#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 +010051#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 +010052#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
53 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
54#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
55#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 +010056#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
57 * 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 +010058#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Faulet75308302021-11-15 14:51:37 +010059#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed (implied ST_SHUTDOWN) */
Christopher Fauleta85c5222021-10-27 15:36:38 +020060/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020061
Christopher Fauletb385b502021-01-13 18:47:57 +010062#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
63#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
64#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
65#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
66#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
67#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 +020068
Christopher Faulet10a86702021-04-07 14:18:11 +020069/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010070#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020071
Christopher Faulet51dbc942018-09-13 09:05:15 +020072/*
73 * H1 Stream flags (32 bits)
74 */
Christopher Faulet129817b2018-09-20 16:14:40 +020075#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020076
77#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
78#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020079#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
80
Willy Tarreauc493c9c2019-06-03 14:18:22 +020081#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020082#define H1S_F_WANT_KAL 0x00000010
83#define H1S_F_WANT_TUN 0x00000020
84#define H1S_F_WANT_CLO 0x00000040
85#define H1S_F_WANT_MSK 0x00000070
86#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010087#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020088
Ilya Shipitsinacf84592021-02-06 22:29:08 +050089/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010090#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 +020091#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
92#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
93#define H1S_F_ERROR 0x00001800 /* stream error mask */
94
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020095#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 +020096#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020097
98/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020099struct h1c {
100 struct connection *conn;
101 struct proxy *px;
102 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200103 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200104 struct buffer ibuf; /* Input buffer to store data before parsing */
105 struct buffer obuf; /* Output buffer to store data after reformatting */
106
107 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
108 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
109
110 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100111 struct task *task; /* timeout management task */
Christopher Faulet563c3452021-11-26 17:37:51 +0100112 struct h1_counters *px_counters; /* h1 counters attached to proxy */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200113 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
114 int timeout; /* client/server timeout duration */
115 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200116};
117
118/* H1 stream descriptor */
119struct h1s {
120 struct h1c *h1c;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100121 struct cs_endpoint *endp;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100122 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200123
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100124 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200125
Olivier Houchardf502aca2018-12-14 19:42:40 +0100126 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200127 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200128 struct h1m req;
129 struct h1m res;
130
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500131 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200132 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100133
134 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200135};
136
Christopher Faulet98fbe952019-07-22 16:18:24 +0200137/* Map of headers used to convert outgoing headers */
138struct h1_hdrs_map {
139 char *name;
140 struct eb_root map;
141};
142
143/* An entry in a headers map */
144struct h1_hdr_entry {
145 struct ist name;
146 struct ebpt_node node;
147};
148
149/* Declare the headers map */
150static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
Christopher Faulet0f9c0f52022-05-13 09:20:13 +0200151static int accept_payload_with_any_method = 0;
Christopher Faulet98fbe952019-07-22 16:18:24 +0200152
Christopher Faulet6b81df72019-10-01 22:08:43 +0200153/* trace source and events */
154static void h1_trace(enum trace_level level, uint64_t mask,
155 const struct trace_source *src,
156 const struct ist where, const struct ist func,
157 const void *a1, const void *a2, const void *a3, const void *a4);
158
159/* The event representation is split like this :
160 * h1c - internal H1 connection
161 * h1s - internal H1 stream
162 * strm - application layer
163 * rx - data receipt
164 * tx - data transmission
165 *
166 */
167static const struct trace_event h1_trace_events[] = {
168#define H1_EV_H1C_NEW (1ULL << 0)
169 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
170#define H1_EV_H1C_RECV (1ULL << 1)
171 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
172#define H1_EV_H1C_SEND (1ULL << 2)
173 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
174#define H1_EV_H1C_BLK (1ULL << 3)
175 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
176#define H1_EV_H1C_WAKE (1ULL << 4)
177 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
178#define H1_EV_H1C_END (1ULL << 5)
179 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
180#define H1_EV_H1C_ERR (1ULL << 6)
181 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
182
183#define H1_EV_RX_DATA (1ULL << 7)
184 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
185#define H1_EV_RX_EOI (1ULL << 8)
186 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
187#define H1_EV_RX_HDRS (1ULL << 9)
188 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
189#define H1_EV_RX_BODY (1ULL << 10)
190 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
191#define H1_EV_RX_TLRS (1ULL << 11)
192 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
193
194#define H1_EV_TX_DATA (1ULL << 12)
195 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
196#define H1_EV_TX_EOI (1ULL << 13)
197 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
198#define H1_EV_TX_HDRS (1ULL << 14)
199 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
200#define H1_EV_TX_BODY (1ULL << 15)
201 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
202#define H1_EV_TX_TLRS (1ULL << 16)
203 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
204
205#define H1_EV_H1S_NEW (1ULL << 17)
206 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
207#define H1_EV_H1S_BLK (1ULL << 18)
208 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
209#define H1_EV_H1S_END (1ULL << 19)
210 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
211#define H1_EV_H1S_ERR (1ULL << 20)
212 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
213
214#define H1_EV_STRM_NEW (1ULL << 21)
215 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
216#define H1_EV_STRM_RECV (1ULL << 22)
217 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
218#define H1_EV_STRM_SEND (1ULL << 23)
219 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
220#define H1_EV_STRM_WAKE (1ULL << 24)
221 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
222#define H1_EV_STRM_SHUT (1ULL << 25)
223 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
224#define H1_EV_STRM_END (1ULL << 26)
225 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
226#define H1_EV_STRM_ERR (1ULL << 27)
227 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
228
229 { }
230};
231
232static const struct name_desc h1_trace_lockon_args[4] = {
233 /* arg1 */ { /* already used by the connection */ },
234 /* arg2 */ { .name="h1s", .desc="H1 stream" },
235 /* arg3 */ { },
236 /* arg4 */ { }
237};
238
239static const struct name_desc h1_trace_decoding[] = {
240#define H1_VERB_CLEAN 1
241 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
242#define H1_VERB_MINIMAL 2
243 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
244#define H1_VERB_SIMPLE 3
245 { .name="simple", .desc="add request/response status line or htx info when available" },
246#define H1_VERB_ADVANCED 4
247 { .name="advanced", .desc="add header fields or frame decoding when available" },
248#define H1_VERB_COMPLETE 5
249 { .name="complete", .desc="add full data dump when available" },
250 { /* end */ }
251};
252
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200253static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200254 .name = IST("h1"),
255 .desc = "HTTP/1 multiplexer",
256 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
257 .default_cb = h1_trace,
258 .known_events = h1_trace_events,
259 .lockon_args = h1_trace_lockon_args,
260 .decoding = h1_trace_decoding,
261 .report_events = ~0, // report everything by default
262};
263
264#define TRACE_SOURCE &trace_h1
265INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
266
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100267
268/* h1 stats module */
269enum {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100270 H1_ST_OPEN_CONN,
271 H1_ST_OPEN_STREAM,
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100272 H1_ST_TOTAL_CONN,
273 H1_ST_TOTAL_STREAM,
274
Christopher Faulet41951ab2021-11-26 18:12:51 +0100275 H1_ST_BYTES_IN,
276 H1_ST_BYTES_OUT,
277#if defined(USE_LINUX_SPLICE)
278 H1_ST_SPLICED_BYTES_IN,
279 H1_ST_SPLICED_BYTES_OUT,
280#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100281 H1_STATS_COUNT /* must be the last member of the enum */
282};
283
284
285static struct name_desc h1_stats[] = {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100286 [H1_ST_OPEN_CONN] = { .name = "h1_open_connections",
287 .desc = "Count of currently open connections" },
288 [H1_ST_OPEN_STREAM] = { .name = "h1_open_streams",
289 .desc = "Count of currently open streams" },
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100290 [H1_ST_TOTAL_CONN] = { .name = "h1_total_connections",
291 .desc = "Total number of connections" },
292 [H1_ST_TOTAL_STREAM] = { .name = "h1_total_streams",
Christopher Faulet41951ab2021-11-26 18:12:51 +0100293 .desc = "Total number of streams" },
294
295 [H1_ST_BYTES_IN] = { .name = "h1_bytes_in",
296 .desc = "Total number of bytes received" },
297 [H1_ST_BYTES_OUT] = { .name = "h1_bytes_out",
298 .desc = "Total number of bytes send" },
299#if defined(USE_LINUX_SPLICE)
300 [H1_ST_SPLICED_BYTES_IN] = { .name = "h1_spliced_bytes_in",
301 .desc = "Total number of bytes received using kernel splicing" },
302 [H1_ST_SPLICED_BYTES_OUT] = { .name = "h1_spliced_bytes_out",
303 .desc = "Total number of bytes sendusing kernel splicing" },
304#endif
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100305
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100306};
307
308static struct h1_counters {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100309 long long open_conns; /* count of currently open connections */
310 long long open_streams; /* count of currently open streams */
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100311 long long total_conns; /* total number of connections */
312 long long total_streams; /* total number of streams */
313
Christopher Faulet41951ab2021-11-26 18:12:51 +0100314 long long bytes_in; /* number of bytes received */
315 long long bytes_out; /* number of bytes sent */
316#if defined(USE_LINUX_SPLICE)
317 long long spliced_bytes_in; /* number of bytes received using kernel splicing */
318 long long spliced_bytes_out; /* number of bytes sent using kernel splicing */
319#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100320} h1_counters;
321
322static void h1_fill_stats(void *data, struct field *stats)
323{
Christopher Faulet60fa0512021-11-26 18:10:39 +0100324 struct h1_counters *counters = data;
325
326 stats[H1_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
327 stats[H1_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100328 stats[H1_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
329 stats[H1_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Christopher Faulet41951ab2021-11-26 18:12:51 +0100330
331 stats[H1_ST_BYTES_IN] = mkf_u64(FN_COUNTER, counters->bytes_in);
332 stats[H1_ST_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->bytes_out);
333#if defined(USE_LINUX_SPLICE)
334 stats[H1_ST_SPLICED_BYTES_IN] = mkf_u64(FN_COUNTER, counters->spliced_bytes_in);
335 stats[H1_ST_SPLICED_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->spliced_bytes_out);
336#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100337}
338
339static struct stats_module h1_stats_module = {
340 .name = "h1",
341 .fill_stats = h1_fill_stats,
342 .stats = h1_stats,
343 .stats_count = H1_STATS_COUNT,
344 .counters = &h1_counters,
345 .counters_size = sizeof(h1_counters),
346 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
347 .clearable = 1,
348};
349
350INITCALL1(STG_REGISTER, stats_register_module, &h1_stats_module);
351
352
Christopher Faulet51dbc942018-09-13 09:05:15 +0200353/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100354DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
355DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200356
Christopher Faulet51dbc942018-09-13 09:05:15 +0200357static int h1_recv(struct h1c *h1c);
358static int h1_send(struct h1c *h1c);
359static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100360/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100361struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
362struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200363static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200364static void h1_wake_stream_for_recv(struct h1s *h1s);
365static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200366
Christopher Faulet6b81df72019-10-01 22:08:43 +0200367/* the H1 traces always expect that arg1, if non-null, is of type connection
368 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
369 * that arg3, if non-null, is a htx for rx/tx headers.
370 */
371static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
372 const struct ist where, const struct ist func,
373 const void *a1, const void *a2, const void *a3, const void *a4)
374{
375 const struct connection *conn = a1;
376 const struct h1c *h1c = conn ? conn->ctx : NULL;
377 const struct h1s *h1s = a2;
378 const struct htx *htx = a3;
379 const size_t *val = a4;
380
381 if (!h1c)
382 h1c = (h1s ? h1s->h1c : NULL);
383
384 if (!h1c || src->verbosity < H1_VERB_CLEAN)
385 return;
386
387 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200388 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200389
390 /* Display request and response states if h1s is defined */
Christopher Faulet6580f282021-11-26 17:31:35 +0100391 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200392 chunk_appendf(&trace_buf, " [%s, %s]",
393 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
394
Christopher Faulet6580f282021-11-26 17:31:35 +0100395 if (src->verbosity > H1_VERB_SIMPLE) {
396 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
397 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
398 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
399 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
400 }
401
402 }
403
Christopher Faulet6b81df72019-10-01 22:08:43 +0200404 if (src->verbosity == H1_VERB_CLEAN)
405 return;
406
407 /* Display the value to the 4th argument (level > STATE) */
408 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100409 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200410
411 /* Display status-line if possible (verbosity > MINIMAL) */
412 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
413 const struct htx_blk *blk = htx_get_head_blk(htx);
414 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
415 enum htx_blk_type type = htx_get_blk_type(blk);
416
417 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
418 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
419 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
420 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
421 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
422 }
423
424 /* Display h1c info and, if defined, h1s info (pointer + flags) */
425 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100426 if (h1c->conn)
427 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
428 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200429 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Faulet186354b2022-04-13 12:09:36 +0200430 if (h1s->endp)
431 chunk_appendf(&trace_buf, " endp=%p(0x%08x)", h1s->endp, h1s->endp->flags);
Willy Tarreau56d5a812022-05-10 10:25:41 +0200432 if (h1s->endp && h1s->endp->cs)
433 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->endp->cs, h1s->endp->cs->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100434 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200435
436 if (src->verbosity == H1_VERB_MINIMAL)
437 return;
438
439 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
440 if (src->level > TRACE_LEVEL_USER) {
441 if (src->verbosity == H1_VERB_COMPLETE ||
442 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
443 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
444 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
445 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
446 if (src->verbosity == H1_VERB_COMPLETE ||
447 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
448 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
449 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
450 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
451 }
452
453 /* Display htx info if defined (level > USER) */
454 if (src->level > TRACE_LEVEL_USER && htx) {
455 int full = 0;
456
457 /* Full htx info (level > STATE && verbosity > SIMPLE) */
458 if (src->level > TRACE_LEVEL_STATE) {
459 if (src->verbosity == H1_VERB_COMPLETE)
460 full = 1;
461 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
462 full = 1;
463 }
464
465 chunk_memcat(&trace_buf, "\n\t", 2);
466 htx_dump(&trace_buf, htx, full);
467 }
468}
469
470
Christopher Faulet51dbc942018-09-13 09:05:15 +0200471/*****************************************************/
472/* functions below are for dynamic buffer management */
473/*****************************************************/
474/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100475 * Indicates whether or not we may receive data. The rules are the following :
476 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200477 * must not attempt to receive
478 * - if we are waiting for the connection establishment, we must not attempt
479 * to receive
480 * - if an error was detected on the stream we must not attempt to receive
481 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100482 * - if the input buffer failed to be allocated or is full , we must not try
483 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200484 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200485 * - otherwise must may not attempt to receive
486 */
487static inline int h1_recv_allowed(const struct h1c *h1c)
488{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100489 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100490 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 +0200491 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200492 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200493
Willy Tarreau2febb842020-07-31 09:15:43 +0200494 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
495 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 +0100496 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200497 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100498
Christopher Faulet119ac872020-09-30 17:33:22 +0200499 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
500 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
501 return 0;
502 }
503
Christopher Fauletd17ad822020-09-24 15:14:29 +0200504 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200505 return 1;
506
Christopher Faulet6b81df72019-10-01 22:08:43 +0200507 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 +0200508 return 0;
509}
510
511/*
512 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
513 * flags are used to figure what buffer was requested. It returns 1 if the
514 * allocation succeeds, in which case the connection is woken up, or 0 if it's
515 * impossible to wake up and we prefer to be woken up later.
516 */
517static int h1_buf_available(void *target)
518{
519 struct h1c *h1c = target;
520
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100521 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200522 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 +0200523 h1c->flags &= ~H1C_F_IN_ALLOC;
524 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200525 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200526 return 1;
527 }
528
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100529 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200530 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 +0200531 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200532 if (h1c->h1s)
533 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200534 return 1;
535 }
536
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100537 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200538 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
539 h1c->flags &= ~H1C_F_IN_SALLOC;
540 tasklet_wakeup(h1c->wait_event.tasklet);
541 return 1;
542 }
543
Christopher Faulet51dbc942018-09-13 09:05:15 +0200544 return 0;
545}
546
547/*
548 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
549 */
550static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
551{
552 struct buffer *buf = NULL;
553
Willy Tarreau2b718102021-04-21 07:32:39 +0200554 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100555 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200556 h1c->buf_wait.target = h1c;
557 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200558 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200559 }
560 return buf;
561}
562
563/*
564 * Release a buffer, if any, and try to wake up entities waiting in the buffer
565 * wait queue.
566 */
567static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
568{
569 if (bptr->size) {
570 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100571 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200572 }
573}
574
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100575/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100576 * 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 +0100577 * not. This flag is only set when no H1S is attached and when the previous
578 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100579 */
580static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200581{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100582 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200583
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100584 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200585}
586
Willy Tarreau00f18a32019-01-26 12:19:01 +0100587/* returns the number of streams still available on a connection */
588static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100589{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100590 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100591}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200592
Christopher Faulet7a145d62020-08-05 11:31:16 +0200593/* Refresh the h1c task timeout if necessary */
594static void h1_refresh_timeout(struct h1c *h1c)
595{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200596 int is_idle_conn = 0;
597
Christopher Faulet7a145d62020-08-05 11:31:16 +0200598 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100599 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200600 /* half-closed or dead connections : switch to clientfin/serverfin
601 * timeouts so that we don't hang too long on clients that have
602 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200603 */
604 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200605 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200606 is_idle_conn = 1;
Christopher Fauletadcd7892020-10-05 17:13:05 +0200607 }
608 else if (b_data(&h1c->obuf)) {
609 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200610 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200611 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
612 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100613 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
614 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200615 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100616 TRACE_DEVEL("refreshing connection's timeout (alive front h1c but not ready)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200617 /* A frontend connection not yet ready could be treated the same way as an idle
618 * one in case of soft-close.
619 */
620 is_idle_conn = 1;
Christopher Faulet7a145d62020-08-05 11:31:16 +0200621 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200622 else {
623 /* alive back connections of front connections with a conn-stream attached */
624 h1c->task->expire = TICK_ETERNITY;
625 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
626 }
627
Christopher Fauletdbe57792020-10-05 17:50:58 +0200628 /* Finally set the idle expiration date if shorter */
629 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200630
631 if ((h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
632 is_idle_conn && tick_isset(global.close_spread_end)) {
633 /* If a soft-stop is in progress and a close-spread-time
634 * is set, we want to spread idle connection closing roughly
635 * evenly across the defined window. This should only
636 * act on idle frontend connections.
637 * If the window end is already in the past, we wake the
638 * timeout task up immediately so that it can be closed.
639 */
640 int remaining_window = tick_remain(now_ms, global.close_spread_end);
641 if (remaining_window) {
642 /* We don't need to reset the expire if it would
643 * already happen before the close window end.
644 */
645 if (tick_is_le(global.close_spread_end, h1c->task->expire)) {
646 /* Set an expire value shorter than the current value
647 * because the close spread window end comes earlier.
648 */
649 h1c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
650 TRACE_DEVEL("connection timeout set to value before close-spread window end", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
651 }
652 }
653 else {
654 /* We are past the soft close window end, wake the timeout
655 * task up immediately.
656 */
657 task_wakeup(h1c->task, TASK_WOKEN_TIMER);
658 }
659 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200660 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
661 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200662 }
663}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200664
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200665static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200666{
667 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
668 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
669 h1c->idle_exp = TICK_ETERNITY;
670 return;
671 }
672
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100673 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200674 if (!tick_isset(h1c->idle_exp)) {
675 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
676 !b_data(&h1c->ibuf) && /* No input data */
677 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
678 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
679 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
680 }
681 else {
682 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
683 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
684 }
685 }
686 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100687 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200688 if (!tick_isset(h1c->idle_exp)) {
689 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
690 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
691 }
692 }
693 else { // CS_ATTACHED or SHUTDOWN
694 h1c->idle_exp = TICK_ETERNITY;
695 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
696 }
697}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200698/*****************************************************************/
699/* functions below are dedicated to the mux setup and management */
700/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200701
702/* returns non-zero if there are input data pending for stream h1s. */
703static inline size_t h1s_data_pending(const struct h1s *h1s)
704{
705 const struct h1m *h1m;
706
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200707 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100708 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200709}
710
Christopher Faulet16df1782020-12-04 16:47:41 +0100711/* Creates a new conn-stream and the associate stream. <input> is used as input
712 * buffer for the stream. On success, it is transferred to the stream and the
713 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
714 * mux must still take care of it. However, there is nothing special to do
715 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
716 * b_free() on it is always safe. This function returns the conn-stream on
717 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200718static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100719{
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100720 struct h1c *h1c = h1s->h1c;
Christopher Faulet47365272018-10-31 17:40:50 +0100721
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100722 TRACE_ENTER(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100723
Christopher Fauletb669d682022-03-22 18:37:19 +0100724 if (h1s->flags & H1S_F_NOT_FIRST)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100725 h1s->endp->flags |= CS_EP_NOT_FIRST;
Christopher Fauletb669d682022-03-22 18:37:19 +0100726 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100727 h1s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +0100728
Willy Tarreau6796a062022-05-11 16:11:24 +0200729 if (!cs_new_from_endp(h1s->endp, h1c->conn->owner, input)) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100730 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100731 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200732 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200733
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100734 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
735 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100736
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100737 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
738 TRACE_LEAVE(H1_EV_STRM_NEW, h1c->conn, h1s);
Willy Tarreau56d5a812022-05-10 10:25:41 +0200739 return h1s->endp->cs;
Christopher Faulet47365272018-10-31 17:40:50 +0100740
Christopher Faulet91449b02022-03-22 18:45:55 +0100741 err:
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100742 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100743 return NULL;
744}
745
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100746static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
747{
748 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
749
Willy Tarreau56d5a812022-05-10 10:25:41 +0200750 if (stream_upgrade_from_cs(h1s->endp->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100751 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 +0100752 goto err;
753 }
754
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100755 h1s->h1c->flags |= H1C_F_ST_READY;
756 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Willy Tarreau56d5a812022-05-10 10:25:41 +0200757 return h1s->endp->cs;
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100758
759 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100760 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100761 return NULL;
762}
763
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200764static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200765{
766 struct h1s *h1s;
767
Christopher Faulet6b81df72019-10-01 22:08:43 +0200768 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
769
Christopher Faulet51dbc942018-09-13 09:05:15 +0200770 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100771 if (!h1s) {
772 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 +0100773 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100774 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200775 h1s->h1c = h1c;
776 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200777 h1s->sess = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100778 h1s->endp = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100779 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100780 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200781 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100782 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200783
784 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100785 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200786
Christopher Faulet129817b2018-09-20 16:14:40 +0200787 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100788 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200789
790 h1s->status = 0;
791 h1s->meth = HTTP_METH_OTHER;
792
Christopher Faulet47365272018-10-31 17:40:50 +0100793 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
794 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100795 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100796
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200797 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
798 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200799
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200800 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100801 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200802 return NULL;
803}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100804
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100805static struct h1s *h1c_frt_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200806{
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200807 struct h1s *h1s;
808
809 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
810
811 h1s = h1s_new(h1c);
812 if (!h1s)
813 goto fail;
814
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100815 if (cs) {
Christopher Faulet070b91b2022-03-31 19:27:18 +0200816 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
817 goto fail;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100818 h1s->endp = cs->endp;
819 }
820 else {
821 h1s->endp = cs_endpoint_new();
822 if (!h1s->endp)
823 goto fail;
824 h1s->endp->target = h1s;
825 h1s->endp->ctx = h1c->conn;
826 h1s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN);
827 }
828
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200829 h1s->sess = sess;
830
831 if (h1c->px->options2 & PR_O2_REQBUG_OK)
832 h1s->req.err_pos = -1;
833
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200834 h1c->idle_exp = TICK_ETERNITY;
835 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200836 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200837 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100838
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200839 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100840 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100841 pool_free(pool_head_h1s, h1s);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200842 return NULL;
843}
844
845static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
846{
847 struct h1s *h1s;
848
849 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
850
851 h1s = h1s_new(h1c);
852 if (!h1s)
853 goto fail;
854
Christopher Faulet070b91b2022-03-31 19:27:18 +0200855 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
856 goto fail;
857
Christopher Faulet10a86702021-04-07 14:18:11 +0200858 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100859 h1s->endp = cs->endp;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200860 h1s->sess = sess;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200861
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100862 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200863
864 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
865 h1s->res.err_pos = -1;
866
Christopher Faulet60fa0512021-11-26 18:10:39 +0100867 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100868 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100869
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200870 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
871 return h1s;
872
873 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100874 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +0200875 pool_free(pool_head_h1s, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100876 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200877}
878
879static void h1s_destroy(struct h1s *h1s)
880{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200881 if (h1s) {
882 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200883
Christopher Faulet6b81df72019-10-01 22:08:43 +0200884 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200885 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200886
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100887 if (h1s->subs)
888 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200889
Christopher Fauletd17ad822020-09-24 15:14:29 +0200890 h1_release_buf(h1c, &h1s->rxbuf);
891
Christopher Faulet10a86702021-04-07 14:18:11 +0200892 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100893 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200894 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
895 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200896 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100897 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100898 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 +0200899 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100900
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100901 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100902 !(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 +0100903 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100904 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100905 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100906 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
907 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200908 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100909 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100910 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200911 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100912
913 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100914 BUG_ON(h1s->endp && !(h1s->endp->flags & CS_EP_ORPHAN));
915 cs_endpoint_free(h1s->endp);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200916 pool_free(pool_head_h1s, h1s);
917 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200918}
919
920/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200921 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500922 * to the existing conn_stream (for outgoing connections or for incoming ones
923 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200924 * establishment). <input> is always used as Input buffer and may contain
925 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
926 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200927 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200928static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
929 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200930{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200931 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100932 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200933 void *conn_ctx = conn->ctx;
934
935 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200936
937 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100938 if (!h1c) {
939 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200940 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100941 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200942 h1c->conn = conn;
943 h1c->px = proxy;
944
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100945 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200946 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200947 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200948 h1c->obuf = BUF_NULL;
949 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200950 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200951
Willy Tarreau90f366b2021-02-20 11:49:49 +0100952 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200953 h1c->wait_event.tasklet = tasklet_new();
954 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200955 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200956 h1c->wait_event.tasklet->process = h1_io_cb;
957 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100958 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200959 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200960
Christopher Faulete9b70722019-04-08 10:46:02 +0200961 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200962 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100963 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
964 if (tick_isset(proxy->timeout.serverfin))
965 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100966
967 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
968 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100969 } else {
970 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
971 if (tick_isset(proxy->timeout.clientfin))
972 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200973
Christopher Faulet563c3452021-11-26 17:37:51 +0100974 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
975 &h1_stats_module);
976
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200977 LIST_APPEND(&mux_stopping_data[tid].list,
978 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100979 }
980 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200981 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100982 if (!t) {
983 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 +0100984 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100985 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100986
987 h1c->task = t;
988 t->process = h1_timeout_task;
989 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200990
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100991 t->expire = tick_add(now_ms, h1c->timeout);
992 }
993
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100994 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200995
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200996 if (h1c->flags & H1C_F_IS_BACK) {
997 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200998 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
999 goto fail;
1000 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001001 else if (conn_ctx) {
1002 /* Upgraded frontend connection (from TCP) */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001003 if (!h1c_frt_stream_new(h1c, conn_ctx, h1c->conn->owner))
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001004 goto fail;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001005
1006 /* Attach the CS but Not ready yet */
1007 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
1008 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
1009 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
1010 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001011
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001012 if (t) {
1013 h1_set_idle_expiration(h1c);
1014 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001015 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001016 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001017
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001018 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +01001019 if (b_data(&h1c->ibuf))
1020 tasklet_wakeup(h1c->wait_event.tasklet);
1021 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +02001022 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001023
Christopher Faulet60fa0512021-11-26 18:10:39 +01001024 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
Christopher Faulet3bca28c2021-11-26 18:12:04 +01001025 HA_ATOMIC_INC(&h1c->px_counters->total_conns);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001026
Christopher Faulet51dbc942018-09-13 09:05:15 +02001027 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001028 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001029 return 0;
1030
1031 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001032 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001033 if (h1c->wait_event.tasklet)
1034 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001035 pool_free(pool_head_h1c, h1c);
1036 fail_h1c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001037 if (!conn_is_back(conn))
1038 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001039 conn->ctx = conn_ctx; // restore saved context
1040 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001041 return -1;
1042}
1043
Christopher Faulet73c12072019-04-08 11:23:22 +02001044/* release function. This one should be called to free all resources allocated
1045 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +02001046 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001047static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001048{
Christopher Faulet61840e72019-04-15 09:33:32 +02001049 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001050
Christopher Faulet6b81df72019-10-01 22:08:43 +02001051 TRACE_POINT(H1_EV_H1C_END);
1052
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001053 /* The connection must be aattached to this mux to be released */
1054 if (h1c->conn && h1c->conn->ctx == h1c)
1055 conn = h1c->conn;
Christopher Faulet61840e72019-04-15 09:33:32 +02001056
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001057 if (conn && h1c->flags & H1C_F_UPG_H2C) {
1058 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
1059 /* Make sure we're no longer subscribed to anything */
1060 if (h1c->wait_event.events)
1061 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
1062 h1c->wait_event.events, &h1c->wait_event);
1063 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
1064 /* connection successfully upgraded to H2, this
1065 * mux was already released */
1066 return;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001067 }
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001068 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
1069 sess_log(conn->owner); /* Log if the upgrade failed */
1070 }
Olivier Houchard45c44372019-06-11 14:06:23 +02001071
Christopher Faulet51dbc942018-09-13 09:05:15 +02001072
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001073 if (LIST_INLIST(&h1c->buf_wait.list))
1074 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001075
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001076 h1_release_buf(h1c, &h1c->ibuf);
1077 h1_release_buf(h1c, &h1c->obuf);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001078
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001079 if (h1c->task) {
1080 h1c->task->context = NULL;
1081 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
1082 h1c->task = NULL;
1083 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001084
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001085 if (h1c->wait_event.tasklet)
1086 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001087
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001088 h1s_destroy(h1c->h1s);
1089 if (conn) {
1090 if (h1c->wait_event.events != 0)
1091 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1092 &h1c->wait_event);
1093 h1_shutw_conn(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001094 }
1095
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001096 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
1097 pool_free(pool_head_h1c, h1c);
1098
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001099 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001100 if (!conn_is_back(conn))
1101 LIST_DEL_INIT(&conn->stopping_list);
1102
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001103 conn->mux = NULL;
1104 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001105 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001106
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001107 conn_stop_tracking(conn);
1108 conn_full_close(conn);
1109 if (conn->destroy_cb)
1110 conn->destroy_cb(conn);
1111 conn_free(conn);
1112 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001113}
1114
1115/******************************************************/
1116/* functions below are for the H1 protocol processing */
1117/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001118/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1119 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001120 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001121static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001122{
Christopher Faulet570d1612018-11-26 11:13:57 +01001123 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001124
Christopher Faulet570d1612018-11-26 11:13:57 +01001125 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001126 (*(p + 5) > '1' ||
1127 (*(p + 5) == '1' && *(p + 7) >= '1')))
1128 h1m->flags |= H1_MF_VER_11;
1129}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001130
Christopher Faulet9768c262018-10-22 09:34:31 +02001131/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1132 * greater or equal to 1.1
1133 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001134static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001135{
Christopher Faulet570d1612018-11-26 11:13:57 +01001136 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001137
Christopher Faulet570d1612018-11-26 11:13:57 +01001138 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001139 (*(p + 5) > '1' ||
1140 (*(p + 5) == '1' && *(p + 7) >= '1')))
1141 h1m->flags |= H1_MF_VER_11;
1142}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001143
Christopher Fauletf2824e62018-10-01 12:12:37 +02001144/* Deduce the connection mode of the client connection, depending on the
1145 * configuration and the H1 message flags. This function is called twice, the
1146 * first time when the request is parsed and the second time when the response
1147 * is parsed.
1148 */
1149static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1150{
1151 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001152
1153 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001154 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001155 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001156 h1s->status == 101) {
1157 /* Either we've established an explicit tunnel, or we're
1158 * switching the protocol. In both cases, we're very unlikely to
1159 * understand the next protocols. We have to switch to tunnel
1160 * mode, so that we transfer the request and responses then let
1161 * this protocol pass unmodified. When we later implement
1162 * specific parsers for such protocols, we'll want to check the
1163 * Upgrade header which contains information about that protocol
1164 * for responses with status 101 (eg: see RFC2817 about TLS).
1165 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001166 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001167 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 +01001168 }
1169 else if (h1s->flags & H1S_F_WANT_KAL) {
1170 /* By default the client is in KAL mode. CLOSE mode mean
1171 * it is imposed by the client itself. So only change
1172 * KAL mode here. */
1173 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1174 /* no length known or explicit close => close */
1175 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001176 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 +01001177 }
1178 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1179 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001180 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001181 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001182 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 +01001183 }
1184 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001185 }
1186 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001187 /* Input direction: first pass */
1188 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1189 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001190 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001191 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 +01001192 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001193 }
1194
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001195 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02001196 * unless a 'close-spread-time' option is set (either to define a
1197 * soft-close window or to disable active closing (close-spread-time
1198 * option set to 0).
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001199 */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001200 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001201 int want_clo = 1;
1202 /* If a close-spread-time option is set, we want to avoid
1203 * closing all the active HTTP connections at once so we add a
1204 * random factor that will spread the closing.
1205 */
1206 if (tick_isset(global.close_spread_end)) {
1207 int remaining_window = tick_remain(now_ms, global.close_spread_end);
1208 if (remaining_window) {
1209 /* This should increase the closing rate the further along
1210 * the window we are.
1211 */
1212 want_clo = (remaining_window <= statistical_prng_range(global.close_spread_time));
1213 }
1214 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02001215 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
1216 want_clo = 0;
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001217
1218 if (want_clo) {
1219 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
1220 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);
1221 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001222 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001223}
1224
1225/* Deduce the connection mode of the client connection, depending on the
1226 * configuration and the H1 message flags. This function is called twice, the
1227 * first time when the request is parsed and the second time when the response
1228 * is parsed.
1229 */
1230static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1231{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001232 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001233 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001234 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001235
Christopher Fauletf2824e62018-10-01 12:12:37 +02001236 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001237 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001238 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001239 h1s->status == 101) {
1240 /* Either we've established an explicit tunnel, or we're
1241 * switching the protocol. In both cases, we're very unlikely to
1242 * understand the next protocols. We have to switch to tunnel
1243 * mode, so that we transfer the request and responses then let
1244 * this protocol pass unmodified. When we later implement
1245 * specific parsers for such protocols, we'll want to check the
1246 * Upgrade header which contains information about that protocol
1247 * for responses with status 101 (eg: see RFC2817 about TLS).
1248 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001249 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001250 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 +01001251 }
1252 else if (h1s->flags & H1S_F_WANT_KAL) {
1253 /* By default the server is in KAL mode. CLOSE mode mean
1254 * it is imposed by haproxy itself. So only change KAL
1255 * mode here. */
1256 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1257 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1258 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1259 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001260 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 +01001261 }
1262 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001263 }
Christopher Faulet70033782018-12-05 13:50:11 +01001264 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001265 /* Output direction: first pass */
1266 if (h1m->flags & H1_MF_CONN_CLO) {
1267 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001268 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001269 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 +01001270 }
1271 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1272 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1273 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1274 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1275 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1276 /* no explicit keep-alive option httpclose/server-close => close */
1277 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001278 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 +01001279 }
Christopher Faulet70033782018-12-05 13:50:11 +01001280 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001281
1282 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001283 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001284 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001285 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);
1286 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001287}
1288
Christopher Fauletb992af02019-03-28 15:42:24 +01001289static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001290{
1291 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001292
1293 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1294 * token is found
1295 */
1296 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001297 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001298
1299 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001300 if (!(h1m->flags & H1_MF_VER_11)) {
1301 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 +01001302 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001303 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001304 }
1305 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001306 if (h1m->flags & H1_MF_VER_11) {
1307 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001308 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001309 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001310 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001311}
1312
Christopher Fauletb992af02019-03-28 15:42:24 +01001313static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001314{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001315 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1316 * token is found
1317 */
1318 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001319 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001320
1321 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001322 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001323 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1324 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 +01001325 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001326 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001327 }
1328 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001329 if (h1m->flags & H1_MF_VER_11) {
1330 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001331 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001332 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001333 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001334}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001335
Christopher Fauletb992af02019-03-28 15:42:24 +01001336static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001337{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001338 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001339 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001340 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001341 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001342}
1343
Christopher Fauletb992af02019-03-28 15:42:24 +01001344static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1345{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001346 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001347 h1_set_cli_conn_mode(h1s, h1m);
1348 else
1349 h1_set_srv_conn_mode(h1s, h1m);
1350
1351 if (!(h1m->flags & H1_MF_RESP))
1352 h1_update_req_conn_value(h1s, h1m, conn_val);
1353 else
1354 h1_update_res_conn_value(h1s, h1m, conn_val);
1355}
Christopher Faulete44769b2018-11-29 23:01:45 +01001356
Christopher Faulet98fbe952019-07-22 16:18:24 +02001357/* Try to adjust the case of the message header name using the global map
1358 * <hdrs_map>.
1359 */
1360static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1361{
1362 struct ebpt_node *node;
1363 struct h1_hdr_entry *entry;
1364
1365 /* No entry in the map, do nothing */
1366 if (eb_is_empty(&hdrs_map.map))
1367 return;
1368
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001369 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001370 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1371 return;
1372
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001373 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001374 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1375 return;
1376
1377 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1378 if (!node)
1379 return;
1380 entry = container_of(node, struct h1_hdr_entry, node);
1381 name->ptr = entry->name.ptr;
1382 name->len = entry->name.len;
1383}
1384
Christopher Faulete44769b2018-11-29 23:01:45 +01001385/* Append the description of what is present in error snapshot <es> into <out>.
1386 * The description must be small enough to always fit in a buffer. The output
1387 * buffer may be the trash so the trash must not be used inside this function.
1388 */
1389static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1390{
1391 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001392 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1393 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1394 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1395 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1396 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1397 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001398}
1399/*
1400 * Capture a bad request or response and archive it in the proxy's structure.
1401 * By default it tries to report the error position as h1m->err_pos. However if
1402 * this one is not set, it will then report h1m->next, which is the last known
1403 * parsing point. The function is able to deal with wrapping buffers. It always
1404 * displays buffers as a contiguous area starting at buf->p. The direction is
1405 * determined thanks to the h1m's flags.
1406 */
1407static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1408 struct h1m *h1m, struct buffer *buf)
1409{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001410 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001411 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001412 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001413 union error_snapshot_ctx ctx;
1414
Willy Tarreau56d5a812022-05-10 10:25:41 +02001415 if ((h1c->flags & H1C_F_ST_ATTACHED) && cs_strm(h1s->endp->cs)) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001416 if (sess == NULL)
Willy Tarreau56d5a812022-05-10 10:25:41 +02001417 sess = __cs_strm(h1s->endp->cs)->sess;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001418 if (!(h1m->flags & H1_MF_RESP))
Willy Tarreau56d5a812022-05-10 10:25:41 +02001419 other_end = __cs_strm(h1s->endp->cs)->be;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001420 else
1421 other_end = sess->fe;
1422 } else
1423 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001424
1425 /* http-specific part now */
1426 ctx.h1.state = h1m->state;
1427 ctx.h1.c_flags = h1c->flags;
1428 ctx.h1.s_flags = h1s->flags;
1429 ctx.h1.m_flags = h1m->flags;
1430 ctx.h1.m_clen = h1m->curr_len;
1431 ctx.h1.m_blen = h1m->body_len;
1432
1433 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1434 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001435 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1436 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001437}
1438
Christopher Fauletadb22202018-12-12 10:32:09 +01001439/* Emit the chunksize followed by a CRLF in front of data of the buffer
1440 * <buf>. It goes backwards and starts with the byte before the buffer's
1441 * head. The caller is responsible for ensuring there is enough room left before
1442 * the buffer's head for the string.
1443 */
1444static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1445{
1446 char *beg, *end;
1447
1448 beg = end = b_head(buf);
1449 *--beg = '\n';
1450 *--beg = '\r';
1451 do {
1452 *--beg = hextab[chksz & 0xF];
1453 } while (chksz >>= 4);
1454 buf->head -= (end - beg);
1455 b_add(buf, end - beg);
1456}
1457
1458/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1459 * ensuring there is enough room left in the buffer for the string. */
1460static void h1_emit_chunk_crlf(struct buffer *buf)
1461{
1462 *(b_peek(buf, b_data(buf))) = '\r';
1463 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1464 b_add(buf, 2);
1465}
1466
Christopher Faulet129817b2018-09-20 16:14:40 +02001467/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001468 * Switch the stream to tunnel mode. This function must only be called on 2xx
1469 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001470 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001471static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001472{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001473 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001474
Christopher Faulet5be651d2021-01-22 15:28:03 +01001475 h1s->req.state = H1_MSG_TUNNEL;
1476 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001477
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001478 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001479 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001480
Christopher Faulet5be651d2021-01-22 15:28:03 +01001481 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 +01001482
Christopher Faulet10a86702021-04-07 14:18:11 +02001483 if (h1s->flags & H1S_F_RX_BLK) {
1484 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001485 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001486 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 +02001487 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001488 if (h1s->flags & H1S_F_TX_BLK) {
1489 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001490 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001491 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 +01001492 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001493}
1494
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001495/* Search for a websocket key header. The message should have been identified
1496 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001497 *
1498 * On the request side, if found the key is stored in the session. It might be
1499 * needed to calculate response key if the server side is using http/2.
1500 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001501 * On the response side, the key might be verified if haproxy has been
1502 * responsible for the generation of a key. This happens when a h2 client is
1503 * interfaced with a h1 server.
1504 *
1505 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001506 */
1507static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1508{
1509 struct htx_blk *blk;
1510 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001511 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001512 int ws_key_found = 0, idx;
1513
1514 idx = htx_get_head(htx); // returns the SL that we skip
1515 while ((idx = htx_get_next(htx, idx)) != -1) {
1516 blk = htx_get_blk(htx, idx);
1517 type = htx_get_blk_type(blk);
1518
1519 if (type == HTX_BLK_UNUSED)
1520 continue;
1521
1522 if (type != HTX_BLK_HDR)
1523 break;
1524
1525 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001526 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001527
Amaury Denoyellec1938232020-12-11 17:53:03 +01001528 /* Websocket key is base64 encoded of 16 bytes */
1529 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001530 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001531 /* Copy the key on request side
1532 * we might need it if the server is using h2 and does
1533 * not provide the response
1534 */
1535 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001536 ws_key_found = 1;
1537 break;
1538 }
1539 else if (isteqi(n, ist("sec-websocket-accept")) &&
1540 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001541 /* Need to verify the response key if the input was
1542 * generated by haproxy
1543 */
1544 if (h1s->ws_key[0]) {
1545 char key[29];
1546 h1_calculate_ws_output_key(h1s->ws_key, key);
1547 if (!isteqi(ist(key), v))
1548 break;
1549 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001550 ws_key_found = 1;
1551 break;
1552 }
1553 }
1554
1555 /* missing websocket key, reject the message */
1556 if (!ws_key_found) {
1557 htx->flags |= HTX_FL_PARSING_ERROR;
1558 return 0;
1559 }
1560
1561 return 1;
1562}
1563
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001564/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001565 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001566 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001567 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1568 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001569 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001570static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1571 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001572{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001573 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001574 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001575
Willy Tarreau022e5e52020-09-10 09:33:15 +02001576 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 +02001577
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001578 if (h1s->meth == HTTP_METH_CONNECT)
1579 h1m->flags |= H1_MF_METH_CONNECT;
1580 if (h1s->meth == HTTP_METH_HEAD)
1581 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001582
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001583 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001584 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001585 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 +02001586 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001587 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001588 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 +02001589 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1590 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001591 else if (ret == -2) {
1592 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);
1593 h1s->flags |= H1S_F_RX_CONGESTED;
1594 }
1595 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001596 goto end;
1597 }
1598
Christopher Faulete136bd12021-09-21 18:44:55 +02001599
Christopher Faulet0f9c0f52022-05-13 09:20:13 +02001600 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload except if
1601 * accept_payload_with_any_method global option is set.
1602 *There is a payload if the c-l is not null or the the payload is
1603 * chunk-encoded. A parsing error is reported but a A
1604 * 413-Payload-Too-Large is returned instead of a 400-Bad-Request.
Christopher Faulete136bd12021-09-21 18:44:55 +02001605 */
Christopher Faulet0f9c0f52022-05-13 09:20:13 +02001606 if (!accept_payload_with_any_method &&
1607 !(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
Christopher Faulete136bd12021-09-21 18:44:55 +02001608 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1609 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1610 h1s->flags |= H1S_F_PARSING_ERROR;
1611 htx->flags |= HTX_FL_PARSING_ERROR;
1612 h1s->h1c->errcode = 413;
1613 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);
1614 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1615 ret = 0;
1616 goto end;
1617 }
1618
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001619 /* Reject any message with an unknown transfer-encoding. In fact if any
1620 * encoding other than "chunked". A 422-Unprocessable-Content is
1621 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1622 * response.
1623 */
1624 if (h1m->flags & H1_MF_TE_OTHER) {
1625 h1s->flags |= H1S_F_PARSING_ERROR;
1626 htx->flags |= HTX_FL_PARSING_ERROR;
1627 if (!(h1m->flags & H1_MF_RESP))
1628 h1s->h1c->errcode = 422;
1629 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1630 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1631 ret = 0;
1632 goto end;
1633 }
1634
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001635 /* If websocket handshake, search for the websocket key */
1636 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1637 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1638 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1639 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001640 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001641 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 +01001642 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1643
1644 ret = 0;
1645 goto end;
1646 }
1647 }
1648
Christopher Faulet486498c2019-10-11 14:22:00 +02001649 if (h1m->err_pos >= 0) {
1650 /* Maybe we found an error during the parsing while we were
1651 * configured not to block on that, so we have to capture it
1652 * now.
1653 */
1654 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1655 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1656 }
1657
Christopher Faulet5696f542020-12-02 16:08:38 +01001658 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001659 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001660 if (h1s->meth == HTTP_METH_HEAD)
1661 h1s->flags |= H1S_F_BODYLESS_RESP;
1662 }
1663 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001664 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001665 if (h1s->status == 204 || h1s->status == 304)
1666 h1s->flags |= H1S_F_BODYLESS_RESP;
1667 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001668 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001669 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001670
Christopher Faulet129817b2018-09-20 16:14:40 +02001671 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001672 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 +02001673 return ret;
1674}
1675
1676/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001677 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001678 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1679 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001680 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001681static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1682 struct buffer *buf, size_t *ofs, size_t max,
1683 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001684{
Christopher Fauletde471a42021-02-01 16:37:28 +01001685 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001686
Willy Tarreau022e5e52020-09-10 09:33:15 +02001687 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 +02001688 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001689 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001690 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 +01001691 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001692 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001693 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 +02001694 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001695 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001696 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001697 }
1698
Christopher Faulet02a02532019-11-15 09:36:28 +01001699 *ofs += ret;
1700
1701 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001702 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1703 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);
1704 h1s->flags |= H1S_F_RX_CONGESTED;
1705 }
1706
Willy Tarreau022e5e52020-09-10 09:33:15 +02001707 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 +02001708 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001709}
1710
1711/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001712 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1713 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1714 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001715 * responsible to update the parser state <h1m>. If more room is requested,
1716 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001717 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001718static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1719 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001720{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001721 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001722
Willy Tarreau022e5e52020-09-10 09:33:15 +02001723 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 +02001724 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001725 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001726 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 +02001727 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001728 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001729 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 +02001730 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1731 }
Christopher Fauletae660be2022-04-13 17:48:54 +02001732 else if (ret == -2) {
Christopher Faulet46e058d2021-09-20 07:47:27 +02001733 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);
1734 h1s->flags |= H1S_F_RX_CONGESTED;
1735 }
1736 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001737 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001738 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001739
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001740 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001741
1742 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001743 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 +02001744 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001745}
1746
1747/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001748 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001749 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1750 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001751 *
1752 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001753 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001754static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001755{
Christopher Faulet539e0292018-11-19 10:40:09 +01001756 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001757 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001758 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001759 size_t data;
1760 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001761 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001762
Christopher Faulet539e0292018-11-19 10:40:09 +01001763 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001764 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001765
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001766 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001767 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001768
Christopher Faulet2eed8002020-12-07 11:26:13 +01001769 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001770 goto end;
1771
Christopher Faulet10a86702021-04-07 14:18:11 +02001772 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001773 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001774
Christopher Faulet46e058d2021-09-20 07:47:27 +02001775 /* Always remove congestion flags and try to process more input data */
1776 h1s->flags &= ~H1S_F_RX_CONGESTED;
1777
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001778 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001779 size_t used = htx_used_space(htx);
1780
Christopher Faulet129817b2018-09-20 16:14:40 +02001781 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001782 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001783 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001784 if (!ret)
1785 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001786
1787 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1788 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1789
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001790 if ((h1m->flags & H1_MF_RESP) &&
1791 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1792 h1m_init_res(&h1s->res);
1793 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001794 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001795 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001796 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001797 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001798 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001799 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001800 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001801 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001802
1803 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1804 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001805 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001806 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001807 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001808 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001809 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001810 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001811
Christopher Faulet76014fd2019-12-10 11:47:22 +01001812 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1813 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001814 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001815 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001816 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1817 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001818
Christopher Faulet5be651d2021-01-22 15:28:03 +01001819 if ((h1m->flags & H1_MF_RESP) &&
1820 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1821 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001822 else {
1823 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1824 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001825 h1s->flags |= H1S_F_RX_BLK;
1826 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001827 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001828 if (h1s->flags & H1S_F_TX_BLK) {
1829 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001830 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001831 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 +01001832 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001833 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001834 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001835 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001836 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001837 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001838 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001839 if (!ret)
1840 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001841
1842 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1843 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001844 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001845 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001846 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001847 break;
1848 }
1849
Christopher Faulet30db3d72019-05-17 15:35:33 +02001850 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001851 } 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 +01001852
Christopher Faulet129817b2018-09-20 16:14:40 +02001853
Christopher Faulet2eed8002020-12-07 11:26:13 +01001854 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001855 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 +02001856 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001857 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001858
Christopher Faulet539e0292018-11-19 10:40:09 +01001859 b_del(&h1c->ibuf, total);
1860
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001861 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001862 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1863
Christopher Faulet30db3d72019-05-17 15:35:33 +02001864 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001865 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001866 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001867 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 +01001868 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001869 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001870
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001871 if (!b_data(&h1c->ibuf))
1872 h1_release_buf(h1c, &h1c->ibuf);
1873
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001874 if (!(h1c->flags & H1C_F_ST_READY)) {
1875 /* The H1 connection is not ready. Most of time, there is no CS
1876 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1877 * cases, it is only possible on the client side.
1878 */
1879 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1880
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001881 if (h1m->state <= H1_MSG_LAST_LF) {
1882 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1883 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1884 goto end;
1885 }
1886
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001887 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1888 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
Willy Tarreau56d5a812022-05-10 10:25:41 +02001889 BUG_ON(h1s->endp->cs);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001890 if (!h1s_new_cs(h1s, buf)) {
1891 h1c->flags |= H1C_F_ST_ERROR;
1892 goto err;
1893 }
1894 }
1895 else {
1896 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
Willy Tarreau56d5a812022-05-10 10:25:41 +02001897 BUG_ON(h1s->endp->cs == NULL);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001898 if (!h1s_upgrade_cs(h1s, buf)) {
1899 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001900 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001901 goto err;
1902 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001903 }
1904 }
1905
Willy Tarreau56d5a812022-05-10 10:25:41 +02001906 /* Here h1s->endp->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001907 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001908 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001909 h1s->endp->flags |= CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001910 }
1911 else {
1912 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001913 h1s->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001914 }
1915
Christopher Fauleta22782b2021-02-08 17:18:01 +01001916 /* Set EOI on conn-stream in DONE state iff:
1917 * - it is a response
1918 * - it is a request but no a protocol upgrade nor a CONNECT
1919 *
1920 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001921 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001922 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001923 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1924 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauletb041b232022-03-24 10:27:02 +01001925 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauleta583af62020-09-24 15:35:37 +02001926
Christopher Fauletec4207c2021-04-08 18:34:30 +02001927 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001928 /* When Input data are pending for this message, notify upper layer that
1929 * the mux need more space in the HTX buffer to continue if :
1930 *
1931 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1932 * - Headers or trailers are pending to be copied.
1933 */
1934 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001935 h1s->endp->flags |= CS_EP_RCV_MORE | CS_EP_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001936 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1937 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001938 else {
Christopher Fauletb041b232022-03-24 10:27:02 +01001939 h1s->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001940 if (h1s->flags & H1S_F_REOS) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001941 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001942 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1943 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1944 * EOI on the conn-stream */
Christopher Fauletb041b232022-03-24 10:27:02 +01001945 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001946 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001947 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001948 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001949 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1950 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001951
Christopher Faulet10a86702021-04-07 14:18:11 +02001952 if (h1s->flags & H1S_F_TX_BLK) {
1953 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001954 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001955 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 +01001956 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001957 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001958 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001959
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001960 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001961 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001962 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001963
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001964 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001965 htx_to_buf(htx, buf);
Christopher Faulet186354b2022-04-13 12:09:36 +02001966 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001967 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001968 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001969}
1970
Christopher Faulet129817b2018-09-20 16:14:40 +02001971/*
1972 * Process outgoing data. It parses data and transfer them from the channel buffer into
1973 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1974 * 0 if it couldn't proceed.
1975 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001976static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001977{
Christopher Faulet129817b2018-09-20 16:14:40 +02001978 struct h1s *h1s = h1c->h1s;
1979 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001980 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001981 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001982 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001983 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001984 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001985 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001986
Christopher Faulet94b2c762019-05-24 15:28:57 +02001987 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001988 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1989
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001990 if (htx_is_empty(chn_htx))
1991 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001992
Christopher Faulet10a86702021-04-07 14:18:11 +02001993 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001994 goto end;
1995
Christopher Faulet51dbc942018-09-13 09:05:15 +02001996 if (!h1_get_buf(h1c, &h1c->obuf)) {
1997 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001998 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 +02001999 goto end;
2000 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002001
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002002 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02002003
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002004 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01002005 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02002006
Willy Tarreau3815b222018-12-11 19:50:43 +01002007 /* Perform some optimizations to reduce the number of buffer copies.
2008 * First, if the mux's buffer is empty and the htx area contains
2009 * exactly one data block of the same size as the requested count,
2010 * then it's possible to simply swap the caller's buffer with the
2011 * mux's output buffer and adjust offsets and length to match the
2012 * entire DATA HTX block in the middle. In this case we perform a
2013 * true zero-copy operation from end-to-end. This is the situation
2014 * that happens all the time with large files. Second, if this is not
2015 * possible, but the mux's output buffer is empty, we still have an
2016 * opportunity to avoid the copy to the intermediary buffer, by making
2017 * the intermediary buffer's area point to the output buffer's area.
2018 * In this case we want to skip the HTX header to make sure that copies
2019 * remain aligned and that this operation remains possible all the
2020 * time. This goes for headers, data blocks and any data extracted from
2021 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01002022 */
2023 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01002024 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002025 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01002026 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002027 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01002028 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01002029 void *old_area;
2030
Christopher Faulet6b81df72019-10-01 22:08:43 +02002031 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 +01002032 if (h1m->state == H1_MSG_DATA) {
2033 if (h1m->flags & H1_MF_CLEN) {
2034 if (count > h1m->curr_len) {
2035 TRACE_ERROR("too much payload, more than announced",
2036 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2037 goto error;
2038 }
2039 h1m->curr_len -= count;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002040 if (!h1m->curr_len)
2041 last_data = 1;
Christopher Faulet140f1a52021-11-26 16:37:55 +01002042 }
2043 if (chn_htx->flags & HTX_FL_EOM) {
2044 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2045 last_data = 1;
2046 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002047 }
2048
Christopher Faulete5596bf2020-12-02 16:13:22 +01002049 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01002050 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02002051 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01002052 h1c->obuf.data = count;
2053
2054 buf->area = old_area;
2055 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01002056
Christopher Faulet6b81df72019-10-01 22:08:43 +02002057 chn_htx = (struct htx *)buf->area;
2058 htx_reset(chn_htx);
2059
Christopher Fauletadb22202018-12-12 10:32:09 +01002060 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002061 * size and eventually the last chunk. We have at least
2062 * the size of the struct htx to write the chunk
2063 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01002064 */
2065 if (h1m->flags & H1_MF_CHNK) {
2066 h1_emit_chunk_size(&h1c->obuf, count);
2067 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002068 if (last_data) {
2069 /* Emit the last chunk too at the buffer's end */
2070 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
2071 }
Christopher Fauletadb22202018-12-12 10:32:09 +01002072 }
2073
Christopher Faulet6b81df72019-10-01 22:08:43 +02002074 if (h1m->state == H1_MSG_DATA)
2075 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002076 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002077 else
2078 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002079 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002080
Christopher Faulete5596bf2020-12-02 16:13:22 +01002081 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002082 if (last_data) {
2083 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02002084 if (h1s->flags & H1S_F_RX_BLK) {
2085 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002086 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002087 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 +01002088 }
2089
2090 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2091 H1_EV_TX_DATA, h1c->conn, h1s);
2092 }
Willy Tarreau3815b222018-12-11 19:50:43 +01002093 goto out;
2094 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002095 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002096 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002097 else
2098 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02002099
Christopher Fauletc2518a52019-06-25 21:41:02 +02002100 tmp.data = 0;
2101 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02002102 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01002103 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02002104 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01002105 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02002106 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02002107 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02002108
Christopher Fauletb2e84162018-12-06 11:39:49 +01002109 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002110 if (type != HTX_BLK_DATA && vlen > count)
2111 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002112
Christopher Faulet94b2c762019-05-24 15:28:57 +02002113 if (type == HTX_BLK_UNUSED)
2114 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002115
Christopher Faulet94b2c762019-05-24 15:28:57 +02002116 switch (h1m->state) {
2117 case H1_MSG_RQBEFORE:
2118 if (type != HTX_BLK_REQ_SL)
2119 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002120 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 +02002121 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002122 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002123 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002124 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002125 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002126 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002127 if (sl->flags & HTX_SL_F_BODYLESS)
2128 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002129 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002130 if (h1s->meth == HTTP_METH_HEAD)
2131 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002132 if (h1s->flags & H1S_F_RX_BLK) {
2133 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002134 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002135 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 +02002136 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002137 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002138
Christopher Faulet94b2c762019-05-24 15:28:57 +02002139 case H1_MSG_RPBEFORE:
2140 if (type != HTX_BLK_RES_SL)
2141 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002142 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 +02002143 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002144 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002145 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002146 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002147 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002148 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002149 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002150 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002151 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002152 else if (h1s->status == 204 || h1s->status == 304)
2153 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002154 h1m->state = H1_MSG_HDR_FIRST;
2155 break;
2156
Christopher Faulet94b2c762019-05-24 15:28:57 +02002157 case H1_MSG_HDR_FIRST:
2158 case H1_MSG_HDR_NAME:
2159 case H1_MSG_HDR_L2_LWS:
2160 if (type == HTX_BLK_EOH)
2161 goto last_lf;
2162 if (type != HTX_BLK_HDR)
2163 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002164
Christopher Faulet9768c262018-10-22 09:34:31 +02002165 h1m->state = H1_MSG_HDR_NAME;
2166 n = htx_get_blk_name(chn_htx, blk);
2167 v = htx_get_blk_value(chn_htx, blk);
2168
Christopher Faulet86d144c2019-08-14 16:32:25 +02002169 /* Skip all pseudo-headers */
2170 if (*(n.ptr) == ':')
2171 goto skip_hdr;
2172
Christopher Faulet91fcf212020-12-02 16:17:15 +01002173 if (isteq(n, ist("transfer-encoding"))) {
2174 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2175 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002176 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002177 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002178 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002179 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2180 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002181 /* Only skip C-L header with invalid value. */
2182 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002183 goto skip_hdr;
2184 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002185 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002186 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002187 if (!v.len)
2188 goto skip_hdr;
2189 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002190 else if (isteq(n, ist("upgrade"))) {
2191 h1_parse_upgrade_header(h1m, v);
2192 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002193 else if ((isteq(n, ist("sec-websocket-accept")) &&
2194 h1m->flags & H1_MF_RESP) ||
2195 (isteq(n, ist("sec-websocket-key")) &&
2196 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002197 ws_key_found = 1;
2198 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002199 else if (isteq(n, ist("te"))) {
2200 /* "te" may only be sent with "trailers" if this value
2201 * is present, otherwise it must be deleted.
2202 */
2203 v = istist(v, ist("trailers"));
2204 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2205 goto skip_hdr;
2206 v = ist("trailers");
2207 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002208
Christopher Faulet67d58092019-10-02 10:51:38 +02002209 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002210 if (!(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name) &&
2211 isteqi(n, h1c->px->server_id_hdr_name))
Christopher Faulet67d58092019-10-02 10:51:38 +02002212 goto skip_hdr;
2213
Christopher Faulet98fbe952019-07-22 16:18:24 +02002214 /* Try to adjust the case of the header name */
2215 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2216 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002217 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002218 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002219 skip_hdr:
2220 h1m->state = H1_MSG_HDR_L2_LWS;
2221 break;
2222
Christopher Faulet94b2c762019-05-24 15:28:57 +02002223 case H1_MSG_LAST_LF:
2224 if (type != HTX_BLK_EOH)
2225 goto error;
2226 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002227 h1m->state = H1_MSG_LAST_LF;
2228 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002229 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002230 /* If the reply comes from haproxy while the request is
2231 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002232 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2233 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2234 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002235 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2236 /* T-E + C-L: force close */
2237 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2238 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2239 }
2240 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2241 /* T-E + HTTP/1.0: force close */
2242 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2243 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2244 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002245
2246 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002247 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002248 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002249 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002250 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002251 /* Try to adjust the case of the header name */
2252 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2253 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002254 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002255 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002256 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002257 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002258 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002259
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002260 if ((h1s->meth != HTTP_METH_CONNECT &&
2261 (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 +01002262 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002263 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002264 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002265 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2266 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002267 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002268 n = ist("transfer-encoding");
2269 v = ist("chunked");
2270 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2271 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002272 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002273 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002274 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002275 h1m->flags |= H1_MF_CHNK;
2276 }
2277
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002278 /* Now add the server name to a header (if requested) */
2279 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002280 !(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002281 struct server *srv = objt_server(h1c->conn->target);
2282
2283 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002284 n = h1c->px->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002285 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002286
2287 /* Try to adjust the case of the header name */
2288 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2289 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002290 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002291 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002292 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002293 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002294 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2295 }
2296
Amaury Denoyellec1938232020-12-11 17:53:03 +01002297 /* Add websocket handshake key if needed */
2298 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2299 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002300 if (!(h1m->flags & H1_MF_RESP)) {
2301 /* generate a random websocket key
2302 * stored in the session to
2303 * verify it on the response side
2304 */
2305 h1_generate_random_ws_input_key(h1s->ws_key);
2306
2307 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2308 ist(h1s->ws_key),
2309 &tmp)) {
2310 goto full;
2311 }
2312 }
2313 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002314 /* add the response header key */
2315 char key[29];
2316 h1_calculate_ws_output_key(h1s->ws_key, key);
2317 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2318 ist(key),
2319 &tmp)) {
2320 goto full;
2321 }
2322 }
2323 }
2324
Christopher Faulet6b81df72019-10-01 22:08:43 +02002325 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2326 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2327
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002328 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002329 if (!chunk_memcat(&tmp, "\r\n", 2))
2330 goto full;
2331 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002332 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002333 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002334 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002335 if (!chunk_memcat(&tmp, "\r\n", 2))
2336 goto full;
2337 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002338 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002339 else if ((h1m->flags & H1_MF_RESP) &&
2340 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002341 if (!chunk_memcat(&tmp, "\r\n", 2))
2342 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002343 h1m_init_res(&h1s->res);
2344 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002345 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002346 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002347 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002348 else {
Christopher Faulet2eb52432022-04-07 10:29:38 +02002349 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2350 if (htx_is_unique_blk(chn_htx, blk) &&
2351 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002352 if (h1m->flags & H1_MF_CHNK) {
2353 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2354 goto full;
2355 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002356 else if (!chunk_memcat(&tmp, "\r\n", 2))
2357 goto full;
2358 goto done;
2359 }
2360 else if (!chunk_memcat(&tmp, "\r\n", 2))
2361 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002362 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002363 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002364 break;
2365
Christopher Faulet94b2c762019-05-24 15:28:57 +02002366 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002367 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002368 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002369 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2370 goto trailers;
2371
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002372 /* If the message is not chunked, never
2373 * add the last chunk. */
2374 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002375 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002376 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 +02002377 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002378 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002379 else if (type != HTX_BLK_DATA)
2380 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002381
2382 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 +02002383
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002384 /* It is the last block of this message. After this one,
2385 * only tunneled data may be forwarded. */
2386 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2387 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2388 last_data = 1;
2389 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002390
2391 if (vlen > count) {
2392 /* Get the maximum amount of data we can xferred */
2393 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002394 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002395 }
2396
Christopher Faulet140f1a52021-11-26 16:37:55 +01002397 if (h1m->state == H1_MSG_DATA) {
2398 if (h1m->flags & H1_MF_CLEN) {
2399 if (vlen > h1m->curr_len) {
2400 TRACE_ERROR("too much payload, more than announced",
2401 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2402 goto error;
2403 }
Christopher Faulet140f1a52021-11-26 16:37:55 +01002404 }
2405 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2406 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2407 goto skip_data;
2408 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002409 }
2410
Christopher Fauletd9233f02019-10-14 14:01:24 +02002411 chklen = 0;
2412 if (h1m->flags & H1_MF_CHNK) {
2413 chklen = b_room(&tmp);
2414 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2415 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2416 (chklen < 1048576) ? 5 : 8);
2417 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002418
2419 /* If it is the end of the chunked message (without EOT), reserve the
2420 * last chunk size */
2421 if (last_data)
2422 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002423 }
2424
2425 if (vlen + chklen > b_room(&tmp)) {
2426 /* too large for the buffer */
2427 if (chklen >= b_room(&tmp))
2428 goto full;
2429 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002430 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002431 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002432 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002433 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002434 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002435 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002436
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002437 /* Space already reserved, so it must succeed */
2438 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2439 goto error;
2440
Christopher Faulet6b81df72019-10-01 22:08:43 +02002441 if (h1m->state == H1_MSG_DATA)
2442 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002443 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002444 else
2445 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002446 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002447
2448 skip_data:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002449 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Fauletb4eca0e2022-01-10 17:27:51 +01002450 h1m->curr_len -= vlen;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002451 if (!h1m->curr_len)
2452 last_data = 1;
2453 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002454 if (last_data)
2455 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002456 break;
2457
Christopher Faulet94b2c762019-05-24 15:28:57 +02002458 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002459 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002460 goto error;
2461 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002462 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002463
Christopher Fauletd934e8d2022-05-05 09:39:42 +02002464 if (!(h1m->flags & H1_MF_CHNK))
2465 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002466
Christopher Faulete5596bf2020-12-02 16:13:22 +01002467 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2468 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 +01002469 if (type == HTX_BLK_EOT)
2470 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002471 break;
2472 }
2473
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002474 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002475 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002476 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002477 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2478 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002479 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002480 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002481 else { // HTX_BLK_TLR
2482 n = htx_get_blk_name(chn_htx, blk);
2483 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002484
2485 /* Try to adjust the case of the header name */
2486 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2487 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002488 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002489 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002490 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002491 break;
2492
Christopher Faulet94b2c762019-05-24 15:28:57 +02002493 case H1_MSG_DONE:
Christopher Fauletd934e8d2022-05-05 09:39:42 +02002494 /* If the message is not chunked, ignore
2495 * trailers. It may happen with H2 messages. */
2496 if ((type == HTX_BLK_TLR || type == HTX_BLK_EOT) && !(h1m->flags & H1_MF_CHNK))
2497 break;
2498
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002499 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2500 goto error; /* For now return an error */
2501
Christopher Faulet94b2c762019-05-24 15:28:57 +02002502 done:
2503 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002504 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002505 h1s->flags |= H1S_F_TX_BLK;
2506 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002507 }
2508 else if ((h1m->flags & H1_MF_RESP) &&
2509 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2510 /* a successful reply to a CONNECT or a protocol switching is sent
2511 * to the client. Switch the response to tunnel mode.
2512 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002513 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002514 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 +01002515 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002516
Christopher Faulet10a86702021-04-07 14:18:11 +02002517 if (h1s->flags & H1S_F_RX_BLK) {
2518 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002519 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002520 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 +02002521 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002522
2523 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2524 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002525 break;
2526
Christopher Faulet9768c262018-10-22 09:34:31 +02002527 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002528 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002529 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002530 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002531 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002532 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002533 TRACE_ERROR("processing output error, set error on h1c/h1s",
2534 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 +01002535 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002536 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002537
2538 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002539 total += vlen;
2540 count -= vlen;
2541 if (sz == vlen)
2542 blk = htx_remove_blk(chn_htx, blk);
2543 else {
2544 htx_cut_data_blk(chn_htx, blk, vlen);
2545 break;
2546 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002547 }
2548
Christopher Faulet9768c262018-10-22 09:34:31 +02002549 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002550 /* when the output buffer is empty, tmp shares the same area so that we
2551 * only have to update pointers and lengths.
2552 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002553 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2554 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002555 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002556 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002557
Willy Tarreau3815b222018-12-11 19:50:43 +01002558 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002559 out:
2560 if (!buf_room_for_htx_data(&h1c->obuf)) {
2561 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002562 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002563 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002564 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002565 /* Both the request and the response reached the DONE state. So set EOI
2566 * flag on the conn-stream. Most of time, the flag will already be set,
2567 * except for protocol upgrades. Report an error if data remains blocked
2568 * in the output buffer.
2569 */
2570 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2571 if (!htx_is_empty(chn_htx)) {
2572 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002573 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 +01002574 }
Christopher Fauletb041b232022-03-24 10:27:02 +01002575 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauletdea24742021-01-22 15:12:30 +01002576 }
2577
Christopher Faulet6b81df72019-10-01 22:08:43 +02002578 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002579 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002580
2581 full:
2582 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2583 h1c->flags |= H1C_F_OUT_FULL;
2584 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002585}
2586
Christopher Faulet51dbc942018-09-13 09:05:15 +02002587/*********************************************************/
2588/* functions below are I/O callbacks from the connection */
2589/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002590static void h1_wake_stream_for_recv(struct h1s *h1s)
2591{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002592 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002593 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002594 tasklet_wakeup(h1s->subs->tasklet);
2595 h1s->subs->events &= ~SUB_RETRY_RECV;
2596 if (!h1s->subs->events)
2597 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002598 }
2599}
2600static void h1_wake_stream_for_send(struct h1s *h1s)
2601{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002602 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002603 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002604 tasklet_wakeup(h1s->subs->tasklet);
2605 h1s->subs->events &= ~SUB_RETRY_SEND;
2606 if (!h1s->subs->events)
2607 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002608 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002609}
2610
Christopher Fauletad4daf62021-01-21 17:49:01 +01002611/* alerts the data layer following this sequence :
2612 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2613 * - if its subscribed to send, then it's woken up for send
2614 * - if it was subscribed to neither, its ->wake() callback is called
2615 */
2616static void h1_alert(struct h1s *h1s)
2617{
2618 if (h1s->subs) {
2619 h1_wake_stream_for_recv(h1s);
2620 h1_wake_stream_for_send(h1s);
2621 }
Willy Tarreau56d5a812022-05-10 10:25:41 +02002622 else if (h1s->endp->cs && h1s->endp->cs->data_cb->wake != NULL) {
Christopher Fauletad4daf62021-01-21 17:49:01 +01002623 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau56d5a812022-05-10 10:25:41 +02002624 h1s->endp->cs->data_cb->wake(h1s->endp->cs);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002625 }
2626}
2627
Christopher Fauletc18fc232020-10-06 17:41:36 +02002628/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2629 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2630 * retryable errors (allocation error or buffer full). On success, the error is
2631 * copied in the output buffer.
2632*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002633static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002634{
2635 int rc = http_get_status_idx(h1c->errcode);
2636 int ret = 0;
2637
2638 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2639
2640 /* Verify if the error is mapped on /dev/null or any empty file */
2641 /// XXX: do a function !
2642 if (h1c->px->replies[rc] &&
2643 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2644 h1c->px->replies[rc]->body.errmsg &&
2645 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2646 /* Empty error, so claim a success */
2647 ret = 1;
2648 goto out;
2649 }
2650
2651 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2652 h1c->flags |= H1C_F_ERR_PENDING;
2653 goto out;
2654 }
2655
2656 if (!h1_get_buf(h1c, &h1c->obuf)) {
2657 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2658 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2659 goto out;
2660 }
Tim Duesterhus77508502022-03-15 13:11:06 +01002661 ret = b_istput(&h1c->obuf, ist(http_err_msgs[rc]));
Christopher Fauletc18fc232020-10-06 17:41:36 +02002662 if (unlikely(ret <= 0)) {
2663 if (!ret) {
2664 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2665 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2666 goto out;
2667 }
2668 else {
2669 /* we cannot report this error, so claim a success */
2670 ret = 1;
2671 }
2672 }
2673 h1c->flags &= ~H1C_F_ERR_PENDING;
2674 out:
2675 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2676 return ret;
2677}
2678
2679/* Try to send a 500 internal error. It relies on h1_send_error to send the
2680 * error. This function takes care of incrementing stats and tracked counters.
2681 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002682static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002683{
2684 struct session *sess = h1c->conn->owner;
2685 int ret = 1;
2686
2687 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002688 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002689 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2690 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002691 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002692 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002693
2694 h1c->errcode = 500;
2695 ret = h1_send_error(h1c);
2696 sess_log(sess);
2697 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002698}
2699
Christopher Fauletb3230f72021-09-21 18:38:20 +02002700/* Try to send an error because of a parsing error. By default a 400 bad request
2701 * error is returned. But the status code may be specified by setting
2702 * h1c->errcode. It relies on h1_send_error to send the error. This function
2703 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002704 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002705static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002706{
2707 struct session *sess = h1c->conn->owner;
2708 int ret = 1;
2709
2710 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2711 goto end;
2712
2713 session_inc_http_req_ctr(sess);
2714 session_inc_http_err_ctr(sess);
2715 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002716 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2717 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002718 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002719 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002720
Christopher Fauletb3230f72021-09-21 18:38:20 +02002721 if (!h1c->errcode)
2722 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002723 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002724 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2725 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002726
2727 end:
2728 return ret;
2729}
2730
Christopher Faulet2eed8002020-12-07 11:26:13 +01002731/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2732 * the error. This function takes care of incrementing stats and tracked
2733 * counters.
2734 */
2735static int h1_handle_not_impl_err(struct h1c *h1c)
2736{
2737 struct session *sess = h1c->conn->owner;
2738 int ret = 1;
2739
2740 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2741 goto end;
2742
2743 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002744 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002745 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2746 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002747 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002748 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002749
2750 h1c->errcode = 501;
2751 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002752 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2753 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002754
2755 end:
2756 return ret;
2757}
2758
Christopher Fauletc18fc232020-10-06 17:41:36 +02002759/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2760 * error. This function takes care of incrementing stats and tracked counters.
2761 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002762static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002763{
2764 struct session *sess = h1c->conn->owner;
2765 int ret = 1;
2766
2767 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2768 goto end;
2769
2770 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002771 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002772 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2773 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002774 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002775 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002776
2777 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002778 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2779 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002780 sess_log(sess);
2781 end:
2782 return ret;
2783}
2784
2785
Christopher Faulet51dbc942018-09-13 09:05:15 +02002786/*
2787 * Attempt to read data, and subscribe if none available
2788 */
2789static int h1_recv(struct h1c *h1c)
2790{
2791 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002792 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002793 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002794
Christopher Faulet6b81df72019-10-01 22:08:43 +02002795 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2796
2797 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2798 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002799 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002800 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002801
Christopher Fauletae635762020-09-21 11:47:16 +02002802 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2803 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002804 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002805 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002806
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002807 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2808 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002809 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002810 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002811 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002812
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002813 /*
2814 * If we only have a small amount of data, realign it,
2815 * it's probably cheaper than doing 2 recv() calls.
2816 */
2817 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002818 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002819
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002820 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002821 if (!h1c->h1s ||
2822 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2823 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002824 flags |= CO_RFL_READ_ONCE;
2825
Willy Tarreau45f2b892018-12-05 07:59:27 +01002826 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002827 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002828 if (h1c->flags & H1C_F_IN_FULL) {
2829 h1c->flags &= ~H1C_F_IN_FULL;
2830 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2831 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002832
2833 if (!b_data(&h1c->ibuf)) {
2834 /* try to pre-align the buffer like the rxbufs will be
2835 * to optimize memory copies.
2836 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002837 h1c->ibuf.head = sizeof(struct htx);
2838 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002839 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet41951ab2021-11-26 18:12:51 +01002840 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002841 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002842 if (max && !ret && h1_recv_allowed(h1c)) {
2843 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2844 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002845 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002846 else {
2847 h1_wake_stream_for_recv(h1c->h1s);
2848 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002849 }
2850
Christopher Faulet51dbc942018-09-13 09:05:15 +02002851 if (!b_data(&h1c->ibuf))
2852 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002853 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002854 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002855 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2856 }
2857
2858 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002859 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002860}
2861
2862
2863/*
2864 * Try to send data if possible
2865 */
2866static int h1_send(struct h1c *h1c)
2867{
2868 struct connection *conn = h1c->conn;
2869 unsigned int flags = 0;
2870 size_t ret;
2871 int sent = 0;
2872
Christopher Faulet6b81df72019-10-01 22:08:43 +02002873 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2874
2875 if (conn->flags & CO_FL_ERROR) {
2876 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002877 b_reset(&h1c->obuf);
2878 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002879 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002880
2881 if (!b_data(&h1c->obuf))
2882 goto end;
2883
Christopher Faulet46230362019-10-17 16:04:20 +02002884 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002885 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002886 if (h1c->flags & H1C_F_CO_STREAMER)
2887 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002888
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002889 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002890 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002891 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002892 if (h1c->flags & H1C_F_OUT_FULL) {
2893 h1c->flags &= ~H1C_F_OUT_FULL;
2894 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2895 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01002896 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002897 b_del(&h1c->obuf, ret);
2898 sent = 1;
2899 }
2900
Christopher Faulet145aa472018-12-06 10:56:20 +01002901 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002902 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002903 /* error or output closed, nothing to send, clear the buffer to release it */
2904 b_reset(&h1c->obuf);
2905 }
2906
Christopher Faulet51dbc942018-09-13 09:05:15 +02002907 end:
Christopher Fauletc17c31c2022-02-01 18:25:06 +01002908 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002909 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002910
Christopher Faulet51dbc942018-09-13 09:05:15 +02002911 /* We're done, no more to send */
2912 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002913 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002914 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002915 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002916 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002917 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002918 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002919 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002920 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2921 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002922 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002923 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002924
Christopher Faulet6b81df72019-10-01 22:08:43 +02002925 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002926 return sent;
2927}
2928
Christopher Faulet51dbc942018-09-13 09:05:15 +02002929/* callback called on any event by the connection handler.
2930 * It applies changes and returns zero, or < 0 if it wants immediate
2931 * destruction of the connection.
2932 */
2933static int h1_process(struct h1c * h1c)
2934{
2935 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002936 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002937
Christopher Faulet6b81df72019-10-01 22:08:43 +02002938 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2939
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002940 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002941 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002942 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2943 !(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 +02002944 struct buffer *buf;
2945 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002946
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002947 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2948 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002949 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002950
2951 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002952 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002953 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2954 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002955 /* Try to match H2 preface before parsing the request headers. */
2956 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2957 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002958 if (h1c->flags & H1C_F_ST_ATTACHED) {
2959 /* Force the REOS here to be sure to release the CS.
2960 Here ATTACHED implies !READY, and h1s defined
2961 */
2962 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2963 h1s->flags |= H1S_F_REOS;
2964 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002965 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002966 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002967 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002968 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002969
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002970 /* Create the H1 stream if not already there */
2971 if (!h1s) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002972 h1s = h1c_frt_stream_new(h1c, NULL, h1c->conn->owner);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002973 if (!h1s) {
2974 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002975 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002976 goto no_parsing;
2977 }
2978 }
2979
2980 if (h1s->sess->t_idle == -1)
2981 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2982
2983 /* Get the stream rxbuf */
2984 buf = h1_get_buf(h1c, &h1s->rxbuf);
2985 if (!buf) {
2986 h1c->flags |= H1C_F_IN_SALLOC;
2987 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2988 return 0;
2989 }
2990
2991 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002992 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002993 h1_release_buf(h1c, &h1s->rxbuf);
2994 h1_set_idle_expiration(h1c);
2995
2996 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002997 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002998 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002999 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01003000 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003001 }
3002 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003003 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003004 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003005 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003006 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01003007 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
3008 h1_handle_not_impl_err(h1c);
3009 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003010 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01003011 }
Christopher Fauletae635762020-09-21 11:47:16 +02003012 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003013 h1_send(h1c);
3014
Christopher Faulet75308302021-11-15 14:51:37 +01003015 /* H1 connection must be released ASAP if:
3016 * - an error occurred on the connection or the H1C or
3017 * - a read0 was received or
3018 * - a silent shutdown was emitted and all outgoing data sent
3019 */
3020 if ((conn->flags & CO_FL_ERROR) ||
3021 conn_xprt_read0_pending(conn) ||
3022 (h1c->flags & H1C_F_ST_ERROR) ||
3023 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003024 if (!(h1c->flags & H1C_F_ST_READY)) {
3025 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003026 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01003027 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003028 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003029 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003030 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003031 }
3032
3033 /* Handle pending error, if any (only possible on frontend connection) */
3034 if (h1c->flags & H1C_F_ERR_PENDING) {
3035 BUG_ON(h1c->flags & H1C_F_IS_BACK);
3036 if (h1_send_error(h1c))
3037 h1_send(h1c);
3038 }
Christopher Fauletae635762020-09-21 11:47:16 +02003039
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003040 /* If there is some pending outgoing data or error, just wait */
3041 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
3042 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01003043
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003044 /* Otherwise we can release the H1 connection */
3045 goto release;
3046 }
3047 else {
3048 /* Here there is still a H1 stream with a conn-stream.
3049 * Report the connection state at the stream level
3050 */
3051 if (conn_xprt_read0_pending(conn)) {
3052 h1s->flags |= H1S_F_REOS;
3053 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
3054 }
Willy Tarreau99bbdbc2022-03-17 17:10:36 +01003055 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) && !b_data(&h1c->ibuf)))
Christopher Fauletb041b232022-03-24 10:27:02 +01003056 h1s->endp->flags |= CS_EP_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003057 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01003058 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003059 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003060 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003061
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003062 if (!b_data(&h1c->ibuf))
3063 h1_release_buf(h1c, &h1c->ibuf);
3064
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003065 /* Check if a soft-stop is in progress.
3066 * Release idling front connection if this is the case.
3067 */
3068 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003069 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
William Dauchya9dd9012022-01-05 22:53:24 +01003070 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003071 h1c->flags & H1C_F_WAIT_NEXT_REQ) {
3072
3073 int send_close = 1;
3074 /* If a close-spread-time option is set, we want to avoid
3075 * closing all the active HTTP2 connections at once so we add a
3076 * random factor that will spread the closing.
3077 */
3078 if (tick_isset(global.close_spread_end)) {
3079 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3080 if (remaining_window) {
3081 /* This should increase the closing rate the
3082 * further along the window we are.
3083 */
3084 send_close = (remaining_window <= statistical_prng_range(global.close_spread_time));
3085 }
3086 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003087 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3088 send_close = 0; /* let the client close his connection himself */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003089 if (send_close)
3090 goto release;
3091 }
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003092 }
3093 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003094
3095 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
3096 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
3097 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003098 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003099
Christopher Faulet47365272018-10-31 17:40:50 +01003100 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02003101 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003102 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003103 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01003104
3105 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003106 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003107 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003108 * attached CS first. Here, the H1C must not be READY */
3109 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
3110
3111 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
Christopher Fauletb041b232022-03-24 10:27:02 +01003112 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003113 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletb041b232022-03-24 10:27:02 +01003114 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003115 h1_alert(h1s);
3116 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3117 }
3118 else {
3119 h1_release(h1c);
3120 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
3121 }
Christopher Faulet539e0292018-11-19 10:40:09 +01003122 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003123}
3124
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003125struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003126{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003127 struct connection *conn;
3128 struct tasklet *tl = (struct tasklet *)t;
3129 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003130 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003131 int ret = 0;
3132
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003133 if (state & TASK_F_USR1) {
3134 /* the tasklet was idling on an idle connection, it might have
3135 * been stolen, let's be careful!
3136 */
3137 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3138 if (tl->context == NULL) {
3139 /* The connection has been taken over by another thread,
3140 * we're no longer responsible for it, so just free the
3141 * tasklet, and do nothing.
3142 */
3143 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3144 tasklet_free(tl);
3145 return NULL;
3146 }
3147 conn = h1c->conn;
3148 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003149
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003150 /* Remove the connection from the list, to be sure nobody attempts
3151 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003152 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003153 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3154 if (conn_in_list)
3155 conn_delete_from_tree(&conn->hash_node->node);
3156
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003157 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003158 } else {
3159 /* we're certain the connection was not in an idle list */
3160 conn = h1c->conn;
3161 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3162 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003163 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003164
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003165 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003166 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003167 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003168 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003169 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003170 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003171
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003172 /* If we were in an idle list, we want to add it back into it,
3173 * unless h1_process() returned -1, which mean it has destroyed
3174 * the connection (testing !ret is enough, if h1_process() wasn't
3175 * called then ret will be 0 anyway.
3176 */
Willy Tarreau74163142021-03-13 11:30:19 +01003177 if (ret < 0)
3178 t = NULL;
3179
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003180 if (!ret && conn_in_list) {
3181 struct server *srv = objt_server(conn->target);
3182
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003183 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003184 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003185 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003186 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003187 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003188 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003189 }
Willy Tarreau74163142021-03-13 11:30:19 +01003190 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003191}
3192
Christopher Faulet51dbc942018-09-13 09:05:15 +02003193static int h1_wake(struct connection *conn)
3194{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003195 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003196 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003197
Christopher Faulet6b81df72019-10-01 22:08:43 +02003198 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3199
Christopher Faulet539e0292018-11-19 10:40:09 +01003200 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003201 ret = h1_process(h1c);
3202 if (ret == 0) {
3203 struct h1s *h1s = h1c->h1s;
3204
Christopher Fauletad4daf62021-01-21 17:49:01 +01003205 if (h1c->flags & H1C_F_ST_ATTACHED)
3206 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003207 }
3208 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003209}
3210
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003211/* Connection timeout management. The principle is that if there's no receipt
3212 * nor sending for a certain amount of time, the connection is closed.
3213 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003214struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003215{
3216 struct h1c *h1c = context;
3217 int expired = tick_is_expired(t->expire, now_ms);
3218
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003219 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003220
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003221 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003222 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003223 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003224
3225 /* Somebody already stole the connection from us, so we should not
3226 * free it, we just have to free the task.
3227 */
3228 if (!t->context) {
3229 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003230 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003231 goto do_leave;
3232 }
3233
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003234 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003235 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003236 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003237 return t;
3238 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003239
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003240 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003241 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003242 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003243 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003244 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003245 t->expire = TICK_ETERNITY;
3246 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3247 return t;
3248 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003249
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003250 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003251 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3252 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003253 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003254 if (h1_handle_req_tout(h1c))
3255 h1_send(h1c);
3256 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3257 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003258 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003259 return t;
3260 }
3261 }
3262
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003263 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003264 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003265 * attached CS first. Here, the H1C must not be READY */
Christopher Fauletb041b232022-03-24 10:27:02 +01003266 h1c->h1s->endp->flags |= (CS_EP_EOS|CS_EP_ERROR);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003267 h1_alert(h1c->h1s);
3268 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003269 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003270 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3271 return t;
3272 }
3273
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003274 /* We're about to destroy the connection, so make sure nobody attempts
3275 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003276 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003277 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003278 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003279
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003280 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003281 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003282
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003283 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003284 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003285
3286 if (!h1c) {
3287 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003288 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003289 return NULL;
3290 }
3291
3292 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003293 h1_release(h1c);
3294 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003295 return NULL;
3296}
3297
Christopher Faulet51dbc942018-09-13 09:05:15 +02003298/*******************************************/
3299/* functions below are used by the streams */
3300/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003301
Christopher Faulet51dbc942018-09-13 09:05:15 +02003302/*
3303 * Attach a new stream to a connection
3304 * (Used for outgoing connections)
3305 */
Willy Tarreau4201ab72022-05-10 19:18:52 +02003306static int h1_attach(struct connection *conn, struct cs_endpoint *endp, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003307{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003308 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003309 struct h1s *h1s;
3310
Christopher Faulet6b81df72019-10-01 22:08:43 +02003311 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003312 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003313 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3314 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003315 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003316
Willy Tarreau4201ab72022-05-10 19:18:52 +02003317 h1s = h1c_bck_stream_new(h1c, endp->cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003318 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003319 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3320 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003321 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003322
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003323 /* the connection is not idle anymore, let's mark this */
3324 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003325 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003326
Christopher Faulet6b81df72019-10-01 22:08:43 +02003327 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulete00ad352021-12-16 14:44:31 +01003328 return 0;
Christopher Faulet26a26432021-01-27 11:27:50 +01003329 err:
Christopher Faulet26a26432021-01-27 11:27:50 +01003330 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01003331 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003332}
3333
3334/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3335 * this mux, it's easy as we can only store a single conn_stream.
3336 */
Christopher Faulet64b8d332022-04-01 13:21:41 +02003337static struct conn_stream *h1_get_first_cs(const struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003338{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003339 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003340 struct h1s *h1s = h1c->h1s;
3341
3342 if (h1s)
Willy Tarreau56d5a812022-05-10 10:25:41 +02003343 return h1s->endp->cs;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003344
3345 return NULL;
3346}
3347
Christopher Faulet73c12072019-04-08 11:23:22 +02003348static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003349{
Christopher Faulet73c12072019-04-08 11:23:22 +02003350 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003351
Christopher Faulet6b81df72019-10-01 22:08:43 +02003352 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet7c452cc2022-04-14 11:08:26 +02003353 if (!h1c->h1s || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003354 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003355}
3356
3357/*
3358 * Detach the stream from the connection and possibly release the connection.
3359 */
Willy Tarreau4201ab72022-05-10 19:18:52 +02003360static void h1_detach(struct cs_endpoint *endp)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003361{
Willy Tarreau4201ab72022-05-10 19:18:52 +02003362 struct h1s *h1s = endp->target;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003363 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003364 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003365 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003366
Christopher Faulet6b81df72019-10-01 22:08:43 +02003367 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3368
Christopher Faulet6b81df72019-10-01 22:08:43 +02003369 if (!h1s) {
3370 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003371 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003372 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003373
Olivier Houchardf502aca2018-12-14 19:42:40 +01003374 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003375 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003376
Christopher Faulet42849b02020-10-05 11:35:17 +02003377 sess->accept_date = date;
3378 sess->tv_accept = now;
3379 sess->t_handshake = 0;
3380 sess->t_idle = -1;
3381
Olivier Houchard8a786902018-12-15 16:05:40 +01003382 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3383 h1s_destroy(h1s);
3384
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003385 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 +02003386 /* If there are any excess server data in the input buffer,
3387 * release it and close the connection ASAP (some data may
3388 * remain in the output buffer). This happens if a server sends
3389 * invalid responses. So in such case, we don't want to reuse
3390 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003391 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003392 if (b_data(&h1c->ibuf)) {
3393 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003394 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003395 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003396 goto release;
3397 }
Christopher Faulet03627242019-07-19 11:34:08 +02003398
Christopher Faulet08016ab2020-07-01 16:10:06 +02003399 if (h1c->conn->flags & CO_FL_PRIVATE) {
3400 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003401 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3402 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003403 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003404 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003405 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003406 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003407 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003408 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003409 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3410 goto end;
3411 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003412 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003413 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003414 if (h1c->conn->owner == sess)
3415 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003416
3417 /* mark that the tasklet may lose its context to another thread and
3418 * that the handler needs to check it under the idle conns lock.
3419 */
3420 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003421 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003422 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3423
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003424 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003425 /* The server doesn't want it, let's kill the connection right away */
3426 h1c->conn->mux->destroy(h1c);
3427 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3428 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003429 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003430 /* At this point, the connection has been added to the
3431 * server idle list, so another thread may already have
3432 * hijacked it, so we can't do anything with it.
3433 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003434 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003435 }
3436 }
3437
Christopher Fauletf1204b82019-07-19 14:51:06 +02003438 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003439 /* 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 +01003440 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003441 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003442 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003443 !h1c->conn->owner) {
3444 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003445 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003446 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003447 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003448 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003449 /* If we have a new request, process it immediately or
3450 * subscribe for reads waiting for new data
3451 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003452 if (unlikely(b_data(&h1c->ibuf))) {
3453 if (h1_process(h1c) == -1)
3454 goto end;
3455 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003456 else
3457 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3458 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003459 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003460 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003461 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003462 end:
3463 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003464}
3465
3466
Christopher Faulet07976562022-03-31 11:05:05 +02003467static void h1_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003468{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003469 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet7f366362019-04-08 10:51:20 +02003470 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003471
3472 if (!h1s)
3473 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003474 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003475
Christopher Faulet99293b02021-11-10 10:30:15 +01003476 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003477
Willy Tarreau61533d32022-05-10 10:27:08 +02003478 if (h1s->endp->flags & CS_EP_SHR)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003479 goto end;
Willy Tarreau61533d32022-05-10 10:27:08 +02003480 if (h1s->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003481 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3482 goto do_shutr;
3483 }
3484 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3485 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003486 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003487 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003488
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003489 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3490 /* Here attached is implicit because there is CS */
3491 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3492 goto end;
3493 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003494 if (h1s->flags & H1S_F_WANT_KAL) {
3495 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003496 goto end;
3497 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003498
Christopher Faulet7f366362019-04-08 10:51:20 +02003499 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003500 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
Willy Tarreau61533d32022-05-10 10:27:08 +02003501 if (h1s->endp->flags & CS_EP_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003502 goto end;
Christopher Faulet897d6122021-12-17 17:28:35 +01003503
3504 if (conn_xprt_ready(h1c->conn) && h1c->conn->xprt->shutr)
Christopher Faulet07976562022-03-31 11:05:05 +02003505 h1c->conn->xprt->shutr(h1c->conn, h1c->conn->xprt_ctx, (mode == CO_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003506 end:
3507 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003508}
3509
Christopher Faulet07976562022-03-31 11:05:05 +02003510static void h1_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003511{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003512 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003513 struct h1c *h1c;
3514
3515 if (!h1s)
3516 return;
3517 h1c = h1s->h1c;
3518
Christopher Faulet99293b02021-11-10 10:30:15 +01003519 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003520
Willy Tarreau61533d32022-05-10 10:27:08 +02003521 if (h1s->endp->flags & CS_EP_SHW)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003522 goto end;
Willy Tarreau61533d32022-05-10 10:27:08 +02003523 if (h1s->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003524 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003525 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003526 }
3527 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3528 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3529 goto do_shutw;
3530 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003531
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003532 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3533 /* Here attached is implicit because there is CS */
3534 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3535 goto end;
3536 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003537 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3538 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003539 goto end;
3540 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003541
Christopher Faulet7f366362019-04-08 10:51:20 +02003542 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003543 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet07976562022-03-31 11:05:05 +02003544 if (mode != CO_SHW_NORMAL)
Christopher Fauleta85c5222021-10-27 15:36:38 +02003545 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3546
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003547 if (!b_data(&h1c->obuf))
Christopher Faulet897d6122021-12-17 17:28:35 +01003548 h1_shutw_conn(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003549 end:
3550 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003551}
3552
Christopher Fauleta85c5222021-10-27 15:36:38 +02003553static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003554{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003555 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003556
Willy Tarreau62592ad2021-03-26 09:09:42 +01003557 if (conn->flags & CO_FL_SOCK_WR_SH)
3558 return;
3559
Christopher Fauleta85c5222021-10-27 15:36:38 +02003560 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003561 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003562 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3563 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003564}
3565
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003566/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3567 * The <es> pointer is not allowed to differ from the one passed to the
3568 * subscribe() call. It always returns zero.
3569 */
3570static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003571{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003572 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003573
3574 if (!h1s)
3575 return 0;
3576
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003577 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003578 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003579
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003580 es->events &= ~event_type;
3581 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003582 h1s->subs = NULL;
3583
3584 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003585 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003586
3587 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003588 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003589
Christopher Faulet51dbc942018-09-13 09:05:15 +02003590 return 0;
3591}
3592
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003593/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3594 * event subscriber <es> is not allowed to change from a previous call as long
3595 * as at least one event is still subscribed. The <event_type> must only be a
3596 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3597 * the conn_stream <cs> was already detached, in which case it will return -1.
3598 */
3599static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003600{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003601 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51bb1852019-09-04 10:22:34 +02003602 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003603
3604 if (!h1s)
3605 return -1;
3606
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003607 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003608 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003609
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003610 es->events |= event_type;
3611 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003612
3613 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003614 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003615
3616
Christopher Faulet6b81df72019-10-01 22:08:43 +02003617 if (event_type & SUB_RETRY_SEND) {
3618 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003619 /*
3620 * If the conn_stream attempt to subscribe, and the
3621 * mux isn't subscribed to the connection, then it
3622 * probably means the connection wasn't established
3623 * yet, so we have to subscribe.
3624 */
3625 h1c = h1s->h1c;
3626 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3627 h1c->conn->xprt->subscribe(h1c->conn,
3628 h1c->conn->xprt_ctx,
3629 SUB_RETRY_SEND,
3630 &h1c->wait_event);
3631 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003632 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003633}
3634
Christopher Faulet564e39c2021-09-21 15:50:55 +02003635/* Called from the upper layer, to receive data.
3636 *
3637 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3638 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3639 * means the caller wants to flush input data (from the mux buffer and the
3640 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3641 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3642 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3643 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3644 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3645 * copy as much data as possible.
3646 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003647static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3648{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003649 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet539e0292018-11-19 10:40:09 +01003650 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003651 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003652 size_t ret = 0;
3653
Willy Tarreau022e5e52020-09-10 09:33:15 +02003654 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003655
3656 /* Do nothing for now if not READY */
3657 if (!(h1c->flags & H1C_F_ST_READY)) {
3658 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3659 goto end;
3660 }
3661
Christopher Faulet539e0292018-11-19 10:40:09 +01003662 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003663 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003664 else
3665 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003666
Christopher Faulet186354b2022-04-13 12:09:36 +02003667 if ((flags & CO_RFL_BUF_FLUSH) && (h1s->endp->flags & CS_EP_MAY_SPLICE)) {
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003668 h1c->flags |= H1C_F_WANT_SPLICE;
3669 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 +02003670 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003671 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003672 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 +01003673 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003674 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003675
3676 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003677 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003678 return ret;
3679}
3680
3681
3682/* Called from the upper layer, to send data */
3683static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3684{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003685 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003686 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003687 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003688
3689 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003690 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003691 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003692
Willy Tarreau022e5e52020-09-10 09:33:15 +02003693 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003694
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003695 /* If we're not connected yet, or we're waiting for a handshake, stop
3696 * now, as we don't want to remove everything from the channel buffer
3697 * before we're sure we can send it.
3698 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003699 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003700 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003701 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003702 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003703
Christopher Fauletdea24742021-01-22 15:12:30 +01003704 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet186354b2022-04-13 12:09:36 +02003705 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003706 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 +01003707 return 0;
3708 }
3709
Christopher Faulet46230362019-10-17 16:04:20 +02003710 /* Inherit some flags from the upper layer */
3711 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3712 if (flags & CO_SFL_MSG_MORE)
3713 h1c->flags |= H1C_F_CO_MSG_MORE;
3714 if (flags & CO_SFL_STREAMER)
3715 h1c->flags |= H1C_F_CO_STREAMER;
3716
Christopher Fauletc31872f2019-06-04 22:09:36 +02003717 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003718 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003719
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003720 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003721 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003722 else
3723 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003724
3725 if ((count - ret) > 0)
3726 h1c->flags |= H1C_F_CO_MSG_MORE;
3727
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003728 if (!ret)
3729 break;
3730 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003731 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003732 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003733 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003734 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003735
3736 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet186354b2022-04-13 12:09:36 +02003737 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003738 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 +01003739 }
3740
Christopher Faulet7a145d62020-08-05 11:31:16 +02003741 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003742 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003743 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003744}
3745
Willy Tarreaue5733232019-05-22 19:24:06 +02003746#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003747/* Send and get, using splicing */
3748static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3749{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003750 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003751 struct h1c *h1c = h1s->h1c;
3752 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003753 int ret = 0;
3754
Christopher Faulet897d6122021-12-17 17:28:35 +01003755 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003756
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003757 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003758 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003759 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003760 goto end;
3761 }
3762
Christopher Fauletcf307562021-07-26 10:49:39 +02003763 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003764 if (h1s_data_pending(h1s)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003765 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003766 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003767 }
3768
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003769 if (!h1_recv_allowed(h1c)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003770 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet0060be92020-07-03 15:02:25 +02003771 goto end;
3772 }
3773
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003774 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003775 count = h1m->curr_len;
Christopher Faulet897d6122021-12-17 17:28:35 +01003776 ret = h1c->conn->xprt->rcv_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003777 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003778 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003779 if (ret > h1m->curr_len) {
3780 h1s->flags |= H1S_F_PARSING_ERROR;
3781 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet186354b2022-04-13 12:09:36 +02003782 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003783 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003784 H1_EV_RX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003785 goto end;
3786 }
3787 h1m->curr_len -= ret;
3788 if (!h1m->curr_len) {
3789 h1m->state = H1_MSG_DONE;
3790 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003791 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003792 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003793 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003794 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
3795 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_in, ret);
Christopher Faulete18777b2019-04-16 16:46:36 +02003796 }
3797
Christopher Faulet1be55f92018-10-02 15:59:23 +02003798 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003799 if (conn_xprt_read0_pending(h1c->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003800 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003801 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003802 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003803 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003804
Christopher Faulet94d35102021-04-09 11:58:49 +02003805 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003806 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet186354b2022-04-13 12:09:36 +02003807 h1s->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003808 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003809 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, h1c->conn, h1s);
3810 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet94d35102021-04-09 11:58:49 +02003811 }
Christopher Faulet27182292020-07-03 15:08:49 +02003812 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003813
Christopher Faulet897d6122021-12-17 17:28:35 +01003814 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003815 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003816}
3817
3818static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3819{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003820 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003821 struct h1c *h1c = h1s->h1c;
3822 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003823 int ret = 0;
3824
Christopher Faulet897d6122021-12-17 17:28:35 +01003825 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003826
Christopher Faulet140f1a52021-11-26 16:37:55 +01003827 if (b_data(&h1c->obuf)) {
3828 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003829 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, h1c->conn, h1s);
3830 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003831 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003832 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003833 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003834
Christopher Faulet897d6122021-12-17 17:28:35 +01003835 ret = h1c->conn->xprt->snd_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003836 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003837 if (ret > h1m->curr_len) {
3838 h1s->flags |= H1S_F_PROCESSING_ERROR;
3839 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet186354b2022-04-13 12:09:36 +02003840 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003841 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003842 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 +01003843 goto end;
3844 }
3845 h1m->curr_len -= ret;
3846 if (!h1m->curr_len) {
3847 h1m->state = H1_MSG_DONE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003848 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003849 }
3850 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003851 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
3852 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_out, ret);
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003853
3854 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003855 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003856 return ret;
3857}
3858#endif
3859
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003860static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3861{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003862 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003863 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003864
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003865 switch (mux_ctl) {
3866 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003867 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003868 ret |= MUX_STATUS_READY;
3869 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003870 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003871 if (output)
3872 *((int *)output) = h1c->errcode;
3873 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3874 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3875 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3876 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003877 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003878 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003879 default:
3880 return -1;
3881 }
3882}
3883
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003884/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003885static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003886{
3887 struct h1c *h1c = conn->ctx;
3888 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003889 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003890
Christopher Fauletf376a312019-01-04 15:16:06 +01003891 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3892 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003893 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3894 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3895 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3896 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3897
3898 if (h1s) {
3899 char *method;
3900
3901 if (h1s->meth < HTTP_METH_OTHER)
3902 method = http_known_methods[h1s->meth].ptr;
3903 else
3904 method = "UNKNOWN";
Christopher Faulet22050e02022-04-13 12:08:09 +02003905 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .endp.flg=0x%x .req.state=%s .res.state=%s"
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003906 " .meth=%s status=%d",
Christopher Faulet22050e02022-04-13 12:08:09 +02003907 h1s, h1s->flags, h1s->endp->flags,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003908 h1m_state_str(h1s->req.state),
3909 h1m_state_str(h1s->res.state), method, h1s->status);
Christopher Faulet22050e02022-04-13 12:08:09 +02003910 if (h1s->endp) {
3911 chunk_appendf(msg, " .endp.flg=0x%08x", h1s->endp->flags);
3912 if (!(h1s->endp->flags & CS_EP_ORPHAN))
3913 chunk_appendf(msg, " .cs.flg=0x%08x .cs.app=%p",
Willy Tarreau56d5a812022-05-10 10:25:41 +02003914 h1s->endp->cs->flags, h1s->endp->cs->app);
Christopher Faulet22050e02022-04-13 12:08:09 +02003915 }
Willy Tarreau150c4f82021-01-20 17:05:58 +01003916 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3917 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003918 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3919 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3920 h1s->subs->tasklet->calls,
3921 h1s->subs->tasklet->context);
3922 if (h1s->subs->tasklet->calls >= 1000000)
3923 ret = 1;
3924 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3925 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003926 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003927 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003928 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003929}
3930
3931
3932/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3933static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3934{
3935 struct h1_hdr_entry *entry;
3936
3937 /* Be sure there is a non-empty <to> */
3938 if (!strlen(to)) {
3939 memprintf(err, "expect <to>");
3940 return -1;
3941 }
3942
3943 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003944 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003945 memprintf(err, "<from> and <to> must not differ execpt the case");
3946 return -1;
3947 }
3948
3949 /* Be sure <from> does not already existsin the tree */
3950 if (ebis_lookup(&hdrs_map.map, from)) {
3951 memprintf(err, "duplicate entry '%s'", from);
3952 return -1;
3953 }
3954
3955 /* Create the entry and insert it in the tree */
3956 entry = malloc(sizeof(*entry));
3957 if (!entry) {
3958 memprintf(err, "out of memory");
3959 return -1;
3960 }
3961
3962 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003963 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003964 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003965 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003966 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003967 free(entry);
3968 memprintf(err, "out of memory");
3969 return -1;
3970 }
3971 ebis_insert(&hdrs_map.map, &entry->node);
3972 return 0;
3973}
3974
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003975/* Migrate the the connection to the current thread.
3976 * Return 0 if successful, non-zero otherwise.
3977 * Expected to be called with the old thread lock held.
3978 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003979static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003980{
3981 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003982 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003983
3984 if (fd_takeover(conn->handle.fd, conn) != 0)
3985 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003986
3987 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3988 /* We failed to takeover the xprt, even if the connection may
3989 * still be valid, flag it as error'd, as we have already
3990 * taken over the fd, and wake the tasklet, so that it will
3991 * destroy it.
3992 */
3993 conn->flags |= CO_FL_ERROR;
3994 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3995 return -1;
3996 }
3997
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003998 if (h1c->wait_event.events)
3999 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
4000 h1c->wait_event.events, &h1c->wait_event);
4001 /* To let the tasklet know it should free itself, and do nothing else,
4002 * set its context to NULL.
4003 */
4004 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02004005 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02004006
4007 task = h1c->task;
4008 if (task) {
4009 task->context = NULL;
4010 h1c->task = NULL;
4011 __ha_barrier_store();
4012 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004013
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004014 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004015 if (!h1c->task) {
4016 h1_release(h1c);
4017 return -1;
4018 }
4019 h1c->task->process = h1_timeout_task;
4020 h1c->task->context = h1c;
4021 }
4022 h1c->wait_event.tasklet = tasklet_new();
4023 if (!h1c->wait_event.tasklet) {
4024 h1_release(h1c);
4025 return -1;
4026 }
4027 h1c->wait_event.tasklet->process = h1_io_cb;
4028 h1c->wait_event.tasklet->context = h1c;
4029 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
4030 SUB_RETRY_RECV, &h1c->wait_event);
4031
4032 return 0;
4033}
4034
4035
Christopher Faulet98fbe952019-07-22 16:18:24 +02004036static void h1_hdeaders_case_adjust_deinit()
4037{
4038 struct ebpt_node *node, *next;
4039 struct h1_hdr_entry *entry;
4040
4041 node = ebpt_first(&hdrs_map.map);
4042 while (node) {
4043 next = ebpt_next(node);
4044 ebpt_delete(node);
4045 entry = container_of(node, struct h1_hdr_entry, node);
4046 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01004047 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004048 free(entry);
4049 node = next;
4050 }
4051 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004052}
4053
Christopher Faulet98fbe952019-07-22 16:18:24 +02004054static int cfg_h1_headers_case_adjust_postparser()
4055{
4056 FILE *file = NULL;
4057 char *c, *key_beg, *key_end, *value_beg, *value_end;
4058 char *err;
4059 int rc, line = 0, err_code = 0;
4060
4061 if (!hdrs_map.name)
4062 goto end;
4063
4064 file = fopen(hdrs_map.name, "r");
4065 if (!file) {
Christopher Fauletb112b1d2022-05-13 09:27:13 +02004066 ha_alert("h1-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004067 hdrs_map.name);
4068 err_code |= ERR_ALERT | ERR_FATAL;
4069 goto end;
4070 }
4071
4072 /* now parse all lines. The file may contain only two header name per
4073 * line, separated by spaces. All heading and trailing spaces will be
4074 * ignored. Lines starting with a # are ignored.
4075 */
4076 while (fgets(trash.area, trash.size, file) != NULL) {
4077 line++;
4078 c = trash.area;
4079
4080 /* strip leading spaces and tabs */
4081 while (*c == ' ' || *c == '\t')
4082 c++;
4083
4084 /* ignore emptu lines, or lines beginning with a dash */
4085 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
4086 continue;
4087
4088 /* look for the end of the key */
4089 key_beg = c;
4090 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
4091 c++;
4092 key_end = c;
4093
4094 /* strip middle spaces and tabs */
4095 while (*c == ' ' || *c == '\t')
4096 c++;
4097
4098 /* look for the end of the value, it is the end of the line */
4099 value_beg = c;
4100 while (*c && *c != '\n' && *c != '\r')
4101 c++;
4102 value_end = c;
4103
4104 /* trim possibly trailing spaces and tabs */
4105 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
4106 value_end--;
4107
4108 /* set final \0 and check entries */
4109 *key_end = '\0';
4110 *value_end = '\0';
4111
4112 err = NULL;
4113 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
4114 if (rc < 0) {
Christopher Fauletb112b1d2022-05-13 09:27:13 +02004115 ha_alert("h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004116 hdrs_map.name, err, line);
4117 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004118 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004119 goto end;
4120 }
4121 if (rc > 0) {
Christopher Fauletb112b1d2022-05-13 09:27:13 +02004122 ha_warning("h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004123 hdrs_map.name, err, line);
4124 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004125 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004126 }
4127 }
4128
4129 end:
4130 if (file)
4131 fclose(file);
4132 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4133 return err_code;
4134}
4135
Christopher Faulet0f9c0f52022-05-13 09:20:13 +02004136/* config parser for global "h1-accept-payload_=-with-any-method" */
4137static int cfg_parse_h1_accept_payload_with_any_method(char **args, int section_type, struct proxy *curpx,
4138 const struct proxy *defpx, const char *file, int line,
4139 char **err)
4140{
4141 if (too_many_args(0, args, err, NULL))
4142 return -1;
4143 accept_payload_with_any_method = 1;
4144 return 0;
4145}
4146
Christopher Faulet98fbe952019-07-22 16:18:24 +02004147
Christopher Fauletb112b1d2022-05-13 09:27:13 +02004148/* config parser for global "h1-header-case-adjust" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02004149static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004150 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004151 char **err)
4152{
4153 if (too_many_args(2, args, err, NULL))
4154 return -1;
4155 if (!*(args[1]) || !*(args[2])) {
4156 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4157 return -1;
4158 }
4159 return add_hdr_case_adjust(args[1], args[2], err);
4160}
4161
Christopher Fauletb112b1d2022-05-13 09:27:13 +02004162/* config parser for global "h1-headers-case-adjust-file" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02004163static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004164 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004165 char **err)
4166{
4167 if (too_many_args(1, args, err, NULL))
4168 return -1;
4169 if (!*(args[1])) {
4170 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4171 return -1;
4172 }
4173 free(hdrs_map.name);
4174 hdrs_map.name = strdup(args[1]);
4175 return 0;
4176}
4177
Christopher Faulet98fbe952019-07-22 16:18:24 +02004178/* config keyword parsers */
4179static struct cfg_kw_list cfg_kws = {{ }, {
Christopher Faulet0f9c0f52022-05-13 09:20:13 +02004180 { CFG_GLOBAL, "h1-accept-payload-with-any-method", cfg_parse_h1_accept_payload_with_any_method },
Christopher Faulet98fbe952019-07-22 16:18:24 +02004181 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4182 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4183 { 0, NULL, NULL },
4184 }
4185};
4186
4187INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4188REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4189
4190
Christopher Faulet51dbc942018-09-13 09:05:15 +02004191/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004192/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004193/****************************************/
4194
4195/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004196static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004197 .init = h1_init,
4198 .wake = h1_wake,
4199 .attach = h1_attach,
4200 .get_first_cs = h1_get_first_cs,
4201 .detach = h1_detach,
4202 .destroy = h1_destroy,
4203 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004204 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004205 .rcv_buf = h1_rcv_buf,
4206 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004207#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004208 .rcv_pipe = h1_rcv_pipe,
4209 .snd_pipe = h1_snd_pipe,
4210#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004211 .subscribe = h1_subscribe,
4212 .unsubscribe = h1_unsubscribe,
4213 .shutr = h1_shutr,
4214 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004215 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004216 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004217 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004218 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004219 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004220};
4221
Christopher Faulet3f612f72021-02-05 16:44:21 +01004222static const struct mux_ops mux_h1_ops = {
4223 .init = h1_init,
4224 .wake = h1_wake,
4225 .attach = h1_attach,
4226 .get_first_cs = h1_get_first_cs,
4227 .detach = h1_detach,
4228 .destroy = h1_destroy,
4229 .avail_streams = h1_avail_streams,
4230 .used_streams = h1_used_streams,
4231 .rcv_buf = h1_rcv_buf,
4232 .snd_buf = h1_snd_buf,
4233#if defined(USE_LINUX_SPLICE)
4234 .rcv_pipe = h1_rcv_pipe,
4235 .snd_pipe = h1_snd_pipe,
4236#endif
4237 .subscribe = h1_subscribe,
4238 .unsubscribe = h1_unsubscribe,
4239 .shutr = h1_shutr,
4240 .shutw = h1_shutw,
4241 .show_fd = h1_show_fd,
4242 .ctl = h1_ctl,
4243 .takeover = h1_takeover,
4244 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4245 .name = "H1",
4246};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004247
Christopher Faulet3f612f72021-02-05 16:44:21 +01004248/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4249static struct mux_proto_list mux_proto_h1 =
4250 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4251static struct mux_proto_list mux_proto_http =
4252 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004253
Christopher Faulet3f612f72021-02-05 16:44:21 +01004254INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4255INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004256
Christopher Faulet51dbc942018-09-13 09:05:15 +02004257/*
4258 * Local variables:
4259 * c-indent-level: 8
4260 * c-basic-offset: 8
4261 * End:
4262 */