blob: 6e9e50ea2fee2ea985cce21753387b3220d22e0f [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;
121 struct conn_stream *cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100122 struct cs_endpoint *endp;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100123 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200124
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100125 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200126
Olivier Houchardf502aca2018-12-14 19:42:40 +0100127 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200128 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200129 struct h1m req;
130 struct h1m res;
131
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500132 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200133 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100134
135 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200136};
137
Christopher Faulet98fbe952019-07-22 16:18:24 +0200138/* Map of headers used to convert outgoing headers */
139struct h1_hdrs_map {
140 char *name;
141 struct eb_root map;
142};
143
144/* An entry in a headers map */
145struct h1_hdr_entry {
146 struct ist name;
147 struct ebpt_node node;
148};
149
150/* Declare the headers map */
151static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
152
153
Christopher Faulet6b81df72019-10-01 22:08:43 +0200154/* trace source and events */
155static void h1_trace(enum trace_level level, uint64_t mask,
156 const struct trace_source *src,
157 const struct ist where, const struct ist func,
158 const void *a1, const void *a2, const void *a3, const void *a4);
159
160/* The event representation is split like this :
161 * h1c - internal H1 connection
162 * h1s - internal H1 stream
163 * strm - application layer
164 * rx - data receipt
165 * tx - data transmission
166 *
167 */
168static const struct trace_event h1_trace_events[] = {
169#define H1_EV_H1C_NEW (1ULL << 0)
170 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
171#define H1_EV_H1C_RECV (1ULL << 1)
172 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
173#define H1_EV_H1C_SEND (1ULL << 2)
174 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
175#define H1_EV_H1C_BLK (1ULL << 3)
176 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
177#define H1_EV_H1C_WAKE (1ULL << 4)
178 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
179#define H1_EV_H1C_END (1ULL << 5)
180 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
181#define H1_EV_H1C_ERR (1ULL << 6)
182 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
183
184#define H1_EV_RX_DATA (1ULL << 7)
185 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
186#define H1_EV_RX_EOI (1ULL << 8)
187 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
188#define H1_EV_RX_HDRS (1ULL << 9)
189 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
190#define H1_EV_RX_BODY (1ULL << 10)
191 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
192#define H1_EV_RX_TLRS (1ULL << 11)
193 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
194
195#define H1_EV_TX_DATA (1ULL << 12)
196 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
197#define H1_EV_TX_EOI (1ULL << 13)
198 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
199#define H1_EV_TX_HDRS (1ULL << 14)
200 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
201#define H1_EV_TX_BODY (1ULL << 15)
202 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
203#define H1_EV_TX_TLRS (1ULL << 16)
204 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
205
206#define H1_EV_H1S_NEW (1ULL << 17)
207 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
208#define H1_EV_H1S_BLK (1ULL << 18)
209 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
210#define H1_EV_H1S_END (1ULL << 19)
211 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
212#define H1_EV_H1S_ERR (1ULL << 20)
213 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
214
215#define H1_EV_STRM_NEW (1ULL << 21)
216 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
217#define H1_EV_STRM_RECV (1ULL << 22)
218 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
219#define H1_EV_STRM_SEND (1ULL << 23)
220 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
221#define H1_EV_STRM_WAKE (1ULL << 24)
222 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
223#define H1_EV_STRM_SHUT (1ULL << 25)
224 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
225#define H1_EV_STRM_END (1ULL << 26)
226 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
227#define H1_EV_STRM_ERR (1ULL << 27)
228 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
229
230 { }
231};
232
233static const struct name_desc h1_trace_lockon_args[4] = {
234 /* arg1 */ { /* already used by the connection */ },
235 /* arg2 */ { .name="h1s", .desc="H1 stream" },
236 /* arg3 */ { },
237 /* arg4 */ { }
238};
239
240static const struct name_desc h1_trace_decoding[] = {
241#define H1_VERB_CLEAN 1
242 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
243#define H1_VERB_MINIMAL 2
244 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
245#define H1_VERB_SIMPLE 3
246 { .name="simple", .desc="add request/response status line or htx info when available" },
247#define H1_VERB_ADVANCED 4
248 { .name="advanced", .desc="add header fields or frame decoding when available" },
249#define H1_VERB_COMPLETE 5
250 { .name="complete", .desc="add full data dump when available" },
251 { /* end */ }
252};
253
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200254static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200255 .name = IST("h1"),
256 .desc = "HTTP/1 multiplexer",
257 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
258 .default_cb = h1_trace,
259 .known_events = h1_trace_events,
260 .lockon_args = h1_trace_lockon_args,
261 .decoding = h1_trace_decoding,
262 .report_events = ~0, // report everything by default
263};
264
265#define TRACE_SOURCE &trace_h1
266INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
267
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100268
269/* h1 stats module */
270enum {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100271 H1_ST_OPEN_CONN,
272 H1_ST_OPEN_STREAM,
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100273 H1_ST_TOTAL_CONN,
274 H1_ST_TOTAL_STREAM,
275
Christopher Faulet41951ab2021-11-26 18:12:51 +0100276 H1_ST_BYTES_IN,
277 H1_ST_BYTES_OUT,
278#if defined(USE_LINUX_SPLICE)
279 H1_ST_SPLICED_BYTES_IN,
280 H1_ST_SPLICED_BYTES_OUT,
281#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100282 H1_STATS_COUNT /* must be the last member of the enum */
283};
284
285
286static struct name_desc h1_stats[] = {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100287 [H1_ST_OPEN_CONN] = { .name = "h1_open_connections",
288 .desc = "Count of currently open connections" },
289 [H1_ST_OPEN_STREAM] = { .name = "h1_open_streams",
290 .desc = "Count of currently open streams" },
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100291 [H1_ST_TOTAL_CONN] = { .name = "h1_total_connections",
292 .desc = "Total number of connections" },
293 [H1_ST_TOTAL_STREAM] = { .name = "h1_total_streams",
Christopher Faulet41951ab2021-11-26 18:12:51 +0100294 .desc = "Total number of streams" },
295
296 [H1_ST_BYTES_IN] = { .name = "h1_bytes_in",
297 .desc = "Total number of bytes received" },
298 [H1_ST_BYTES_OUT] = { .name = "h1_bytes_out",
299 .desc = "Total number of bytes send" },
300#if defined(USE_LINUX_SPLICE)
301 [H1_ST_SPLICED_BYTES_IN] = { .name = "h1_spliced_bytes_in",
302 .desc = "Total number of bytes received using kernel splicing" },
303 [H1_ST_SPLICED_BYTES_OUT] = { .name = "h1_spliced_bytes_out",
304 .desc = "Total number of bytes sendusing kernel splicing" },
305#endif
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100306
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100307};
308
309static struct h1_counters {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100310 long long open_conns; /* count of currently open connections */
311 long long open_streams; /* count of currently open streams */
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100312 long long total_conns; /* total number of connections */
313 long long total_streams; /* total number of streams */
314
Christopher Faulet41951ab2021-11-26 18:12:51 +0100315 long long bytes_in; /* number of bytes received */
316 long long bytes_out; /* number of bytes sent */
317#if defined(USE_LINUX_SPLICE)
318 long long spliced_bytes_in; /* number of bytes received using kernel splicing */
319 long long spliced_bytes_out; /* number of bytes sent using kernel splicing */
320#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100321} h1_counters;
322
323static void h1_fill_stats(void *data, struct field *stats)
324{
Christopher Faulet60fa0512021-11-26 18:10:39 +0100325 struct h1_counters *counters = data;
326
327 stats[H1_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
328 stats[H1_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100329 stats[H1_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
330 stats[H1_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Christopher Faulet41951ab2021-11-26 18:12:51 +0100331
332 stats[H1_ST_BYTES_IN] = mkf_u64(FN_COUNTER, counters->bytes_in);
333 stats[H1_ST_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->bytes_out);
334#if defined(USE_LINUX_SPLICE)
335 stats[H1_ST_SPLICED_BYTES_IN] = mkf_u64(FN_COUNTER, counters->spliced_bytes_in);
336 stats[H1_ST_SPLICED_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->spliced_bytes_out);
337#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100338}
339
340static struct stats_module h1_stats_module = {
341 .name = "h1",
342 .fill_stats = h1_fill_stats,
343 .stats = h1_stats,
344 .stats_count = H1_STATS_COUNT,
345 .counters = &h1_counters,
346 .counters_size = sizeof(h1_counters),
347 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
348 .clearable = 1,
349};
350
351INITCALL1(STG_REGISTER, stats_register_module, &h1_stats_module);
352
353
Christopher Faulet51dbc942018-09-13 09:05:15 +0200354/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100355DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
356DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200357
Christopher Faulet51dbc942018-09-13 09:05:15 +0200358static int h1_recv(struct h1c *h1c);
359static int h1_send(struct h1c *h1c);
360static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100361/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100362struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
363struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200364static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200365static void h1_wake_stream_for_recv(struct h1s *h1s);
366static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200367
Christopher Faulet6b81df72019-10-01 22:08:43 +0200368/* the H1 traces always expect that arg1, if non-null, is of type connection
369 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
370 * that arg3, if non-null, is a htx for rx/tx headers.
371 */
372static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
373 const struct ist where, const struct ist func,
374 const void *a1, const void *a2, const void *a3, const void *a4)
375{
376 const struct connection *conn = a1;
377 const struct h1c *h1c = conn ? conn->ctx : NULL;
378 const struct h1s *h1s = a2;
379 const struct htx *htx = a3;
380 const size_t *val = a4;
381
382 if (!h1c)
383 h1c = (h1s ? h1s->h1c : NULL);
384
385 if (!h1c || src->verbosity < H1_VERB_CLEAN)
386 return;
387
388 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200389 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200390
391 /* Display request and response states if h1s is defined */
Christopher Faulet6580f282021-11-26 17:31:35 +0100392 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200393 chunk_appendf(&trace_buf, " [%s, %s]",
394 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
395
Christopher Faulet6580f282021-11-26 17:31:35 +0100396 if (src->verbosity > H1_VERB_SIMPLE) {
397 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
398 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
399 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
400 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
401 }
402
403 }
404
Christopher Faulet6b81df72019-10-01 22:08:43 +0200405 if (src->verbosity == H1_VERB_CLEAN)
406 return;
407
408 /* Display the value to the 4th argument (level > STATE) */
409 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100410 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200411
412 /* Display status-line if possible (verbosity > MINIMAL) */
413 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
414 const struct htx_blk *blk = htx_get_head_blk(htx);
415 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
416 enum htx_blk_type type = htx_get_blk_type(blk);
417
418 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
419 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
420 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
421 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
422 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
423 }
424
425 /* Display h1c info and, if defined, h1s info (pointer + flags) */
426 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100427 if (h1c->conn)
428 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
429 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200430 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Faulet186354b2022-04-13 12:09:36 +0200431 if (h1s->endp)
432 chunk_appendf(&trace_buf, " endp=%p(0x%08x)", h1s->endp, h1s->endp->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100433 if (h1s->cs)
434 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
435 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200436
437 if (src->verbosity == H1_VERB_MINIMAL)
438 return;
439
440 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
441 if (src->level > TRACE_LEVEL_USER) {
442 if (src->verbosity == H1_VERB_COMPLETE ||
443 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
444 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
445 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
446 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
447 if (src->verbosity == H1_VERB_COMPLETE ||
448 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
449 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
450 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
451 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
452 }
453
454 /* Display htx info if defined (level > USER) */
455 if (src->level > TRACE_LEVEL_USER && htx) {
456 int full = 0;
457
458 /* Full htx info (level > STATE && verbosity > SIMPLE) */
459 if (src->level > TRACE_LEVEL_STATE) {
460 if (src->verbosity == H1_VERB_COMPLETE)
461 full = 1;
462 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
463 full = 1;
464 }
465
466 chunk_memcat(&trace_buf, "\n\t", 2);
467 htx_dump(&trace_buf, htx, full);
468 }
469}
470
471
Christopher Faulet51dbc942018-09-13 09:05:15 +0200472/*****************************************************/
473/* functions below are for dynamic buffer management */
474/*****************************************************/
475/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100476 * Indicates whether or not we may receive data. The rules are the following :
477 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200478 * must not attempt to receive
479 * - if we are waiting for the connection establishment, we must not attempt
480 * to receive
481 * - if an error was detected on the stream we must not attempt to receive
482 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100483 * - if the input buffer failed to be allocated or is full , we must not try
484 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200485 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200486 * - otherwise must may not attempt to receive
487 */
488static inline int h1_recv_allowed(const struct h1c *h1c)
489{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100490 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100491 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 +0200492 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200493 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200494
Willy Tarreau2febb842020-07-31 09:15:43 +0200495 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
496 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 +0100497 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200498 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100499
Christopher Faulet119ac872020-09-30 17:33:22 +0200500 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
501 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
502 return 0;
503 }
504
Christopher Fauletd17ad822020-09-24 15:14:29 +0200505 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200506 return 1;
507
Christopher Faulet6b81df72019-10-01 22:08:43 +0200508 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 +0200509 return 0;
510}
511
512/*
513 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
514 * flags are used to figure what buffer was requested. It returns 1 if the
515 * allocation succeeds, in which case the connection is woken up, or 0 if it's
516 * impossible to wake up and we prefer to be woken up later.
517 */
518static int h1_buf_available(void *target)
519{
520 struct h1c *h1c = target;
521
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100522 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200523 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 +0200524 h1c->flags &= ~H1C_F_IN_ALLOC;
525 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200526 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200527 return 1;
528 }
529
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100530 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200531 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 +0200532 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200533 if (h1c->h1s)
534 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200535 return 1;
536 }
537
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100538 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200539 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
540 h1c->flags &= ~H1C_F_IN_SALLOC;
541 tasklet_wakeup(h1c->wait_event.tasklet);
542 return 1;
543 }
544
Christopher Faulet51dbc942018-09-13 09:05:15 +0200545 return 0;
546}
547
548/*
549 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
550 */
551static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
552{
553 struct buffer *buf = NULL;
554
Willy Tarreau2b718102021-04-21 07:32:39 +0200555 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100556 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200557 h1c->buf_wait.target = h1c;
558 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200559 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200560 }
561 return buf;
562}
563
564/*
565 * Release a buffer, if any, and try to wake up entities waiting in the buffer
566 * wait queue.
567 */
568static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
569{
570 if (bptr->size) {
571 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100572 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200573 }
574}
575
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100576/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100577 * 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 +0100578 * not. This flag is only set when no H1S is attached and when the previous
579 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100580 */
581static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200582{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100583 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200584
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100585 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200586}
587
Willy Tarreau00f18a32019-01-26 12:19:01 +0100588/* returns the number of streams still available on a connection */
589static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100590{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100591 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100592}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200593
Christopher Faulet7a145d62020-08-05 11:31:16 +0200594/* Refresh the h1c task timeout if necessary */
595static void h1_refresh_timeout(struct h1c *h1c)
596{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200597 int is_idle_conn = 0;
598
Christopher Faulet7a145d62020-08-05 11:31:16 +0200599 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100600 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200601 /* half-closed or dead connections : switch to clientfin/serverfin
602 * timeouts so that we don't hang too long on clients that have
603 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200604 */
605 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200606 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 +0200607 is_idle_conn = 1;
Christopher Fauletadcd7892020-10-05 17:13:05 +0200608 }
609 else if (b_data(&h1c->obuf)) {
610 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200611 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200612 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
613 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100614 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
615 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200616 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100617 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 +0200618 /* A frontend connection not yet ready could be treated the same way as an idle
619 * one in case of soft-close.
620 */
621 is_idle_conn = 1;
Christopher Faulet7a145d62020-08-05 11:31:16 +0200622 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200623 else {
624 /* alive back connections of front connections with a conn-stream attached */
625 h1c->task->expire = TICK_ETERNITY;
626 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
627 }
628
Christopher Fauletdbe57792020-10-05 17:50:58 +0200629 /* Finally set the idle expiration date if shorter */
630 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200631
632 if ((h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
633 is_idle_conn && tick_isset(global.close_spread_end)) {
634 /* If a soft-stop is in progress and a close-spread-time
635 * is set, we want to spread idle connection closing roughly
636 * evenly across the defined window. This should only
637 * act on idle frontend connections.
638 * If the window end is already in the past, we wake the
639 * timeout task up immediately so that it can be closed.
640 */
641 int remaining_window = tick_remain(now_ms, global.close_spread_end);
642 if (remaining_window) {
643 /* We don't need to reset the expire if it would
644 * already happen before the close window end.
645 */
646 if (tick_is_le(global.close_spread_end, h1c->task->expire)) {
647 /* Set an expire value shorter than the current value
648 * because the close spread window end comes earlier.
649 */
650 h1c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
651 TRACE_DEVEL("connection timeout set to value before close-spread window end", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
652 }
653 }
654 else {
655 /* We are past the soft close window end, wake the timeout
656 * task up immediately.
657 */
658 task_wakeup(h1c->task, TASK_WOKEN_TIMER);
659 }
660 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200661 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
662 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200663 }
664}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200665
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200666static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200667{
668 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
669 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
670 h1c->idle_exp = TICK_ETERNITY;
671 return;
672 }
673
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100674 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200675 if (!tick_isset(h1c->idle_exp)) {
676 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
677 !b_data(&h1c->ibuf) && /* No input data */
678 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
679 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
680 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
681 }
682 else {
683 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
684 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
685 }
686 }
687 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100688 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200689 if (!tick_isset(h1c->idle_exp)) {
690 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
691 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
692 }
693 }
694 else { // CS_ATTACHED or SHUTDOWN
695 h1c->idle_exp = TICK_ETERNITY;
696 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
697 }
698}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200699/*****************************************************************/
700/* functions below are dedicated to the mux setup and management */
701/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200702
703/* returns non-zero if there are input data pending for stream h1s. */
704static inline size_t h1s_data_pending(const struct h1s *h1s)
705{
706 const struct h1m *h1m;
707
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200708 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100709 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200710}
711
Christopher Faulet16df1782020-12-04 16:47:41 +0100712/* Creates a new conn-stream and the associate stream. <input> is used as input
713 * buffer for the stream. On success, it is transferred to the stream and the
714 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
715 * mux must still take care of it. However, there is nothing special to do
716 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
717 * b_free() on it is always safe. This function returns the conn-stream on
718 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200719static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100720{
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100721 struct h1c *h1c = h1s->h1c;
Christopher Faulet47365272018-10-31 17:40:50 +0100722
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100723 TRACE_ENTER(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100724
Christopher Fauletb669d682022-03-22 18:37:19 +0100725 if (h1s->flags & H1S_F_NOT_FIRST)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100726 h1s->endp->flags |= CS_EP_NOT_FIRST;
Christopher Fauletb669d682022-03-22 18:37:19 +0100727 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100728 h1s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +0100729
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100730 h1s->cs = cs_new_from_mux(h1s->endp, h1c->conn->owner, input);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100731 if (!h1s->cs) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100732 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 +0100733 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200734 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200735
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100736 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
737 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100738
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100739 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
740 TRACE_LEAVE(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100741 return h1s->cs;
Christopher Faulet47365272018-10-31 17:40:50 +0100742
Christopher Faulet91449b02022-03-22 18:45:55 +0100743 err:
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100744 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100745 return NULL;
746}
747
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100748static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
749{
750 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
751
752 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100753 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 +0100754 goto err;
755 }
756
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100757 h1s->h1c->flags |= H1C_F_ST_READY;
758 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
759 return h1s->cs;
760
761 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100762 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100763 return NULL;
764}
765
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200766static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200767{
768 struct h1s *h1s;
769
Christopher Faulet6b81df72019-10-01 22:08:43 +0200770 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
771
Christopher Faulet51dbc942018-09-13 09:05:15 +0200772 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100773 if (!h1s) {
774 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 +0100775 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100776 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200777 h1s->h1c = h1c;
778 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200779 h1s->sess = NULL;
780 h1s->cs = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100781 h1s->endp = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100782 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100783 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200784 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100785 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200786
787 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100788 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200789
Christopher Faulet129817b2018-09-20 16:14:40 +0200790 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100791 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200792
793 h1s->status = 0;
794 h1s->meth = HTTP_METH_OTHER;
795
Christopher Faulet47365272018-10-31 17:40:50 +0100796 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
797 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100798 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100799
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200800 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
801 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200802
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200803 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100804 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200805 return NULL;
806}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100807
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100808static struct h1s *h1c_frt_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200809{
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200810 struct h1s *h1s;
811
812 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
813
814 h1s = h1s_new(h1c);
815 if (!h1s)
816 goto fail;
817
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100818 if (cs) {
Christopher Faulet070b91b2022-03-31 19:27:18 +0200819 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
820 goto fail;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100821 h1s->cs = cs;
822 h1s->endp = cs->endp;
823 }
824 else {
825 h1s->endp = cs_endpoint_new();
826 if (!h1s->endp)
827 goto fail;
828 h1s->endp->target = h1s;
829 h1s->endp->ctx = h1c->conn;
830 h1s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN);
831 }
832
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200833 h1s->sess = sess;
834
835 if (h1c->px->options2 & PR_O2_REQBUG_OK)
836 h1s->req.err_pos = -1;
837
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200838 h1c->idle_exp = TICK_ETERNITY;
839 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200840 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200841 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100842
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200843 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100844 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100845 pool_free(pool_head_h1s, h1s);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200846 return NULL;
847}
848
849static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
850{
851 struct h1s *h1s;
852
853 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
854
855 h1s = h1s_new(h1c);
856 if (!h1s)
857 goto fail;
858
Christopher Faulet070b91b2022-03-31 19:27:18 +0200859 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
860 goto fail;
861
Christopher Faulet10a86702021-04-07 14:18:11 +0200862 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200863 h1s->cs = cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100864 h1s->endp = cs->endp;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200865 h1s->sess = sess;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200866
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100867 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200868
869 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
870 h1s->res.err_pos = -1;
871
Christopher Faulet60fa0512021-11-26 18:10:39 +0100872 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100873 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100874
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200875 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
876 return h1s;
877
878 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100879 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +0200880 pool_free(pool_head_h1s, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100881 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200882}
883
884static void h1s_destroy(struct h1s *h1s)
885{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200886 if (h1s) {
887 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200888
Christopher Faulet6b81df72019-10-01 22:08:43 +0200889 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200890 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200891
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100892 if (h1s->subs)
893 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200894
Christopher Fauletd17ad822020-09-24 15:14:29 +0200895 h1_release_buf(h1c, &h1s->rxbuf);
896
Christopher Faulet10a86702021-04-07 14:18:11 +0200897 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100898 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200899 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
900 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200901 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100902 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100903 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 +0200904 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100905
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100906 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100907 !(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 +0100908 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100909 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100910 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100911 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
912 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200913 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100914 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100915 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200916 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100917
918 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100919 BUG_ON(h1s->endp && !(h1s->endp->flags & CS_EP_ORPHAN));
920 cs_endpoint_free(h1s->endp);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200921 pool_free(pool_head_h1s, h1s);
922 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200923}
924
925/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200926 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500927 * to the existing conn_stream (for outgoing connections or for incoming ones
928 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200929 * establishment). <input> is always used as Input buffer and may contain
930 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
931 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200932 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200933static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
934 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200935{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200936 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100937 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200938 void *conn_ctx = conn->ctx;
939
940 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200941
942 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100943 if (!h1c) {
944 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200945 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100946 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200947 h1c->conn = conn;
948 h1c->px = proxy;
949
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100950 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200951 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200952 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200953 h1c->obuf = BUF_NULL;
954 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200955 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200956
Willy Tarreau90f366b2021-02-20 11:49:49 +0100957 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200958 h1c->wait_event.tasklet = tasklet_new();
959 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200960 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200961 h1c->wait_event.tasklet->process = h1_io_cb;
962 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100963 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200964 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200965
Christopher Faulete9b70722019-04-08 10:46:02 +0200966 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200967 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100968 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
969 if (tick_isset(proxy->timeout.serverfin))
970 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100971
972 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
973 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100974 } else {
975 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
976 if (tick_isset(proxy->timeout.clientfin))
977 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200978
Christopher Faulet563c3452021-11-26 17:37:51 +0100979 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
980 &h1_stats_module);
981
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200982 LIST_APPEND(&mux_stopping_data[tid].list,
983 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100984 }
985 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200986 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100987 if (!t) {
988 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 +0100989 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100990 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100991
992 h1c->task = t;
993 t->process = h1_timeout_task;
994 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200995
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100996 t->expire = tick_add(now_ms, h1c->timeout);
997 }
998
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100999 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +02001000
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001001 if (h1c->flags & H1C_F_IS_BACK) {
1002 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +02001003 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
1004 goto fail;
1005 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001006 else if (conn_ctx) {
1007 /* Upgraded frontend connection (from TCP) */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001008 if (!h1c_frt_stream_new(h1c, conn_ctx, h1c->conn->owner))
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001009 goto fail;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001010
1011 /* Attach the CS but Not ready yet */
1012 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
1013 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
1014 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
1015 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001016
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001017 if (t) {
1018 h1_set_idle_expiration(h1c);
1019 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001020 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001021 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001022
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001023 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +01001024 if (b_data(&h1c->ibuf))
1025 tasklet_wakeup(h1c->wait_event.tasklet);
1026 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +02001027 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001028
Christopher Faulet60fa0512021-11-26 18:10:39 +01001029 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
Christopher Faulet3bca28c2021-11-26 18:12:04 +01001030 HA_ATOMIC_INC(&h1c->px_counters->total_conns);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001031
Christopher Faulet51dbc942018-09-13 09:05:15 +02001032 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001033 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001034 return 0;
1035
1036 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001037 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001038 if (h1c->wait_event.tasklet)
1039 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001040 pool_free(pool_head_h1c, h1c);
1041 fail_h1c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001042 if (!conn_is_back(conn))
1043 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001044 conn->ctx = conn_ctx; // restore saved context
1045 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001046 return -1;
1047}
1048
Christopher Faulet73c12072019-04-08 11:23:22 +02001049/* release function. This one should be called to free all resources allocated
1050 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +02001051 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001052static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001053{
Christopher Faulet61840e72019-04-15 09:33:32 +02001054 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001055
Christopher Faulet6b81df72019-10-01 22:08:43 +02001056 TRACE_POINT(H1_EV_H1C_END);
1057
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001058 /* The connection must be aattached to this mux to be released */
1059 if (h1c->conn && h1c->conn->ctx == h1c)
1060 conn = h1c->conn;
Christopher Faulet61840e72019-04-15 09:33:32 +02001061
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001062 if (conn && h1c->flags & H1C_F_UPG_H2C) {
1063 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
1064 /* Make sure we're no longer subscribed to anything */
1065 if (h1c->wait_event.events)
1066 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
1067 h1c->wait_event.events, &h1c->wait_event);
1068 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
1069 /* connection successfully upgraded to H2, this
1070 * mux was already released */
1071 return;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001072 }
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001073 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
1074 sess_log(conn->owner); /* Log if the upgrade failed */
1075 }
Olivier Houchard45c44372019-06-11 14:06:23 +02001076
Christopher Faulet51dbc942018-09-13 09:05:15 +02001077
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001078 if (LIST_INLIST(&h1c->buf_wait.list))
1079 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001080
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001081 h1_release_buf(h1c, &h1c->ibuf);
1082 h1_release_buf(h1c, &h1c->obuf);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001083
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001084 if (h1c->task) {
1085 h1c->task->context = NULL;
1086 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
1087 h1c->task = NULL;
1088 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001089
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001090 if (h1c->wait_event.tasklet)
1091 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001092
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001093 h1s_destroy(h1c->h1s);
1094 if (conn) {
1095 if (h1c->wait_event.events != 0)
1096 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1097 &h1c->wait_event);
1098 h1_shutw_conn(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001099 }
1100
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001101 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
1102 pool_free(pool_head_h1c, h1c);
1103
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001104 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001105 if (!conn_is_back(conn))
1106 LIST_DEL_INIT(&conn->stopping_list);
1107
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001108 conn->mux = NULL;
1109 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001110 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001111
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001112 conn_stop_tracking(conn);
1113 conn_full_close(conn);
1114 if (conn->destroy_cb)
1115 conn->destroy_cb(conn);
1116 conn_free(conn);
1117 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001118}
1119
1120/******************************************************/
1121/* functions below are for the H1 protocol processing */
1122/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001123/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1124 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001125 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001126static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001127{
Christopher Faulet570d1612018-11-26 11:13:57 +01001128 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001129
Christopher Faulet570d1612018-11-26 11:13:57 +01001130 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001131 (*(p + 5) > '1' ||
1132 (*(p + 5) == '1' && *(p + 7) >= '1')))
1133 h1m->flags |= H1_MF_VER_11;
1134}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001135
Christopher Faulet9768c262018-10-22 09:34:31 +02001136/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1137 * greater or equal to 1.1
1138 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001139static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001140{
Christopher Faulet570d1612018-11-26 11:13:57 +01001141 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001142
Christopher Faulet570d1612018-11-26 11:13:57 +01001143 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001144 (*(p + 5) > '1' ||
1145 (*(p + 5) == '1' && *(p + 7) >= '1')))
1146 h1m->flags |= H1_MF_VER_11;
1147}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001148
Christopher Fauletf2824e62018-10-01 12:12:37 +02001149/* Deduce the connection mode of the client connection, depending on the
1150 * configuration and the H1 message flags. This function is called twice, the
1151 * first time when the request is parsed and the second time when the response
1152 * is parsed.
1153 */
1154static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1155{
1156 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001157
1158 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001159 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001160 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001161 h1s->status == 101) {
1162 /* Either we've established an explicit tunnel, or we're
1163 * switching the protocol. In both cases, we're very unlikely to
1164 * understand the next protocols. We have to switch to tunnel
1165 * mode, so that we transfer the request and responses then let
1166 * this protocol pass unmodified. When we later implement
1167 * specific parsers for such protocols, we'll want to check the
1168 * Upgrade header which contains information about that protocol
1169 * for responses with status 101 (eg: see RFC2817 about TLS).
1170 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001171 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001172 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 +01001173 }
1174 else if (h1s->flags & H1S_F_WANT_KAL) {
1175 /* By default the client is in KAL mode. CLOSE mode mean
1176 * it is imposed by the client itself. So only change
1177 * KAL mode here. */
1178 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1179 /* no length known or explicit close => close */
1180 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001181 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 +01001182 }
1183 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1184 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001185 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001186 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001187 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 +01001188 }
1189 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001190 }
1191 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001192 /* Input direction: first pass */
1193 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1194 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001195 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001196 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 +01001197 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001198 }
1199
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001200 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02001201 * unless a 'close-spread-time' option is set (either to define a
1202 * soft-close window or to disable active closing (close-spread-time
1203 * option set to 0).
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001204 */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001205 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001206 int want_clo = 1;
1207 /* If a close-spread-time option is set, we want to avoid
1208 * closing all the active HTTP connections at once so we add a
1209 * random factor that will spread the closing.
1210 */
1211 if (tick_isset(global.close_spread_end)) {
1212 int remaining_window = tick_remain(now_ms, global.close_spread_end);
1213 if (remaining_window) {
1214 /* This should increase the closing rate the further along
1215 * the window we are.
1216 */
1217 want_clo = (remaining_window <= statistical_prng_range(global.close_spread_time));
1218 }
1219 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02001220 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
1221 want_clo = 0;
Remi Tricot-Le Bretonb4f5fac2022-04-25 17:50:48 +02001222
1223 if (want_clo) {
1224 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
1225 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);
1226 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001227 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001228}
1229
1230/* Deduce the connection mode of the client connection, depending on the
1231 * configuration and the H1 message flags. This function is called twice, the
1232 * first time when the request is parsed and the second time when the response
1233 * is parsed.
1234 */
1235static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1236{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001237 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001238 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001239 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001240
Christopher Fauletf2824e62018-10-01 12:12:37 +02001241 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001242 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001243 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001244 h1s->status == 101) {
1245 /* Either we've established an explicit tunnel, or we're
1246 * switching the protocol. In both cases, we're very unlikely to
1247 * understand the next protocols. We have to switch to tunnel
1248 * mode, so that we transfer the request and responses then let
1249 * this protocol pass unmodified. When we later implement
1250 * specific parsers for such protocols, we'll want to check the
1251 * Upgrade header which contains information about that protocol
1252 * for responses with status 101 (eg: see RFC2817 about TLS).
1253 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001254 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001255 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 +01001256 }
1257 else if (h1s->flags & H1S_F_WANT_KAL) {
1258 /* By default the server is in KAL mode. CLOSE mode mean
1259 * it is imposed by haproxy itself. So only change KAL
1260 * mode here. */
1261 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1262 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1263 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1264 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001265 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 +01001266 }
1267 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001268 }
Christopher Faulet70033782018-12-05 13:50:11 +01001269 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001270 /* Output direction: first pass */
1271 if (h1m->flags & H1_MF_CONN_CLO) {
1272 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001273 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001274 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 +01001275 }
1276 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1277 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1278 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1279 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1280 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1281 /* no explicit keep-alive option httpclose/server-close => close */
1282 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001283 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 +01001284 }
Christopher Faulet70033782018-12-05 13:50:11 +01001285 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001286
1287 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001288 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001289 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001290 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);
1291 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001292}
1293
Christopher Fauletb992af02019-03-28 15:42:24 +01001294static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001295{
1296 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001297
1298 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1299 * token is found
1300 */
1301 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001302 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001303
1304 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001305 if (!(h1m->flags & H1_MF_VER_11)) {
1306 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 +01001307 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001308 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001309 }
1310 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001311 if (h1m->flags & H1_MF_VER_11) {
1312 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001313 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001314 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001315 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001316}
1317
Christopher Fauletb992af02019-03-28 15:42:24 +01001318static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001319{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001320 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1321 * token is found
1322 */
1323 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001324 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001325
1326 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001327 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001328 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1329 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 +01001330 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001331 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001332 }
1333 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001334 if (h1m->flags & H1_MF_VER_11) {
1335 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001336 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001337 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001338 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001339}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001340
Christopher Fauletb992af02019-03-28 15:42:24 +01001341static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001342{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001343 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001344 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001345 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001346 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001347}
1348
Christopher Fauletb992af02019-03-28 15:42:24 +01001349static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1350{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001351 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001352 h1_set_cli_conn_mode(h1s, h1m);
1353 else
1354 h1_set_srv_conn_mode(h1s, h1m);
1355
1356 if (!(h1m->flags & H1_MF_RESP))
1357 h1_update_req_conn_value(h1s, h1m, conn_val);
1358 else
1359 h1_update_res_conn_value(h1s, h1m, conn_val);
1360}
Christopher Faulete44769b2018-11-29 23:01:45 +01001361
Christopher Faulet98fbe952019-07-22 16:18:24 +02001362/* Try to adjust the case of the message header name using the global map
1363 * <hdrs_map>.
1364 */
1365static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1366{
1367 struct ebpt_node *node;
1368 struct h1_hdr_entry *entry;
1369
1370 /* No entry in the map, do nothing */
1371 if (eb_is_empty(&hdrs_map.map))
1372 return;
1373
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001374 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001375 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1376 return;
1377
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001378 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001379 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1380 return;
1381
1382 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1383 if (!node)
1384 return;
1385 entry = container_of(node, struct h1_hdr_entry, node);
1386 name->ptr = entry->name.ptr;
1387 name->len = entry->name.len;
1388}
1389
Christopher Faulete44769b2018-11-29 23:01:45 +01001390/* Append the description of what is present in error snapshot <es> into <out>.
1391 * The description must be small enough to always fit in a buffer. The output
1392 * buffer may be the trash so the trash must not be used inside this function.
1393 */
1394static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1395{
1396 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001397 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1398 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1399 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1400 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1401 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1402 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001403}
1404/*
1405 * Capture a bad request or response and archive it in the proxy's structure.
1406 * By default it tries to report the error position as h1m->err_pos. However if
1407 * this one is not set, it will then report h1m->next, which is the last known
1408 * parsing point. The function is able to deal with wrapping buffers. It always
1409 * displays buffers as a contiguous area starting at buf->p. The direction is
1410 * determined thanks to the h1m's flags.
1411 */
1412static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1413 struct h1m *h1m, struct buffer *buf)
1414{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001415 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001416 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001417 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001418 union error_snapshot_ctx ctx;
1419
Christopher Fauletf835dea2021-12-21 14:35:17 +01001420 if ((h1c->flags & H1C_F_ST_ATTACHED) && cs_strm(h1s->cs)) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001421 if (sess == NULL)
Christopher Faulet693b23b2022-02-28 09:09:05 +01001422 sess = __cs_strm(h1s->cs)->sess;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001423 if (!(h1m->flags & H1_MF_RESP))
Christopher Faulet693b23b2022-02-28 09:09:05 +01001424 other_end = __cs_strm(h1s->cs)->be;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001425 else
1426 other_end = sess->fe;
1427 } else
1428 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001429
1430 /* http-specific part now */
1431 ctx.h1.state = h1m->state;
1432 ctx.h1.c_flags = h1c->flags;
1433 ctx.h1.s_flags = h1s->flags;
1434 ctx.h1.m_flags = h1m->flags;
1435 ctx.h1.m_clen = h1m->curr_len;
1436 ctx.h1.m_blen = h1m->body_len;
1437
1438 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1439 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001440 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1441 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001442}
1443
Christopher Fauletadb22202018-12-12 10:32:09 +01001444/* Emit the chunksize followed by a CRLF in front of data of the buffer
1445 * <buf>. It goes backwards and starts with the byte before the buffer's
1446 * head. The caller is responsible for ensuring there is enough room left before
1447 * the buffer's head for the string.
1448 */
1449static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1450{
1451 char *beg, *end;
1452
1453 beg = end = b_head(buf);
1454 *--beg = '\n';
1455 *--beg = '\r';
1456 do {
1457 *--beg = hextab[chksz & 0xF];
1458 } while (chksz >>= 4);
1459 buf->head -= (end - beg);
1460 b_add(buf, end - beg);
1461}
1462
1463/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1464 * ensuring there is enough room left in the buffer for the string. */
1465static void h1_emit_chunk_crlf(struct buffer *buf)
1466{
1467 *(b_peek(buf, b_data(buf))) = '\r';
1468 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1469 b_add(buf, 2);
1470}
1471
Christopher Faulet129817b2018-09-20 16:14:40 +02001472/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001473 * Switch the stream to tunnel mode. This function must only be called on 2xx
1474 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001475 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001476static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001477{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001478 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001479
Christopher Faulet5be651d2021-01-22 15:28:03 +01001480 h1s->req.state = H1_MSG_TUNNEL;
1481 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001482
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001483 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001484 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001485
Christopher Faulet5be651d2021-01-22 15:28:03 +01001486 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 +01001487
Christopher Faulet10a86702021-04-07 14:18:11 +02001488 if (h1s->flags & H1S_F_RX_BLK) {
1489 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001490 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001491 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 +02001492 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001493 if (h1s->flags & H1S_F_TX_BLK) {
1494 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001495 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001496 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 +01001497 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001498}
1499
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001500/* Search for a websocket key header. The message should have been identified
1501 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001502 *
1503 * On the request side, if found the key is stored in the session. It might be
1504 * needed to calculate response key if the server side is using http/2.
1505 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001506 * On the response side, the key might be verified if haproxy has been
1507 * responsible for the generation of a key. This happens when a h2 client is
1508 * interfaced with a h1 server.
1509 *
1510 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001511 */
1512static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1513{
1514 struct htx_blk *blk;
1515 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001516 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001517 int ws_key_found = 0, idx;
1518
1519 idx = htx_get_head(htx); // returns the SL that we skip
1520 while ((idx = htx_get_next(htx, idx)) != -1) {
1521 blk = htx_get_blk(htx, idx);
1522 type = htx_get_blk_type(blk);
1523
1524 if (type == HTX_BLK_UNUSED)
1525 continue;
1526
1527 if (type != HTX_BLK_HDR)
1528 break;
1529
1530 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001531 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001532
Amaury Denoyellec1938232020-12-11 17:53:03 +01001533 /* Websocket key is base64 encoded of 16 bytes */
1534 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001535 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001536 /* Copy the key on request side
1537 * we might need it if the server is using h2 and does
1538 * not provide the response
1539 */
1540 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001541 ws_key_found = 1;
1542 break;
1543 }
1544 else if (isteqi(n, ist("sec-websocket-accept")) &&
1545 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001546 /* Need to verify the response key if the input was
1547 * generated by haproxy
1548 */
1549 if (h1s->ws_key[0]) {
1550 char key[29];
1551 h1_calculate_ws_output_key(h1s->ws_key, key);
1552 if (!isteqi(ist(key), v))
1553 break;
1554 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001555 ws_key_found = 1;
1556 break;
1557 }
1558 }
1559
1560 /* missing websocket key, reject the message */
1561 if (!ws_key_found) {
1562 htx->flags |= HTX_FL_PARSING_ERROR;
1563 return 0;
1564 }
1565
1566 return 1;
1567}
1568
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001569/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001570 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001571 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001572 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1573 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001574 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001575static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1576 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001577{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001578 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001579 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001580
Willy Tarreau022e5e52020-09-10 09:33:15 +02001581 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 +02001582
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001583 if (h1s->meth == HTTP_METH_CONNECT)
1584 h1m->flags |= H1_MF_METH_CONNECT;
1585 if (h1s->meth == HTTP_METH_HEAD)
1586 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001587
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001588 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001589 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001590 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 +02001591 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001592 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001593 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 +02001594 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1595 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001596 else if (ret == -2) {
1597 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);
1598 h1s->flags |= H1S_F_RX_CONGESTED;
1599 }
1600 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001601 goto end;
1602 }
1603
Christopher Faulete136bd12021-09-21 18:44:55 +02001604
1605 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1606 * payload if the c-l is not null or the the payload is chunk-encoded.
1607 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1608 * instead of a 400-Bad-Request.
1609 */
1610 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1611 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1612 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1613 h1s->flags |= H1S_F_PARSING_ERROR;
1614 htx->flags |= HTX_FL_PARSING_ERROR;
1615 h1s->h1c->errcode = 413;
1616 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);
1617 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1618 ret = 0;
1619 goto end;
1620 }
1621
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001622 /* Reject any message with an unknown transfer-encoding. In fact if any
1623 * encoding other than "chunked". A 422-Unprocessable-Content is
1624 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1625 * response.
1626 */
1627 if (h1m->flags & H1_MF_TE_OTHER) {
1628 h1s->flags |= H1S_F_PARSING_ERROR;
1629 htx->flags |= HTX_FL_PARSING_ERROR;
1630 if (!(h1m->flags & H1_MF_RESP))
1631 h1s->h1c->errcode = 422;
1632 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1633 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1634 ret = 0;
1635 goto end;
1636 }
1637
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001638 /* If websocket handshake, search for the websocket key */
1639 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1640 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1641 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1642 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001643 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001644 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 +01001645 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1646
1647 ret = 0;
1648 goto end;
1649 }
1650 }
1651
Christopher Faulet486498c2019-10-11 14:22:00 +02001652 if (h1m->err_pos >= 0) {
1653 /* Maybe we found an error during the parsing while we were
1654 * configured not to block on that, so we have to capture it
1655 * now.
1656 */
1657 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1658 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1659 }
1660
Christopher Faulet5696f542020-12-02 16:08:38 +01001661 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001662 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001663 if (h1s->meth == HTTP_METH_HEAD)
1664 h1s->flags |= H1S_F_BODYLESS_RESP;
1665 }
1666 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001667 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001668 if (h1s->status == 204 || h1s->status == 304)
1669 h1s->flags |= H1S_F_BODYLESS_RESP;
1670 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001671 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001672 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001673
Christopher Faulet129817b2018-09-20 16:14:40 +02001674 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001675 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 +02001676 return ret;
1677}
1678
1679/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001680 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001681 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1682 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001683 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001684static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1685 struct buffer *buf, size_t *ofs, size_t max,
1686 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001687{
Christopher Fauletde471a42021-02-01 16:37:28 +01001688 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001689
Willy Tarreau022e5e52020-09-10 09:33:15 +02001690 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 +02001691 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001692 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001693 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 +01001694 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001695 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001696 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 +02001697 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001698 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001699 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001700 }
1701
Christopher Faulet02a02532019-11-15 09:36:28 +01001702 *ofs += ret;
1703
1704 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001705 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1706 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);
1707 h1s->flags |= H1S_F_RX_CONGESTED;
1708 }
1709
Willy Tarreau022e5e52020-09-10 09:33:15 +02001710 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 +02001711 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001712}
1713
1714/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001715 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1716 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1717 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001718 * responsible to update the parser state <h1m>. If more room is requested,
1719 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001720 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001721static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1722 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001723{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001724 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001725
Willy Tarreau022e5e52020-09-10 09:33:15 +02001726 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 +02001727 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001728 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001729 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 +02001730 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001731 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001732 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 +02001733 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1734 }
Christopher Fauletae660be2022-04-13 17:48:54 +02001735 else if (ret == -2) {
Christopher Faulet46e058d2021-09-20 07:47:27 +02001736 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);
1737 h1s->flags |= H1S_F_RX_CONGESTED;
1738 }
1739 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001740 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001741 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001742
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001743 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001744
1745 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001746 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 +02001747 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001748}
1749
1750/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001751 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001752 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1753 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001754 *
1755 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001756 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001757static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001758{
Christopher Faulet539e0292018-11-19 10:40:09 +01001759 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001760 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001761 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001762 size_t data;
1763 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001764 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001765
Christopher Faulet539e0292018-11-19 10:40:09 +01001766 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001767 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001768
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001769 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001770 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001771
Christopher Faulet2eed8002020-12-07 11:26:13 +01001772 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001773 goto end;
1774
Christopher Faulet10a86702021-04-07 14:18:11 +02001775 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001776 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001777
Christopher Faulet46e058d2021-09-20 07:47:27 +02001778 /* Always remove congestion flags and try to process more input data */
1779 h1s->flags &= ~H1S_F_RX_CONGESTED;
1780
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001781 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001782 size_t used = htx_used_space(htx);
1783
Christopher Faulet129817b2018-09-20 16:14:40 +02001784 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001785 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001786 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001787 if (!ret)
1788 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001789
1790 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1791 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1792
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001793 if ((h1m->flags & H1_MF_RESP) &&
1794 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1795 h1m_init_res(&h1s->res);
1796 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001797 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001798 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001799 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001800 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001801 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001802 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001803 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001804 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001805
1806 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1807 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001808 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001809 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001810 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001811 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001812 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001813 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001814
Christopher Faulet76014fd2019-12-10 11:47:22 +01001815 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1816 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001817 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001818 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001819 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1820 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001821
Christopher Faulet5be651d2021-01-22 15:28:03 +01001822 if ((h1m->flags & H1_MF_RESP) &&
1823 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1824 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001825 else {
1826 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1827 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001828 h1s->flags |= H1S_F_RX_BLK;
1829 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001830 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001831 if (h1s->flags & H1S_F_TX_BLK) {
1832 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001833 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001834 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 +01001835 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001836 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001837 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001838 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001839 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001840 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001841 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001842 if (!ret)
1843 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001844
1845 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1846 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001847 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001848 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001849 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001850 break;
1851 }
1852
Christopher Faulet30db3d72019-05-17 15:35:33 +02001853 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001854 } 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 +01001855
Christopher Faulet129817b2018-09-20 16:14:40 +02001856
Christopher Faulet2eed8002020-12-07 11:26:13 +01001857 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001858 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 +02001859 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001860 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001861
Christopher Faulet539e0292018-11-19 10:40:09 +01001862 b_del(&h1c->ibuf, total);
1863
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001864 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001865 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1866
Christopher Faulet30db3d72019-05-17 15:35:33 +02001867 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001869 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001870 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 +01001871 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001872 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001873
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001874 if (!b_data(&h1c->ibuf))
1875 h1_release_buf(h1c, &h1c->ibuf);
1876
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001877 if (!(h1c->flags & H1C_F_ST_READY)) {
1878 /* The H1 connection is not ready. Most of time, there is no CS
1879 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1880 * cases, it is only possible on the client side.
1881 */
1882 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1883
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001884 if (h1m->state <= H1_MSG_LAST_LF) {
1885 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1886 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1887 goto end;
1888 }
1889
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001890 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1891 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1892 BUG_ON(h1s->cs);
1893 if (!h1s_new_cs(h1s, buf)) {
1894 h1c->flags |= H1C_F_ST_ERROR;
1895 goto err;
1896 }
1897 }
1898 else {
1899 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1900 BUG_ON(h1s->cs == NULL);
1901 if (!h1s_upgrade_cs(h1s, buf)) {
1902 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001903 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001904 goto err;
1905 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001906 }
1907 }
1908
1909 /* Here h1s->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001910 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001911 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 +01001912 h1s->endp->flags |= CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001913 }
1914 else {
1915 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 +01001916 h1s->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001917 }
1918
Christopher Fauleta22782b2021-02-08 17:18:01 +01001919 /* Set EOI on conn-stream in DONE state iff:
1920 * - it is a response
1921 * - it is a request but no a protocol upgrade nor a CONNECT
1922 *
1923 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001924 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001925 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001926 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1927 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauletb041b232022-03-24 10:27:02 +01001928 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauleta583af62020-09-24 15:35:37 +02001929
Christopher Fauletec4207c2021-04-08 18:34:30 +02001930 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001931 /* When Input data are pending for this message, notify upper layer that
1932 * the mux need more space in the HTX buffer to continue if :
1933 *
1934 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1935 * - Headers or trailers are pending to be copied.
1936 */
1937 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001938 h1s->endp->flags |= CS_EP_RCV_MORE | CS_EP_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001939 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1940 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001941 else {
Christopher Fauletb041b232022-03-24 10:27:02 +01001942 h1s->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001943 if (h1s->flags & H1S_F_REOS) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001944 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001945 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1946 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1947 * EOI on the conn-stream */
Christopher Fauletb041b232022-03-24 10:27:02 +01001948 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001949 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001950 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001951 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001952 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1953 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001954
Christopher Faulet10a86702021-04-07 14:18:11 +02001955 if (h1s->flags & H1S_F_TX_BLK) {
1956 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001957 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001958 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 +01001959 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001960 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001961 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001962
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001963 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001964 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001965 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001966
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001967 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001968 htx_to_buf(htx, buf);
Christopher Faulet186354b2022-04-13 12:09:36 +02001969 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001970 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001971 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001972}
1973
Christopher Faulet129817b2018-09-20 16:14:40 +02001974/*
1975 * Process outgoing data. It parses data and transfer them from the channel buffer into
1976 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1977 * 0 if it couldn't proceed.
1978 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001979static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001980{
Christopher Faulet129817b2018-09-20 16:14:40 +02001981 struct h1s *h1s = h1c->h1s;
1982 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001983 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001984 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001985 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001986 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001987 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001988 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001989
Christopher Faulet94b2c762019-05-24 15:28:57 +02001990 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001991 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1992
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001993 if (htx_is_empty(chn_htx))
1994 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001995
Christopher Faulet10a86702021-04-07 14:18:11 +02001996 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001997 goto end;
1998
Christopher Faulet51dbc942018-09-13 09:05:15 +02001999 if (!h1_get_buf(h1c, &h1c->obuf)) {
2000 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002001 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 +02002002 goto end;
2003 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002004
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002005 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02002006
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002007 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01002008 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02002009
Willy Tarreau3815b222018-12-11 19:50:43 +01002010 /* Perform some optimizations to reduce the number of buffer copies.
2011 * First, if the mux's buffer is empty and the htx area contains
2012 * exactly one data block of the same size as the requested count,
2013 * then it's possible to simply swap the caller's buffer with the
2014 * mux's output buffer and adjust offsets and length to match the
2015 * entire DATA HTX block in the middle. In this case we perform a
2016 * true zero-copy operation from end-to-end. This is the situation
2017 * that happens all the time with large files. Second, if this is not
2018 * possible, but the mux's output buffer is empty, we still have an
2019 * opportunity to avoid the copy to the intermediary buffer, by making
2020 * the intermediary buffer's area point to the output buffer's area.
2021 * In this case we want to skip the HTX header to make sure that copies
2022 * remain aligned and that this operation remains possible all the
2023 * time. This goes for headers, data blocks and any data extracted from
2024 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01002025 */
2026 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01002027 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002028 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01002029 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002030 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01002031 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01002032 void *old_area;
2033
Christopher Faulet6b81df72019-10-01 22:08:43 +02002034 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 +01002035 if (h1m->state == H1_MSG_DATA) {
2036 if (h1m->flags & H1_MF_CLEN) {
2037 if (count > h1m->curr_len) {
2038 TRACE_ERROR("too much payload, more than announced",
2039 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2040 goto error;
2041 }
2042 h1m->curr_len -= count;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002043 if (!h1m->curr_len)
2044 last_data = 1;
Christopher Faulet140f1a52021-11-26 16:37:55 +01002045 }
2046 if (chn_htx->flags & HTX_FL_EOM) {
2047 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2048 last_data = 1;
2049 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002050 }
2051
Christopher Faulete5596bf2020-12-02 16:13:22 +01002052 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01002053 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02002054 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01002055 h1c->obuf.data = count;
2056
2057 buf->area = old_area;
2058 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01002059
Christopher Faulet6b81df72019-10-01 22:08:43 +02002060 chn_htx = (struct htx *)buf->area;
2061 htx_reset(chn_htx);
2062
Christopher Fauletadb22202018-12-12 10:32:09 +01002063 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002064 * size and eventually the last chunk. We have at least
2065 * the size of the struct htx to write the chunk
2066 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01002067 */
2068 if (h1m->flags & H1_MF_CHNK) {
2069 h1_emit_chunk_size(&h1c->obuf, count);
2070 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002071 if (last_data) {
2072 /* Emit the last chunk too at the buffer's end */
2073 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
2074 }
Christopher Fauletadb22202018-12-12 10:32:09 +01002075 }
2076
Christopher Faulet6b81df72019-10-01 22:08:43 +02002077 if (h1m->state == H1_MSG_DATA)
2078 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload 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 Faulet6b81df72019-10-01 22:08:43 +02002080 else
2081 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002082 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002083
Christopher Faulete5596bf2020-12-02 16:13:22 +01002084 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002085 if (last_data) {
2086 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02002087 if (h1s->flags & H1S_F_RX_BLK) {
2088 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002089 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002090 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 +01002091 }
2092
2093 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2094 H1_EV_TX_DATA, h1c->conn, h1s);
2095 }
Willy Tarreau3815b222018-12-11 19:50:43 +01002096 goto out;
2097 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002098 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002099 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002100 else
2101 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02002102
Christopher Fauletc2518a52019-06-25 21:41:02 +02002103 tmp.data = 0;
2104 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02002105 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01002106 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02002107 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01002108 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02002109 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02002110 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02002111
Christopher Fauletb2e84162018-12-06 11:39:49 +01002112 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002113 if (type != HTX_BLK_DATA && vlen > count)
2114 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002115
Christopher Faulet94b2c762019-05-24 15:28:57 +02002116 if (type == HTX_BLK_UNUSED)
2117 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002118
Christopher Faulet94b2c762019-05-24 15:28:57 +02002119 switch (h1m->state) {
2120 case H1_MSG_RQBEFORE:
2121 if (type != HTX_BLK_REQ_SL)
2122 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002123 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 +02002124 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002125 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002126 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002127 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002128 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002129 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002130 if (sl->flags & HTX_SL_F_BODYLESS)
2131 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002132 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002133 if (h1s->meth == HTTP_METH_HEAD)
2134 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002135 if (h1s->flags & H1S_F_RX_BLK) {
2136 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002137 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002138 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 +02002139 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002140 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002141
Christopher Faulet94b2c762019-05-24 15:28:57 +02002142 case H1_MSG_RPBEFORE:
2143 if (type != HTX_BLK_RES_SL)
2144 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002145 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 +02002146 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002147 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002148 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002149 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002150 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002151 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002152 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002153 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002154 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002155 else if (h1s->status == 204 || h1s->status == 304)
2156 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002157 h1m->state = H1_MSG_HDR_FIRST;
2158 break;
2159
Christopher Faulet94b2c762019-05-24 15:28:57 +02002160 case H1_MSG_HDR_FIRST:
2161 case H1_MSG_HDR_NAME:
2162 case H1_MSG_HDR_L2_LWS:
2163 if (type == HTX_BLK_EOH)
2164 goto last_lf;
2165 if (type != HTX_BLK_HDR)
2166 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002167
Christopher Faulet9768c262018-10-22 09:34:31 +02002168 h1m->state = H1_MSG_HDR_NAME;
2169 n = htx_get_blk_name(chn_htx, blk);
2170 v = htx_get_blk_value(chn_htx, blk);
2171
Christopher Faulet86d144c2019-08-14 16:32:25 +02002172 /* Skip all pseudo-headers */
2173 if (*(n.ptr) == ':')
2174 goto skip_hdr;
2175
Christopher Faulet91fcf212020-12-02 16:17:15 +01002176 if (isteq(n, ist("transfer-encoding"))) {
2177 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2178 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002179 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002180 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002181 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002182 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2183 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002184 /* Only skip C-L header with invalid value. */
2185 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002186 goto skip_hdr;
2187 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002188 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002189 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002190 if (!v.len)
2191 goto skip_hdr;
2192 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002193 else if (isteq(n, ist("upgrade"))) {
2194 h1_parse_upgrade_header(h1m, v);
2195 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002196 else if ((isteq(n, ist("sec-websocket-accept")) &&
2197 h1m->flags & H1_MF_RESP) ||
2198 (isteq(n, ist("sec-websocket-key")) &&
2199 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002200 ws_key_found = 1;
2201 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002202 else if (isteq(n, ist("te"))) {
2203 /* "te" may only be sent with "trailers" if this value
2204 * is present, otherwise it must be deleted.
2205 */
2206 v = istist(v, ist("trailers"));
2207 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2208 goto skip_hdr;
2209 v = ist("trailers");
2210 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002211
Christopher Faulet67d58092019-10-02 10:51:38 +02002212 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002213 if (!(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name) &&
2214 isteqi(n, h1c->px->server_id_hdr_name))
Christopher Faulet67d58092019-10-02 10:51:38 +02002215 goto skip_hdr;
2216
Christopher Faulet98fbe952019-07-22 16:18:24 +02002217 /* Try to adjust the case of the header name */
2218 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2219 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002220 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002221 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002222 skip_hdr:
2223 h1m->state = H1_MSG_HDR_L2_LWS;
2224 break;
2225
Christopher Faulet94b2c762019-05-24 15:28:57 +02002226 case H1_MSG_LAST_LF:
2227 if (type != HTX_BLK_EOH)
2228 goto error;
2229 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002230 h1m->state = H1_MSG_LAST_LF;
2231 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002232 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002233 /* If the reply comes from haproxy while the request is
2234 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002235 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2236 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2237 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002238 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2239 /* T-E + C-L: force close */
2240 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2241 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2242 }
2243 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2244 /* T-E + HTTP/1.0: force close */
2245 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2246 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2247 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002248
2249 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002250 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002251 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002252 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002253 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002254 /* Try to adjust the case of the header name */
2255 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2256 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002257 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002258 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002259 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002260 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002261 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002262
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002263 if ((h1s->meth != HTTP_METH_CONNECT &&
2264 (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 +01002265 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002266 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002267 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002268 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2269 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002270 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002271 n = ist("transfer-encoding");
2272 v = ist("chunked");
2273 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2274 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002275 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002276 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002277 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002278 h1m->flags |= H1_MF_CHNK;
2279 }
2280
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002281 /* Now add the server name to a header (if requested) */
2282 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002283 !(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002284 struct server *srv = objt_server(h1c->conn->target);
2285
2286 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002287 n = h1c->px->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002288 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002289
2290 /* Try to adjust the case of the header name */
2291 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2292 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002293 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002294 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002295 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002296 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002297 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2298 }
2299
Amaury Denoyellec1938232020-12-11 17:53:03 +01002300 /* Add websocket handshake key if needed */
2301 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2302 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002303 if (!(h1m->flags & H1_MF_RESP)) {
2304 /* generate a random websocket key
2305 * stored in the session to
2306 * verify it on the response side
2307 */
2308 h1_generate_random_ws_input_key(h1s->ws_key);
2309
2310 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2311 ist(h1s->ws_key),
2312 &tmp)) {
2313 goto full;
2314 }
2315 }
2316 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002317 /* add the response header key */
2318 char key[29];
2319 h1_calculate_ws_output_key(h1s->ws_key, key);
2320 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2321 ist(key),
2322 &tmp)) {
2323 goto full;
2324 }
2325 }
2326 }
2327
Christopher Faulet6b81df72019-10-01 22:08:43 +02002328 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2329 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2330
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002331 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002332 if (!chunk_memcat(&tmp, "\r\n", 2))
2333 goto full;
2334 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002335 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002336 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002337 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002338 if (!chunk_memcat(&tmp, "\r\n", 2))
2339 goto full;
2340 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002341 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002342 else if ((h1m->flags & H1_MF_RESP) &&
2343 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002344 if (!chunk_memcat(&tmp, "\r\n", 2))
2345 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002346 h1m_init_res(&h1s->res);
2347 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002348 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002349 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002350 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002351 else {
Christopher Faulet2eb52432022-04-07 10:29:38 +02002352 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2353 if (htx_is_unique_blk(chn_htx, blk) &&
2354 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002355 if (h1m->flags & H1_MF_CHNK) {
2356 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2357 goto full;
2358 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002359 else if (!chunk_memcat(&tmp, "\r\n", 2))
2360 goto full;
2361 goto done;
2362 }
2363 else if (!chunk_memcat(&tmp, "\r\n", 2))
2364 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002365 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002366 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002367 break;
2368
Christopher Faulet94b2c762019-05-24 15:28:57 +02002369 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002370 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002371 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002372 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2373 goto trailers;
2374
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002375 /* If the message is not chunked, never
2376 * add the last chunk. */
2377 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002378 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002379 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 +02002380 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002381 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002382 else if (type != HTX_BLK_DATA)
2383 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002384
2385 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 +02002386
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002387 /* It is the last block of this message. After this one,
2388 * only tunneled data may be forwarded. */
2389 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2390 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2391 last_data = 1;
2392 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002393
2394 if (vlen > count) {
2395 /* Get the maximum amount of data we can xferred */
2396 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002397 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002398 }
2399
Christopher Faulet140f1a52021-11-26 16:37:55 +01002400 if (h1m->state == H1_MSG_DATA) {
2401 if (h1m->flags & H1_MF_CLEN) {
2402 if (vlen > h1m->curr_len) {
2403 TRACE_ERROR("too much payload, more than announced",
2404 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2405 goto error;
2406 }
Christopher Faulet140f1a52021-11-26 16:37:55 +01002407 }
2408 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2409 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2410 goto skip_data;
2411 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002412 }
2413
Christopher Fauletd9233f02019-10-14 14:01:24 +02002414 chklen = 0;
2415 if (h1m->flags & H1_MF_CHNK) {
2416 chklen = b_room(&tmp);
2417 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2418 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2419 (chklen < 1048576) ? 5 : 8);
2420 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002421
2422 /* If it is the end of the chunked message (without EOT), reserve the
2423 * last chunk size */
2424 if (last_data)
2425 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002426 }
2427
2428 if (vlen + chklen > b_room(&tmp)) {
2429 /* too large for the buffer */
2430 if (chklen >= b_room(&tmp))
2431 goto full;
2432 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002433 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002434 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002435 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002436 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002437 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002438 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002439
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002440 /* Space already reserved, so it must succeed */
2441 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2442 goto error;
2443
Christopher Faulet6b81df72019-10-01 22:08:43 +02002444 if (h1m->state == H1_MSG_DATA)
2445 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload 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 Faulet6b81df72019-10-01 22:08:43 +02002447 else
2448 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002449 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002450
2451 skip_data:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002452 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Fauletb4eca0e2022-01-10 17:27:51 +01002453 h1m->curr_len -= vlen;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002454 if (!h1m->curr_len)
2455 last_data = 1;
2456 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002457 if (last_data)
2458 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002459 break;
2460
Christopher Faulet94b2c762019-05-24 15:28:57 +02002461 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002462 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002463 goto error;
2464 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002465 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002466
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002467 /* If the message is not chunked, ignore
2468 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002469 if (!(h1m->flags & H1_MF_CHNK)) {
2470 if (type == HTX_BLK_EOT)
2471 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002472 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002473 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002474
Christopher Faulete5596bf2020-12-02 16:13:22 +01002475 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2476 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 +01002477 if (type == HTX_BLK_EOT)
2478 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002479 break;
2480 }
2481
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002482 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002483 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002484 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002485 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2486 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002487 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002488 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002489 else { // HTX_BLK_TLR
2490 n = htx_get_blk_name(chn_htx, blk);
2491 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002492
2493 /* Try to adjust the case of the header name */
2494 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2495 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002496 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002497 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002498 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002499 break;
2500
Christopher Faulet94b2c762019-05-24 15:28:57 +02002501 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002502 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2503 goto error; /* For now return an error */
2504
Christopher Faulet94b2c762019-05-24 15:28:57 +02002505 done:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002506 if (!(chn_htx->flags & HTX_FL_EOM) && (!(h1m->flags & H1_MF_CLEN) || h1m->curr_len)) {
Christopher Faulet36893672021-02-10 09:52:07 +01002507 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2508 goto error; /* For now return an error */
2509 }
2510
Christopher Faulet94b2c762019-05-24 15:28:57 +02002511 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002512 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002513 h1s->flags |= H1S_F_TX_BLK;
2514 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002515 }
2516 else if ((h1m->flags & H1_MF_RESP) &&
2517 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2518 /* a successful reply to a CONNECT or a protocol switching is sent
2519 * to the client. Switch the response to tunnel mode.
2520 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002521 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002522 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 +01002523 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002524
Christopher Faulet10a86702021-04-07 14:18:11 +02002525 if (h1s->flags & H1S_F_RX_BLK) {
2526 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002527 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002528 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 +02002529 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002530
2531 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2532 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002533 break;
2534
Christopher Faulet9768c262018-10-22 09:34:31 +02002535 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002536 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002537 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002538 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002539 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002540 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002541 TRACE_ERROR("processing output error, set error on h1c/h1s",
2542 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 +01002543 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002544 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002545
2546 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002547 total += vlen;
2548 count -= vlen;
2549 if (sz == vlen)
2550 blk = htx_remove_blk(chn_htx, blk);
2551 else {
2552 htx_cut_data_blk(chn_htx, blk, vlen);
2553 break;
2554 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002555 }
2556
Christopher Faulet9768c262018-10-22 09:34:31 +02002557 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002558 /* when the output buffer is empty, tmp shares the same area so that we
2559 * only have to update pointers and lengths.
2560 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002561 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2562 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002563 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002564 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002565
Willy Tarreau3815b222018-12-11 19:50:43 +01002566 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002567 out:
2568 if (!buf_room_for_htx_data(&h1c->obuf)) {
2569 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002570 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002571 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002572 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002573 /* Both the request and the response reached the DONE state. So set EOI
2574 * flag on the conn-stream. Most of time, the flag will already be set,
2575 * except for protocol upgrades. Report an error if data remains blocked
2576 * in the output buffer.
2577 */
2578 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2579 if (!htx_is_empty(chn_htx)) {
2580 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002581 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 +01002582 }
Christopher Fauletb041b232022-03-24 10:27:02 +01002583 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauletdea24742021-01-22 15:12:30 +01002584 }
2585
Christopher Faulet6b81df72019-10-01 22:08:43 +02002586 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002587 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002588
2589 full:
2590 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2591 h1c->flags |= H1C_F_OUT_FULL;
2592 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002593}
2594
Christopher Faulet51dbc942018-09-13 09:05:15 +02002595/*********************************************************/
2596/* functions below are I/O callbacks from the connection */
2597/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002598static void h1_wake_stream_for_recv(struct h1s *h1s)
2599{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002600 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002601 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002602 tasklet_wakeup(h1s->subs->tasklet);
2603 h1s->subs->events &= ~SUB_RETRY_RECV;
2604 if (!h1s->subs->events)
2605 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002606 }
2607}
2608static void h1_wake_stream_for_send(struct h1s *h1s)
2609{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002610 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002611 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002612 tasklet_wakeup(h1s->subs->tasklet);
2613 h1s->subs->events &= ~SUB_RETRY_SEND;
2614 if (!h1s->subs->events)
2615 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002616 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002617}
2618
Christopher Fauletad4daf62021-01-21 17:49:01 +01002619/* alerts the data layer following this sequence :
2620 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2621 * - if its subscribed to send, then it's woken up for send
2622 * - if it was subscribed to neither, its ->wake() callback is called
2623 */
2624static void h1_alert(struct h1s *h1s)
2625{
2626 if (h1s->subs) {
2627 h1_wake_stream_for_recv(h1s);
2628 h1_wake_stream_for_send(h1s);
2629 }
2630 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2631 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2632 h1s->cs->data_cb->wake(h1s->cs);
2633 }
2634}
2635
Christopher Fauletc18fc232020-10-06 17:41:36 +02002636/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2637 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2638 * retryable errors (allocation error or buffer full). On success, the error is
2639 * copied in the output buffer.
2640*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002641static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002642{
2643 int rc = http_get_status_idx(h1c->errcode);
2644 int ret = 0;
2645
2646 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2647
2648 /* Verify if the error is mapped on /dev/null or any empty file */
2649 /// XXX: do a function !
2650 if (h1c->px->replies[rc] &&
2651 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2652 h1c->px->replies[rc]->body.errmsg &&
2653 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2654 /* Empty error, so claim a success */
2655 ret = 1;
2656 goto out;
2657 }
2658
2659 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2660 h1c->flags |= H1C_F_ERR_PENDING;
2661 goto out;
2662 }
2663
2664 if (!h1_get_buf(h1c, &h1c->obuf)) {
2665 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2666 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2667 goto out;
2668 }
Tim Duesterhus77508502022-03-15 13:11:06 +01002669 ret = b_istput(&h1c->obuf, ist(http_err_msgs[rc]));
Christopher Fauletc18fc232020-10-06 17:41:36 +02002670 if (unlikely(ret <= 0)) {
2671 if (!ret) {
2672 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2673 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2674 goto out;
2675 }
2676 else {
2677 /* we cannot report this error, so claim a success */
2678 ret = 1;
2679 }
2680 }
2681 h1c->flags &= ~H1C_F_ERR_PENDING;
2682 out:
2683 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2684 return ret;
2685}
2686
2687/* Try to send a 500 internal error. It relies on h1_send_error to send the
2688 * error. This function takes care of incrementing stats and tracked counters.
2689 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002690static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002691{
2692 struct session *sess = h1c->conn->owner;
2693 int ret = 1;
2694
2695 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002696 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002697 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2698 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002699 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002700 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002701
2702 h1c->errcode = 500;
2703 ret = h1_send_error(h1c);
2704 sess_log(sess);
2705 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002706}
2707
Christopher Fauletb3230f72021-09-21 18:38:20 +02002708/* Try to send an error because of a parsing error. By default a 400 bad request
2709 * error is returned. But the status code may be specified by setting
2710 * h1c->errcode. It relies on h1_send_error to send the error. This function
2711 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002712 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002713static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002714{
2715 struct session *sess = h1c->conn->owner;
2716 int ret = 1;
2717
2718 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2719 goto end;
2720
2721 session_inc_http_req_ctr(sess);
2722 session_inc_http_err_ctr(sess);
2723 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002724 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2725 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002726 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002727 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002728
Christopher Fauletb3230f72021-09-21 18:38:20 +02002729 if (!h1c->errcode)
2730 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002731 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002732 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2733 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002734
2735 end:
2736 return ret;
2737}
2738
Christopher Faulet2eed8002020-12-07 11:26:13 +01002739/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2740 * the error. This function takes care of incrementing stats and tracked
2741 * counters.
2742 */
2743static int h1_handle_not_impl_err(struct h1c *h1c)
2744{
2745 struct session *sess = h1c->conn->owner;
2746 int ret = 1;
2747
2748 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2749 goto end;
2750
2751 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002752 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002753 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2754 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002755 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002756 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002757
2758 h1c->errcode = 501;
2759 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002760 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2761 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002762
2763 end:
2764 return ret;
2765}
2766
Christopher Fauletc18fc232020-10-06 17:41:36 +02002767/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2768 * error. This function takes care of incrementing stats and tracked counters.
2769 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002770static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002771{
2772 struct session *sess = h1c->conn->owner;
2773 int ret = 1;
2774
2775 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2776 goto end;
2777
2778 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002779 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002780 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2781 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002782 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002783 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002784
2785 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002786 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2787 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002788 sess_log(sess);
2789 end:
2790 return ret;
2791}
2792
2793
Christopher Faulet51dbc942018-09-13 09:05:15 +02002794/*
2795 * Attempt to read data, and subscribe if none available
2796 */
2797static int h1_recv(struct h1c *h1c)
2798{
2799 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002800 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002801 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002802
Christopher Faulet6b81df72019-10-01 22:08:43 +02002803 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2804
2805 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2806 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002807 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002808 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002809
Christopher Fauletae635762020-09-21 11:47:16 +02002810 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2811 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002812 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002813 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002814
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002815 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2816 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002817 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002818 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002819 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002820
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002821 /*
2822 * If we only have a small amount of data, realign it,
2823 * it's probably cheaper than doing 2 recv() calls.
2824 */
2825 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002826 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002827
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002828 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002829 if (!h1c->h1s ||
2830 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2831 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002832 flags |= CO_RFL_READ_ONCE;
2833
Willy Tarreau45f2b892018-12-05 07:59:27 +01002834 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002835 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002836 if (h1c->flags & H1C_F_IN_FULL) {
2837 h1c->flags &= ~H1C_F_IN_FULL;
2838 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2839 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002840
2841 if (!b_data(&h1c->ibuf)) {
2842 /* try to pre-align the buffer like the rxbufs will be
2843 * to optimize memory copies.
2844 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002845 h1c->ibuf.head = sizeof(struct htx);
2846 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002847 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet41951ab2021-11-26 18:12:51 +01002848 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002849 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002850 if (max && !ret && h1_recv_allowed(h1c)) {
2851 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2852 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002853 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002854 else {
2855 h1_wake_stream_for_recv(h1c->h1s);
2856 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002857 }
2858
Christopher Faulet51dbc942018-09-13 09:05:15 +02002859 if (!b_data(&h1c->ibuf))
2860 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002861 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002862 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002863 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2864 }
2865
2866 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002867 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868}
2869
2870
2871/*
2872 * Try to send data if possible
2873 */
2874static int h1_send(struct h1c *h1c)
2875{
2876 struct connection *conn = h1c->conn;
2877 unsigned int flags = 0;
2878 size_t ret;
2879 int sent = 0;
2880
Christopher Faulet6b81df72019-10-01 22:08:43 +02002881 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2882
2883 if (conn->flags & CO_FL_ERROR) {
2884 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002885 b_reset(&h1c->obuf);
2886 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002887 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002888
2889 if (!b_data(&h1c->obuf))
2890 goto end;
2891
Christopher Faulet46230362019-10-17 16:04:20 +02002892 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002893 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002894 if (h1c->flags & H1C_F_CO_STREAMER)
2895 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002896
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002897 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002898 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002899 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002900 if (h1c->flags & H1C_F_OUT_FULL) {
2901 h1c->flags &= ~H1C_F_OUT_FULL;
2902 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2903 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01002904 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002905 b_del(&h1c->obuf, ret);
2906 sent = 1;
2907 }
2908
Christopher Faulet145aa472018-12-06 10:56:20 +01002909 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002910 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002911 /* error or output closed, nothing to send, clear the buffer to release it */
2912 b_reset(&h1c->obuf);
2913 }
2914
Christopher Faulet51dbc942018-09-13 09:05:15 +02002915 end:
Christopher Fauletc17c31c2022-02-01 18:25:06 +01002916 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002917 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002918
Christopher Faulet51dbc942018-09-13 09:05:15 +02002919 /* We're done, no more to send */
2920 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002921 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002922 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002923 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002924 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002925 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002926 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002927 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002928 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2929 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002930 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002931 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002932
Christopher Faulet6b81df72019-10-01 22:08:43 +02002933 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002934 return sent;
2935}
2936
Christopher Faulet51dbc942018-09-13 09:05:15 +02002937/* callback called on any event by the connection handler.
2938 * It applies changes and returns zero, or < 0 if it wants immediate
2939 * destruction of the connection.
2940 */
2941static int h1_process(struct h1c * h1c)
2942{
2943 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002944 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002945
Christopher Faulet6b81df72019-10-01 22:08:43 +02002946 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2947
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002948 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002949 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002950 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2951 !(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 +02002952 struct buffer *buf;
2953 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002954
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002955 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2956 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002957 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002958
2959 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002960 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002961 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2962 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002963 /* Try to match H2 preface before parsing the request headers. */
2964 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2965 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002966 if (h1c->flags & H1C_F_ST_ATTACHED) {
2967 /* Force the REOS here to be sure to release the CS.
2968 Here ATTACHED implies !READY, and h1s defined
2969 */
2970 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2971 h1s->flags |= H1S_F_REOS;
2972 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002973 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002974 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002975 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002976 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002977
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002978 /* Create the H1 stream if not already there */
2979 if (!h1s) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002980 h1s = h1c_frt_stream_new(h1c, NULL, h1c->conn->owner);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002981 if (!h1s) {
2982 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002983 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002984 goto no_parsing;
2985 }
2986 }
2987
2988 if (h1s->sess->t_idle == -1)
2989 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2990
2991 /* Get the stream rxbuf */
2992 buf = h1_get_buf(h1c, &h1s->rxbuf);
2993 if (!buf) {
2994 h1c->flags |= H1C_F_IN_SALLOC;
2995 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2996 return 0;
2997 }
2998
2999 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003000 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003001 h1_release_buf(h1c, &h1s->rxbuf);
3002 h1_set_idle_expiration(h1c);
3003
3004 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003005 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003006 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003007 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01003008 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003009 }
3010 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003011 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003012 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003013 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003014 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01003015 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
3016 h1_handle_not_impl_err(h1c);
3017 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003018 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01003019 }
Christopher Fauletae635762020-09-21 11:47:16 +02003020 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003021 h1_send(h1c);
3022
Christopher Faulet75308302021-11-15 14:51:37 +01003023 /* H1 connection must be released ASAP if:
3024 * - an error occurred on the connection or the H1C or
3025 * - a read0 was received or
3026 * - a silent shutdown was emitted and all outgoing data sent
3027 */
3028 if ((conn->flags & CO_FL_ERROR) ||
3029 conn_xprt_read0_pending(conn) ||
3030 (h1c->flags & H1C_F_ST_ERROR) ||
3031 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003032 if (!(h1c->flags & H1C_F_ST_READY)) {
3033 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003034 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01003035 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003036 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003037 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003038 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003039 }
3040
3041 /* Handle pending error, if any (only possible on frontend connection) */
3042 if (h1c->flags & H1C_F_ERR_PENDING) {
3043 BUG_ON(h1c->flags & H1C_F_IS_BACK);
3044 if (h1_send_error(h1c))
3045 h1_send(h1c);
3046 }
Christopher Fauletae635762020-09-21 11:47:16 +02003047
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003048 /* If there is some pending outgoing data or error, just wait */
3049 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
3050 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01003051
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003052 /* Otherwise we can release the H1 connection */
3053 goto release;
3054 }
3055 else {
3056 /* Here there is still a H1 stream with a conn-stream.
3057 * Report the connection state at the stream level
3058 */
3059 if (conn_xprt_read0_pending(conn)) {
3060 h1s->flags |= H1S_F_REOS;
3061 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
3062 }
Willy Tarreau99bbdbc2022-03-17 17:10:36 +01003063 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) && !b_data(&h1c->ibuf)))
Christopher Fauletb041b232022-03-24 10:27:02 +01003064 h1s->endp->flags |= CS_EP_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003065 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01003066 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003067 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003068 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003069
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003070 if (!b_data(&h1c->ibuf))
3071 h1_release_buf(h1c, &h1c->ibuf);
3072
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003073 /* Check if a soft-stop is in progress.
3074 * Release idling front connection if this is the case.
3075 */
3076 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003077 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
William Dauchya9dd9012022-01-05 22:53:24 +01003078 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003079 h1c->flags & H1C_F_WAIT_NEXT_REQ) {
3080
3081 int send_close = 1;
3082 /* If a close-spread-time option is set, we want to avoid
3083 * closing all the active HTTP2 connections at once so we add a
3084 * random factor that will spread the closing.
3085 */
3086 if (tick_isset(global.close_spread_end)) {
3087 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3088 if (remaining_window) {
3089 /* This should increase the closing rate the
3090 * further along the window we are.
3091 */
3092 send_close = (remaining_window <= statistical_prng_range(global.close_spread_time));
3093 }
3094 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003095 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3096 send_close = 0; /* let the client close his connection himself */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003097 if (send_close)
3098 goto release;
3099 }
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003100 }
3101 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003102
3103 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
3104 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
3105 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003106 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003107
Christopher Faulet47365272018-10-31 17:40:50 +01003108 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02003109 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003110 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003111 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01003112
3113 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003114 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003115 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003116 * attached CS first. Here, the H1C must not be READY */
3117 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
3118
3119 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
Christopher Fauletb041b232022-03-24 10:27:02 +01003120 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003121 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletb041b232022-03-24 10:27:02 +01003122 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003123 h1_alert(h1s);
3124 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3125 }
3126 else {
3127 h1_release(h1c);
3128 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
3129 }
Christopher Faulet539e0292018-11-19 10:40:09 +01003130 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003131}
3132
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003133struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003134{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003135 struct connection *conn;
3136 struct tasklet *tl = (struct tasklet *)t;
3137 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003138 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003139 int ret = 0;
3140
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003141 if (state & TASK_F_USR1) {
3142 /* the tasklet was idling on an idle connection, it might have
3143 * been stolen, let's be careful!
3144 */
3145 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3146 if (tl->context == NULL) {
3147 /* The connection has been taken over by another thread,
3148 * we're no longer responsible for it, so just free the
3149 * tasklet, and do nothing.
3150 */
3151 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3152 tasklet_free(tl);
3153 return NULL;
3154 }
3155 conn = h1c->conn;
3156 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003157
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003158 /* Remove the connection from the list, to be sure nobody attempts
3159 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003160 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003161 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3162 if (conn_in_list)
3163 conn_delete_from_tree(&conn->hash_node->node);
3164
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003165 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003166 } else {
3167 /* we're certain the connection was not in an idle list */
3168 conn = h1c->conn;
3169 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3170 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003171 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003172
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003173 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003174 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003175 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003176 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003177 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003178 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003179
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003180 /* If we were in an idle list, we want to add it back into it,
3181 * unless h1_process() returned -1, which mean it has destroyed
3182 * the connection (testing !ret is enough, if h1_process() wasn't
3183 * called then ret will be 0 anyway.
3184 */
Willy Tarreau74163142021-03-13 11:30:19 +01003185 if (ret < 0)
3186 t = NULL;
3187
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003188 if (!ret && conn_in_list) {
3189 struct server *srv = objt_server(conn->target);
3190
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003191 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003192 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003193 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003194 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003195 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003196 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003197 }
Willy Tarreau74163142021-03-13 11:30:19 +01003198 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003199}
3200
Christopher Faulet51dbc942018-09-13 09:05:15 +02003201static int h1_wake(struct connection *conn)
3202{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003203 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003204 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003205
Christopher Faulet6b81df72019-10-01 22:08:43 +02003206 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3207
Christopher Faulet539e0292018-11-19 10:40:09 +01003208 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003209 ret = h1_process(h1c);
3210 if (ret == 0) {
3211 struct h1s *h1s = h1c->h1s;
3212
Christopher Fauletad4daf62021-01-21 17:49:01 +01003213 if (h1c->flags & H1C_F_ST_ATTACHED)
3214 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003215 }
3216 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003217}
3218
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003219/* Connection timeout management. The principle is that if there's no receipt
3220 * nor sending for a certain amount of time, the connection is closed.
3221 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003222struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003223{
3224 struct h1c *h1c = context;
3225 int expired = tick_is_expired(t->expire, now_ms);
3226
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003227 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003228
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003229 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003230 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003231 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003232
3233 /* Somebody already stole the connection from us, so we should not
3234 * free it, we just have to free the task.
3235 */
3236 if (!t->context) {
3237 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003238 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003239 goto do_leave;
3240 }
3241
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003242 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003243 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003244 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003245 return t;
3246 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003247
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003248 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003249 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003250 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003251 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003252 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003253 t->expire = TICK_ETERNITY;
3254 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3255 return t;
3256 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003257
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003258 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003259 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3260 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003261 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003262 if (h1_handle_req_tout(h1c))
3263 h1_send(h1c);
3264 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3265 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003266 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003267 return t;
3268 }
3269 }
3270
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003271 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003272 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003273 * attached CS first. Here, the H1C must not be READY */
Christopher Fauletb041b232022-03-24 10:27:02 +01003274 h1c->h1s->endp->flags |= (CS_EP_EOS|CS_EP_ERROR);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003275 h1_alert(h1c->h1s);
3276 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003277 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003278 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3279 return t;
3280 }
3281
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003282 /* We're about to destroy the connection, so make sure nobody attempts
3283 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003284 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003285 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003286 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003287
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003288 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003289 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003290
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003291 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003292 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003293
3294 if (!h1c) {
3295 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003296 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003297 return NULL;
3298 }
3299
3300 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003301 h1_release(h1c);
3302 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003303 return NULL;
3304}
3305
Christopher Faulet51dbc942018-09-13 09:05:15 +02003306/*******************************************/
3307/* functions below are used by the streams */
3308/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003309
Christopher Faulet51dbc942018-09-13 09:05:15 +02003310/*
3311 * Attach a new stream to a connection
3312 * (Used for outgoing connections)
3313 */
Christopher Faulete00ad352021-12-16 14:44:31 +01003314static int h1_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003315{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003316 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003317 struct h1s *h1s;
3318
Christopher Faulet6b81df72019-10-01 22:08:43 +02003319 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003320 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003321 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3322 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003323 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003324
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003325 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003326 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003327 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3328 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003329 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003330
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003331 /* the connection is not idle anymore, let's mark this */
3332 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003333 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003334
Christopher Faulet6b81df72019-10-01 22:08:43 +02003335 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulete00ad352021-12-16 14:44:31 +01003336 return 0;
Christopher Faulet26a26432021-01-27 11:27:50 +01003337 err:
Christopher Faulet26a26432021-01-27 11:27:50 +01003338 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 +01003339 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003340}
3341
3342/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3343 * this mux, it's easy as we can only store a single conn_stream.
3344 */
Christopher Faulet64b8d332022-04-01 13:21:41 +02003345static struct conn_stream *h1_get_first_cs(const struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003346{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003347 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003348 struct h1s *h1s = h1c->h1s;
3349
3350 if (h1s)
3351 return h1s->cs;
3352
3353 return NULL;
3354}
3355
Christopher Faulet73c12072019-04-08 11:23:22 +02003356static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003357{
Christopher Faulet73c12072019-04-08 11:23:22 +02003358 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003359
Christopher Faulet6b81df72019-10-01 22:08:43 +02003360 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet7c452cc2022-04-14 11:08:26 +02003361 if (!h1c->h1s || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003362 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003363}
3364
3365/*
3366 * Detach the stream from the connection and possibly release the connection.
3367 */
3368static void h1_detach(struct conn_stream *cs)
3369{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003370 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003371 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003372 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003373 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003374
Christopher Faulet6b81df72019-10-01 22:08:43 +02003375 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3376
Christopher Faulet6b81df72019-10-01 22:08:43 +02003377 if (!h1s) {
3378 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003379 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003380 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003381
Olivier Houchardf502aca2018-12-14 19:42:40 +01003382 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003383 h1c = h1s->h1c;
3384 h1s->cs = NULL;
3385
Christopher Faulet42849b02020-10-05 11:35:17 +02003386 sess->accept_date = date;
3387 sess->tv_accept = now;
3388 sess->t_handshake = 0;
3389 sess->t_idle = -1;
3390
Olivier Houchard8a786902018-12-15 16:05:40 +01003391 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3392 h1s_destroy(h1s);
3393
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003394 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 +02003395 /* If there are any excess server data in the input buffer,
3396 * release it and close the connection ASAP (some data may
3397 * remain in the output buffer). This happens if a server sends
3398 * invalid responses. So in such case, we don't want to reuse
3399 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003400 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003401 if (b_data(&h1c->ibuf)) {
3402 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003403 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003404 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003405 goto release;
3406 }
Christopher Faulet03627242019-07-19 11:34:08 +02003407
Christopher Faulet08016ab2020-07-01 16:10:06 +02003408 if (h1c->conn->flags & CO_FL_PRIVATE) {
3409 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003410 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3411 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003412 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003413 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003414 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003415 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003416 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003417 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003418 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3419 goto end;
3420 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003421 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003422 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003423 if (h1c->conn->owner == sess)
3424 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003425
3426 /* mark that the tasklet may lose its context to another thread and
3427 * that the handler needs to check it under the idle conns lock.
3428 */
3429 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003430 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003431 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3432
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003433 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003434 /* The server doesn't want it, let's kill the connection right away */
3435 h1c->conn->mux->destroy(h1c);
3436 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3437 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003438 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003439 /* At this point, the connection has been added to the
3440 * server idle list, so another thread may already have
3441 * hijacked it, so we can't do anything with it.
3442 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003443 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003444 }
3445 }
3446
Christopher Fauletf1204b82019-07-19 14:51:06 +02003447 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003448 /* 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 +01003449 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003450 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003451 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003452 !h1c->conn->owner) {
3453 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003454 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003455 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003456 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003457 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003458 /* If we have a new request, process it immediately or
3459 * subscribe for reads waiting for new data
3460 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003461 if (unlikely(b_data(&h1c->ibuf))) {
3462 if (h1_process(h1c) == -1)
3463 goto end;
3464 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003465 else
3466 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3467 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003468 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003469 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003470 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003471 end:
3472 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003473}
3474
3475
Christopher Faulet07976562022-03-31 11:05:05 +02003476static void h1_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003477{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003478 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet7f366362019-04-08 10:51:20 +02003479 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003480
3481 if (!h1s)
3482 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003483 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003484
Christopher Faulet99293b02021-11-10 10:30:15 +01003485 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003486
Christopher Faulete9e48202022-03-22 18:13:29 +01003487 if (cs->endp->flags & CS_EP_SHR)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003488 goto end;
Christopher Faulete9e48202022-03-22 18:13:29 +01003489 if (cs->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003490 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3491 goto do_shutr;
3492 }
3493 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3494 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003495 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003496 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003497
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003498 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3499 /* Here attached is implicit because there is CS */
3500 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3501 goto end;
3502 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003503 if (h1s->flags & H1S_F_WANT_KAL) {
3504 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003505 goto end;
3506 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003507
Christopher Faulet7f366362019-04-08 10:51:20 +02003508 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003509 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
Christopher Faulete9e48202022-03-22 18:13:29 +01003510 if (cs->endp->flags & CS_EP_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003511 goto end;
Christopher Faulet897d6122021-12-17 17:28:35 +01003512
3513 if (conn_xprt_ready(h1c->conn) && h1c->conn->xprt->shutr)
Christopher Faulet07976562022-03-31 11:05:05 +02003514 h1c->conn->xprt->shutr(h1c->conn, h1c->conn->xprt_ctx, (mode == CO_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003515 end:
3516 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003517}
3518
Christopher Faulet07976562022-03-31 11:05:05 +02003519static void h1_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003520{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003521 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003522 struct h1c *h1c;
3523
3524 if (!h1s)
3525 return;
3526 h1c = h1s->h1c;
3527
Christopher Faulet99293b02021-11-10 10:30:15 +01003528 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003529
Christopher Faulete9e48202022-03-22 18:13:29 +01003530 if (cs->endp->flags & CS_EP_SHW)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003531 goto end;
Christopher Faulete9e48202022-03-22 18:13:29 +01003532 if (cs->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003533 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003534 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003535 }
3536 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3537 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3538 goto do_shutw;
3539 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003540
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003541 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3542 /* Here attached is implicit because there is CS */
3543 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3544 goto end;
3545 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003546 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3547 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003548 goto end;
3549 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003550
Christopher Faulet7f366362019-04-08 10:51:20 +02003551 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003552 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet07976562022-03-31 11:05:05 +02003553 if (mode != CO_SHW_NORMAL)
Christopher Fauleta85c5222021-10-27 15:36:38 +02003554 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3555
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003556 if (!b_data(&h1c->obuf))
Christopher Faulet897d6122021-12-17 17:28:35 +01003557 h1_shutw_conn(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003558 end:
3559 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003560}
3561
Christopher Fauleta85c5222021-10-27 15:36:38 +02003562static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003563{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003564 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003565
Willy Tarreau62592ad2021-03-26 09:09:42 +01003566 if (conn->flags & CO_FL_SOCK_WR_SH)
3567 return;
3568
Christopher Fauleta85c5222021-10-27 15:36:38 +02003569 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003570 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003571 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3572 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003573}
3574
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003575/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3576 * The <es> pointer is not allowed to differ from the one passed to the
3577 * subscribe() call. It always returns zero.
3578 */
3579static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003580{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003581 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003582
3583 if (!h1s)
3584 return 0;
3585
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003586 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003587 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003588
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003589 es->events &= ~event_type;
3590 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003591 h1s->subs = NULL;
3592
3593 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003594 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003595
3596 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003597 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003598
Christopher Faulet51dbc942018-09-13 09:05:15 +02003599 return 0;
3600}
3601
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003602/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3603 * event subscriber <es> is not allowed to change from a previous call as long
3604 * as at least one event is still subscribed. The <event_type> must only be a
3605 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3606 * the conn_stream <cs> was already detached, in which case it will return -1.
3607 */
3608static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003609{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003610 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51bb1852019-09-04 10:22:34 +02003611 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003612
3613 if (!h1s)
3614 return -1;
3615
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003616 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003617 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003618
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003619 es->events |= event_type;
3620 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003621
3622 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003623 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003624
3625
Christopher Faulet6b81df72019-10-01 22:08:43 +02003626 if (event_type & SUB_RETRY_SEND) {
3627 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003628 /*
3629 * If the conn_stream attempt to subscribe, and the
3630 * mux isn't subscribed to the connection, then it
3631 * probably means the connection wasn't established
3632 * yet, so we have to subscribe.
3633 */
3634 h1c = h1s->h1c;
3635 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3636 h1c->conn->xprt->subscribe(h1c->conn,
3637 h1c->conn->xprt_ctx,
3638 SUB_RETRY_SEND,
3639 &h1c->wait_event);
3640 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003641 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003642}
3643
Christopher Faulet564e39c2021-09-21 15:50:55 +02003644/* Called from the upper layer, to receive data.
3645 *
3646 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3647 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3648 * means the caller wants to flush input data (from the mux buffer and the
3649 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3650 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3651 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3652 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3653 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3654 * copy as much data as possible.
3655 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003656static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3657{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003658 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet539e0292018-11-19 10:40:09 +01003659 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003660 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003661 size_t ret = 0;
3662
Willy Tarreau022e5e52020-09-10 09:33:15 +02003663 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003664
3665 /* Do nothing for now if not READY */
3666 if (!(h1c->flags & H1C_F_ST_READY)) {
3667 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3668 goto end;
3669 }
3670
Christopher Faulet539e0292018-11-19 10:40:09 +01003671 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003672 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003673 else
3674 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003675
Christopher Faulet186354b2022-04-13 12:09:36 +02003676 if ((flags & CO_RFL_BUF_FLUSH) && (h1s->endp->flags & CS_EP_MAY_SPLICE)) {
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003677 h1c->flags |= H1C_F_WANT_SPLICE;
3678 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 +02003679 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003680 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003681 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 +01003682 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003683 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003684
3685 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003686 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003687 return ret;
3688}
3689
3690
3691/* Called from the upper layer, to send data */
3692static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3693{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003694 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003695 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003696 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003697
3698 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003699 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003700 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003701
Willy Tarreau022e5e52020-09-10 09:33:15 +02003702 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003703
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003704 /* If we're not connected yet, or we're waiting for a handshake, stop
3705 * now, as we don't want to remove everything from the channel buffer
3706 * before we're sure we can send it.
3707 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003708 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003709 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003710 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003711 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003712
Christopher Fauletdea24742021-01-22 15:12:30 +01003713 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet186354b2022-04-13 12:09:36 +02003714 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003715 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 +01003716 return 0;
3717 }
3718
Christopher Faulet46230362019-10-17 16:04:20 +02003719 /* Inherit some flags from the upper layer */
3720 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3721 if (flags & CO_SFL_MSG_MORE)
3722 h1c->flags |= H1C_F_CO_MSG_MORE;
3723 if (flags & CO_SFL_STREAMER)
3724 h1c->flags |= H1C_F_CO_STREAMER;
3725
Christopher Fauletc31872f2019-06-04 22:09:36 +02003726 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003727 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003728
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003729 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003730 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003731 else
3732 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003733
3734 if ((count - ret) > 0)
3735 h1c->flags |= H1C_F_CO_MSG_MORE;
3736
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003737 if (!ret)
3738 break;
3739 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003740 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003741 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003742 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003743 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003744
3745 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet186354b2022-04-13 12:09:36 +02003746 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003747 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 +01003748 }
3749
Christopher Faulet7a145d62020-08-05 11:31:16 +02003750 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003751 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003752 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003753}
3754
Willy Tarreaue5733232019-05-22 19:24:06 +02003755#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003756/* Send and get, using splicing */
3757static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3758{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003759 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003760 struct h1c *h1c = h1s->h1c;
3761 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003762 int ret = 0;
3763
Christopher Faulet897d6122021-12-17 17:28:35 +01003764 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003765
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003766 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003767 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003768 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 +02003769 goto end;
3770 }
3771
Christopher Fauletcf307562021-07-26 10:49:39 +02003772 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003773 if (h1s_data_pending(h1s)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003774 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003775 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003776 }
3777
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003778 if (!h1_recv_allowed(h1c)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003779 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet0060be92020-07-03 15:02:25 +02003780 goto end;
3781 }
3782
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003783 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003784 count = h1m->curr_len;
Christopher Faulet897d6122021-12-17 17:28:35 +01003785 ret = h1c->conn->xprt->rcv_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003786 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003787 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003788 if (ret > h1m->curr_len) {
3789 h1s->flags |= H1S_F_PARSING_ERROR;
3790 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet186354b2022-04-13 12:09:36 +02003791 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003792 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003793 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 +01003794 goto end;
3795 }
3796 h1m->curr_len -= ret;
3797 if (!h1m->curr_len) {
3798 h1m->state = H1_MSG_DONE;
3799 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003800 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003801 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003802 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003803 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
3804 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_in, ret);
Christopher Faulete18777b2019-04-16 16:46:36 +02003805 }
3806
Christopher Faulet1be55f92018-10-02 15:59:23 +02003807 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003808 if (conn_xprt_read0_pending(h1c->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003809 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003810 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003811 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003812 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003813
Christopher Faulet94d35102021-04-09 11:58:49 +02003814 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003815 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet186354b2022-04-13 12:09:36 +02003816 h1s->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003817 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003818 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, h1c->conn, h1s);
3819 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet94d35102021-04-09 11:58:49 +02003820 }
Christopher Faulet27182292020-07-03 15:08:49 +02003821 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003822
Christopher Faulet897d6122021-12-17 17:28:35 +01003823 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003824 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003825}
3826
3827static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3828{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003829 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003830 struct h1c *h1c = h1s->h1c;
3831 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003832 int ret = 0;
3833
Christopher Faulet897d6122021-12-17 17:28:35 +01003834 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003835
Christopher Faulet140f1a52021-11-26 16:37:55 +01003836 if (b_data(&h1c->obuf)) {
3837 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003838 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, h1c->conn, h1s);
3839 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003840 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003841 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003842 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003843
Christopher Faulet897d6122021-12-17 17:28:35 +01003844 ret = h1c->conn->xprt->snd_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003845 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003846 if (ret > h1m->curr_len) {
3847 h1s->flags |= H1S_F_PROCESSING_ERROR;
3848 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet186354b2022-04-13 12:09:36 +02003849 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003850 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003851 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 +01003852 goto end;
3853 }
3854 h1m->curr_len -= ret;
3855 if (!h1m->curr_len) {
3856 h1m->state = H1_MSG_DONE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003857 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003858 }
3859 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003860 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
3861 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_out, ret);
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003862
3863 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003864 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003865 return ret;
3866}
3867#endif
3868
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003869static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3870{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003871 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003872 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003873
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003874 switch (mux_ctl) {
3875 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003876 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003877 ret |= MUX_STATUS_READY;
3878 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003879 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003880 if (output)
3881 *((int *)output) = h1c->errcode;
3882 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3883 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3884 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3885 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003886 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003887 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003888 default:
3889 return -1;
3890 }
3891}
3892
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003893/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003894static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003895{
3896 struct h1c *h1c = conn->ctx;
3897 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003898 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003899
Christopher Fauletf376a312019-01-04 15:16:06 +01003900 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3901 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003902 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3903 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3904 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3905 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3906
3907 if (h1s) {
3908 char *method;
3909
3910 if (h1s->meth < HTTP_METH_OTHER)
3911 method = http_known_methods[h1s->meth].ptr;
3912 else
3913 method = "UNKNOWN";
Christopher Faulet22050e02022-04-13 12:08:09 +02003914 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 +01003915 " .meth=%s status=%d",
Christopher Faulet22050e02022-04-13 12:08:09 +02003916 h1s, h1s->flags, h1s->endp->flags,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003917 h1m_state_str(h1s->req.state),
3918 h1m_state_str(h1s->res.state), method, h1s->status);
Christopher Faulet22050e02022-04-13 12:08:09 +02003919 if (h1s->endp) {
3920 chunk_appendf(msg, " .endp.flg=0x%08x", h1s->endp->flags);
3921 if (!(h1s->endp->flags & CS_EP_ORPHAN))
3922 chunk_appendf(msg, " .cs.flg=0x%08x .cs.app=%p",
3923 h1s->cs->flags, h1s->cs->app);
3924 }
Willy Tarreau150c4f82021-01-20 17:05:58 +01003925 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3926 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003927 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3928 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3929 h1s->subs->tasklet->calls,
3930 h1s->subs->tasklet->context);
3931 if (h1s->subs->tasklet->calls >= 1000000)
3932 ret = 1;
3933 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3934 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003935 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003936 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003937 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003938}
3939
3940
3941/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3942static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3943{
3944 struct h1_hdr_entry *entry;
3945
3946 /* Be sure there is a non-empty <to> */
3947 if (!strlen(to)) {
3948 memprintf(err, "expect <to>");
3949 return -1;
3950 }
3951
3952 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003953 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003954 memprintf(err, "<from> and <to> must not differ execpt the case");
3955 return -1;
3956 }
3957
3958 /* Be sure <from> does not already existsin the tree */
3959 if (ebis_lookup(&hdrs_map.map, from)) {
3960 memprintf(err, "duplicate entry '%s'", from);
3961 return -1;
3962 }
3963
3964 /* Create the entry and insert it in the tree */
3965 entry = malloc(sizeof(*entry));
3966 if (!entry) {
3967 memprintf(err, "out of memory");
3968 return -1;
3969 }
3970
3971 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003972 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003973 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003974 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003975 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003976 free(entry);
3977 memprintf(err, "out of memory");
3978 return -1;
3979 }
3980 ebis_insert(&hdrs_map.map, &entry->node);
3981 return 0;
3982}
3983
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003984/* Migrate the the connection to the current thread.
3985 * Return 0 if successful, non-zero otherwise.
3986 * Expected to be called with the old thread lock held.
3987 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003988static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003989{
3990 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003991 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003992
3993 if (fd_takeover(conn->handle.fd, conn) != 0)
3994 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003995
3996 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3997 /* We failed to takeover the xprt, even if the connection may
3998 * still be valid, flag it as error'd, as we have already
3999 * taken over the fd, and wake the tasklet, so that it will
4000 * destroy it.
4001 */
4002 conn->flags |= CO_FL_ERROR;
4003 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
4004 return -1;
4005 }
4006
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004007 if (h1c->wait_event.events)
4008 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
4009 h1c->wait_event.events, &h1c->wait_event);
4010 /* To let the tasklet know it should free itself, and do nothing else,
4011 * set its context to NULL.
4012 */
4013 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02004014 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02004015
4016 task = h1c->task;
4017 if (task) {
4018 task->context = NULL;
4019 h1c->task = NULL;
4020 __ha_barrier_store();
4021 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004022
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004023 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004024 if (!h1c->task) {
4025 h1_release(h1c);
4026 return -1;
4027 }
4028 h1c->task->process = h1_timeout_task;
4029 h1c->task->context = h1c;
4030 }
4031 h1c->wait_event.tasklet = tasklet_new();
4032 if (!h1c->wait_event.tasklet) {
4033 h1_release(h1c);
4034 return -1;
4035 }
4036 h1c->wait_event.tasklet->process = h1_io_cb;
4037 h1c->wait_event.tasklet->context = h1c;
4038 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
4039 SUB_RETRY_RECV, &h1c->wait_event);
4040
4041 return 0;
4042}
4043
4044
Christopher Faulet98fbe952019-07-22 16:18:24 +02004045static void h1_hdeaders_case_adjust_deinit()
4046{
4047 struct ebpt_node *node, *next;
4048 struct h1_hdr_entry *entry;
4049
4050 node = ebpt_first(&hdrs_map.map);
4051 while (node) {
4052 next = ebpt_next(node);
4053 ebpt_delete(node);
4054 entry = container_of(node, struct h1_hdr_entry, node);
4055 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01004056 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004057 free(entry);
4058 node = next;
4059 }
4060 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004061}
4062
Christopher Faulet98fbe952019-07-22 16:18:24 +02004063static int cfg_h1_headers_case_adjust_postparser()
4064{
4065 FILE *file = NULL;
4066 char *c, *key_beg, *key_end, *value_beg, *value_end;
4067 char *err;
4068 int rc, line = 0, err_code = 0;
4069
4070 if (!hdrs_map.name)
4071 goto end;
4072
4073 file = fopen(hdrs_map.name, "r");
4074 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004075 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004076 hdrs_map.name);
4077 err_code |= ERR_ALERT | ERR_FATAL;
4078 goto end;
4079 }
4080
4081 /* now parse all lines. The file may contain only two header name per
4082 * line, separated by spaces. All heading and trailing spaces will be
4083 * ignored. Lines starting with a # are ignored.
4084 */
4085 while (fgets(trash.area, trash.size, file) != NULL) {
4086 line++;
4087 c = trash.area;
4088
4089 /* strip leading spaces and tabs */
4090 while (*c == ' ' || *c == '\t')
4091 c++;
4092
4093 /* ignore emptu lines, or lines beginning with a dash */
4094 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
4095 continue;
4096
4097 /* look for the end of the key */
4098 key_beg = c;
4099 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
4100 c++;
4101 key_end = c;
4102
4103 /* strip middle spaces and tabs */
4104 while (*c == ' ' || *c == '\t')
4105 c++;
4106
4107 /* look for the end of the value, it is the end of the line */
4108 value_beg = c;
4109 while (*c && *c != '\n' && *c != '\r')
4110 c++;
4111 value_end = c;
4112
4113 /* trim possibly trailing spaces and tabs */
4114 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
4115 value_end--;
4116
4117 /* set final \0 and check entries */
4118 *key_end = '\0';
4119 *value_end = '\0';
4120
4121 err = NULL;
4122 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
4123 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004124 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004125 hdrs_map.name, err, line);
4126 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004127 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004128 goto end;
4129 }
4130 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004131 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004132 hdrs_map.name, err, line);
4133 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004134 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004135 }
4136 }
4137
4138 end:
4139 if (file)
4140 fclose(file);
4141 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4142 return err_code;
4143}
4144
4145
4146/* config parser for global "h1-outgoing-header-case-adjust" */
4147static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004148 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004149 char **err)
4150{
4151 if (too_many_args(2, args, err, NULL))
4152 return -1;
4153 if (!*(args[1]) || !*(args[2])) {
4154 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4155 return -1;
4156 }
4157 return add_hdr_case_adjust(args[1], args[2], err);
4158}
4159
4160/* config parser for global "h1-outgoing-headers-case-adjust-file" */
4161static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004162 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004163 char **err)
4164{
4165 if (too_many_args(1, args, err, NULL))
4166 return -1;
4167 if (!*(args[1])) {
4168 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4169 return -1;
4170 }
4171 free(hdrs_map.name);
4172 hdrs_map.name = strdup(args[1]);
4173 return 0;
4174}
4175
4176
4177/* config keyword parsers */
4178static struct cfg_kw_list cfg_kws = {{ }, {
4179 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4180 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4181 { 0, NULL, NULL },
4182 }
4183};
4184
4185INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4186REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4187
4188
Christopher Faulet51dbc942018-09-13 09:05:15 +02004189/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004190/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004191/****************************************/
4192
4193/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004194static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004195 .init = h1_init,
4196 .wake = h1_wake,
4197 .attach = h1_attach,
4198 .get_first_cs = h1_get_first_cs,
4199 .detach = h1_detach,
4200 .destroy = h1_destroy,
4201 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004202 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004203 .rcv_buf = h1_rcv_buf,
4204 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004205#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004206 .rcv_pipe = h1_rcv_pipe,
4207 .snd_pipe = h1_snd_pipe,
4208#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004209 .subscribe = h1_subscribe,
4210 .unsubscribe = h1_unsubscribe,
4211 .shutr = h1_shutr,
4212 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004213 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004214 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004215 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004216 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004217 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004218};
4219
Christopher Faulet3f612f72021-02-05 16:44:21 +01004220static const struct mux_ops mux_h1_ops = {
4221 .init = h1_init,
4222 .wake = h1_wake,
4223 .attach = h1_attach,
4224 .get_first_cs = h1_get_first_cs,
4225 .detach = h1_detach,
4226 .destroy = h1_destroy,
4227 .avail_streams = h1_avail_streams,
4228 .used_streams = h1_used_streams,
4229 .rcv_buf = h1_rcv_buf,
4230 .snd_buf = h1_snd_buf,
4231#if defined(USE_LINUX_SPLICE)
4232 .rcv_pipe = h1_rcv_pipe,
4233 .snd_pipe = h1_snd_pipe,
4234#endif
4235 .subscribe = h1_subscribe,
4236 .unsubscribe = h1_unsubscribe,
4237 .shutr = h1_shutr,
4238 .shutw = h1_shutw,
4239 .show_fd = h1_show_fd,
4240 .ctl = h1_ctl,
4241 .takeover = h1_takeover,
4242 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4243 .name = "H1",
4244};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004245
Christopher Faulet3f612f72021-02-05 16:44:21 +01004246/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4247static struct mux_proto_list mux_proto_h1 =
4248 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4249static struct mux_proto_list mux_proto_http =
4250 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004251
Christopher Faulet3f612f72021-02-05 16:44:21 +01004252INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4253INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004254
Christopher Faulet51dbc942018-09-13 09:05:15 +02004255/*
4256 * Local variables:
4257 * c-indent-level: 8
4258 * c-basic-offset: 8
4259 * End:
4260 */