blob: d7fd3da8f8da62f28d384fee0b4d50491868182f [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>
Willy Tarreau5413a872020-06-02 19:33:08 +020019#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020020#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020021#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020023#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/istbuf.h>
25#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020026#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020027#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020028#include <haproxy/session-t.h>
Christopher Fauletb4c584e2021-11-26 17:37:07 +010029#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020031#include <haproxy/stream_interface.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 Faulet99293b02021-11-10 10:30:15 +0100431 if (h1s->cs)
432 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
433 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200434
435 if (src->verbosity == H1_VERB_MINIMAL)
436 return;
437
438 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
439 if (src->level > TRACE_LEVEL_USER) {
440 if (src->verbosity == H1_VERB_COMPLETE ||
441 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
442 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
443 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
444 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
445 if (src->verbosity == H1_VERB_COMPLETE ||
446 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
447 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
448 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
449 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
450 }
451
452 /* Display htx info if defined (level > USER) */
453 if (src->level > TRACE_LEVEL_USER && htx) {
454 int full = 0;
455
456 /* Full htx info (level > STATE && verbosity > SIMPLE) */
457 if (src->level > TRACE_LEVEL_STATE) {
458 if (src->verbosity == H1_VERB_COMPLETE)
459 full = 1;
460 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
461 full = 1;
462 }
463
464 chunk_memcat(&trace_buf, "\n\t", 2);
465 htx_dump(&trace_buf, htx, full);
466 }
467}
468
469
Christopher Faulet51dbc942018-09-13 09:05:15 +0200470/*****************************************************/
471/* functions below are for dynamic buffer management */
472/*****************************************************/
473/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100474 * Indicates whether or not we may receive data. The rules are the following :
475 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200476 * must not attempt to receive
477 * - if we are waiting for the connection establishment, we must not attempt
478 * to receive
479 * - if an error was detected on the stream we must not attempt to receive
480 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100481 * - if the input buffer failed to be allocated or is full , we must not try
482 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200483 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200484 * - otherwise must may not attempt to receive
485 */
486static inline int h1_recv_allowed(const struct h1c *h1c)
487{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100488 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100489 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 +0200490 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200491 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200492
Willy Tarreau2febb842020-07-31 09:15:43 +0200493 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
494 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 +0100495 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200496 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100497
Christopher Faulet119ac872020-09-30 17:33:22 +0200498 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
499 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
500 return 0;
501 }
502
Christopher Fauletd17ad822020-09-24 15:14:29 +0200503 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200504 return 1;
505
Christopher Faulet6b81df72019-10-01 22:08:43 +0200506 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 +0200507 return 0;
508}
509
510/*
511 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
512 * flags are used to figure what buffer was requested. It returns 1 if the
513 * allocation succeeds, in which case the connection is woken up, or 0 if it's
514 * impossible to wake up and we prefer to be woken up later.
515 */
516static int h1_buf_available(void *target)
517{
518 struct h1c *h1c = target;
519
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100520 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200521 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 +0200522 h1c->flags &= ~H1C_F_IN_ALLOC;
523 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200524 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200525 return 1;
526 }
527
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100528 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200529 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 +0200530 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200531 if (h1c->h1s)
532 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200533 return 1;
534 }
535
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100536 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200537 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
538 h1c->flags &= ~H1C_F_IN_SALLOC;
539 tasklet_wakeup(h1c->wait_event.tasklet);
540 return 1;
541 }
542
Christopher Faulet51dbc942018-09-13 09:05:15 +0200543 return 0;
544}
545
546/*
547 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
548 */
549static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
550{
551 struct buffer *buf = NULL;
552
Willy Tarreau2b718102021-04-21 07:32:39 +0200553 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100554 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200555 h1c->buf_wait.target = h1c;
556 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200557 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200558 }
559 return buf;
560}
561
562/*
563 * Release a buffer, if any, and try to wake up entities waiting in the buffer
564 * wait queue.
565 */
566static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
567{
568 if (bptr->size) {
569 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100570 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200571 }
572}
573
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100574/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100575 * 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 +0100576 * not. This flag is only set when no H1S is attached and when the previous
577 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100578 */
579static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200580{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100581 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200582
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100583 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200584}
585
Willy Tarreau00f18a32019-01-26 12:19:01 +0100586/* returns the number of streams still available on a connection */
587static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100588{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100589 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100590}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200591
Christopher Faulet7a145d62020-08-05 11:31:16 +0200592/* Refresh the h1c task timeout if necessary */
593static void h1_refresh_timeout(struct h1c *h1c)
594{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200595 int is_idle_conn = 0;
596
Christopher Faulet7a145d62020-08-05 11:31:16 +0200597 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100598 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200599 /* half-closed or dead connections : switch to clientfin/serverfin
600 * timeouts so that we don't hang too long on clients that have
601 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200602 */
603 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200604 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 +0200605 is_idle_conn = 1;
Christopher Fauletadcd7892020-10-05 17:13:05 +0200606 }
607 else if (b_data(&h1c->obuf)) {
608 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200609 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200610 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
611 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100612 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
613 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200614 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100615 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 +0200616 /* A frontend connection not yet ready could be treated the same way as an idle
617 * one in case of soft-close.
618 */
619 is_idle_conn = 1;
Christopher Faulet7a145d62020-08-05 11:31:16 +0200620 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200621 else {
622 /* alive back connections of front connections with a conn-stream attached */
623 h1c->task->expire = TICK_ETERNITY;
624 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
625 }
626
Christopher Fauletdbe57792020-10-05 17:50:58 +0200627 /* Finally set the idle expiration date if shorter */
628 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200629
630 if ((h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
631 is_idle_conn && tick_isset(global.close_spread_end)) {
632 /* If a soft-stop is in progress and a close-spread-time
633 * is set, we want to spread idle connection closing roughly
634 * evenly across the defined window. This should only
635 * act on idle frontend connections.
636 * If the window end is already in the past, we wake the
637 * timeout task up immediately so that it can be closed.
638 */
639 int remaining_window = tick_remain(now_ms, global.close_spread_end);
640 if (remaining_window) {
641 /* We don't need to reset the expire if it would
642 * already happen before the close window end.
643 */
644 if (tick_is_le(global.close_spread_end, h1c->task->expire)) {
645 /* Set an expire value shorter than the current value
646 * because the close spread window end comes earlier.
647 */
648 h1c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
649 TRACE_DEVEL("connection timeout set to value before close-spread window end", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
650 }
651 }
652 else {
653 /* We are past the soft close window end, wake the timeout
654 * task up immediately.
655 */
656 task_wakeup(h1c->task, TASK_WOKEN_TIMER);
657 }
658 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200659 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
660 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200661 }
662}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200663
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200664static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200665{
666 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
667 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
668 h1c->idle_exp = TICK_ETERNITY;
669 return;
670 }
671
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100672 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200673 if (!tick_isset(h1c->idle_exp)) {
674 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
675 !b_data(&h1c->ibuf) && /* No input data */
676 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
677 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
678 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
679 }
680 else {
681 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
682 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
683 }
684 }
685 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100686 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200687 if (!tick_isset(h1c->idle_exp)) {
688 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
689 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
690 }
691 }
692 else { // CS_ATTACHED or SHUTDOWN
693 h1c->idle_exp = TICK_ETERNITY;
694 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
695 }
696}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200697/*****************************************************************/
698/* functions below are dedicated to the mux setup and management */
699/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200700
701/* returns non-zero if there are input data pending for stream h1s. */
702static inline size_t h1s_data_pending(const struct h1s *h1s)
703{
704 const struct h1m *h1m;
705
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200706 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100707 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200708}
709
Christopher Faulet16df1782020-12-04 16:47:41 +0100710/* Creates a new conn-stream and the associate stream. <input> is used as input
711 * buffer for the stream. On success, it is transferred to the stream and the
712 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
713 * mux must still take care of it. However, there is nothing special to do
714 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
715 * b_free() on it is always safe. This function returns the conn-stream on
716 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200717static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100718{
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100719 struct h1c *h1c = h1s->h1c;
Christopher Faulet47365272018-10-31 17:40:50 +0100720
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100721 TRACE_ENTER(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100722
Christopher Fauletb669d682022-03-22 18:37:19 +0100723 if (h1s->flags & H1S_F_NOT_FIRST)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100724 h1s->endp->flags |= CS_EP_NOT_FIRST;
Christopher Fauletb669d682022-03-22 18:37:19 +0100725 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100726 h1s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +0100727
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100728 h1s->cs = cs_new_from_mux(h1s->endp, h1c->conn->owner, input);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100729 if (!h1s->cs) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100730 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100731 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200732 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200733
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100734 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
735 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100736
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100737 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
738 TRACE_LEAVE(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100739 return h1s->cs;
Christopher Faulet47365272018-10-31 17:40:50 +0100740
Christopher Faulet91449b02022-03-22 18:45:55 +0100741 err:
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100742 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100743 return NULL;
744}
745
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100746static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
747{
748 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
749
750 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100751 TRACE_ERROR("stream upgrade failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100752 goto err;
753 }
754
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100755 h1s->h1c->flags |= H1C_F_ST_READY;
756 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
757 return h1s->cs;
758
759 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100760 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100761 return NULL;
762}
763
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200764static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200765{
766 struct h1s *h1s;
767
Christopher Faulet6b81df72019-10-01 22:08:43 +0200768 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
769
Christopher Faulet51dbc942018-09-13 09:05:15 +0200770 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100771 if (!h1s) {
772 TRACE_ERROR("H1S allocation failure", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100773 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100774 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200775 h1s->h1c = h1c;
776 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200777 h1s->sess = NULL;
778 h1s->cs = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100779 h1s->endp = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100780 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100781 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200782 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100783 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200784
785 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100786 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200787
Christopher Faulet129817b2018-09-20 16:14:40 +0200788 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100789 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200790
791 h1s->status = 0;
792 h1s->meth = HTTP_METH_OTHER;
793
Christopher Faulet47365272018-10-31 17:40:50 +0100794 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
795 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100796 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100797
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200798 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
799 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200800
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200801 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100802 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200803 return NULL;
804}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100805
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100806static struct h1s *h1c_frt_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200807{
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200808 struct h1s *h1s;
809
810 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
811
812 h1s = h1s_new(h1c);
813 if (!h1s)
814 goto fail;
815
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100816 if (cs) {
Christopher Faulet070b91b2022-03-31 19:27:18 +0200817 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
818 goto fail;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100819 h1s->cs = cs;
820 h1s->endp = cs->endp;
821 }
822 else {
823 h1s->endp = cs_endpoint_new();
824 if (!h1s->endp)
825 goto fail;
826 h1s->endp->target = h1s;
827 h1s->endp->ctx = h1c->conn;
828 h1s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN);
829 }
830
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200831 h1s->sess = sess;
832
833 if (h1c->px->options2 & PR_O2_REQBUG_OK)
834 h1s->req.err_pos = -1;
835
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200836 h1c->idle_exp = TICK_ETERNITY;
837 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200838 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200839 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100840
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200841 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100842 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100843 pool_free(pool_head_h1s, h1s);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200844 return NULL;
845}
846
847static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
848{
849 struct h1s *h1s;
850
851 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
852
853 h1s = h1s_new(h1c);
854 if (!h1s)
855 goto fail;
856
Christopher Faulet070b91b2022-03-31 19:27:18 +0200857 if (cs_attach_mux(cs, h1s, h1c->conn) < 0)
858 goto fail;
859
Christopher Faulet10a86702021-04-07 14:18:11 +0200860 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200861 h1s->cs = cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100862 h1s->endp = cs->endp;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200863 h1s->sess = sess;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200864
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100865 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200866
867 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
868 h1s->res.err_pos = -1;
869
Christopher Faulet60fa0512021-11-26 18:10:39 +0100870 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100871 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100872
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200873 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
874 return h1s;
875
876 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100877 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +0200878 pool_free(pool_head_h1s, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100879 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200880}
881
882static void h1s_destroy(struct h1s *h1s)
883{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200884 if (h1s) {
885 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200886
Christopher Faulet6b81df72019-10-01 22:08:43 +0200887 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200888 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200889
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100890 if (h1s->subs)
891 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200892
Christopher Fauletd17ad822020-09-24 15:14:29 +0200893 h1_release_buf(h1c, &h1s->rxbuf);
894
Christopher Faulet10a86702021-04-07 14:18:11 +0200895 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100896 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200897 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
898 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200899 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100900 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100901 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 +0200902 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100903
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100904 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100905 !(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 +0100906 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100907 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100908 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100909 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
910 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200911 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100912 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100913 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200914 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100915
916 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100917 BUG_ON(h1s->endp && !(h1s->endp->flags & CS_EP_ORPHAN));
918 cs_endpoint_free(h1s->endp);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200919 pool_free(pool_head_h1s, h1s);
920 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200921}
922
923/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200924 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500925 * to the existing conn_stream (for outgoing connections or for incoming ones
926 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200927 * establishment). <input> is always used as Input buffer and may contain
928 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
929 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200930 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200931static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
932 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200933{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200934 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100935 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200936 void *conn_ctx = conn->ctx;
937
938 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200939
940 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100941 if (!h1c) {
942 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200943 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100944 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200945 h1c->conn = conn;
946 h1c->px = proxy;
947
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100948 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200949 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200950 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200951 h1c->obuf = BUF_NULL;
952 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200953 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200954
Willy Tarreau90f366b2021-02-20 11:49:49 +0100955 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200956 h1c->wait_event.tasklet = tasklet_new();
957 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200958 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200959 h1c->wait_event.tasklet->process = h1_io_cb;
960 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100961 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200962 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200963
Christopher Faulete9b70722019-04-08 10:46:02 +0200964 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200965 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100966 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
967 if (tick_isset(proxy->timeout.serverfin))
968 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100969
970 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
971 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100972 } else {
973 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
974 if (tick_isset(proxy->timeout.clientfin))
975 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200976
Christopher Faulet563c3452021-11-26 17:37:51 +0100977 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
978 &h1_stats_module);
979
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200980 LIST_APPEND(&mux_stopping_data[tid].list,
981 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100982 }
983 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200984 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100985 if (!t) {
986 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 +0100987 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100988 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100989
990 h1c->task = t;
991 t->process = h1_timeout_task;
992 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200993
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100994 t->expire = tick_add(now_ms, h1c->timeout);
995 }
996
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100997 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200998
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200999 if (h1c->flags & H1C_F_IS_BACK) {
1000 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +02001001 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
1002 goto fail;
1003 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001004 else if (conn_ctx) {
1005 /* Upgraded frontend connection (from TCP) */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001006 if (!h1c_frt_stream_new(h1c, conn_ctx, h1c->conn->owner))
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001007 goto fail;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001008
1009 /* Attach the CS but Not ready yet */
1010 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
1011 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
1012 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
1013 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001014
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001015 if (t) {
1016 h1_set_idle_expiration(h1c);
1017 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001018 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001019 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001020
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001021 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +01001022 if (b_data(&h1c->ibuf))
1023 tasklet_wakeup(h1c->wait_event.tasklet);
1024 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +02001025 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001026
Christopher Faulet60fa0512021-11-26 18:10:39 +01001027 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
Christopher Faulet3bca28c2021-11-26 18:12:04 +01001028 HA_ATOMIC_INC(&h1c->px_counters->total_conns);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001029
Christopher Faulet51dbc942018-09-13 09:05:15 +02001030 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001031 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001032 return 0;
1033
1034 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001035 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001036 if (h1c->wait_event.tasklet)
1037 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001038 pool_free(pool_head_h1c, h1c);
1039 fail_h1c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001040 if (!conn_is_back(conn))
1041 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001042 conn->ctx = conn_ctx; // restore saved context
1043 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001044 return -1;
1045}
1046
Christopher Faulet73c12072019-04-08 11:23:22 +02001047/* release function. This one should be called to free all resources allocated
1048 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +02001049 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001050static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001051{
Christopher Faulet61840e72019-04-15 09:33:32 +02001052 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001053
Christopher Faulet6b81df72019-10-01 22:08:43 +02001054 TRACE_POINT(H1_EV_H1C_END);
1055
Christopher Faulet51dbc942018-09-13 09:05:15 +02001056 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001057 /* The connection must be aattached to this mux to be released */
1058 if (h1c->conn && h1c->conn->ctx == h1c)
1059 conn = h1c->conn;
1060
Christopher Faulet6b81df72019-10-01 22:08:43 +02001061 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
1062
Christopher Faulet61840e72019-04-15 09:33:32 +02001063 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001064 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001065 /* Make sure we're no longer subscribed to anything */
1066 if (h1c->wait_event.events)
1067 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
1068 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001069 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001070 /* connection successfully upgraded to H2, this
1071 * mux was already released */
1072 return;
1073 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001074 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001075 sess_log(conn->owner); /* Log if the upgrade failed */
1076 }
1077
Olivier Houchard45c44372019-06-11 14:06:23 +02001078
Willy Tarreau2b718102021-04-21 07:32:39 +02001079 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001080 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001081
1082 h1_release_buf(h1c, &h1c->ibuf);
1083 h1_release_buf(h1c, &h1c->obuf);
1084
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001085 if (h1c->task) {
1086 h1c->task->context = NULL;
1087 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
1088 h1c->task = NULL;
1089 }
1090
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001091 if (h1c->wait_event.tasklet)
1092 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001093
Christopher Fauletf2824e62018-10-01 12:12:37 +02001094 h1s_destroy(h1c->h1s);
Christopher Faulete76b4f02021-10-27 15:42:13 +02001095 if (conn) {
1096 if (h1c->wait_event.events != 0)
1097 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1098 &h1c->wait_event);
1099 h1_shutw_conn(conn);
1100 }
Christopher Faulet60fa0512021-11-26 18:10:39 +01001101
1102 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001103 pool_free(pool_head_h1c, h1c);
1104 }
1105
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001106 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001107 if (!conn_is_back(conn))
1108 LIST_DEL_INIT(&conn->stopping_list);
1109
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001110 conn->mux = NULL;
1111 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001112 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001113
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001114 conn_stop_tracking(conn);
1115 conn_full_close(conn);
1116 if (conn->destroy_cb)
1117 conn->destroy_cb(conn);
1118 conn_free(conn);
1119 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001120}
1121
1122/******************************************************/
1123/* functions below are for the H1 protocol processing */
1124/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001125/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1126 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001127 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001128static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129{
Christopher Faulet570d1612018-11-26 11:13:57 +01001130 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001131
Christopher Faulet570d1612018-11-26 11:13:57 +01001132 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001133 (*(p + 5) > '1' ||
1134 (*(p + 5) == '1' && *(p + 7) >= '1')))
1135 h1m->flags |= H1_MF_VER_11;
1136}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001137
Christopher Faulet9768c262018-10-22 09:34:31 +02001138/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1139 * greater or equal to 1.1
1140 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001141static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001142{
Christopher Faulet570d1612018-11-26 11:13:57 +01001143 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001144
Christopher Faulet570d1612018-11-26 11:13:57 +01001145 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001146 (*(p + 5) > '1' ||
1147 (*(p + 5) == '1' && *(p + 7) >= '1')))
1148 h1m->flags |= H1_MF_VER_11;
1149}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001150
Christopher Fauletf2824e62018-10-01 12:12:37 +02001151/* Deduce the connection mode of the client connection, depending on the
1152 * configuration and the H1 message flags. This function is called twice, the
1153 * first time when the request is parsed and the second time when the response
1154 * is parsed.
1155 */
1156static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1157{
1158 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001159
1160 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001161 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001162 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001163 h1s->status == 101) {
1164 /* Either we've established an explicit tunnel, or we're
1165 * switching the protocol. In both cases, we're very unlikely to
1166 * understand the next protocols. We have to switch to tunnel
1167 * mode, so that we transfer the request and responses then let
1168 * this protocol pass unmodified. When we later implement
1169 * specific parsers for such protocols, we'll want to check the
1170 * Upgrade header which contains information about that protocol
1171 * for responses with status 101 (eg: see RFC2817 about TLS).
1172 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001173 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001174 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 +01001175 }
1176 else if (h1s->flags & H1S_F_WANT_KAL) {
1177 /* By default the client is in KAL mode. CLOSE mode mean
1178 * it is imposed by the client itself. So only change
1179 * KAL mode here. */
1180 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1181 /* no length known or explicit close => close */
1182 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001183 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 +01001184 }
1185 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1186 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001187 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001188 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001189 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 +01001190 }
1191 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001192 }
1193 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001194 /* Input direction: first pass */
1195 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1196 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001197 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001198 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 +01001199 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001200 }
1201
1202 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001203 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001204 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001205 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);
1206 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001207}
1208
1209/* Deduce the connection mode of the client connection, depending on the
1210 * configuration and the H1 message flags. This function is called twice, the
1211 * first time when the request is parsed and the second time when the response
1212 * is parsed.
1213 */
1214static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1215{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001216 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001217 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001218 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001219
Christopher Fauletf2824e62018-10-01 12:12:37 +02001220 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001221 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001222 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001223 h1s->status == 101) {
1224 /* Either we've established an explicit tunnel, or we're
1225 * switching the protocol. In both cases, we're very unlikely to
1226 * understand the next protocols. We have to switch to tunnel
1227 * mode, so that we transfer the request and responses then let
1228 * this protocol pass unmodified. When we later implement
1229 * specific parsers for such protocols, we'll want to check the
1230 * Upgrade header which contains information about that protocol
1231 * for responses with status 101 (eg: see RFC2817 about TLS).
1232 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001233 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001234 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 +01001235 }
1236 else if (h1s->flags & H1S_F_WANT_KAL) {
1237 /* By default the server is in KAL mode. CLOSE mode mean
1238 * it is imposed by haproxy itself. So only change KAL
1239 * mode here. */
1240 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1241 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1242 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1243 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001244 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 +01001245 }
1246 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001247 }
Christopher Faulet70033782018-12-05 13:50:11 +01001248 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001249 /* Output direction: first pass */
1250 if (h1m->flags & H1_MF_CONN_CLO) {
1251 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001252 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001253 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 +01001254 }
1255 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1256 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1257 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1258 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1259 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1260 /* no explicit keep-alive option httpclose/server-close => close */
1261 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001262 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 +01001263 }
Christopher Faulet70033782018-12-05 13:50:11 +01001264 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001265
1266 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001267 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001268 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001269 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);
1270 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001271}
1272
Christopher Fauletb992af02019-03-28 15:42:24 +01001273static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001274{
1275 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001276
1277 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1278 * token is found
1279 */
1280 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001281 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001282
1283 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001284 if (!(h1m->flags & H1_MF_VER_11)) {
1285 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 +01001286 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001287 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001288 }
1289 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001290 if (h1m->flags & H1_MF_VER_11) {
1291 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001292 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001293 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001294 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001295}
1296
Christopher Fauletb992af02019-03-28 15:42:24 +01001297static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001298{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001299 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1300 * token is found
1301 */
1302 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001303 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001304
1305 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001306 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001307 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1308 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 +01001309 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001310 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001311 }
1312 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001313 if (h1m->flags & H1_MF_VER_11) {
1314 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001315 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001316 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001317 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001318}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001319
Christopher Fauletb992af02019-03-28 15:42:24 +01001320static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001321{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001322 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001323 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001324 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001325 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001326}
1327
Christopher Fauletb992af02019-03-28 15:42:24 +01001328static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1329{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001330 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001331 h1_set_cli_conn_mode(h1s, h1m);
1332 else
1333 h1_set_srv_conn_mode(h1s, h1m);
1334
1335 if (!(h1m->flags & H1_MF_RESP))
1336 h1_update_req_conn_value(h1s, h1m, conn_val);
1337 else
1338 h1_update_res_conn_value(h1s, h1m, conn_val);
1339}
Christopher Faulete44769b2018-11-29 23:01:45 +01001340
Christopher Faulet98fbe952019-07-22 16:18:24 +02001341/* Try to adjust the case of the message header name using the global map
1342 * <hdrs_map>.
1343 */
1344static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1345{
1346 struct ebpt_node *node;
1347 struct h1_hdr_entry *entry;
1348
1349 /* No entry in the map, do nothing */
1350 if (eb_is_empty(&hdrs_map.map))
1351 return;
1352
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001353 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001354 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1355 return;
1356
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001357 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001358 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1359 return;
1360
1361 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1362 if (!node)
1363 return;
1364 entry = container_of(node, struct h1_hdr_entry, node);
1365 name->ptr = entry->name.ptr;
1366 name->len = entry->name.len;
1367}
1368
Christopher Faulete44769b2018-11-29 23:01:45 +01001369/* Append the description of what is present in error snapshot <es> into <out>.
1370 * The description must be small enough to always fit in a buffer. The output
1371 * buffer may be the trash so the trash must not be used inside this function.
1372 */
1373static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1374{
1375 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001376 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1377 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1378 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1379 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1380 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1381 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001382}
1383/*
1384 * Capture a bad request or response and archive it in the proxy's structure.
1385 * By default it tries to report the error position as h1m->err_pos. However if
1386 * this one is not set, it will then report h1m->next, which is the last known
1387 * parsing point. The function is able to deal with wrapping buffers. It always
1388 * displays buffers as a contiguous area starting at buf->p. The direction is
1389 * determined thanks to the h1m's flags.
1390 */
1391static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1392 struct h1m *h1m, struct buffer *buf)
1393{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001394 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001395 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001396 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001397 union error_snapshot_ctx ctx;
1398
Christopher Fauletf835dea2021-12-21 14:35:17 +01001399 if ((h1c->flags & H1C_F_ST_ATTACHED) && cs_strm(h1s->cs)) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001400 if (sess == NULL)
Christopher Faulet693b23b2022-02-28 09:09:05 +01001401 sess = __cs_strm(h1s->cs)->sess;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001402 if (!(h1m->flags & H1_MF_RESP))
Christopher Faulet693b23b2022-02-28 09:09:05 +01001403 other_end = __cs_strm(h1s->cs)->be;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001404 else
1405 other_end = sess->fe;
1406 } else
1407 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001408
1409 /* http-specific part now */
1410 ctx.h1.state = h1m->state;
1411 ctx.h1.c_flags = h1c->flags;
1412 ctx.h1.s_flags = h1s->flags;
1413 ctx.h1.m_flags = h1m->flags;
1414 ctx.h1.m_clen = h1m->curr_len;
1415 ctx.h1.m_blen = h1m->body_len;
1416
1417 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1418 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001419 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1420 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001421}
1422
Christopher Fauletadb22202018-12-12 10:32:09 +01001423/* Emit the chunksize followed by a CRLF in front of data of the buffer
1424 * <buf>. It goes backwards and starts with the byte before the buffer's
1425 * head. The caller is responsible for ensuring there is enough room left before
1426 * the buffer's head for the string.
1427 */
1428static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1429{
1430 char *beg, *end;
1431
1432 beg = end = b_head(buf);
1433 *--beg = '\n';
1434 *--beg = '\r';
1435 do {
1436 *--beg = hextab[chksz & 0xF];
1437 } while (chksz >>= 4);
1438 buf->head -= (end - beg);
1439 b_add(buf, end - beg);
1440}
1441
1442/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1443 * ensuring there is enough room left in the buffer for the string. */
1444static void h1_emit_chunk_crlf(struct buffer *buf)
1445{
1446 *(b_peek(buf, b_data(buf))) = '\r';
1447 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1448 b_add(buf, 2);
1449}
1450
Christopher Faulet129817b2018-09-20 16:14:40 +02001451/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001452 * Switch the stream to tunnel mode. This function must only be called on 2xx
1453 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001454 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001455static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001456{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001457 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001458
Christopher Faulet5be651d2021-01-22 15:28:03 +01001459 h1s->req.state = H1_MSG_TUNNEL;
1460 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001461
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001462 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001463 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001464
Christopher Faulet5be651d2021-01-22 15:28:03 +01001465 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 +01001466
Christopher Faulet10a86702021-04-07 14:18:11 +02001467 if (h1s->flags & H1S_F_RX_BLK) {
1468 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001469 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001470 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 +02001471 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001472 if (h1s->flags & H1S_F_TX_BLK) {
1473 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001474 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001475 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 +01001476 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001477}
1478
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001479/* Search for a websocket key header. The message should have been identified
1480 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001481 *
1482 * On the request side, if found the key is stored in the session. It might be
1483 * needed to calculate response key if the server side is using http/2.
1484 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001485 * On the response side, the key might be verified if haproxy has been
1486 * responsible for the generation of a key. This happens when a h2 client is
1487 * interfaced with a h1 server.
1488 *
1489 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001490 */
1491static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1492{
1493 struct htx_blk *blk;
1494 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001495 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001496 int ws_key_found = 0, idx;
1497
1498 idx = htx_get_head(htx); // returns the SL that we skip
1499 while ((idx = htx_get_next(htx, idx)) != -1) {
1500 blk = htx_get_blk(htx, idx);
1501 type = htx_get_blk_type(blk);
1502
1503 if (type == HTX_BLK_UNUSED)
1504 continue;
1505
1506 if (type != HTX_BLK_HDR)
1507 break;
1508
1509 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001510 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001511
Amaury Denoyellec1938232020-12-11 17:53:03 +01001512 /* Websocket key is base64 encoded of 16 bytes */
1513 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001514 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001515 /* Copy the key on request side
1516 * we might need it if the server is using h2 and does
1517 * not provide the response
1518 */
1519 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001520 ws_key_found = 1;
1521 break;
1522 }
1523 else if (isteqi(n, ist("sec-websocket-accept")) &&
1524 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001525 /* Need to verify the response key if the input was
1526 * generated by haproxy
1527 */
1528 if (h1s->ws_key[0]) {
1529 char key[29];
1530 h1_calculate_ws_output_key(h1s->ws_key, key);
1531 if (!isteqi(ist(key), v))
1532 break;
1533 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001534 ws_key_found = 1;
1535 break;
1536 }
1537 }
1538
1539 /* missing websocket key, reject the message */
1540 if (!ws_key_found) {
1541 htx->flags |= HTX_FL_PARSING_ERROR;
1542 return 0;
1543 }
1544
1545 return 1;
1546}
1547
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001548/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001549 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001550 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001551 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1552 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001553 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001554static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1555 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001556{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001557 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001558 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001559
Willy Tarreau022e5e52020-09-10 09:33:15 +02001560 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 +02001561
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001562 if (h1s->meth == HTTP_METH_CONNECT)
1563 h1m->flags |= H1_MF_METH_CONNECT;
1564 if (h1s->meth == HTTP_METH_HEAD)
1565 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001566
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001567 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001568 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001569 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 +02001570 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001571 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001572 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 +02001573 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1574 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001575 else if (ret == -2) {
1576 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);
1577 h1s->flags |= H1S_F_RX_CONGESTED;
1578 }
1579 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001580 goto end;
1581 }
1582
Christopher Faulete136bd12021-09-21 18:44:55 +02001583
1584 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1585 * payload if the c-l is not null or the the payload is chunk-encoded.
1586 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1587 * instead of a 400-Bad-Request.
1588 */
1589 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1590 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1591 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1592 h1s->flags |= H1S_F_PARSING_ERROR;
1593 htx->flags |= HTX_FL_PARSING_ERROR;
1594 h1s->h1c->errcode = 413;
1595 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);
1596 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1597 ret = 0;
1598 goto end;
1599 }
1600
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001601 /* Reject any message with an unknown transfer-encoding. In fact if any
1602 * encoding other than "chunked". A 422-Unprocessable-Content is
1603 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1604 * response.
1605 */
1606 if (h1m->flags & H1_MF_TE_OTHER) {
1607 h1s->flags |= H1S_F_PARSING_ERROR;
1608 htx->flags |= HTX_FL_PARSING_ERROR;
1609 if (!(h1m->flags & H1_MF_RESP))
1610 h1s->h1c->errcode = 422;
1611 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1612 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1613 ret = 0;
1614 goto end;
1615 }
1616
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001617 /* If websocket handshake, search for the websocket key */
1618 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1619 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1620 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1621 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001622 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001623 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 +01001624 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1625
1626 ret = 0;
1627 goto end;
1628 }
1629 }
1630
Christopher Faulet486498c2019-10-11 14:22:00 +02001631 if (h1m->err_pos >= 0) {
1632 /* Maybe we found an error during the parsing while we were
1633 * configured not to block on that, so we have to capture it
1634 * now.
1635 */
1636 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1637 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1638 }
1639
Christopher Faulet5696f542020-12-02 16:08:38 +01001640 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001641 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001642 if (h1s->meth == HTTP_METH_HEAD)
1643 h1s->flags |= H1S_F_BODYLESS_RESP;
1644 }
1645 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001646 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001647 if (h1s->status == 204 || h1s->status == 304)
1648 h1s->flags |= H1S_F_BODYLESS_RESP;
1649 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001650 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001651 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001652
Christopher Faulet129817b2018-09-20 16:14:40 +02001653 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001654 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 +02001655 return ret;
1656}
1657
1658/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001659 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001660 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1661 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001662 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001663static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1664 struct buffer *buf, size_t *ofs, size_t max,
1665 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001666{
Christopher Fauletde471a42021-02-01 16:37:28 +01001667 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001668
Willy Tarreau022e5e52020-09-10 09:33:15 +02001669 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 +02001670 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001671 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001672 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 +01001673 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001674 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001675 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 +02001676 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001677 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001678 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001679 }
1680
Christopher Faulet02a02532019-11-15 09:36:28 +01001681 *ofs += ret;
1682
1683 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001684 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1685 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);
1686 h1s->flags |= H1S_F_RX_CONGESTED;
1687 }
1688
Willy Tarreau022e5e52020-09-10 09:33:15 +02001689 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 +02001690 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001691}
1692
1693/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001694 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1695 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1696 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001697 * responsible to update the parser state <h1m>. If more room is requested,
1698 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001699 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001700static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1701 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001702{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001703 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001704
Willy Tarreau022e5e52020-09-10 09:33:15 +02001705 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 +02001706 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001707 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001708 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 +02001709 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001710 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001711 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 +02001712 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1713 }
Christopher Faulet744451c2022-03-28 16:19:02 +02001714 else if (ret == -2 || b_data(buf) != *ofs) {
Christopher Faulet46e058d2021-09-20 07:47:27 +02001715 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);
1716 h1s->flags |= H1S_F_RX_CONGESTED;
1717 }
1718 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001719 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001720 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001721
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001722 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001723
1724 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001725 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 +02001726 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001727}
1728
1729/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001730 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001731 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1732 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001733 *
1734 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001735 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001736static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001737{
Christopher Faulet539e0292018-11-19 10:40:09 +01001738 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001739 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001740 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001741 size_t data;
1742 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001743 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001744
Christopher Faulet539e0292018-11-19 10:40:09 +01001745 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001746 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001747
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001748 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001749 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001750
Christopher Faulet2eed8002020-12-07 11:26:13 +01001751 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001752 goto end;
1753
Christopher Faulet10a86702021-04-07 14:18:11 +02001754 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001755 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001756
Christopher Faulet46e058d2021-09-20 07:47:27 +02001757 /* Always remove congestion flags and try to process more input data */
1758 h1s->flags &= ~H1S_F_RX_CONGESTED;
1759
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001760 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001761 size_t used = htx_used_space(htx);
1762
Christopher Faulet129817b2018-09-20 16:14:40 +02001763 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001764 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001765 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001766 if (!ret)
1767 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001768
1769 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1770 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1771
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001772 if ((h1m->flags & H1_MF_RESP) &&
1773 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1774 h1m_init_res(&h1s->res);
1775 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001776 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001777 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001778 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001779 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001780 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001781 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001782 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001783 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001784
1785 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1786 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001787 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001788 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001789 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001790 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001791 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001792 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001793
Christopher Faulet76014fd2019-12-10 11:47:22 +01001794 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1795 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001796 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001797 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001798 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1799 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001800
Christopher Faulet5be651d2021-01-22 15:28:03 +01001801 if ((h1m->flags & H1_MF_RESP) &&
1802 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1803 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001804 else {
1805 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1806 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001807 h1s->flags |= H1S_F_RX_BLK;
1808 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001809 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001810 if (h1s->flags & H1S_F_TX_BLK) {
1811 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001812 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001813 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 +01001814 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001815 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001816 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001817 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001818 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001819 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001820 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001821 if (!ret)
1822 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001823
1824 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1825 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001826 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001827 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001828 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001829 break;
1830 }
1831
Christopher Faulet30db3d72019-05-17 15:35:33 +02001832 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001833 } 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 +01001834
Christopher Faulet129817b2018-09-20 16:14:40 +02001835
Christopher Faulet2eed8002020-12-07 11:26:13 +01001836 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001837 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 +02001838 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001839 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001840
Christopher Faulet539e0292018-11-19 10:40:09 +01001841 b_del(&h1c->ibuf, total);
1842
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001843 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001844 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1845
Christopher Faulet30db3d72019-05-17 15:35:33 +02001846 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001847 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001848 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001849 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 +01001850 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001851 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001852
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001853 if (!b_data(&h1c->ibuf))
1854 h1_release_buf(h1c, &h1c->ibuf);
1855
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001856 if (!(h1c->flags & H1C_F_ST_READY)) {
1857 /* The H1 connection is not ready. Most of time, there is no CS
1858 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1859 * cases, it is only possible on the client side.
1860 */
1861 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1862
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001863 if (h1m->state <= H1_MSG_LAST_LF) {
1864 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1865 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1866 goto end;
1867 }
1868
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001869 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1870 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1871 BUG_ON(h1s->cs);
1872 if (!h1s_new_cs(h1s, buf)) {
1873 h1c->flags |= H1C_F_ST_ERROR;
1874 goto err;
1875 }
1876 }
1877 else {
1878 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1879 BUG_ON(h1s->cs == NULL);
1880 if (!h1s_upgrade_cs(h1s, buf)) {
1881 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001882 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001883 goto err;
1884 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001885 }
1886 }
1887
1888 /* Here h1s->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001889 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001890 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 +01001891 h1s->endp->flags |= CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001892 }
1893 else {
1894 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 +01001895 h1s->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Fauleta583af62020-09-24 15:35:37 +02001896 }
1897
Christopher Fauleta22782b2021-02-08 17:18:01 +01001898 /* Set EOI on conn-stream in DONE state iff:
1899 * - it is a response
1900 * - it is a request but no a protocol upgrade nor a CONNECT
1901 *
1902 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001903 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001904 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001905 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1906 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauletb041b232022-03-24 10:27:02 +01001907 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauleta583af62020-09-24 15:35:37 +02001908
Christopher Fauletec4207c2021-04-08 18:34:30 +02001909 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001910 /* When Input data are pending for this message, notify upper layer that
1911 * the mux need more space in the HTX buffer to continue if :
1912 *
1913 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1914 * - Headers or trailers are pending to be copied.
1915 */
1916 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001917 h1s->endp->flags |= CS_EP_RCV_MORE | CS_EP_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001918 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1919 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001920 else {
Christopher Fauletb041b232022-03-24 10:27:02 +01001921 h1s->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001922 if (h1s->flags & H1S_F_REOS) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001923 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001924 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1925 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1926 * EOI on the conn-stream */
Christopher Fauletb041b232022-03-24 10:27:02 +01001927 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001928 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001929 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001930 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001931 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1932 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001933
Christopher Faulet10a86702021-04-07 14:18:11 +02001934 if (h1s->flags & H1S_F_TX_BLK) {
1935 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001936 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001937 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 +01001938 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001939 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001940 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001941
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001942 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001943 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001944 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001945
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001946 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001947 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001948 if (h1s->cs)
Christopher Fauletb041b232022-03-24 10:27:02 +01001949 h1s->endp->flags |= CS_EP_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001950 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001951 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001952}
1953
Christopher Faulet129817b2018-09-20 16:14:40 +02001954/*
1955 * Process outgoing data. It parses data and transfer them from the channel buffer into
1956 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1957 * 0 if it couldn't proceed.
1958 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001959static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001960{
Christopher Faulet129817b2018-09-20 16:14:40 +02001961 struct h1s *h1s = h1c->h1s;
1962 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001963 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001964 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001965 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001966 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001967 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001968 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001969
Christopher Faulet94b2c762019-05-24 15:28:57 +02001970 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001971 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1972
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001973 if (htx_is_empty(chn_htx))
1974 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001975
Christopher Faulet10a86702021-04-07 14:18:11 +02001976 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001977 goto end;
1978
Christopher Faulet51dbc942018-09-13 09:05:15 +02001979 if (!h1_get_buf(h1c, &h1c->obuf)) {
1980 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001981 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 +02001982 goto end;
1983 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001984
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001985 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001986
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001987 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001988 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001989
Willy Tarreau3815b222018-12-11 19:50:43 +01001990 /* Perform some optimizations to reduce the number of buffer copies.
1991 * First, if the mux's buffer is empty and the htx area contains
1992 * exactly one data block of the same size as the requested count,
1993 * then it's possible to simply swap the caller's buffer with the
1994 * mux's output buffer and adjust offsets and length to match the
1995 * entire DATA HTX block in the middle. In this case we perform a
1996 * true zero-copy operation from end-to-end. This is the situation
1997 * that happens all the time with large files. Second, if this is not
1998 * possible, but the mux's output buffer is empty, we still have an
1999 * opportunity to avoid the copy to the intermediary buffer, by making
2000 * the intermediary buffer's area point to the output buffer's area.
2001 * In this case we want to skip the HTX header to make sure that copies
2002 * remain aligned and that this operation remains possible all the
2003 * time. This goes for headers, data blocks and any data extracted from
2004 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01002005 */
2006 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01002007 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002008 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01002009 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002010 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01002011 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01002012 void *old_area;
2013
Christopher Faulet6b81df72019-10-01 22:08:43 +02002014 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 +01002015 if (h1m->state == H1_MSG_DATA) {
2016 if (h1m->flags & H1_MF_CLEN) {
2017 if (count > h1m->curr_len) {
2018 TRACE_ERROR("too much payload, more than announced",
2019 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2020 goto error;
2021 }
2022 h1m->curr_len -= count;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002023 if (!h1m->curr_len)
2024 last_data = 1;
Christopher Faulet140f1a52021-11-26 16:37:55 +01002025 }
2026 if (chn_htx->flags & HTX_FL_EOM) {
2027 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2028 last_data = 1;
2029 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002030 }
2031
Christopher Faulete5596bf2020-12-02 16:13:22 +01002032 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01002033 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02002034 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01002035 h1c->obuf.data = count;
2036
2037 buf->area = old_area;
2038 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01002039
Christopher Faulet6b81df72019-10-01 22:08:43 +02002040 chn_htx = (struct htx *)buf->area;
2041 htx_reset(chn_htx);
2042
Christopher Fauletadb22202018-12-12 10:32:09 +01002043 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002044 * size and eventually the last chunk. We have at least
2045 * the size of the struct htx to write the chunk
2046 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01002047 */
2048 if (h1m->flags & H1_MF_CHNK) {
2049 h1_emit_chunk_size(&h1c->obuf, count);
2050 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002051 if (last_data) {
2052 /* Emit the last chunk too at the buffer's end */
2053 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
2054 }
Christopher Fauletadb22202018-12-12 10:32:09 +01002055 }
2056
Christopher Faulet6b81df72019-10-01 22:08:43 +02002057 if (h1m->state == H1_MSG_DATA)
2058 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002059 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002060 else
2061 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002062 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002063
Christopher Faulete5596bf2020-12-02 16:13:22 +01002064 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002065 if (last_data) {
2066 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02002067 if (h1s->flags & H1S_F_RX_BLK) {
2068 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002069 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002070 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 +01002071 }
2072
2073 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2074 H1_EV_TX_DATA, h1c->conn, h1s);
2075 }
Willy Tarreau3815b222018-12-11 19:50:43 +01002076 goto out;
2077 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002078 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002079 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002080 else
2081 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02002082
Christopher Fauletc2518a52019-06-25 21:41:02 +02002083 tmp.data = 0;
2084 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02002085 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01002086 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02002087 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01002088 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02002089 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02002090 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02002091
Christopher Fauletb2e84162018-12-06 11:39:49 +01002092 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002093 if (type != HTX_BLK_DATA && vlen > count)
2094 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002095
Christopher Faulet94b2c762019-05-24 15:28:57 +02002096 if (type == HTX_BLK_UNUSED)
2097 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002098
Christopher Faulet94b2c762019-05-24 15:28:57 +02002099 switch (h1m->state) {
2100 case H1_MSG_RQBEFORE:
2101 if (type != HTX_BLK_REQ_SL)
2102 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002103 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 +02002104 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002105 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002106 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002107 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002108 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002109 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002110 if (sl->flags & HTX_SL_F_BODYLESS)
2111 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002112 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002113 if (h1s->meth == HTTP_METH_HEAD)
2114 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002115 if (h1s->flags & H1S_F_RX_BLK) {
2116 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002117 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002118 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 +02002119 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002120 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002121
Christopher Faulet94b2c762019-05-24 15:28:57 +02002122 case H1_MSG_RPBEFORE:
2123 if (type != HTX_BLK_RES_SL)
2124 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002125 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 +02002126 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002127 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002128 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002129 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002130 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002131 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002132 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002133 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002134 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002135 else if (h1s->status == 204 || h1s->status == 304)
2136 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002137 h1m->state = H1_MSG_HDR_FIRST;
2138 break;
2139
Christopher Faulet94b2c762019-05-24 15:28:57 +02002140 case H1_MSG_HDR_FIRST:
2141 case H1_MSG_HDR_NAME:
2142 case H1_MSG_HDR_L2_LWS:
2143 if (type == HTX_BLK_EOH)
2144 goto last_lf;
2145 if (type != HTX_BLK_HDR)
2146 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002147
Christopher Faulet9768c262018-10-22 09:34:31 +02002148 h1m->state = H1_MSG_HDR_NAME;
2149 n = htx_get_blk_name(chn_htx, blk);
2150 v = htx_get_blk_value(chn_htx, blk);
2151
Christopher Faulet86d144c2019-08-14 16:32:25 +02002152 /* Skip all pseudo-headers */
2153 if (*(n.ptr) == ':')
2154 goto skip_hdr;
2155
Christopher Faulet91fcf212020-12-02 16:17:15 +01002156 if (isteq(n, ist("transfer-encoding"))) {
2157 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2158 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002159 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002160 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002161 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002162 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2163 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002164 /* Only skip C-L header with invalid value. */
2165 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002166 goto skip_hdr;
2167 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002168 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002169 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002170 if (!v.len)
2171 goto skip_hdr;
2172 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002173 else if (isteq(n, ist("upgrade"))) {
2174 h1_parse_upgrade_header(h1m, v);
2175 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002176 else if ((isteq(n, ist("sec-websocket-accept")) &&
2177 h1m->flags & H1_MF_RESP) ||
2178 (isteq(n, ist("sec-websocket-key")) &&
2179 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002180 ws_key_found = 1;
2181 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002182 else if (isteq(n, ist("te"))) {
2183 /* "te" may only be sent with "trailers" if this value
2184 * is present, otherwise it must be deleted.
2185 */
2186 v = istist(v, ist("trailers"));
2187 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2188 goto skip_hdr;
2189 v = ist("trailers");
2190 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002191
Christopher Faulet67d58092019-10-02 10:51:38 +02002192 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002193 if (!(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name) &&
2194 isteqi(n, h1c->px->server_id_hdr_name))
Christopher Faulet67d58092019-10-02 10:51:38 +02002195 goto skip_hdr;
2196
Christopher Faulet98fbe952019-07-22 16:18:24 +02002197 /* Try to adjust the case of the header name */
2198 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2199 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002200 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002201 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002202 skip_hdr:
2203 h1m->state = H1_MSG_HDR_L2_LWS;
2204 break;
2205
Christopher Faulet94b2c762019-05-24 15:28:57 +02002206 case H1_MSG_LAST_LF:
2207 if (type != HTX_BLK_EOH)
2208 goto error;
2209 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002210 h1m->state = H1_MSG_LAST_LF;
2211 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002212 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002213 /* If the reply comes from haproxy while the request is
2214 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002215 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2216 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2217 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002218 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2219 /* T-E + C-L: force close */
2220 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2221 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2222 }
2223 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2224 /* T-E + HTTP/1.0: force close */
2225 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2226 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2227 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002228
2229 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002230 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002231 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002232 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002233 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002234 /* Try to adjust the case of the header name */
2235 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2236 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002237 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002238 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002239 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002240 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002241 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002242
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002243 if ((h1s->meth != HTTP_METH_CONNECT &&
2244 (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 +01002245 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002246 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002247 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002248 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2249 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002250 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002251 n = ist("transfer-encoding");
2252 v = ist("chunked");
2253 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2254 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002255 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002256 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002257 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002258 h1m->flags |= H1_MF_CHNK;
2259 }
2260
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002261 /* Now add the server name to a header (if requested) */
2262 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002263 !(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002264 struct server *srv = objt_server(h1c->conn->target);
2265
2266 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002267 n = h1c->px->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002268 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002269
2270 /* Try to adjust the case of the header name */
2271 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2272 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002273 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002274 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002275 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002276 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002277 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2278 }
2279
Amaury Denoyellec1938232020-12-11 17:53:03 +01002280 /* Add websocket handshake key if needed */
2281 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2282 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002283 if (!(h1m->flags & H1_MF_RESP)) {
2284 /* generate a random websocket key
2285 * stored in the session to
2286 * verify it on the response side
2287 */
2288 h1_generate_random_ws_input_key(h1s->ws_key);
2289
2290 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2291 ist(h1s->ws_key),
2292 &tmp)) {
2293 goto full;
2294 }
2295 }
2296 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002297 /* add the response header key */
2298 char key[29];
2299 h1_calculate_ws_output_key(h1s->ws_key, key);
2300 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2301 ist(key),
2302 &tmp)) {
2303 goto full;
2304 }
2305 }
2306 }
2307
Christopher Faulet6b81df72019-10-01 22:08:43 +02002308 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2309 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2310
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002311 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002312 if (!chunk_memcat(&tmp, "\r\n", 2))
2313 goto full;
2314 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002315 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002316 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002317 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002318 if (!chunk_memcat(&tmp, "\r\n", 2))
2319 goto full;
2320 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002321 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002322 else if ((h1m->flags & H1_MF_RESP) &&
2323 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002324 if (!chunk_memcat(&tmp, "\r\n", 2))
2325 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002326 h1m_init_res(&h1s->res);
2327 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002328 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002329 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002330 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002331 else {
Christopher Faulet2eb52432022-04-07 10:29:38 +02002332 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2333 if (htx_is_unique_blk(chn_htx, blk) &&
2334 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002335 if (h1m->flags & H1_MF_CHNK) {
2336 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2337 goto full;
2338 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002339 else if (!chunk_memcat(&tmp, "\r\n", 2))
2340 goto full;
2341 goto done;
2342 }
2343 else if (!chunk_memcat(&tmp, "\r\n", 2))
2344 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002345 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002346 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002347 break;
2348
Christopher Faulet94b2c762019-05-24 15:28:57 +02002349 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002350 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002351 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002352 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2353 goto trailers;
2354
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002355 /* If the message is not chunked, never
2356 * add the last chunk. */
2357 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002358 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002359 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 +02002360 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002361 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002362 else if (type != HTX_BLK_DATA)
2363 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002364
2365 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 +02002366
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002367 /* It is the last block of this message. After this one,
2368 * only tunneled data may be forwarded. */
2369 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2370 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2371 last_data = 1;
2372 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002373
2374 if (vlen > count) {
2375 /* Get the maximum amount of data we can xferred */
2376 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002377 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002378 }
2379
Christopher Faulet140f1a52021-11-26 16:37:55 +01002380 if (h1m->state == H1_MSG_DATA) {
2381 if (h1m->flags & H1_MF_CLEN) {
2382 if (vlen > h1m->curr_len) {
2383 TRACE_ERROR("too much payload, more than announced",
2384 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2385 goto error;
2386 }
Christopher Faulet140f1a52021-11-26 16:37:55 +01002387 }
2388 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2389 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2390 goto skip_data;
2391 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002392 }
2393
Christopher Fauletd9233f02019-10-14 14:01:24 +02002394 chklen = 0;
2395 if (h1m->flags & H1_MF_CHNK) {
2396 chklen = b_room(&tmp);
2397 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2398 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2399 (chklen < 1048576) ? 5 : 8);
2400 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002401
2402 /* If it is the end of the chunked message (without EOT), reserve the
2403 * last chunk size */
2404 if (last_data)
2405 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002406 }
2407
2408 if (vlen + chklen > b_room(&tmp)) {
2409 /* too large for the buffer */
2410 if (chklen >= b_room(&tmp))
2411 goto full;
2412 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002413 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002414 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002415 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002416 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002417 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002418 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002419
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002420 /* Space already reserved, so it must succeed */
2421 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2422 goto error;
2423
Christopher Faulet6b81df72019-10-01 22:08:43 +02002424 if (h1m->state == H1_MSG_DATA)
2425 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002426 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002427 else
2428 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002429 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002430
2431 skip_data:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002432 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Fauletb4eca0e2022-01-10 17:27:51 +01002433 h1m->curr_len -= vlen;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002434 if (!h1m->curr_len)
2435 last_data = 1;
2436 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002437 if (last_data)
2438 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002439 break;
2440
Christopher Faulet94b2c762019-05-24 15:28:57 +02002441 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002442 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002443 goto error;
2444 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002445 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002446
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002447 /* If the message is not chunked, ignore
2448 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002449 if (!(h1m->flags & H1_MF_CHNK)) {
2450 if (type == HTX_BLK_EOT)
2451 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002452 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002453 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002454
Christopher Faulete5596bf2020-12-02 16:13:22 +01002455 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2456 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 +01002457 if (type == HTX_BLK_EOT)
2458 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002459 break;
2460 }
2461
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002462 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002463 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002464 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002465 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2466 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002467 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002468 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002469 else { // HTX_BLK_TLR
2470 n = htx_get_blk_name(chn_htx, blk);
2471 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002472
2473 /* Try to adjust the case of the header name */
2474 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2475 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002476 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002477 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002478 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002479 break;
2480
Christopher Faulet94b2c762019-05-24 15:28:57 +02002481 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002482 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2483 goto error; /* For now return an error */
2484
Christopher Faulet94b2c762019-05-24 15:28:57 +02002485 done:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002486 if (!(chn_htx->flags & HTX_FL_EOM) && (!(h1m->flags & H1_MF_CLEN) || h1m->curr_len)) {
Christopher Faulet36893672021-02-10 09:52:07 +01002487 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2488 goto error; /* For now return an error */
2489 }
2490
Christopher Faulet94b2c762019-05-24 15:28:57 +02002491 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002492 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002493 h1s->flags |= H1S_F_TX_BLK;
2494 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002495 }
2496 else if ((h1m->flags & H1_MF_RESP) &&
2497 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2498 /* a successful reply to a CONNECT or a protocol switching is sent
2499 * to the client. Switch the response to tunnel mode.
2500 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002501 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002502 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 +01002503 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002504
Christopher Faulet10a86702021-04-07 14:18:11 +02002505 if (h1s->flags & H1S_F_RX_BLK) {
2506 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002507 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002508 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 +02002509 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002510
2511 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2512 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002513 break;
2514
Christopher Faulet9768c262018-10-22 09:34:31 +02002515 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002516 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002517 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002518 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002519 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002520 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002521 TRACE_ERROR("processing output error, set error on h1c/h1s",
2522 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 +01002523 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002524 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002525
2526 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002527 total += vlen;
2528 count -= vlen;
2529 if (sz == vlen)
2530 blk = htx_remove_blk(chn_htx, blk);
2531 else {
2532 htx_cut_data_blk(chn_htx, blk, vlen);
2533 break;
2534 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002535 }
2536
Christopher Faulet9768c262018-10-22 09:34:31 +02002537 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002538 /* when the output buffer is empty, tmp shares the same area so that we
2539 * only have to update pointers and lengths.
2540 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002541 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2542 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002543 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002544 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002545
Willy Tarreau3815b222018-12-11 19:50:43 +01002546 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002547 out:
2548 if (!buf_room_for_htx_data(&h1c->obuf)) {
2549 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002550 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002551 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002552 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002553 /* Both the request and the response reached the DONE state. So set EOI
2554 * flag on the conn-stream. Most of time, the flag will already be set,
2555 * except for protocol upgrades. Report an error if data remains blocked
2556 * in the output buffer.
2557 */
2558 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2559 if (!htx_is_empty(chn_htx)) {
2560 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002561 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 +01002562 }
Christopher Fauletb041b232022-03-24 10:27:02 +01002563 h1s->endp->flags |= CS_EP_EOI;
Christopher Fauletdea24742021-01-22 15:12:30 +01002564 }
2565
Christopher Faulet6b81df72019-10-01 22:08:43 +02002566 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002567 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002568
2569 full:
2570 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2571 h1c->flags |= H1C_F_OUT_FULL;
2572 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002573}
2574
Christopher Faulet51dbc942018-09-13 09:05:15 +02002575/*********************************************************/
2576/* functions below are I/O callbacks from the connection */
2577/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002578static void h1_wake_stream_for_recv(struct h1s *h1s)
2579{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002580 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002581 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002582 tasklet_wakeup(h1s->subs->tasklet);
2583 h1s->subs->events &= ~SUB_RETRY_RECV;
2584 if (!h1s->subs->events)
2585 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002586 }
2587}
2588static void h1_wake_stream_for_send(struct h1s *h1s)
2589{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002590 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002591 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002592 tasklet_wakeup(h1s->subs->tasklet);
2593 h1s->subs->events &= ~SUB_RETRY_SEND;
2594 if (!h1s->subs->events)
2595 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002596 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002597}
2598
Christopher Fauletad4daf62021-01-21 17:49:01 +01002599/* alerts the data layer following this sequence :
2600 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2601 * - if its subscribed to send, then it's woken up for send
2602 * - if it was subscribed to neither, its ->wake() callback is called
2603 */
2604static void h1_alert(struct h1s *h1s)
2605{
2606 if (h1s->subs) {
2607 h1_wake_stream_for_recv(h1s);
2608 h1_wake_stream_for_send(h1s);
2609 }
2610 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2611 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2612 h1s->cs->data_cb->wake(h1s->cs);
2613 }
2614}
2615
Christopher Fauletc18fc232020-10-06 17:41:36 +02002616/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2617 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2618 * retryable errors (allocation error or buffer full). On success, the error is
2619 * copied in the output buffer.
2620*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002621static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002622{
2623 int rc = http_get_status_idx(h1c->errcode);
2624 int ret = 0;
2625
2626 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2627
2628 /* Verify if the error is mapped on /dev/null or any empty file */
2629 /// XXX: do a function !
2630 if (h1c->px->replies[rc] &&
2631 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2632 h1c->px->replies[rc]->body.errmsg &&
2633 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2634 /* Empty error, so claim a success */
2635 ret = 1;
2636 goto out;
2637 }
2638
2639 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2640 h1c->flags |= H1C_F_ERR_PENDING;
2641 goto out;
2642 }
2643
2644 if (!h1_get_buf(h1c, &h1c->obuf)) {
2645 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2646 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2647 goto out;
2648 }
Tim Duesterhus77508502022-03-15 13:11:06 +01002649 ret = b_istput(&h1c->obuf, ist(http_err_msgs[rc]));
Christopher Fauletc18fc232020-10-06 17:41:36 +02002650 if (unlikely(ret <= 0)) {
2651 if (!ret) {
2652 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2653 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2654 goto out;
2655 }
2656 else {
2657 /* we cannot report this error, so claim a success */
2658 ret = 1;
2659 }
2660 }
2661 h1c->flags &= ~H1C_F_ERR_PENDING;
2662 out:
2663 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2664 return ret;
2665}
2666
2667/* Try to send a 500 internal error. It relies on h1_send_error to send the
2668 * error. This function takes care of incrementing stats and tracked counters.
2669 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002670static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002671{
2672 struct session *sess = h1c->conn->owner;
2673 int ret = 1;
2674
2675 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002676 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002677 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2678 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002679 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002680 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002681
2682 h1c->errcode = 500;
2683 ret = h1_send_error(h1c);
2684 sess_log(sess);
2685 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002686}
2687
Christopher Fauletb3230f72021-09-21 18:38:20 +02002688/* Try to send an error because of a parsing error. By default a 400 bad request
2689 * error is returned. But the status code may be specified by setting
2690 * h1c->errcode. It relies on h1_send_error to send the error. This function
2691 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002692 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002693static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002694{
2695 struct session *sess = h1c->conn->owner;
2696 int ret = 1;
2697
2698 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2699 goto end;
2700
2701 session_inc_http_req_ctr(sess);
2702 session_inc_http_err_ctr(sess);
2703 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002704 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2705 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002706 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002707 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002708
Christopher Fauletb3230f72021-09-21 18:38:20 +02002709 if (!h1c->errcode)
2710 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002711 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002712 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2713 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002714
2715 end:
2716 return ret;
2717}
2718
Christopher Faulet2eed8002020-12-07 11:26:13 +01002719/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2720 * the error. This function takes care of incrementing stats and tracked
2721 * counters.
2722 */
2723static int h1_handle_not_impl_err(struct h1c *h1c)
2724{
2725 struct session *sess = h1c->conn->owner;
2726 int ret = 1;
2727
2728 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2729 goto end;
2730
2731 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002732 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002733 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2734 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002735 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002736 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002737
2738 h1c->errcode = 501;
2739 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002740 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2741 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002742
2743 end:
2744 return ret;
2745}
2746
Christopher Fauletc18fc232020-10-06 17:41:36 +02002747/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2748 * error. This function takes care of incrementing stats and tracked counters.
2749 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002750static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002751{
2752 struct session *sess = h1c->conn->owner;
2753 int ret = 1;
2754
2755 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2756 goto end;
2757
2758 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002759 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002760 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2761 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002762 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002763 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002764
2765 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002766 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2767 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002768 sess_log(sess);
2769 end:
2770 return ret;
2771}
2772
2773
Christopher Faulet51dbc942018-09-13 09:05:15 +02002774/*
2775 * Attempt to read data, and subscribe if none available
2776 */
2777static int h1_recv(struct h1c *h1c)
2778{
2779 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002780 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002781 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002782
Christopher Faulet6b81df72019-10-01 22:08:43 +02002783 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2784
2785 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2786 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002787 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002788 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002789
Christopher Fauletae635762020-09-21 11:47:16 +02002790 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2791 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002792 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002793 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002794
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002795 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2796 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002797 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002798 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002799 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002800
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002801 /*
2802 * If we only have a small amount of data, realign it,
2803 * it's probably cheaper than doing 2 recv() calls.
2804 */
2805 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002806 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002807
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002808 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002809 if (!h1c->h1s ||
2810 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2811 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002812 flags |= CO_RFL_READ_ONCE;
2813
Willy Tarreau45f2b892018-12-05 07:59:27 +01002814 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002815 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002816 if (h1c->flags & H1C_F_IN_FULL) {
2817 h1c->flags &= ~H1C_F_IN_FULL;
2818 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2819 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002820
2821 if (!b_data(&h1c->ibuf)) {
2822 /* try to pre-align the buffer like the rxbufs will be
2823 * to optimize memory copies.
2824 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002825 h1c->ibuf.head = sizeof(struct htx);
2826 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002827 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet41951ab2021-11-26 18:12:51 +01002828 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002829 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002830 if (max && !ret && h1_recv_allowed(h1c)) {
2831 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2832 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002833 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002834 else {
2835 h1_wake_stream_for_recv(h1c->h1s);
2836 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002837 }
2838
Christopher Faulet51dbc942018-09-13 09:05:15 +02002839 if (!b_data(&h1c->ibuf))
2840 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002841 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002842 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002843 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2844 }
2845
2846 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002847 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002848}
2849
2850
2851/*
2852 * Try to send data if possible
2853 */
2854static int h1_send(struct h1c *h1c)
2855{
2856 struct connection *conn = h1c->conn;
2857 unsigned int flags = 0;
2858 size_t ret;
2859 int sent = 0;
2860
Christopher Faulet6b81df72019-10-01 22:08:43 +02002861 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2862
2863 if (conn->flags & CO_FL_ERROR) {
2864 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002865 b_reset(&h1c->obuf);
2866 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002867 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868
2869 if (!b_data(&h1c->obuf))
2870 goto end;
2871
Christopher Faulet46230362019-10-17 16:04:20 +02002872 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002873 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002874 if (h1c->flags & H1C_F_CO_STREAMER)
2875 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002876
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002877 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002878 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002879 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002880 if (h1c->flags & H1C_F_OUT_FULL) {
2881 h1c->flags &= ~H1C_F_OUT_FULL;
2882 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2883 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01002884 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002885 b_del(&h1c->obuf, ret);
2886 sent = 1;
2887 }
2888
Christopher Faulet145aa472018-12-06 10:56:20 +01002889 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002890 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002891 /* error or output closed, nothing to send, clear the buffer to release it */
2892 b_reset(&h1c->obuf);
2893 }
2894
Christopher Faulet51dbc942018-09-13 09:05:15 +02002895 end:
Christopher Fauletc17c31c2022-02-01 18:25:06 +01002896 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002897 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002898
Christopher Faulet51dbc942018-09-13 09:05:15 +02002899 /* We're done, no more to send */
2900 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002901 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002902 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002903 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002904 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002905 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002906 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002907 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002908 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2909 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002910 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002911 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002912
Christopher Faulet6b81df72019-10-01 22:08:43 +02002913 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002914 return sent;
2915}
2916
Christopher Faulet51dbc942018-09-13 09:05:15 +02002917/* callback called on any event by the connection handler.
2918 * It applies changes and returns zero, or < 0 if it wants immediate
2919 * destruction of the connection.
2920 */
2921static int h1_process(struct h1c * h1c)
2922{
2923 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002924 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002925
Christopher Faulet6b81df72019-10-01 22:08:43 +02002926 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2927
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002928 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002929 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002930 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2931 !(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 +02002932 struct buffer *buf;
2933 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002934
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002935 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2936 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002937 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002938
2939 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002940 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002941 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2942 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002943 /* Try to match H2 preface before parsing the request headers. */
2944 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2945 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002946 if (h1c->flags & H1C_F_ST_ATTACHED) {
2947 /* Force the REOS here to be sure to release the CS.
2948 Here ATTACHED implies !READY, and h1s defined
2949 */
2950 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2951 h1s->flags |= H1S_F_REOS;
2952 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002953 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002954 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002955 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002956 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002957
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002958 /* Create the H1 stream if not already there */
2959 if (!h1s) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002960 h1s = h1c_frt_stream_new(h1c, NULL, h1c->conn->owner);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002961 if (!h1s) {
2962 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002963 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002964 goto no_parsing;
2965 }
2966 }
2967
2968 if (h1s->sess->t_idle == -1)
2969 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2970
2971 /* Get the stream rxbuf */
2972 buf = h1_get_buf(h1c, &h1s->rxbuf);
2973 if (!buf) {
2974 h1c->flags |= H1C_F_IN_SALLOC;
2975 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2976 return 0;
2977 }
2978
2979 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002980 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002981 h1_release_buf(h1c, &h1s->rxbuf);
2982 h1_set_idle_expiration(h1c);
2983
2984 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002985 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002986 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002987 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002988 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002989 }
2990 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002991 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002992 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002993 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002994 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002995 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2996 h1_handle_not_impl_err(h1c);
2997 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002998 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002999 }
Christopher Fauletae635762020-09-21 11:47:16 +02003000 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003001 h1_send(h1c);
3002
Christopher Faulet75308302021-11-15 14:51:37 +01003003 /* H1 connection must be released ASAP if:
3004 * - an error occurred on the connection or the H1C or
3005 * - a read0 was received or
3006 * - a silent shutdown was emitted and all outgoing data sent
3007 */
3008 if ((conn->flags & CO_FL_ERROR) ||
3009 conn_xprt_read0_pending(conn) ||
3010 (h1c->flags & H1C_F_ST_ERROR) ||
3011 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003012 if (!(h1c->flags & H1C_F_ST_READY)) {
3013 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003014 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01003015 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003016 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003017 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003018 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003019 }
3020
3021 /* Handle pending error, if any (only possible on frontend connection) */
3022 if (h1c->flags & H1C_F_ERR_PENDING) {
3023 BUG_ON(h1c->flags & H1C_F_IS_BACK);
3024 if (h1_send_error(h1c))
3025 h1_send(h1c);
3026 }
Christopher Fauletae635762020-09-21 11:47:16 +02003027
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003028 /* If there is some pending outgoing data or error, just wait */
3029 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
3030 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01003031
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003032 /* Otherwise we can release the H1 connection */
3033 goto release;
3034 }
3035 else {
3036 /* Here there is still a H1 stream with a conn-stream.
3037 * Report the connection state at the stream level
3038 */
3039 if (conn_xprt_read0_pending(conn)) {
3040 h1s->flags |= H1S_F_REOS;
3041 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
3042 }
Willy Tarreau99bbdbc2022-03-17 17:10:36 +01003043 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) && !b_data(&h1c->ibuf)))
Christopher Fauletb041b232022-03-24 10:27:02 +01003044 h1s->endp->flags |= CS_EP_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003045 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01003046 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003047 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003048 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003049
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003050 if (!b_data(&h1c->ibuf))
3051 h1_release_buf(h1c, &h1c->ibuf);
3052
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003053 /* Check if a soft-stop is in progress.
3054 * Release idling front connection if this is the case.
3055 */
3056 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003057 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
William Dauchya9dd9012022-01-05 22:53:24 +01003058 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003059 h1c->flags & H1C_F_WAIT_NEXT_REQ) {
3060
3061 int send_close = 1;
3062 /* If a close-spread-time option is set, we want to avoid
3063 * closing all the active HTTP2 connections at once so we add a
3064 * random factor that will spread the closing.
3065 */
3066 if (tick_isset(global.close_spread_end)) {
3067 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3068 if (remaining_window) {
3069 /* This should increase the closing rate the
3070 * further along the window we are.
3071 */
3072 send_close = (remaining_window <= statistical_prng_range(global.close_spread_time));
3073 }
3074 }
3075 if (send_close)
3076 goto release;
3077 }
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003078 }
3079 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003080
3081 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
3082 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
3083 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003084 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003085
Christopher Faulet47365272018-10-31 17:40:50 +01003086 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02003087 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003088 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003089 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01003090
3091 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003092 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003093 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003094 * attached CS first. Here, the H1C must not be READY */
3095 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
3096
3097 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
Christopher Fauletb041b232022-03-24 10:27:02 +01003098 h1s->endp->flags |= CS_EP_EOS;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003099 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletb041b232022-03-24 10:27:02 +01003100 h1s->endp->flags |= CS_EP_ERROR;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003101 h1_alert(h1s);
3102 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3103 }
3104 else {
3105 h1_release(h1c);
3106 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
3107 }
Christopher Faulet539e0292018-11-19 10:40:09 +01003108 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003109}
3110
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003111struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003112{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003113 struct connection *conn;
3114 struct tasklet *tl = (struct tasklet *)t;
3115 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003116 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003117 int ret = 0;
3118
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003119 if (state & TASK_F_USR1) {
3120 /* the tasklet was idling on an idle connection, it might have
3121 * been stolen, let's be careful!
3122 */
3123 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3124 if (tl->context == NULL) {
3125 /* The connection has been taken over by another thread,
3126 * we're no longer responsible for it, so just free the
3127 * tasklet, and do nothing.
3128 */
3129 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3130 tasklet_free(tl);
3131 return NULL;
3132 }
3133 conn = h1c->conn;
3134 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003135
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003136 /* Remove the connection from the list, to be sure nobody attempts
3137 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003138 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003139 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3140 if (conn_in_list)
3141 conn_delete_from_tree(&conn->hash_node->node);
3142
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003143 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003144 } else {
3145 /* we're certain the connection was not in an idle list */
3146 conn = h1c->conn;
3147 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3148 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003149 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003150
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003151 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003152 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003153 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003154 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003155 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003156 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003157
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003158 /* If we were in an idle list, we want to add it back into it,
3159 * unless h1_process() returned -1, which mean it has destroyed
3160 * the connection (testing !ret is enough, if h1_process() wasn't
3161 * called then ret will be 0 anyway.
3162 */
Willy Tarreau74163142021-03-13 11:30:19 +01003163 if (ret < 0)
3164 t = NULL;
3165
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003166 if (!ret && conn_in_list) {
3167 struct server *srv = objt_server(conn->target);
3168
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003169 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003170 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003171 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003172 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003173 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003174 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003175 }
Willy Tarreau74163142021-03-13 11:30:19 +01003176 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003177}
3178
Christopher Faulet51dbc942018-09-13 09:05:15 +02003179static int h1_wake(struct connection *conn)
3180{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003181 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003182 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003183
Christopher Faulet6b81df72019-10-01 22:08:43 +02003184 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3185
Christopher Faulet539e0292018-11-19 10:40:09 +01003186 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003187 ret = h1_process(h1c);
3188 if (ret == 0) {
3189 struct h1s *h1s = h1c->h1s;
3190
Christopher Fauletad4daf62021-01-21 17:49:01 +01003191 if (h1c->flags & H1C_F_ST_ATTACHED)
3192 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003193 }
3194 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003195}
3196
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003197/* Connection timeout management. The principle is that if there's no receipt
3198 * nor sending for a certain amount of time, the connection is closed.
3199 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003200struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003201{
3202 struct h1c *h1c = context;
3203 int expired = tick_is_expired(t->expire, now_ms);
3204
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003205 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003206
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003207 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003208 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003209 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003210
3211 /* Somebody already stole the connection from us, so we should not
3212 * free it, we just have to free the task.
3213 */
3214 if (!t->context) {
3215 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003216 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003217 goto do_leave;
3218 }
3219
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003220 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003221 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003222 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003223 return t;
3224 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003225
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003226 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003227 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003228 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003229 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003230 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003231 t->expire = TICK_ETERNITY;
3232 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3233 return t;
3234 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003235
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003236 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003237 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3238 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003239 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003240 if (h1_handle_req_tout(h1c))
3241 h1_send(h1c);
3242 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3243 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003244 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003245 return t;
3246 }
3247 }
3248
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003249 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003250 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003251 * attached CS first. Here, the H1C must not be READY */
Christopher Fauletb041b232022-03-24 10:27:02 +01003252 h1c->h1s->endp->flags |= (CS_EP_EOS|CS_EP_ERROR);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003253 h1_alert(h1c->h1s);
3254 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003255 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003256 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3257 return t;
3258 }
3259
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003260 /* We're about to destroy the connection, so make sure nobody attempts
3261 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003262 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003263 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003264 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003265
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003266 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003267 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003268
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003269 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003270 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003271
3272 if (!h1c) {
3273 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003274 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003275 return NULL;
3276 }
3277
3278 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003279 h1_release(h1c);
3280 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003281 return NULL;
3282}
3283
Christopher Faulet51dbc942018-09-13 09:05:15 +02003284/*******************************************/
3285/* functions below are used by the streams */
3286/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003287
Christopher Faulet51dbc942018-09-13 09:05:15 +02003288/*
3289 * Attach a new stream to a connection
3290 * (Used for outgoing connections)
3291 */
Christopher Faulete00ad352021-12-16 14:44:31 +01003292static int h1_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003293{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003294 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003295 struct h1s *h1s;
3296
Christopher Faulet6b81df72019-10-01 22:08:43 +02003297 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003298 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003299 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3300 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003301 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003302
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003303 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003304 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003305 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3306 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003307 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003308
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003309 /* the connection is not idle anymore, let's mark this */
3310 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003311 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003312
Christopher Faulet6b81df72019-10-01 22:08:43 +02003313 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulete00ad352021-12-16 14:44:31 +01003314 return 0;
Christopher Faulet26a26432021-01-27 11:27:50 +01003315 err:
Christopher Faulet26a26432021-01-27 11:27:50 +01003316 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 +01003317 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003318}
3319
3320/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3321 * this mux, it's easy as we can only store a single conn_stream.
3322 */
3323static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3324{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003325 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003326 struct h1s *h1s = h1c->h1s;
3327
3328 if (h1s)
3329 return h1s->cs;
3330
3331 return NULL;
3332}
3333
Christopher Faulet73c12072019-04-08 11:23:22 +02003334static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003335{
Christopher Faulet73c12072019-04-08 11:23:22 +02003336 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003337
Christopher Faulet6b81df72019-10-01 22:08:43 +02003338 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003339 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003340 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003341}
3342
3343/*
3344 * Detach the stream from the connection and possibly release the connection.
3345 */
3346static void h1_detach(struct conn_stream *cs)
3347{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003348 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003349 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003350 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003351 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003352
Christopher Faulet6b81df72019-10-01 22:08:43 +02003353 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3354
Christopher Faulet6b81df72019-10-01 22:08:43 +02003355 if (!h1s) {
3356 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003357 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003358 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003359
Olivier Houchardf502aca2018-12-14 19:42:40 +01003360 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003361 h1c = h1s->h1c;
3362 h1s->cs = NULL;
3363
Christopher Faulet42849b02020-10-05 11:35:17 +02003364 sess->accept_date = date;
3365 sess->tv_accept = now;
3366 sess->t_handshake = 0;
3367 sess->t_idle = -1;
3368
Olivier Houchard8a786902018-12-15 16:05:40 +01003369 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3370 h1s_destroy(h1s);
3371
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003372 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 +02003373 /* If there are any excess server data in the input buffer,
3374 * release it and close the connection ASAP (some data may
3375 * remain in the output buffer). This happens if a server sends
3376 * invalid responses. So in such case, we don't want to reuse
3377 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003378 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003379 if (b_data(&h1c->ibuf)) {
3380 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003381 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003382 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003383 goto release;
3384 }
Christopher Faulet03627242019-07-19 11:34:08 +02003385
Christopher Faulet08016ab2020-07-01 16:10:06 +02003386 if (h1c->conn->flags & CO_FL_PRIVATE) {
3387 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003388 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3389 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003390 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003391 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003392 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003393 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003394 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003395 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003396 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3397 goto end;
3398 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003399 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003400 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003401 if (h1c->conn->owner == sess)
3402 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003403
3404 /* mark that the tasklet may lose its context to another thread and
3405 * that the handler needs to check it under the idle conns lock.
3406 */
3407 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003408 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003409 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3410
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003411 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003412 /* The server doesn't want it, let's kill the connection right away */
3413 h1c->conn->mux->destroy(h1c);
3414 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3415 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003416 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003417 /* At this point, the connection has been added to the
3418 * server idle list, so another thread may already have
3419 * hijacked it, so we can't do anything with it.
3420 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003421 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003422 }
3423 }
3424
Christopher Fauletf1204b82019-07-19 14:51:06 +02003425 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003426 /* 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 +01003427 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003428 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003429 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003430 !h1c->conn->owner) {
3431 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003432 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003433 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003434 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003435 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003436 /* If we have a new request, process it immediately or
3437 * subscribe for reads waiting for new data
3438 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003439 if (unlikely(b_data(&h1c->ibuf))) {
3440 if (h1_process(h1c) == -1)
3441 goto end;
3442 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003443 else
3444 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3445 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003446 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003447 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003448 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003449 end:
3450 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003451}
3452
3453
Christopher Faulet07976562022-03-31 11:05:05 +02003454static void h1_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003455{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003456 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet7f366362019-04-08 10:51:20 +02003457 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003458
3459 if (!h1s)
3460 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003461 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003462
Christopher Faulet99293b02021-11-10 10:30:15 +01003463 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003464
Christopher Faulete9e48202022-03-22 18:13:29 +01003465 if (cs->endp->flags & CS_EP_SHR)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003466 goto end;
Christopher Faulete9e48202022-03-22 18:13:29 +01003467 if (cs->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003468 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3469 goto do_shutr;
3470 }
3471 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3472 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003473 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003474 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003475
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003476 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3477 /* Here attached is implicit because there is CS */
3478 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3479 goto end;
3480 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003481 if (h1s->flags & H1S_F_WANT_KAL) {
3482 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003483 goto end;
3484 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003485
Christopher Faulet7f366362019-04-08 10:51:20 +02003486 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003487 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
Christopher Faulete9e48202022-03-22 18:13:29 +01003488 if (cs->endp->flags & CS_EP_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003489 goto end;
Christopher Faulet897d6122021-12-17 17:28:35 +01003490
3491 if (conn_xprt_ready(h1c->conn) && h1c->conn->xprt->shutr)
Christopher Faulet07976562022-03-31 11:05:05 +02003492 h1c->conn->xprt->shutr(h1c->conn, h1c->conn->xprt_ctx, (mode == CO_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003493 end:
3494 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003495}
3496
Christopher Faulet07976562022-03-31 11:05:05 +02003497static void h1_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003498{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003499 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003500 struct h1c *h1c;
3501
3502 if (!h1s)
3503 return;
3504 h1c = h1s->h1c;
3505
Christopher Faulet99293b02021-11-10 10:30:15 +01003506 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003507
Christopher Faulete9e48202022-03-22 18:13:29 +01003508 if (cs->endp->flags & CS_EP_SHW)
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003509 goto end;
Christopher Faulete9e48202022-03-22 18:13:29 +01003510 if (cs->endp->flags & CS_EP_KILL_CONN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003511 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003512 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003513 }
3514 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3515 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3516 goto do_shutw;
3517 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003518
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003519 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3520 /* Here attached is implicit because there is CS */
3521 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3522 goto end;
3523 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003524 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3525 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003526 goto end;
3527 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003528
Christopher Faulet7f366362019-04-08 10:51:20 +02003529 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003530 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet07976562022-03-31 11:05:05 +02003531 if (mode != CO_SHW_NORMAL)
Christopher Fauleta85c5222021-10-27 15:36:38 +02003532 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3533
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003534 if (!b_data(&h1c->obuf))
Christopher Faulet897d6122021-12-17 17:28:35 +01003535 h1_shutw_conn(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003536 end:
3537 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003538}
3539
Christopher Fauleta85c5222021-10-27 15:36:38 +02003540static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003541{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003542 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003543
Willy Tarreau62592ad2021-03-26 09:09:42 +01003544 if (conn->flags & CO_FL_SOCK_WR_SH)
3545 return;
3546
Christopher Fauleta85c5222021-10-27 15:36:38 +02003547 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003548 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003549 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3550 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003551}
3552
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003553/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3554 * The <es> pointer is not allowed to differ from the one passed to the
3555 * subscribe() call. It always returns zero.
3556 */
3557static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003558{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003559 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003560
3561 if (!h1s)
3562 return 0;
3563
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003564 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003565 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003566
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003567 es->events &= ~event_type;
3568 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003569 h1s->subs = NULL;
3570
3571 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003572 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003573
3574 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003575 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003576
Christopher Faulet51dbc942018-09-13 09:05:15 +02003577 return 0;
3578}
3579
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003580/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3581 * event subscriber <es> is not allowed to change from a previous call as long
3582 * as at least one event is still subscribed. The <event_type> must only be a
3583 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3584 * the conn_stream <cs> was already detached, in which case it will return -1.
3585 */
3586static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003587{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003588 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51bb1852019-09-04 10:22:34 +02003589 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003590
3591 if (!h1s)
3592 return -1;
3593
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003594 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003595 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003596
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003597 es->events |= event_type;
3598 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003599
3600 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003601 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003602
3603
Christopher Faulet6b81df72019-10-01 22:08:43 +02003604 if (event_type & SUB_RETRY_SEND) {
3605 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003606 /*
3607 * If the conn_stream attempt to subscribe, and the
3608 * mux isn't subscribed to the connection, then it
3609 * probably means the connection wasn't established
3610 * yet, so we have to subscribe.
3611 */
3612 h1c = h1s->h1c;
3613 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3614 h1c->conn->xprt->subscribe(h1c->conn,
3615 h1c->conn->xprt_ctx,
3616 SUB_RETRY_SEND,
3617 &h1c->wait_event);
3618 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003619 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003620}
3621
Christopher Faulet564e39c2021-09-21 15:50:55 +02003622/* Called from the upper layer, to receive data.
3623 *
3624 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3625 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3626 * means the caller wants to flush input data (from the mux buffer and the
3627 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3628 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3629 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3630 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3631 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3632 * copy as much data as possible.
3633 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003634static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3635{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003636 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet539e0292018-11-19 10:40:09 +01003637 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003638 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003639 size_t ret = 0;
3640
Willy Tarreau022e5e52020-09-10 09:33:15 +02003641 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003642
3643 /* Do nothing for now if not READY */
3644 if (!(h1c->flags & H1C_F_ST_READY)) {
3645 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3646 goto end;
3647 }
3648
Christopher Faulet539e0292018-11-19 10:40:09 +01003649 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003650 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003651 else
3652 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003653
Christopher Faulete9e48202022-03-22 18:13:29 +01003654 if ((flags & CO_RFL_BUF_FLUSH) && (cs->endp->flags & CS_EP_MAY_SPLICE)) {
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003655 h1c->flags |= H1C_F_WANT_SPLICE;
3656 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 +02003657 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003658 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003659 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 +01003660 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003661 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003662
3663 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003664 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003665 return ret;
3666}
3667
3668
3669/* Called from the upper layer, to send data */
3670static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3671{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003672 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003673 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003674 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003675
3676 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003677 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003678 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003679
Willy Tarreau022e5e52020-09-10 09:33:15 +02003680 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003681
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003682 /* If we're not connected yet, or we're waiting for a handshake, stop
3683 * now, as we don't want to remove everything from the channel buffer
3684 * before we're sure we can send it.
3685 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003686 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003687 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003688 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003689 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003690
Christopher Fauletdea24742021-01-22 15:12:30 +01003691 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletb041b232022-03-24 10:27:02 +01003692 cs->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003693 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 +01003694 return 0;
3695 }
3696
Christopher Faulet46230362019-10-17 16:04:20 +02003697 /* Inherit some flags from the upper layer */
3698 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3699 if (flags & CO_SFL_MSG_MORE)
3700 h1c->flags |= H1C_F_CO_MSG_MORE;
3701 if (flags & CO_SFL_STREAMER)
3702 h1c->flags |= H1C_F_CO_STREAMER;
3703
Christopher Fauletc31872f2019-06-04 22:09:36 +02003704 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003705 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003706
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003707 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003708 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003709 else
3710 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003711
3712 if ((count - ret) > 0)
3713 h1c->flags |= H1C_F_CO_MSG_MORE;
3714
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003715 if (!ret)
3716 break;
3717 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003718 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003719 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003720 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003721 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003722
3723 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletb041b232022-03-24 10:27:02 +01003724 cs->endp->flags |= CS_EP_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003725 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 +01003726 }
3727
Christopher Faulet7a145d62020-08-05 11:31:16 +02003728 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003729 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003730 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003731}
3732
Willy Tarreaue5733232019-05-22 19:24:06 +02003733#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003734/* Send and get, using splicing */
3735static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3736{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003737 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003738 struct h1c *h1c = h1s->h1c;
3739 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003740 int ret = 0;
3741
Christopher Faulet897d6122021-12-17 17:28:35 +01003742 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003743
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003744 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003745 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003746 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 +02003747 goto end;
3748 }
3749
Christopher Fauletcf307562021-07-26 10:49:39 +02003750 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003751 if (h1s_data_pending(h1s)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003752 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003753 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003754 }
3755
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003756 if (!h1_recv_allowed(h1c)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003757 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet0060be92020-07-03 15:02:25 +02003758 goto end;
3759 }
3760
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003761 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003762 count = h1m->curr_len;
Christopher Faulet897d6122021-12-17 17:28:35 +01003763 ret = h1c->conn->xprt->rcv_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003764 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003765 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003766 if (ret > h1m->curr_len) {
3767 h1s->flags |= H1S_F_PARSING_ERROR;
3768 h1c->flags |= H1C_F_ST_ERROR;
Christopher Fauletb041b232022-03-24 10:27:02 +01003769 cs->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003770 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003771 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 +01003772 goto end;
3773 }
3774 h1m->curr_len -= ret;
3775 if (!h1m->curr_len) {
3776 h1m->state = H1_MSG_DONE;
3777 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003778 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003779 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003780 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003781 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
3782 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_in, ret);
Christopher Faulete18777b2019-04-16 16:46:36 +02003783 }
3784
Christopher Faulet1be55f92018-10-02 15:59:23 +02003785 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003786 if (conn_xprt_read0_pending(h1c->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003787 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003788 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003789 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003790 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003791
Christopher Faulet94d35102021-04-09 11:58:49 +02003792 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003793 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulete9e48202022-03-22 18:13:29 +01003794 cs->endp->flags &= ~CS_EP_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003795 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003796 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, h1c->conn, h1s);
3797 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet94d35102021-04-09 11:58:49 +02003798 }
Christopher Faulet27182292020-07-03 15:08:49 +02003799 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003800
Christopher Faulet897d6122021-12-17 17:28:35 +01003801 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003802 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003803}
3804
3805static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3806{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003807 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003808 struct h1c *h1c = h1s->h1c;
3809 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003810 int ret = 0;
3811
Christopher Faulet897d6122021-12-17 17:28:35 +01003812 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003813
Christopher Faulet140f1a52021-11-26 16:37:55 +01003814 if (b_data(&h1c->obuf)) {
3815 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003816 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, h1c->conn, h1s);
3817 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003818 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003819 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003820 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003821
Christopher Faulet897d6122021-12-17 17:28:35 +01003822 ret = h1c->conn->xprt->snd_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003823 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003824 if (ret > h1m->curr_len) {
3825 h1s->flags |= H1S_F_PROCESSING_ERROR;
3826 h1c->flags |= H1C_F_ST_ERROR;
Christopher Fauletb041b232022-03-24 10:27:02 +01003827 cs->endp->flags |= CS_EP_ERROR;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003828 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003829 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 +01003830 goto end;
3831 }
3832 h1m->curr_len -= ret;
3833 if (!h1m->curr_len) {
3834 h1m->state = H1_MSG_DONE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003835 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003836 }
3837 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003838 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
3839 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_out, ret);
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003840
3841 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003842 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003843 return ret;
3844}
3845#endif
3846
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003847static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3848{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003849 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003850 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003851
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003852 switch (mux_ctl) {
3853 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003854 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003855 ret |= MUX_STATUS_READY;
3856 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003857 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003858 if (output)
3859 *((int *)output) = h1c->errcode;
3860 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3861 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3862 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3863 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003864 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003865 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003866 default:
3867 return -1;
3868 }
3869}
3870
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003871/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003872static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003873{
3874 struct h1c *h1c = conn->ctx;
3875 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003876 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003877
Christopher Fauletf376a312019-01-04 15:16:06 +01003878 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3879 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003880 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3881 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3882 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3883 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3884
3885 if (h1s) {
3886 char *method;
3887
3888 if (h1s->meth < HTTP_METH_OTHER)
3889 method = http_known_methods[h1s->meth].ptr;
3890 else
3891 method = "UNKNOWN";
3892 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3893 " .meth=%s status=%d",
3894 h1s, h1s->flags,
3895 h1m_state_str(h1s->req.state),
3896 h1m_state_str(h1s->res.state), method, h1s->status);
3897 if (h1s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01003898 chunk_appendf(msg, " .cs.flg=0x%08x .cs.app=%p",
3899 h1s->cs->flags, h1s->cs->app);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003900
3901 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3902 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003903 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3904 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3905 h1s->subs->tasklet->calls,
3906 h1s->subs->tasklet->context);
3907 if (h1s->subs->tasklet->calls >= 1000000)
3908 ret = 1;
3909 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3910 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003911 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003912 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003913 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003914}
3915
3916
3917/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3918static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3919{
3920 struct h1_hdr_entry *entry;
3921
3922 /* Be sure there is a non-empty <to> */
3923 if (!strlen(to)) {
3924 memprintf(err, "expect <to>");
3925 return -1;
3926 }
3927
3928 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003929 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003930 memprintf(err, "<from> and <to> must not differ execpt the case");
3931 return -1;
3932 }
3933
3934 /* Be sure <from> does not already existsin the tree */
3935 if (ebis_lookup(&hdrs_map.map, from)) {
3936 memprintf(err, "duplicate entry '%s'", from);
3937 return -1;
3938 }
3939
3940 /* Create the entry and insert it in the tree */
3941 entry = malloc(sizeof(*entry));
3942 if (!entry) {
3943 memprintf(err, "out of memory");
3944 return -1;
3945 }
3946
3947 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003948 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003949 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003950 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003951 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003952 free(entry);
3953 memprintf(err, "out of memory");
3954 return -1;
3955 }
3956 ebis_insert(&hdrs_map.map, &entry->node);
3957 return 0;
3958}
3959
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003960/* Migrate the the connection to the current thread.
3961 * Return 0 if successful, non-zero otherwise.
3962 * Expected to be called with the old thread lock held.
3963 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003964static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003965{
3966 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003967 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003968
3969 if (fd_takeover(conn->handle.fd, conn) != 0)
3970 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003971
3972 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3973 /* We failed to takeover the xprt, even if the connection may
3974 * still be valid, flag it as error'd, as we have already
3975 * taken over the fd, and wake the tasklet, so that it will
3976 * destroy it.
3977 */
3978 conn->flags |= CO_FL_ERROR;
3979 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3980 return -1;
3981 }
3982
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003983 if (h1c->wait_event.events)
3984 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3985 h1c->wait_event.events, &h1c->wait_event);
3986 /* To let the tasklet know it should free itself, and do nothing else,
3987 * set its context to NULL.
3988 */
3989 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003990 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003991
3992 task = h1c->task;
3993 if (task) {
3994 task->context = NULL;
3995 h1c->task = NULL;
3996 __ha_barrier_store();
3997 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003998
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003999 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004000 if (!h1c->task) {
4001 h1_release(h1c);
4002 return -1;
4003 }
4004 h1c->task->process = h1_timeout_task;
4005 h1c->task->context = h1c;
4006 }
4007 h1c->wait_event.tasklet = tasklet_new();
4008 if (!h1c->wait_event.tasklet) {
4009 h1_release(h1c);
4010 return -1;
4011 }
4012 h1c->wait_event.tasklet->process = h1_io_cb;
4013 h1c->wait_event.tasklet->context = h1c;
4014 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
4015 SUB_RETRY_RECV, &h1c->wait_event);
4016
4017 return 0;
4018}
4019
4020
Christopher Faulet98fbe952019-07-22 16:18:24 +02004021static void h1_hdeaders_case_adjust_deinit()
4022{
4023 struct ebpt_node *node, *next;
4024 struct h1_hdr_entry *entry;
4025
4026 node = ebpt_first(&hdrs_map.map);
4027 while (node) {
4028 next = ebpt_next(node);
4029 ebpt_delete(node);
4030 entry = container_of(node, struct h1_hdr_entry, node);
4031 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01004032 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004033 free(entry);
4034 node = next;
4035 }
4036 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004037}
4038
Christopher Faulet98fbe952019-07-22 16:18:24 +02004039static int cfg_h1_headers_case_adjust_postparser()
4040{
4041 FILE *file = NULL;
4042 char *c, *key_beg, *key_end, *value_beg, *value_end;
4043 char *err;
4044 int rc, line = 0, err_code = 0;
4045
4046 if (!hdrs_map.name)
4047 goto end;
4048
4049 file = fopen(hdrs_map.name, "r");
4050 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004051 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004052 hdrs_map.name);
4053 err_code |= ERR_ALERT | ERR_FATAL;
4054 goto end;
4055 }
4056
4057 /* now parse all lines. The file may contain only two header name per
4058 * line, separated by spaces. All heading and trailing spaces will be
4059 * ignored. Lines starting with a # are ignored.
4060 */
4061 while (fgets(trash.area, trash.size, file) != NULL) {
4062 line++;
4063 c = trash.area;
4064
4065 /* strip leading spaces and tabs */
4066 while (*c == ' ' || *c == '\t')
4067 c++;
4068
4069 /* ignore emptu lines, or lines beginning with a dash */
4070 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
4071 continue;
4072
4073 /* look for the end of the key */
4074 key_beg = c;
4075 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
4076 c++;
4077 key_end = c;
4078
4079 /* strip middle spaces and tabs */
4080 while (*c == ' ' || *c == '\t')
4081 c++;
4082
4083 /* look for the end of the value, it is the end of the line */
4084 value_beg = c;
4085 while (*c && *c != '\n' && *c != '\r')
4086 c++;
4087 value_end = c;
4088
4089 /* trim possibly trailing spaces and tabs */
4090 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
4091 value_end--;
4092
4093 /* set final \0 and check entries */
4094 *key_end = '\0';
4095 *value_end = '\0';
4096
4097 err = NULL;
4098 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
4099 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004100 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004101 hdrs_map.name, err, line);
4102 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004103 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004104 goto end;
4105 }
4106 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004107 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004108 hdrs_map.name, err, line);
4109 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004110 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004111 }
4112 }
4113
4114 end:
4115 if (file)
4116 fclose(file);
4117 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4118 return err_code;
4119}
4120
4121
4122/* config parser for global "h1-outgoing-header-case-adjust" */
4123static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004124 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004125 char **err)
4126{
4127 if (too_many_args(2, args, err, NULL))
4128 return -1;
4129 if (!*(args[1]) || !*(args[2])) {
4130 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4131 return -1;
4132 }
4133 return add_hdr_case_adjust(args[1], args[2], err);
4134}
4135
4136/* config parser for global "h1-outgoing-headers-case-adjust-file" */
4137static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004138 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004139 char **err)
4140{
4141 if (too_many_args(1, args, err, NULL))
4142 return -1;
4143 if (!*(args[1])) {
4144 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4145 return -1;
4146 }
4147 free(hdrs_map.name);
4148 hdrs_map.name = strdup(args[1]);
4149 return 0;
4150}
4151
4152
4153/* config keyword parsers */
4154static struct cfg_kw_list cfg_kws = {{ }, {
4155 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4156 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4157 { 0, NULL, NULL },
4158 }
4159};
4160
4161INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4162REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4163
4164
Christopher Faulet51dbc942018-09-13 09:05:15 +02004165/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004166/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004167/****************************************/
4168
4169/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004170static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004171 .init = h1_init,
4172 .wake = h1_wake,
4173 .attach = h1_attach,
4174 .get_first_cs = h1_get_first_cs,
4175 .detach = h1_detach,
4176 .destroy = h1_destroy,
4177 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004178 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004179 .rcv_buf = h1_rcv_buf,
4180 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004181#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004182 .rcv_pipe = h1_rcv_pipe,
4183 .snd_pipe = h1_snd_pipe,
4184#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004185 .subscribe = h1_subscribe,
4186 .unsubscribe = h1_unsubscribe,
4187 .shutr = h1_shutr,
4188 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004189 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004190 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004191 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004192 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004193 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004194};
4195
Christopher Faulet3f612f72021-02-05 16:44:21 +01004196static const struct mux_ops mux_h1_ops = {
4197 .init = h1_init,
4198 .wake = h1_wake,
4199 .attach = h1_attach,
4200 .get_first_cs = h1_get_first_cs,
4201 .detach = h1_detach,
4202 .destroy = h1_destroy,
4203 .avail_streams = h1_avail_streams,
4204 .used_streams = h1_used_streams,
4205 .rcv_buf = h1_rcv_buf,
4206 .snd_buf = h1_snd_buf,
4207#if defined(USE_LINUX_SPLICE)
4208 .rcv_pipe = h1_rcv_pipe,
4209 .snd_pipe = h1_snd_pipe,
4210#endif
4211 .subscribe = h1_subscribe,
4212 .unsubscribe = h1_unsubscribe,
4213 .shutr = h1_shutr,
4214 .shutw = h1_shutw,
4215 .show_fd = h1_show_fd,
4216 .ctl = h1_ctl,
4217 .takeover = h1_takeover,
4218 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4219 .name = "H1",
4220};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004221
Christopher Faulet3f612f72021-02-05 16:44:21 +01004222/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4223static struct mux_proto_list mux_proto_h1 =
4224 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4225static struct mux_proto_list mux_proto_http =
4226 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004227
Christopher Faulet3f612f72021-02-05 16:44:21 +01004228INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4229INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004230
Christopher Faulet51dbc942018-09-13 09:05:15 +02004231/*
4232 * Local variables:
4233 * c-indent-level: 8
4234 * c-basic-offset: 8
4235 * End:
4236 */